1 /* -*- linux-c -*- ------------------------------------------------------- *
3 * linux/include/linux/auto_fs.h
5 * Copyright 1997 Transmeta Corporation - All Rights Reserved
7 * This file is part of the Linux kernel and is made available under
8 * the terms of the GNU General Public License, version 2, or at your
9 * option, any later version, incorporated herein by reference.
11 * ----------------------------------------------------------------------- */
14 #ifndef _LINUX_AUTO_FS_H
15 #define _LINUX_AUTO_FS_H
17 #include <linux/version.h>
19 #include <linux/limits.h>
20 #include <linux/ioctl.h>
21 #include <asm/types.h>
23 #define AUTOFS_PROTO_VERSION 3
26 * Architectures where both 32- and 64-bit binaries can be executed
27 * on 64-bit kernels need this. This keeps the structure format
28 * uniform, and makes sure the wait_queue_token isn't too big to be
29 * passed back down to the kernel.
31 * This assumes that on these architectures:
33 * -------------------------
37 * If so, 32-bit user-space code should be backwards compatible.
40 #if defined(__sparc__) || defined(__mips__)
41 typedef unsigned int autofs_wqt_t
;
43 typedef unsigned long autofs_wqt_t
;
46 enum autofs_packet_type
{
47 autofs_ptype_missing
, /* Missing entry (mount request) */
48 autofs_ptype_expire
, /* Expire entry (umount request) */
51 struct autofs_packet_hdr
{
52 int proto_version
; /* Protocol version */
53 enum autofs_packet_type type
; /* Type of packet */
56 struct autofs_packet_missing
{
57 struct autofs_packet_hdr hdr
;
58 autofs_wqt_t wait_queue_token
;
60 char name
[NAME_MAX
+1];
63 struct autofs_packet_expire
{
64 struct autofs_packet_hdr hdr
;
66 char name
[NAME_MAX
+1];
69 #define AUTOFS_IOC_READY _IO(0x93,0x60)
70 #define AUTOFS_IOC_FAIL _IO(0x93,0x61)
71 #define AUTOFS_IOC_CATATONIC _IO(0x93,0x62)
72 #define AUTOFS_IOC_PROTOVER _IOR(0x93,0x63,int)
73 #define AUTOFS_IOC_SETTIMEOUT _IOWR(0x93,0x64,unsigned long)
74 #define AUTOFS_IOC_EXPIRE _IOR(0x93,0x65,struct autofs_packet_expire)
79 int init_autofs_fs(void);
81 #endif /* __KERNEL__ */
83 #endif /* _LINUX_AUTO_FS_H */