Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/util-linux/volume_id/xfs.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 983 by niro, Fri Apr 24 18:33:46 2009 UTC revision 984 by niro, Sun May 30 11:32:42 2010 UTC
# Line 33  struct xfs_super_block { Line 33  struct xfs_super_block {
33   uint64_t icount;   uint64_t icount;
34   uint64_t ifree;   uint64_t ifree;
35   uint64_t fdblocks;   uint64_t fdblocks;
36  } __attribute__((__packed__));  } PACKED;
37    
38  int volume_id_probe_xfs(struct volume_id *id, uint64_t off)  int FAST_FUNC volume_id_probe_xfs(struct volume_id *id /*,uint64_t off*/)
39  {  {
40    #define off ((uint64_t)0)
41   struct xfs_super_block *xs;   struct xfs_super_block *xs;
42    
43   dbg("probing at offset 0x%llx", (unsigned long long) off);   dbg("probing at offset 0x%llx", (unsigned long long) off);

Legend:
Removed from v.983  
changed lines
  Added in v.984