fs.h (db2e747b14991a4c6a5c98b0e5f552a193237c03) fs.h (a110343f0d6d41f68b7cf8c00b57a3172c67f816)
1#ifndef _LINUX_FS_H
2#define _LINUX_FS_H
3
4/*
5 * This file has definitions for some important file table
6 * structures etc.
7 */
8

--- 47 unchanged lines hidden (view full) ---

56
57#define NR_FILE 8192 /* this can well be larger on a larger system */
58
59#define MAY_EXEC 1
60#define MAY_WRITE 2
61#define MAY_READ 4
62#define MAY_APPEND 8
63#define MAY_ACCESS 16
1#ifndef _LINUX_FS_H
2#define _LINUX_FS_H
3
4/*
5 * This file has definitions for some important file table
6 * structures etc.
7 */
8

--- 47 unchanged lines hidden (view full) ---

56
57#define NR_FILE 8192 /* this can well be larger on a larger system */
58
59#define MAY_EXEC 1
60#define MAY_WRITE 2
61#define MAY_READ 4
62#define MAY_APPEND 8
63#define MAY_ACCESS 16
64#define MAY_CHDIR 32
65#define MAY_OPEN 64
64#define MAY_OPEN 32
66
67#define FMODE_READ 1
68#define FMODE_WRITE 2
69
70/* Internal kernel extensions */
71#define FMODE_LSEEK 4
72#define FMODE_PREAD 8
73#define FMODE_PWRITE FMODE_PREAD /* These go hand in hand */

--- 2082 unchanged lines hidden ---
65
66#define FMODE_READ 1
67#define FMODE_WRITE 2
68
69/* Internal kernel extensions */
70#define FMODE_LSEEK 4
71#define FMODE_PREAD 8
72#define FMODE_PWRITE FMODE_PREAD /* These go hand in hand */

--- 2082 unchanged lines hidden ---