diff options
| author | Linus Torvalds <torvalds@athlon.transmeta.com> | 2002-02-04 20:19:15 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@athlon.transmeta.com> | 2002-02-04 20:19:15 -0800 |
| commit | 269f8f707739116e68aee38d78d0cfb3d896b856 (patch) | |
| tree | 996aa137f057a796dd99a172a1b90e5e2bd4f6be /include/linux/devfs_fs_kernel.h | |
| parent | a27c6530ff12bab100e64c5b43e84f759fa353ae (diff) | |
v2.4.9.13 -> v2.4.9.14
- Richard Gooch: devfs update
- Andrea Arcangeli: clean up/fix ramdisk handling now that it's in page cache
- Al Viro: follow up the above with initrd cleanups
- Keith Owens: get rid of drivers/scsi/53c700-mem.c file
- Trond Myklebust: RPC over TCP race fix
- Greg KH: USB update (ohci understands USB_ZERO_PACKET)
- me: clean up reference bit handling, fix silly GFP_ATOMIC allocation bug
Diffstat (limited to 'include/linux/devfs_fs_kernel.h')
| -rw-r--r-- | include/linux/devfs_fs_kernel.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/include/linux/devfs_fs_kernel.h b/include/linux/devfs_fs_kernel.h index 33c4d127f4fa..e6bc2bcbc217 100644 --- a/include/linux/devfs_fs_kernel.h +++ b/include/linux/devfs_fs_kernel.h @@ -30,17 +30,15 @@ is closed, ownership reverts back to <<uid>> and <<gid>> and the protection is set to read-write for all */ -#define DEVFS_FL_SHOW_UNREG 0x002 /* Show unregistered entries in - directory listings */ -#define DEVFS_FL_HIDE 0x004 /* Do not show entry in directory list */ -#define DEVFS_FL_AUTO_DEVNUM 0x008 /* Automatically generate device number +#define DEVFS_FL_HIDE 0x002 /* Do not show entry in directory list */ +#define DEVFS_FL_AUTO_DEVNUM 0x004 /* Automatically generate device number */ -#define DEVFS_FL_AOPEN_NOTIFY 0x010 /* Asynchronously notify devfsd on open +#define DEVFS_FL_AOPEN_NOTIFY 0x008 /* Asynchronously notify devfsd on open */ -#define DEVFS_FL_REMOVABLE 0x020 /* This is a removable media device */ -#define DEVFS_FL_WAIT 0x040 /* Wait for devfsd to finish */ -#define DEVFS_FL_NO_PERSISTENCE 0x080 /* Forget changes after unregister */ -#define DEVFS_FL_CURRENT_OWNER 0x100 /* Set initial ownership to current */ +#define DEVFS_FL_REMOVABLE 0x010 /* This is a removable media device */ +#define DEVFS_FL_WAIT 0x020 /* Wait for devfsd to finish */ +#define DEVFS_FL_NO_PERSISTENCE 0x040 /* Forget changes after unregister */ +#define DEVFS_FL_CURRENT_OWNER 0x080 /* Set initial ownership to current */ #define DEVFS_FL_DEFAULT DEVFS_FL_NONE |
