2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003 Sistina Software
|
2008-04-24 20:43:17 +00:00
|
|
|
* Copyright (C) 2004 - 2008 Red Hat, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Device-Mapper low-level I/O.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* This file is released under the GPL.
|
|
|
|
*/
|
|
|
|
|
2008-04-24 20:43:17 +00:00
|
|
|
#ifndef _LINUX_DM_IO_H
|
|
|
|
#define _LINUX_DM_IO_H
|
|
|
|
|
|
|
|
#ifdef __KERNEL__
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-04-24 20:43:17 +00:00
|
|
|
#include <linux/types.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-04-24 20:43:17 +00:00
|
|
|
struct dm_io_region {
|
2005-04-16 22:20:36 +00:00
|
|
|
struct block_device *bdev;
|
|
|
|
sector_t sector;
|
2007-05-09 09:33:05 +00:00
|
|
|
sector_t count; /* If this is zero the region is ignored. */
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct page_list {
|
|
|
|
struct page_list *next;
|
|
|
|
struct page *page;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef void (*io_notify_fn)(unsigned long error, void *context);
|
|
|
|
|
2007-05-09 09:33:01 +00:00
|
|
|
enum dm_io_mem_type {
|
|
|
|
DM_IO_PAGE_LIST,/* Page list */
|
2013-10-11 22:45:43 +00:00
|
|
|
DM_IO_BIO, /* Bio vector */
|
2007-05-09 09:33:01 +00:00
|
|
|
DM_IO_VMA, /* Virtual memory area */
|
|
|
|
DM_IO_KMEM, /* Kernel memory */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dm_io_memory {
|
|
|
|
enum dm_io_mem_type type;
|
|
|
|
|
2010-03-06 02:32:33 +00:00
|
|
|
unsigned offset;
|
|
|
|
|
2007-05-09 09:33:01 +00:00
|
|
|
union {
|
|
|
|
struct page_list *pl;
|
2013-10-11 22:45:43 +00:00
|
|
|
struct bio *bio;
|
2007-05-09 09:33:01 +00:00
|
|
|
void *vma;
|
|
|
|
void *addr;
|
|
|
|
} ptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct dm_io_notify {
|
|
|
|
io_notify_fn fn; /* Callback for asynchronous requests */
|
|
|
|
void *context; /* Passed to callback */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* IO request structure
|
|
|
|
*/
|
|
|
|
struct dm_io_client;
|
|
|
|
struct dm_io_request {
|
2016-06-05 19:32:04 +00:00
|
|
|
int bi_op; /* REQ_OP */
|
2016-10-28 14:48:16 +00:00
|
|
|
int bi_op_flags; /* req_flag_bits */
|
2007-05-09 09:33:01 +00:00
|
|
|
struct dm_io_memory mem; /* Memory to use for io */
|
|
|
|
struct dm_io_notify notify; /* Synchronous if notify.fn is NULL */
|
|
|
|
struct dm_io_client *client; /* Client memory handler */
|
|
|
|
};
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-05-09 09:33:01 +00:00
|
|
|
/*
|
|
|
|
* For async io calls, users can alternatively use the dm_io() function below
|
|
|
|
* and dm_io_client_create() to create private mempools for the client.
|
|
|
|
*
|
|
|
|
* Create/destroy may block.
|
|
|
|
*/
|
2011-05-29 12:03:09 +00:00
|
|
|
struct dm_io_client *dm_io_client_create(void);
|
2007-05-09 09:33:01 +00:00
|
|
|
void dm_io_client_destroy(struct dm_io_client *client);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* IO interface using private per-client pools.
|
2007-05-09 09:33:05 +00:00
|
|
|
* Each bit in the optional 'sync_error_bits' bitset indicates whether an
|
|
|
|
* error occurred doing io to the corresponding region.
|
2007-05-09 09:33:01 +00:00
|
|
|
*/
|
|
|
|
int dm_io(struct dm_io_request *io_req, unsigned num_regions,
|
2008-04-24 20:43:17 +00:00
|
|
|
struct dm_io_region *region, unsigned long *sync_error_bits);
|
2007-05-09 09:33:01 +00:00
|
|
|
|
2008-04-24 20:43:17 +00:00
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
#endif /* _LINUX_DM_IO_H */
|