svn commit: r274424 - projects/sendfile/sys/sys
Gleb Smirnoff
glebius at FreeBSD.org
Wed Nov 12 10:32:22 UTC 2014
Author: glebius
Date: Wed Nov 12 10:32:21 2014
New Revision: 274424
URL: https://svnweb.freebsd.org/changeset/base/274424
Log:
Give back values to SF_NODISKIO and SF_MNOWAIT, since equal values
can actually prevent applications from compiling.
Modified:
projects/sendfile/sys/sys/socket.h
Modified: projects/sendfile/sys/sys/socket.h
==============================================================================
--- projects/sendfile/sys/sys/socket.h Wed Nov 12 10:17:46 2014 (r274423)
+++ projects/sendfile/sys/sys/socket.h Wed Nov 12 10:32:21 2014 (r274424)
@@ -590,8 +590,8 @@ struct sf_hdtr {
* them in header to keep applications compilable. We will try to
* avoid to reuse their bits as long as possible.
*/
-#define SF_NODISKIO 0x00000000 /* was 0x00000001 */
-#define SF_MNOWAIT 0x00000000 /* was 0x00000002 */
+#define SF_NODISKIO 0x00000001 /* unused */
+#define SF_MNOWAIT 0x00000002 /* unused */
#define SF_SYNC 0x00000004
#define SF_NOCACHE 0x00000010
#define SF_FLAGS(rh, flags) (((rh) << 16) | (flags))
More information about the svn-src-projects
mailing list