summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2015-06-09 09:26:43 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2015-06-09 09:26:43 +0200
commit0c3bb48db9249662db3b9e74dc4f6788b12f3c39 (patch)
tree3e26e6a94d31eb3011c1d3da6a646b3492bd5ca0 /include
parent11efb8022225d0ff2c6bd15eedc8da200c79be5a (diff)
parentd7050d1a9d2b13a24421e13b2f5cdada6bf90182 (diff)
downloadbarebox-0c3bb48db9249662db3b9e74dc4f6788b12f3c39.tar.gz
barebox-0c3bb48db9249662db3b9e74dc4f6788b12f3c39.tar.xz
Merge branch 'for-next/mem64'
Diffstat (limited to 'include')
-rw-r--r--include/fcntl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/fcntl.h b/include/fcntl.h
index aed741e584..501b415035 100644
--- a/include/fcntl.h
+++ b/include/fcntl.h
@@ -17,11 +17,12 @@
#define O_NOFOLLOW 00400000 /* don't follow links */
/* barebox additional flags */
-#define O_RWSIZE_MASK 00000070
+#define O_RWSIZE_MASK 00000170
#define O_RWSIZE_SHIFT 3
#define O_RWSIZE_1 00000010
#define O_RWSIZE_2 00000020
#define O_RWSIZE_4 00000040
+#define O_RWSIZE_8 00000100
#define F_DUPFD 0 /* dup */
#define F_GETFD 1 /* get close_on_exec */