Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/util-linux/volume_id/ocfs2.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 78  struct ocfs2_super_block { Line 78  struct ocfs2_super_block {
78   uint64_t s_first_cluster_group; /* Block offset of 1st cluster group header */   uint64_t s_first_cluster_group; /* Block offset of 1st cluster group header */
79   uint8_t s_label[OCFS2_MAX_VOL_LABEL_LEN]; /* Label for mounting, etc. */   uint8_t s_label[OCFS2_MAX_VOL_LABEL_LEN]; /* Label for mounting, etc. */
80   uint8_t s_uuid[OCFS2_VOL_UUID_LEN]; /* 128-bit uuid */   uint8_t s_uuid[OCFS2_VOL_UUID_LEN]; /* 128-bit uuid */
81  } __attribute__((__packed__));  } PACKED;
82    
83  int volume_id_probe_ocfs2(struct volume_id *id, uint64_t off)  int FAST_FUNC volume_id_probe_ocfs2(struct volume_id *id /*,uint64_t off*/)
84  {  {
85    #define off ((uint64_t)0)
86   struct ocfs2_super_block *os;   struct ocfs2_super_block *os;
87    
88   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