Blame view

include/linux/dm-kcopyd.h 1.3 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
  /*
eb69aca5d   Heinz Mauelshagen   dm kcopyd: clean ...
2
3
   * Copyright (C) 2001 - 2003 Sistina Software
   * Copyright (C) 2004 - 2008 Red Hat, Inc. All rights reserved.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
   *
eb69aca5d   Heinz Mauelshagen   dm kcopyd: clean ...
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.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
   *
eb69aca5d   Heinz Mauelshagen   dm kcopyd: clean ...
9
   * This file is released under the GPL.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
   */
eb69aca5d   Heinz Mauelshagen   dm kcopyd: clean ...
11
12
13
14
  #ifndef _LINUX_DM_KCOPYD_H
  #define _LINUX_DM_KCOPYD_H
  
  #ifdef __KERNEL__
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15

a765e20ee   Alasdair G Kergon   dm: move include ...
16
  #include <linux/dm-io.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
18
  
  /* FIXME: make this configurable */
eb69aca5d   Heinz Mauelshagen   dm kcopyd: clean ...
19
  #define DM_KCOPYD_MAX_REGIONS 8
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20

eb69aca5d   Heinz Mauelshagen   dm kcopyd: clean ...
21
  #define DM_KCOPYD_IGNORE_ERROR 1
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
23
  
  /*
eb69aca5d   Heinz Mauelshagen   dm kcopyd: clean ...
24
   * To use kcopyd you must first create a dm_kcopyd_client object.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
25
   */
eb69aca5d   Heinz Mauelshagen   dm kcopyd: clean ...
26
27
28
29
  struct dm_kcopyd_client;
  int dm_kcopyd_client_create(unsigned num_pages,
  			    struct dm_kcopyd_client **result);
  void dm_kcopyd_client_destroy(struct dm_kcopyd_client *kc);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
   */
eb69aca5d   Heinz Mauelshagen   dm kcopyd: clean ...
38
39
  typedef void (*dm_kcopyd_notify_fn)(int read_err, unsigned long write_err,
  				    void *context);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40

eb69aca5d   Heinz Mauelshagen   dm kcopyd: clean ...
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);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
44

eb69aca5d   Heinz Mauelshagen   dm kcopyd: clean ...
45
46
  #endif	/* __KERNEL__ */
  #endif	/* _LINUX_DM_KCOPYD_H */