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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * udf_fs_i.h
  3.  *
  4.  * This file is intended for the Linux kernel/module. 
  5.  *
  6.  * CONTACTS
  7.  * E-mail regarding any portion of the Linux UDF file system should be
  8.  * directed to the development team mailing list (run by majordomo):
  9.  * linux_udf@hpesjro.fc.hp.com
  10.  *
  11.  * COPYRIGHT
  12.  * This file is distributed under the terms of the GNU General Public
  13.  * License (GPL). Copies of the GPL can be obtained from:
  14.  * ftp://prep.ai.mit.edu/pub/gnu/GPL
  15.  * Each contributing author retains all rights to their own work.
  16.  */
  17. #if !defined(_LINUX_UDF_FS_I_H)
  18. #define _LINUX_UDF_FS_I_H
  19. #ifdef __KERNEL__
  20. #ifndef _LINUX_UDF_167_H
  21. typedef struct
  22. {
  23. __u32 logicalBlockNum;
  24. __u16 partitionReferenceNum;
  25. } lb_addr;
  26. #endif
  27. struct udf_inode_info
  28. {
  29. long i_umtime;
  30. long i_uctime;
  31. long i_crtime;
  32. long i_ucrtime;
  33. /* Physical address of inode */
  34. lb_addr i_location;
  35. __u64 i_unique;
  36. __u32 i_lenEAttr;
  37. __u32 i_lenAlloc;
  38. __u64 i_lenExtents;
  39. __u32 i_next_alloc_block;
  40. __u32 i_next_alloc_goal;
  41. unsigned i_alloc_type : 3;
  42. unsigned i_extended_fe : 1;
  43. unsigned i_strat_4096 : 1;
  44. unsigned i_new_inode : 1;
  45. unsigned reserved : 26;
  46. };
  47. #endif
  48. /* exported IOCTLs, we have 'l', 0x40-0x7f */
  49. #define UDF_GETEASIZE   _IOR('l', 0x40, int)
  50. #define UDF_GETEABLOCK  _IOR('l', 0x41, void *)
  51. #define UDF_GETVOLIDENT _IOR('l', 0x42, void *)
  52. #define UDF_RELOCATE_BLOCKS _IOWR('l', 0x43, long)
  53. #endif /* !defined(_LINUX_UDF_FS_I_H) */