Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 270019
b: refs/heads/master
c: 8522ca5
h: refs/heads/master
i:
  270017: 1c33c00
  270015: da1c51b
v: v3
  • Loading branch information
Aneesh Kumar K.V authored and root committed Oct 28, 2011
1 parent 1fe4141 commit 4768aa0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8fd90c8d1dacb5ff0f372217c97f57a9e61559cd
refs/heads/master: 8522ca5818652c4da6808c66a307abce75462212
17 changes: 9 additions & 8 deletions trunk/include/linux/fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,15 @@ struct inodes_stat_t {

#define NR_FILE 8192 /* this can well be larger on a larger system */

#define MAY_EXEC 1
#define MAY_WRITE 2
#define MAY_READ 4
#define MAY_APPEND 8
#define MAY_ACCESS 16
#define MAY_OPEN 32
#define MAY_CHDIR 64
#define MAY_NOT_BLOCK 128 /* called from RCU mode, don't block */
#define MAY_EXEC 0x00000001
#define MAY_WRITE 0x00000002
#define MAY_READ 0x00000004
#define MAY_APPEND 0x00000008
#define MAY_ACCESS 0x00000010
#define MAY_OPEN 0x00000020
#define MAY_CHDIR 0x00000040
/* called from RCU mode, don't block */
#define MAY_NOT_BLOCK 0x00000080

/*
* flags in file.f_mode. Note that FMODE_READ and FMODE_WRITE must correspond
Expand Down

0 comments on commit 4768aa0

Please sign in to comment.