aboutsummaryrefslogtreecommitdiffstats
path: root/usr
Commit message (Expand)AuthorAge
* bzip2/lzma: quiet Kconfig warning for INITRAMFS_COMPRESSION_NONEH. Peter Anvin2009-04-01
* bzip2/lzma: don't ask for compression mode for the default initramfsH. Peter Anvin2009-03-28
* bzip2/lzma: consistently capitalize LZMA in KconfigH. Peter Anvin2009-03-28
* bzip2/lzma: clarify the meaning of the CONFIG_RD_ optionsH. Peter Anvin2009-03-28
* bzip2/lzma: move CONFIG_RD_* options under CONFIG_EMBEDDEDH. Peter Anvin2009-03-28
* bzip2/lzma: make internal initramfs compression configurableAlain Knaff2009-02-19
* bzip2/lzma: fix built-in initramfs vs CONFIG_RD_GZIPAlain Knaff2009-01-07
* bzip2/lzma: move initrd/ramfs options out of BLK_DEVH. Peter Anvin2009-01-07
* kbuild: gen_init_cpio expands shell variables in file namesSally, Gene2008-12-03
* kbuild: add support for reading stdin with gen_init_cpioMike Frysinger2007-07-16
* .gitignore updateAlexey Dobriyan2007-07-16
* usr/Kconfig: fix typoAlexander E. Patrakov2007-05-02
* [PATCH] usr/gen_init_cpio.c: support for hard linksLuciano Rocha2007-02-11
* [PATCH] disable init/initramfs.cJean-Paul Saman2007-02-11
* [PATCH] initramfs: handle more than one source dir or file listThomas Chou2006-11-25
* kbuild: consistently decide when to rebuild a targetSam Ravnborg2006-09-25
* kbuild: do not try to build content of initramfsSam Ravnborg2006-08-07
* kbuild: bugfix with initramfsNickolay2006-06-10
* [PATCH] Fix potential NULL pointer deref in gen_init_cpioJesper Juhl2006-04-19
* kbuild: rebuild initramfs if content of initramfs changesSam Ravnborg2006-04-11
* Add some basic .gitignore filesLinus Torvalds2005-10-18
* kconfig: move initramfs options to General SetupSam Ravnborg2005-08-10
* kbuild: introduce Kbuild.includeSam Ravnborg2005-07-25
* Linux-2.6.12-rc2v2.6.12-rc2Linus Torvalds2005-04-16
RE }; /* Kernel protocol version 4 packet types */ /* Expire entry (umount request) */ #define autofs_ptype_expire_multi 2 /* Kernel protocol version 5 packet types */ /* Indirect mount missing and expire requests. */ #define autofs_ptype_missing_indirect 3 #define autofs_ptype_expire_indirect 4 /* Direct mount missing and expire requests */ #define autofs_ptype_missing_direct 5 #define autofs_ptype_expire_direct 6 /* v4 multi expire (via pipe) */ struct autofs_packet_expire_multi { struct autofs_packet_hdr hdr; autofs_wqt_t wait_queue_token; int len; char name[NAME_MAX+1]; }; union autofs_packet_union { struct autofs_packet_hdr hdr; struct autofs_packet_missing missing; struct autofs_packet_expire expire; struct autofs_packet_expire_multi expire_multi; }; /* autofs v5 common packet struct */ struct autofs_v5_packet { struct autofs_packet_hdr hdr; autofs_wqt_t wait_queue_token; __u32 dev; __u64 ino; __u32 uid; __u32 gid; __u32 pid; __u32 tgid; __u32 len; char name[NAME_MAX+1]; }; typedef struct autofs_v5_packet autofs_packet_missing_indirect_t; typedef struct autofs_v5_packet autofs_packet_expire_indirect_t; typedef struct autofs_v5_packet autofs_packet_missing_direct_t; typedef struct autofs_v5_packet autofs_packet_expire_direct_t; union autofs_v5_packet_union { struct autofs_packet_hdr hdr; struct autofs_v5_packet v5_packet; autofs_packet_missing_indirect_t missing_indirect; autofs_packet_expire_indirect_t expire_indirect; autofs_packet_missing_direct_t missing_direct; autofs_packet_expire_direct_t expire_direct; }; #define AUTOFS_IOC_EXPIRE_MULTI _IOW(0x93,0x66,int) #define AUTOFS_IOC_EXPIRE_INDIRECT AUTOFS_IOC_EXPIRE_MULTI #define AUTOFS_IOC_EXPIRE_DIRECT AUTOFS_IOC_EXPIRE_MULTI #define AUTOFS_IOC_PROTOSUBVER _IOR(0x93,0x67,int) #define AUTOFS_IOC_ASKUMOUNT _IOR(0x93,0x70,int) #endif /* _LINUX_AUTO_FS4_H */