~ubuntu-branches/ubuntu/karmic/linux-mvl-dove/karmic-proposed

« back to all changes in this revision

Viewing changes to drivers/md/dm-exception-store.h

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Bader
  • Date: 2010-03-10 22:24:12 UTC
  • mto: (15.1.2 karmic-security)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20100310222412-k86m3r53jw0je7x1
Tags: upstream-2.6.31
ImportĀ upstreamĀ versionĀ 2.6.31

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
        struct dm_dev *cow;
102
102
 
103
103
        /* Size of data blocks saved - must be a power of 2 */
104
 
        unsigned chunk_size;
105
 
        unsigned chunk_mask;
106
 
        unsigned chunk_shift;
 
104
        chunk_t chunk_size;
 
105
        chunk_t chunk_mask;
 
106
        chunk_t chunk_shift;
107
107
 
108
108
        void *context;
109
109
};
169
169
int dm_exception_store_type_unregister(struct dm_exception_store_type *type);
170
170
 
171
171
int dm_exception_store_set_chunk_size(struct dm_exception_store *store,
172
 
                                      unsigned chunk_size,
 
172
                                      unsigned long chunk_size_ulong,
173
173
                                      char **error);
174
174
 
175
175
int dm_exception_store_create(struct dm_target *ti, int argc, char **argv,