auto_fs4.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* -*- c -*-
  2.  * linux/include/linux/auto_fs4.h
  3.  *
  4.  * Copyright 1999-2000 Jeremy Fitzhardinge <jeremy@goop.org>
  5.  *
  6.  * This file is part of the Linux kernel and is made available under
  7.  * the terms of the GNU General Public License, version 2, or at your
  8.  * option, any later version, incorporated herein by reference.
  9.  */
  10. #ifndef _LINUX_AUTO_FS4_H
  11. #define _LINUX_AUTO_FS4_H
  12. /* Include common v3 definitions */
  13. #include <linux/auto_fs.h>
  14. /* autofs v4 definitions */
  15. #undef AUTOFS_PROTO_VERSION
  16. #undef AUTOFS_MIN_PROTO_VERSION
  17. #undef AUTOFS_MAX_PROTO_VERSION
  18. #define AUTOFS_PROTO_VERSION 4
  19. #define AUTOFS_MIN_PROTO_VERSION 3
  20. #define AUTOFS_MAX_PROTO_VERSION 4
  21. /* New message type */
  22. #define autofs_ptype_expire_multi 2 /* Expire entry (umount request) */
  23. /* v4 multi expire (via pipe) */
  24. struct autofs_packet_expire_multi {
  25. struct autofs_packet_hdr hdr;
  26.         autofs_wqt_t wait_queue_token;
  27. int len;
  28. char name[NAME_MAX+1];
  29. };
  30. union autofs_packet_union {
  31. struct autofs_packet_hdr hdr;
  32. struct autofs_packet_missing missing;
  33. struct autofs_packet_expire expire;
  34. struct autofs_packet_expire_multi expire_multi;
  35. };
  36. #define AUTOFS_IOC_EXPIRE_MULTI _IOW(0x93,0x66,int)
  37. #endif /* _LINUX_AUTO_FS4_H */