libxfs.h | libxfs.h | |||
---|---|---|---|---|
skipping to change at line 58 | skipping to change at line 58 | |||
#include <xfs/xfs_attr_sf.h> | #include <xfs/xfs_attr_sf.h> | |||
#include <xfs/xfs_dinode.h> | #include <xfs/xfs_dinode.h> | |||
#include <xfs/xfs_inode.h> | #include <xfs/xfs_inode.h> | |||
#include <xfs/xfs_buf_item.h> | #include <xfs/xfs_buf_item.h> | |||
#include <xfs/xfs_inode_item.h> | #include <xfs/xfs_inode_item.h> | |||
#include <xfs/xfs_alloc.h> | #include <xfs/xfs_alloc.h> | |||
#include <xfs/xfs_btree.h> | #include <xfs/xfs_btree.h> | |||
#include <xfs/xfs_btree_trace.h> | #include <xfs/xfs_btree_trace.h> | |||
#include <xfs/xfs_bmap.h> | #include <xfs/xfs_bmap.h> | |||
#ifndef ARRAY_SIZE | ||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) | ||||
#endif | ||||
#ifndef XFS_SUPER_MAGIC | #ifndef XFS_SUPER_MAGIC | |||
#define XFS_SUPER_MAGIC 0x58465342 | #define XFS_SUPER_MAGIC 0x58465342 | |||
#endif | #endif | |||
#define xfs_isset(a,i) ((a)[(i)/(sizeof((a))*NBBY)] & (1<<((i)%(sizeof((a)) *NBBY)))) | #define xfs_isset(a,i) ((a)[(i)/(sizeof((a))*NBBY)] & (1<<((i)%(sizeof((a)) *NBBY)))) | |||
/* | /* | |||
* Argument structure for libxfs_init(). | * Argument structure for libxfs_init(). | |||
*/ | */ | |||
typedef struct { | typedef struct { | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 4 lines changed or added | |||