Merge branch 'work.iov_iter' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[linux-2.6-block.git] / include / linux / device-mapper.h
CommitLineData
1da177e4
LT
1/*
2 * Copyright (C) 2001 Sistina Software (UK) Limited.
0da336e5 3 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
1da177e4
LT
4 *
5 * This file is released under the LGPL.
6 */
7
8#ifndef _LINUX_DEVICE_MAPPER_H
9#define _LINUX_DEVICE_MAPPER_H
10
416cd17b 11#include <linux/bio.h>
f6fccb12 12#include <linux/blkdev.h>
6bbc923d 13#include <linux/dm-ioctl.h>
fd2ed4d2 14#include <linux/math64.h>
71a16736 15#include <linux/ratelimit.h>
416cd17b 16
af4874e0 17struct dm_dev;
1da177e4
LT
18struct dm_target;
19struct dm_table;
d4100351 20struct dm_report_zones_args;
17b2f66f 21struct mapped_device;
f6fccb12 22struct bio_vec;
1da177e4 23
e83068a5
MS
24/*
25 * Type of table, mapped_device's mempool and request_queue
26 */
7e0d574f
BVA
27enum dm_queue_mode {
28 DM_TYPE_NONE = 0,
29 DM_TYPE_BIO_BASED = 1,
30 DM_TYPE_REQUEST_BASED = 2,
953923c0 31 DM_TYPE_DAX_BIO_BASED = 3,
7e0d574f 32};
e83068a5 33
91ccbbac 34typedef enum { STATUSTYPE_INFO, STATUSTYPE_TABLE, STATUSTYPE_IMA } status_type_t;
1da177e4
LT
35
36union map_info {
37 void *ptr;
1da177e4
LT
38};
39
40/*
41 * In the constructor the target parameter will already have the
42 * table, type, begin and len fields filled in.
43 */
44typedef int (*dm_ctr_fn) (struct dm_target *target,
45 unsigned int argc, char **argv);
46
47/*
48 * The destructor doesn't need to free the dm_target, just
49 * anything hidden ti->private.
50 */
51typedef void (*dm_dtr_fn) (struct dm_target *ti);
52
53/*
54 * The map function must return:
55 * < 0: error
56 * = 0: The target will handle the io by resubmitting it later
45cbcd79 57 * = 1: simple remap complete
2e93ccc1 58 * = 2: The target wants to push back the io
1da177e4 59 */
7de3ee57 60typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio);
e5863d9a
MS
61typedef int (*dm_clone_and_map_request_fn) (struct dm_target *ti,
62 struct request *rq,
63 union map_info *map_context,
64 struct request **clone);
5de719e3
YY
65typedef void (*dm_release_clone_request_fn) (struct request *clone,
66 union map_info *map_context);
1da177e4
LT
67
68/*
69 * Returns:
70 * < 0 : error (currently ignored)
71 * 0 : ended successfully
72 * 1 : for some reason the io has still not completed (eg,
73 * multipath target might want to requeue a failed io).
2e93ccc1 74 * 2 : The target wants to push back the io
1da177e4
LT
75 */
76typedef int (*dm_endio_fn) (struct dm_target *ti,
4e4cbee9 77 struct bio *bio, blk_status_t *error);
7d76345d 78typedef int (*dm_request_endio_fn) (struct dm_target *ti,
2a842aca 79 struct request *clone, blk_status_t error,
7d76345d 80 union map_info *map_context);
1da177e4
LT
81
82typedef void (*dm_presuspend_fn) (struct dm_target *ti);
d67ee213 83typedef void (*dm_presuspend_undo_fn) (struct dm_target *ti);
1da177e4 84typedef void (*dm_postsuspend_fn) (struct dm_target *ti);
8757b776 85typedef int (*dm_preresume_fn) (struct dm_target *ti);
1da177e4
LT
86typedef void (*dm_resume_fn) (struct dm_target *ti);
87
fd7c092e
MP
88typedef void (*dm_status_fn) (struct dm_target *ti, status_type_t status_type,
89 unsigned status_flags, char *result, unsigned maxlen);
1da177e4 90
1eb5fa84
MS
91typedef int (*dm_message_fn) (struct dm_target *ti, unsigned argc, char **argv,
92 char *result, unsigned maxlen);
1da177e4 93
5bd5e8d8 94typedef int (*dm_prepare_ioctl_fn) (struct dm_target *ti, struct block_device **bdev);
aa129a22 95
e3290b94 96#ifdef CONFIG_BLK_DEV_ZONED
d4100351
CH
97typedef int (*dm_report_zones_fn) (struct dm_target *ti,
98 struct dm_report_zones_args *args,
99 unsigned int nr_zones);
e3290b94
MS
100#else
101/*
102 * Define dm_report_zones_fn so that targets can assign to NULL if
103 * CONFIG_BLK_DEV_ZONED disabled. Otherwise each target needs to do
104 * awkward #ifdefs in their target_type, etc.
105 */
106typedef int (*dm_report_zones_fn) (struct dm_target *dummy);
107#endif
e76239a3 108
058ce5ca
AK
109/*
110 * These iteration functions are typically used to check (and combine)
111 * properties of underlying devices.
112 * E.g. Does at least one underlying device support flush?
113 * Does any underlying device not support WRITE_SAME?
114 *
115 * The callout function is called once for each contiguous section of
116 * an underlying device. State can be maintained in *data.
117 * Return non-zero to stop iterating through any further devices.
118 */
af4874e0
MS
119typedef int (*iterate_devices_callout_fn) (struct dm_target *ti,
120 struct dm_dev *dev,
5dea271b 121 sector_t start, sector_t len,
af4874e0
MS
122 void *data);
123
058ce5ca
AK
124/*
125 * This function must iterate through each section of device used by the
126 * target until it encounters a non-zero return code, which it then returns.
127 * Returns zero if no callout returned non-zero.
128 */
af4874e0
MS
129typedef int (*dm_iterate_devices_fn) (struct dm_target *ti,
130 iterate_devices_callout_fn fn,
131 void *data);
132
40bea431
MS
133typedef void (*dm_io_hints_fn) (struct dm_target *ti,
134 struct queue_limits *limits);
135
7d76345d
KU
136/*
137 * Returns:
138 * 0: The target can handle the next I/O immediately.
139 * 1: The target can't handle the next I/O immediately.
140 */
141typedef int (*dm_busy_fn) (struct dm_target *ti);
142
545ed20e
TK
143/*
144 * Returns:
145 * < 0 : error
146 * >= 0 : the number of bytes accessible at the address
147 */
817bf402
DW
148typedef long (*dm_dax_direct_access_fn) (struct dm_target *ti, pgoff_t pgoff,
149 long nr_pages, void **kaddr, pfn_t *pfn);
b3a9a0c3 150typedef size_t (*dm_dax_copy_iter_fn)(struct dm_target *ti, pgoff_t pgoff,
7e026c8c 151 void *addr, size_t bytes, struct iov_iter *i);
cdf6cdcd
VG
152typedef int (*dm_dax_zero_page_range_fn)(struct dm_target *ti, pgoff_t pgoff,
153 size_t nr_pages);
545ed20e 154
1da177e4
LT
155void dm_error(const char *message);
156
82b1519b
MP
157struct dm_dev {
158 struct block_device *bdev;
817bf402 159 struct dax_device *dax_dev;
aeb5d727 160 fmode_t mode;
82b1519b
MP
161 char name[16];
162};
163
4df2bf46
D
164dev_t dm_get_dev_t(const char *path);
165
1da177e4
LT
166/*
167 * Constructors should call these functions to ensure destination devices
168 * are opened/closed correctly.
1da177e4 169 */
8215d6ec 170int dm_get_device(struct dm_target *ti, const char *path, fmode_t mode,
11f0431b 171 struct dm_dev **result);
1da177e4
LT
172void dm_put_device(struct dm_target *ti, struct dm_dev *d);
173
174/*
175 * Information about a target type
176 */
ab4c1424 177
1da177e4 178struct target_type {
ab4c1424 179 uint64_t features;
1da177e4
LT
180 const char *name;
181 struct module *module;
17b2f66f 182 unsigned version[3];
1da177e4
LT
183 dm_ctr_fn ctr;
184 dm_dtr_fn dtr;
185 dm_map_fn map;
e5863d9a
MS
186 dm_clone_and_map_request_fn clone_and_map_rq;
187 dm_release_clone_request_fn release_clone_rq;
1da177e4 188 dm_endio_fn end_io;
7d76345d 189 dm_request_endio_fn rq_end_io;
1da177e4 190 dm_presuspend_fn presuspend;
d67ee213 191 dm_presuspend_undo_fn presuspend_undo;
1da177e4 192 dm_postsuspend_fn postsuspend;
8757b776 193 dm_preresume_fn preresume;
1da177e4
LT
194 dm_resume_fn resume;
195 dm_status_fn status;
196 dm_message_fn message;
e56f81e0 197 dm_prepare_ioctl_fn prepare_ioctl;
e76239a3 198 dm_report_zones_fn report_zones;
7d76345d 199 dm_busy_fn busy;
af4874e0 200 dm_iterate_devices_fn iterate_devices;
40bea431 201 dm_io_hints_fn io_hints;
817bf402 202 dm_dax_direct_access_fn direct_access;
b3a9a0c3
DW
203 dm_dax_copy_iter_fn dax_copy_from_iter;
204 dm_dax_copy_iter_fn dax_copy_to_iter;
cdf6cdcd 205 dm_dax_zero_page_range_fn dax_zero_page_range;
45194e4f
CR
206
207 /* For internal device-mapper use. */
208 struct list_head list;
1da177e4
LT
209};
210
3791e2fc
AK
211/*
212 * Target features
213 */
214
215/*
216 * Any table that contains an instance of this target must have only one.
217 */
218#define DM_TARGET_SINGLETON 0x00000001
219#define dm_target_needs_singleton(type) ((type)->features & DM_TARGET_SINGLETON)
220
cc6cbe14
AK
221/*
222 * Indicates that a target does not support read-only devices.
223 */
224#define DM_TARGET_ALWAYS_WRITEABLE 0x00000002
225#define dm_target_always_writeable(type) \
226 ((type)->features & DM_TARGET_ALWAYS_WRITEABLE)
227
36a0456f
AK
228/*
229 * Any device that contains a table with an instance of this target may never
230 * have tables containing any different target type.
231 */
232#define DM_TARGET_IMMUTABLE 0x00000004
233#define dm_target_is_immutable(type) ((type)->features & DM_TARGET_IMMUTABLE)
234
f083b09b
MS
235/*
236 * Indicates that a target may replace any target; even immutable targets.
237 * .map, .map_rq, .clone_and_map_rq and .release_clone_rq are all defined.
238 */
239#define DM_TARGET_WILDCARD 0x00000008
240#define dm_target_is_wildcard(type) ((type)->features & DM_TARGET_WILDCARD)
241
9b4b5a79
MB
242/*
243 * A target implements own bio data integrity.
244 */
245#define DM_TARGET_INTEGRITY 0x00000010
246#define dm_target_has_integrity(type) ((type)->features & DM_TARGET_INTEGRITY)
247
e2460f2a
MP
248/*
249 * A target passes integrity data to the lower device.
250 */
251#define DM_TARGET_PASSES_INTEGRITY 0x00000020
252#define dm_target_passes_integrity(type) ((type)->features & DM_TARGET_PASSES_INTEGRITY)
253
dd88d313 254/*
2d669ceb
SK
255 * Indicates support for zoned block devices:
256 * - DM_TARGET_ZONED_HM: the target also supports host-managed zoned
257 * block devices but does not support combining different zoned models.
258 * - DM_TARGET_MIXED_ZONED_MODEL: the target supports combining multiple
259 * devices with different zoned models.
dd88d313 260 */
e3290b94 261#ifdef CONFIG_BLK_DEV_ZONED
dd88d313
DLM
262#define DM_TARGET_ZONED_HM 0x00000040
263#define dm_target_supports_zoned_hm(type) ((type)->features & DM_TARGET_ZONED_HM)
e3290b94
MS
264#else
265#define DM_TARGET_ZONED_HM 0x00000000
266#define dm_target_supports_zoned_hm(type) (false)
267#endif
dd88d313 268
6abc4946
KK
269/*
270 * A target handles REQ_NOWAIT
271 */
272#define DM_TARGET_NOWAIT 0x00000080
273#define dm_target_supports_nowait(type) ((type)->features & DM_TARGET_NOWAIT)
274
aa6ce87a
ST
275/*
276 * A target supports passing through inline crypto support.
277 */
278#define DM_TARGET_PASSES_CRYPTO 0x00000100
279#define dm_target_passes_crypto(type) ((type)->features & DM_TARGET_PASSES_CRYPTO)
280
2d669ceb
SK
281#ifdef CONFIG_BLK_DEV_ZONED
282#define DM_TARGET_MIXED_ZONED_MODEL 0x00000200
283#define dm_target_supports_mixed_zoned_model(type) \
284 ((type)->features & DM_TARGET_MIXED_ZONED_MODEL)
285#else
286#define DM_TARGET_MIXED_ZONED_MODEL 0x00000000
287#define dm_target_supports_mixed_zoned_model(type) (false)
288#endif
289
1da177e4
LT
290struct dm_target {
291 struct dm_table *table;
292 struct target_type *type;
293
294 /* target limits */
295 sector_t begin;
296 sector_t len;
297
542f9038
MS
298 /* If non-zero, maximum size of I/O submitted to a target. */
299 uint32_t max_io_len;
1da177e4 300
f9ab94ce 301 /*
55a62eef 302 * A number of zero-length barrier bios that will be submitted
f9ab94ce
MP
303 * to the target for the purpose of flushing cache.
304 *
55a62eef
AK
305 * The bio number can be accessed with dm_bio_get_target_bio_nr.
306 * It is a responsibility of the target driver to remap these bios
f9ab94ce
MP
307 * to the real underlying devices.
308 */
55a62eef 309 unsigned num_flush_bios;
f9ab94ce 310
5ae89a87 311 /*
55a62eef
AK
312 * The number of discard bios that will be submitted to the target.
313 * The bio number can be accessed with dm_bio_get_target_bio_nr.
5ae89a87 314 */
55a62eef 315 unsigned num_discard_bios;
5ae89a87 316
00716545
DS
317 /*
318 * The number of secure erase bios that will be submitted to the target.
319 * The bio number can be accessed with dm_bio_get_target_bio_nr.
320 */
321 unsigned num_secure_erase_bios;
322
d54eaa5a 323 /*
55a62eef
AK
324 * The number of WRITE SAME bios that will be submitted to the target.
325 * The bio number can be accessed with dm_bio_get_target_bio_nr.
d54eaa5a 326 */
55a62eef 327 unsigned num_write_same_bios;
d54eaa5a 328
ac62d620
CH
329 /*
330 * The number of WRITE ZEROES bios that will be submitted to the target.
331 * The bio number can be accessed with dm_bio_get_target_bio_nr.
332 */
333 unsigned num_write_zeroes_bios;
334
c0820cf5 335 /*
30187e1d
MS
336 * The minimum number of extra bytes allocated in each io for the
337 * target to use.
c0820cf5 338 */
30187e1d 339 unsigned per_io_data_size;
c0820cf5 340
1da177e4
LT
341 /* target specific data */
342 void *private;
343
344 /* Used to provide an error string from the ctr */
345 char *error;
4c259327 346
0e9c24ed
JT
347 /*
348 * Set if this target needs to receive flushes regardless of
349 * whether or not its underlying devices have support.
350 */
351 bool flush_supported:1;
352
4c259327
MS
353 /*
354 * Set if this target needs to receive discards regardless of
355 * whether or not its underlying devices have support.
356 */
0ac55489 357 bool discards_supported:1;
a666e5c0
MP
358
359 /*
360 * Set if we need to limit the number of in-flight bios when swapping.
361 */
362 bool limit_swap_bios:1;
bb37d772
DLM
363
364 /*
365 * Set if this target implements a a zoned device and needs emulation of
366 * zone append operations using regular writes.
367 */
368 bool emulate_zone_append:1;
1da177e4
LT
369};
370
64f52b0e
MS
371void *dm_per_bio_data(struct bio *bio, size_t data_size);
372struct bio *dm_bio_from_per_bio_data(void *data, size_t data_size);
373unsigned dm_bio_get_target_bio_nr(const struct bio *bio);
ddbd658f 374
087615bf
GKB
375u64 dm_start_time_ns_from_clone(struct bio *bio);
376
1da177e4 377int dm_register_target(struct target_type *t);
10d3bd09 378void dm_unregister_target(struct target_type *t);
17b2f66f 379
498f0103
MS
380/*
381 * Target argument parsing.
382 */
383struct dm_arg_set {
384 unsigned argc;
385 char **argv;
386};
387
388/*
389 * The minimum and maximum value of a numeric argument, together with
390 * the error message to use if the number is found to be outside that range.
391 */
392struct dm_arg {
393 unsigned min;
394 unsigned max;
395 char *error;
396};
397
398/*
399 * Validate the next argument, either returning it as *value or, if invalid,
400 * returning -EINVAL and setting *error.
401 */
5916a22b 402int dm_read_arg(const struct dm_arg *arg, struct dm_arg_set *arg_set,
498f0103
MS
403 unsigned *value, char **error);
404
405/*
406 * Process the next argument as the start of a group containing between
407 * arg->min and arg->max further arguments. Either return the size as
408 * *num_args or, if invalid, return -EINVAL and set *error.
409 */
5916a22b 410int dm_read_arg_group(const struct dm_arg *arg, struct dm_arg_set *arg_set,
498f0103
MS
411 unsigned *num_args, char **error);
412
413/*
414 * Return the current argument and shift to the next.
415 */
416const char *dm_shift_arg(struct dm_arg_set *as);
417
418/*
419 * Move through num_args arguments.
420 */
421void dm_consume_args(struct dm_arg_set *as, unsigned num_args);
422
17b2f66f
AK
423/*-----------------------------------------------------------------
424 * Functions for creating and manipulating mapped devices.
425 * Drop the reference with dm_put when you finish with the object.
426 *---------------------------------------------------------------*/
427
428/*
429 * DM_ANY_MINOR chooses the next available minor number.
430 */
431#define DM_ANY_MINOR (-1)
432int dm_create(int minor, struct mapped_device **md);
433
434/*
435 * Reference counting for md.
436 */
437struct mapped_device *dm_get_md(dev_t dev);
438void dm_get(struct mapped_device *md);
09ee96b2 439int dm_hold(struct mapped_device *md);
17b2f66f
AK
440void dm_put(struct mapped_device *md);
441
442/*
443 * An arbitrary pointer may be stored alongside a mapped device.
444 */
445void dm_set_mdptr(struct mapped_device *md, void *ptr);
446void *dm_get_mdptr(struct mapped_device *md);
447
448/*
449 * A device can still be used while suspended, but I/O is deferred.
450 */
a3d77d35 451int dm_suspend(struct mapped_device *md, unsigned suspend_flags);
17b2f66f
AK
452int dm_resume(struct mapped_device *md);
453
454/*
455 * Event functions.
456 */
457uint32_t dm_get_event_nr(struct mapped_device *md);
458int dm_wait_event(struct mapped_device *md, int event_nr);
7a8c3d3b
MA
459uint32_t dm_next_uevent_seq(struct mapped_device *md);
460void dm_uevent_add(struct mapped_device *md, struct list_head *elist);
17b2f66f
AK
461
462/*
463 * Info functions.
464 */
72d94861 465const char *dm_device_name(struct mapped_device *md);
96a1f7db 466int dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid);
17b2f66f 467struct gendisk *dm_disk(struct mapped_device *md);
64dbce58 468int dm_suspended(struct dm_target *ti);
5df96f2b 469int dm_post_suspending(struct dm_target *ti);
2e93ccc1 470int dm_noflush_suspending(struct dm_target *ti);
1dd40c3e 471void dm_accept_partial_bio(struct bio *bio, unsigned n_sectors);
cec47e3d 472union map_info *dm_get_rq_mapinfo(struct request *rq);
17b2f66f 473
d4100351
CH
474#ifdef CONFIG_BLK_DEV_ZONED
475struct dm_report_zones_args {
476 struct dm_target *tgt;
477 sector_t next_sector;
478
479 void *orig_data;
480 report_zones_cb orig_cb;
481 unsigned int zone_idx;
482
483 /* must be filled by ->report_zones before calling dm_report_zones_cb */
484 sector_t start;
485};
912e8875
DLM
486int dm_report_zones(struct block_device *bdev, sector_t start, sector_t sector,
487 struct dm_report_zones_args *args, unsigned int nr_zones);
d4100351
CH
488#endif /* CONFIG_BLK_DEV_ZONED */
489
6bbc923d
HK
490/*
491 * Device mapper functions to parse and create devices specified by the
492 * parameter "dm-mod.create="
493 */
494int __init dm_early_create(struct dm_ioctl *dmi,
495 struct dm_target_spec **spec_array,
496 char **target_params_array);
497
f84cb8a4
MS
498struct queue_limits *dm_get_queue_limits(struct mapped_device *md);
499
17b2f66f
AK
500/*
501 * Geometry functions.
502 */
503int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo);
504int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo);
505
17b2f66f
AK
506/*-----------------------------------------------------------------
507 * Functions for manipulating device-mapper tables.
508 *---------------------------------------------------------------*/
509
510/*
511 * First create an empty table.
512 */
aeb5d727 513int dm_table_create(struct dm_table **result, fmode_t mode,
17b2f66f
AK
514 unsigned num_targets, struct mapped_device *md);
515
516/*
517 * Then call this once for each target.
518 */
519int dm_table_add_target(struct dm_table *t, const char *type,
520 sector_t start, sector_t len, char *params);
521
e83068a5
MS
522/*
523 * Target can use this to set the table's type.
524 * Can only ever be called from a target's ctr.
525 * Useful for "hybrid" target (supports both bio-based
526 * and request-based).
527 */
7e0d574f 528void dm_table_set_type(struct dm_table *t, enum dm_queue_mode type);
9d357b07 529
17b2f66f
AK
530/*
531 * Finally call this to make the table ready for use.
532 */
533int dm_table_complete(struct dm_table *t);
534
f6e7baad
BN
535/*
536 * Destroy the table when finished.
537 */
538void dm_table_destroy(struct dm_table *t);
539
542f9038
MS
540/*
541 * Target may require that it is never sent I/O larger than len.
542 */
543int __must_check dm_set_target_max_io_len(struct dm_target *ti, sector_t len);
544
17b2f66f
AK
545/*
546 * Table reference counting.
547 */
83d5e5b0
MP
548struct dm_table *dm_get_live_table(struct mapped_device *md, int *srcu_idx);
549void dm_put_live_table(struct mapped_device *md, int srcu_idx);
550void dm_sync_table(struct mapped_device *md);
17b2f66f
AK
551
552/*
553 * Queries
554 */
555sector_t dm_table_get_size(struct dm_table *t);
556unsigned int dm_table_get_num_targets(struct dm_table *t);
aeb5d727 557fmode_t dm_table_get_mode(struct dm_table *t);
17b2f66f 558struct mapped_device *dm_table_get_md(struct dm_table *t);
f349b0a3 559const char *dm_table_device_name(struct dm_table *t);
17b2f66f
AK
560
561/*
562 * Trigger an event.
563 */
564void dm_table_event(struct dm_table *t);
565
9974fa2c
MS
566/*
567 * Run the queue for request-based targets.
568 */
569void dm_table_run_md_queue_async(struct dm_table *t);
570
17b2f66f
AK
571/*
572 * The device must be suspended before calling this method.
042d2a9b 573 * Returns the previous table, which the caller must destroy.
17b2f66f 574 */
042d2a9b
AK
575struct dm_table *dm_swap_table(struct mapped_device *md,
576 struct dm_table *t);
17b2f66f 577
aa6ce87a
ST
578/*
579 * Table keyslot manager functions
580 */
581void dm_destroy_keyslot_manager(struct blk_keyslot_manager *ksm);
582
0da336e5
AK
583/*-----------------------------------------------------------------
584 * Macros.
585 *---------------------------------------------------------------*/
586#define DM_NAME "device-mapper"
587
d2c3c8dc
JP
588#define DM_FMT(fmt) DM_NAME ": " DM_MSG_PREFIX ": " fmt "\n"
589
590#define DMCRIT(fmt, ...) pr_crit(DM_FMT(fmt), ##__VA_ARGS__)
591
592#define DMERR(fmt, ...) pr_err(DM_FMT(fmt), ##__VA_ARGS__)
733232f8 593#define DMERR_LIMIT(fmt, ...) pr_err_ratelimited(DM_FMT(fmt), ##__VA_ARGS__)
d2c3c8dc 594#define DMWARN(fmt, ...) pr_warn(DM_FMT(fmt), ##__VA_ARGS__)
733232f8 595#define DMWARN_LIMIT(fmt, ...) pr_warn_ratelimited(DM_FMT(fmt), ##__VA_ARGS__)
d2c3c8dc 596#define DMINFO(fmt, ...) pr_info(DM_FMT(fmt), ##__VA_ARGS__)
733232f8 597#define DMINFO_LIMIT(fmt, ...) pr_info_ratelimited(DM_FMT(fmt), ##__VA_ARGS__)
0da336e5 598
74244b59 599#define DMDEBUG(fmt, ...) pr_debug(DM_FMT(fmt), ##__VA_ARGS__)
733232f8 600#define DMDEBUG_LIMIT(fmt, ...) pr_debug_ratelimited(DM_FMT(fmt), ##__VA_ARGS__)
0da336e5
AK
601
602#define DMEMIT(x...) sz += ((sz >= maxlen) ? \
603 0 : scnprintf(result + sz, maxlen - sz, x))
604
8ec45662
TS
605#define DMEMIT_TARGET_NAME_VERSION(y) \
606 DMEMIT("target_name=%s,target_version=%u.%u.%u", \
607 (y)->name, (y)->version[0], (y)->version[1], (y)->version[2])
608
0da336e5
AK
609/*
610 * Definitions of return values from target end_io function.
611 */
7ed8578a 612#define DM_ENDIO_DONE 0
0da336e5
AK
613#define DM_ENDIO_INCOMPLETE 1
614#define DM_ENDIO_REQUEUE 2
ac514ffc 615#define DM_ENDIO_DELAY_REQUEUE 3
0da336e5
AK
616
617/*
618 * Definitions of return values from target map function.
619 */
620#define DM_MAPIO_SUBMITTED 0
621#define DM_MAPIO_REMAPPED 1
622#define DM_MAPIO_REQUEUE DM_ENDIO_REQUEUE
ac514ffc 623#define DM_MAPIO_DELAY_REQUEUE DM_ENDIO_DELAY_REQUEUE
412445ac 624#define DM_MAPIO_KILL 4
0da336e5 625
fd2ed4d2
MP
626#define dm_sector_div64(x, y)( \
627{ \
628 u64 _res; \
629 (x) = div64_u64_rem(x, y, &_res); \
630 _res; \
631} \
632)
633
0da336e5
AK
634/*
635 * Ceiling(n / sz)
636 */
637#define dm_div_up(n, sz) (((n) + (sz) - 1) / (sz))
638
639#define dm_sector_div_up(n, sz) ( \
640{ \
641 sector_t _r = ((n) + (sz) - 1); \
642 sector_div(_r, (sz)); \
643 _r; \
644} \
645)
646
647/*
648 * ceiling(n / size) * size
649 */
650#define dm_round_up(n, sz) (dm_div_up((n), (sz)) * (sz))
651
56a67df7
MS
652/*
653 * Sector offset taken relative to the start of the target instead of
654 * relative to the start of the device.
655 */
656#define dm_target_offset(ti, sector) ((sector) - (ti)->begin)
657
0bdb50c5 658static inline sector_t to_sector(unsigned long long n)
0da336e5
AK
659{
660 return (n >> SECTOR_SHIFT);
661}
662
663static inline unsigned long to_bytes(sector_t n)
664{
665 return (n << SECTOR_SHIFT);
666}
667
17b2f66f 668#endif /* _LINUX_DEVICE_MAPPER_H */