Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/util-linux/volume_id/jfs.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 31  struct jfs_super_block { Line 31  struct jfs_super_block {
31   uint8_t uuid[16];   uint8_t uuid[16];
32   uint8_t label[16];   uint8_t label[16];
33   uint8_t loguuid[16];   uint8_t loguuid[16];
34  } __attribute__((__packed__));  } PACKED;
35    
36  #define JFS_SUPERBLOCK_OFFSET 0x8000  #define JFS_SUPERBLOCK_OFFSET 0x8000
37    
38  int volume_id_probe_jfs(struct volume_id *id, uint64_t off)  int FAST_FUNC volume_id_probe_jfs(struct volume_id *id /*,uint64_t off*/)
39  {  {
40    #define off ((uint64_t)0)
41   struct jfs_super_block *js;   struct jfs_super_block *js;
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