isofs.h (ad34ea2cc3845ef4dcd7d12fb0fa8484734bd672) | isofs.h (9769f4eb3fad2dd53a5d24c81ee5f7f05450742b) |
---|---|
1#include <linux/fs.h> 2#include <linux/buffer_head.h> 3#include <linux/iso_fs.h> 4#include <asm/unaligned.h> 5 6enum isofs_file_format { 7 isofs_file_normal = 0, 8 isofs_file_sparse = 1, --- 33 unchanged lines hidden (view full) --- 42 unsigned char s_utf8; 43 unsigned char s_cruft; /* Broken disks with high 44 byte of length containing 45 junk */ 46 unsigned char s_unhide; 47 unsigned char s_nosuid; 48 unsigned char s_nodev; 49 unsigned char s_nocompress; | 1#include <linux/fs.h> 2#include <linux/buffer_head.h> 3#include <linux/iso_fs.h> 4#include <asm/unaligned.h> 5 6enum isofs_file_format { 7 isofs_file_normal = 0, 8 isofs_file_sparse = 1, --- 33 unchanged lines hidden (view full) --- 42 unsigned char s_utf8; 43 unsigned char s_cruft; /* Broken disks with high 44 byte of length containing 45 junk */ 46 unsigned char s_unhide; 47 unsigned char s_nosuid; 48 unsigned char s_nodev; 49 unsigned char s_nocompress; |
50 unsigned char s_hide; 51 unsigned char s_showassoc; |
|
50 51 mode_t s_mode; 52 gid_t s_gid; 53 uid_t s_uid; 54 struct nls_table *s_nls_iocharset; /* Native language support table */ 55}; 56 57static inline struct isofs_sb_info *ISOFS_SB(struct super_block *sb) --- 133 unchanged lines hidden --- | 52 53 mode_t s_mode; 54 gid_t s_gid; 55 uid_t s_uid; 56 struct nls_table *s_nls_iocharset; /* Native language support table */ 57}; 58 59static inline struct isofs_sb_info *ISOFS_SB(struct super_block *sb) --- 133 unchanged lines hidden --- |