dm-kcopyd.h 2.0 KB
Newer Older
L
Linus Torvalds 已提交
1
/*
H
Heinz Mauelshagen 已提交
2 3
 * Copyright (C) 2001 - 2003 Sistina Software
 * Copyright (C) 2004 - 2008 Red Hat, Inc. All rights reserved.
L
Linus Torvalds 已提交
4
 *
H
Heinz Mauelshagen 已提交
5 6 7
 * kcopyd provides a simple interface for copying an area of one
 * block-device to one or more other block-devices, either synchronous
 * or with an asynchronous completion notification.
L
Linus Torvalds 已提交
8
 *
H
Heinz Mauelshagen 已提交
9
 * This file is released under the GPL.
L
Linus Torvalds 已提交
10 11
 */

H
Heinz Mauelshagen 已提交
12 13 14 15
#ifndef _LINUX_DM_KCOPYD_H
#define _LINUX_DM_KCOPYD_H

#ifdef __KERNEL__
L
Linus Torvalds 已提交
16

A
Alasdair G Kergon 已提交
17
#include <linux/dm-io.h>
L
Linus Torvalds 已提交
18 19

/* FIXME: make this configurable */
H
Heinz Mauelshagen 已提交
20
#define DM_KCOPYD_MAX_REGIONS 8
L
Linus Torvalds 已提交
21

H
Heinz Mauelshagen 已提交
22
#define DM_KCOPYD_IGNORE_ERROR 1
L
Linus Torvalds 已提交
23 24

/*
H
Heinz Mauelshagen 已提交
25
 * To use kcopyd you must first create a dm_kcopyd_client object.
L
Linus Torvalds 已提交
26
 */
H
Heinz Mauelshagen 已提交
27
struct dm_kcopyd_client;
28
struct dm_kcopyd_client *dm_kcopyd_client_create(void);
H
Heinz Mauelshagen 已提交
29
void dm_kcopyd_client_destroy(struct dm_kcopyd_client *kc);
L
Linus Torvalds 已提交
30 31 32 33 34 35 36 37

/*
 * Submit a copy job to kcopyd.  This is built on top of the
 * previous three fns.
 *
 * read_err is a boolean,
 * write_err is a bitset, with 1 bit for each destination region
 */
H
Heinz Mauelshagen 已提交
38 39
typedef void (*dm_kcopyd_notify_fn)(int read_err, unsigned long write_err,
				    void *context);
L
Linus Torvalds 已提交
40

H
Heinz Mauelshagen 已提交
41 42 43
int dm_kcopyd_copy(struct dm_kcopyd_client *kc, struct dm_io_region *from,
		   unsigned num_dests, struct dm_io_region *dests,
		   unsigned flags, dm_kcopyd_notify_fn fn, void *context);
L
Linus Torvalds 已提交
44

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
/*
 * Prepare a callback and submit it via the kcopyd thread.
 *
 * dm_kcopyd_prepare_callback allocates a callback structure and returns it.
 * It must not be called from interrupt context.
 * The returned value should be passed into dm_kcopyd_do_callback.
 *
 * dm_kcopyd_do_callback submits the callback.
 * It may be called from interrupt context.
 * The callback is issued from the kcopyd thread.
 */
void *dm_kcopyd_prepare_callback(struct dm_kcopyd_client *kc,
				 dm_kcopyd_notify_fn fn, void *context);
void dm_kcopyd_do_callback(void *job, int read_err, unsigned long write_err);

60 61 62 63
int dm_kcopyd_zero(struct dm_kcopyd_client *kc,
		   unsigned num_dests, struct dm_io_region *dests,
		   unsigned flags, dm_kcopyd_notify_fn fn, void *context);

H
Heinz Mauelshagen 已提交
64 65
#endif	/* __KERNEL__ */
#endif	/* _LINUX_DM_KCOPYD_H */