~ubuntu-branches/ubuntu/vivid/lvm2/vivid

« back to all changes in this revision

Viewing changes to lib/format_text/format-text.h

  • Committer: Package Import Robot
  • Author(s): Bastian Blank
  • Date: 2012-05-01 20:27:50 UTC
  • mto: (3.1.23 sid)
  • mto: This revision was merged to the branch mainline in revision 72.
  • Revision ID: package-import@ubuntu.com-20120501202750-gljjjtblowwq9mw8
Tags: upstream-2.02.95
ImportĀ upstreamĀ versionĀ 2.02.95

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
            struct device *dev, uint64_t start, uint64_t size, unsigned ignored);
63
63
void del_mdas(struct dm_list *mdas);
64
64
 
 
65
/* On disk */
 
66
struct disk_locn {
 
67
        uint64_t offset;        /* Offset in bytes to start sector */
 
68
        uint64_t size;          /* Bytes */
 
69
} __attribute__ ((packed));
 
70
 
 
71
/* Data areas (holding PEs) */
 
72
struct data_area_list {
 
73
        struct dm_list list;
 
74
        struct disk_locn disk_locn;
 
75
};
 
76
 
65
77
#endif