blob: 981a02d3a055c426b018738225cdae0dcf0da4fa [file] [log] [blame]
Mike Snitzer4f81a412012-10-12 21:02:13 +01001/*
2 * Copyright (C) 2011-2012 Red Hat, Inc.
3 *
4 * This file is released under the GPL.
5 */
6
7#ifndef DM_BIO_PRISON_H
8#define DM_BIO_PRISON_H
9
10#include "persistent-data/dm-block-manager.h" /* FIXME: for dm_block_t */
11#include "dm-thin-metadata.h" /* FIXME: for dm_thin_id */
12
13#include <linux/list.h>
14#include <linux/bio.h>
15
16/*----------------------------------------------------------------*/
17
18/*
19 * Sometimes we can't deal with a bio straight away. We put them in prison
20 * where they can't cause any mischief. Bios are put in a cell identified
21 * by a key, multiple bios can be in the same cell. When the cell is
22 * subsequently unlocked the bios become available.
23 */
24struct dm_bio_prison;
Mike Snitzer4f81a412012-10-12 21:02:13 +010025
26/* FIXME: this needs to be more abstract */
27struct dm_cell_key {
28 int virtual;
29 dm_thin_id dev;
30 dm_block_t block;
31};
32
Joe Thornber025b9682013-03-01 22:45:50 +000033/*
34 * Treat this as opaque, only in header so callers can manage allocation
35 * themselves.
36 */
37struct dm_bio_prison_cell {
38 struct hlist_node list;
39 struct dm_cell_key key;
40 struct bio *holder;
41 struct bio_list bios;
42};
43
Mike Snitzer4f81a412012-10-12 21:02:13 +010044struct dm_bio_prison *dm_bio_prison_create(unsigned nr_cells);
45void dm_bio_prison_destroy(struct dm_bio_prison *prison);
46
47/*
Joe Thornber6beca5e2013-03-01 22:45:50 +000048 * These two functions just wrap a mempool. This is a transitory step:
49 * Eventually all bio prison clients should manage their own cell memory.
50 *
51 * Like mempool_alloc(), dm_bio_prison_alloc_cell() can only fail if called
52 * in interrupt context or passed GFP_NOWAIT.
53 */
54struct dm_bio_prison_cell *dm_bio_prison_alloc_cell(struct dm_bio_prison *prison,
55 gfp_t gfp);
56void dm_bio_prison_free_cell(struct dm_bio_prison *prison,
57 struct dm_bio_prison_cell *cell);
58
59/*
60 * An atomic op that combines retrieving a cell, and adding a bio to it.
Mike Snitzer4f81a412012-10-12 21:02:13 +010061 *
62 * Returns 1 if the cell was already held, 0 if @inmate is the new holder.
63 */
Joe Thornber6beca5e2013-03-01 22:45:50 +000064int dm_bio_detain(struct dm_bio_prison *prison,
65 struct dm_cell_key *key,
66 struct bio *inmate,
67 struct dm_bio_prison_cell *cell_prealloc,
68 struct dm_bio_prison_cell **cell_result);
Mike Snitzer4f81a412012-10-12 21:02:13 +010069
Joe Thornber6beca5e2013-03-01 22:45:50 +000070void dm_cell_release(struct dm_bio_prison *prison,
71 struct dm_bio_prison_cell *cell,
72 struct bio_list *bios);
73void dm_cell_release_no_holder(struct dm_bio_prison *prison,
74 struct dm_bio_prison_cell *cell,
75 struct bio_list *inmates);
76void dm_cell_error(struct dm_bio_prison *prison,
77 struct dm_bio_prison_cell *cell);
Mike Snitzer4f81a412012-10-12 21:02:13 +010078
79/*----------------------------------------------------------------*/
80
81/*
82 * We use the deferred set to keep track of pending reads to shared blocks.
83 * We do this to ensure the new mapping caused by a write isn't performed
84 * until these prior reads have completed. Otherwise the insertion of the
85 * new mapping could free the old block that the read bios are mapped to.
86 */
87
88struct dm_deferred_set;
89struct dm_deferred_entry;
90
91struct dm_deferred_set *dm_deferred_set_create(void);
92void dm_deferred_set_destroy(struct dm_deferred_set *ds);
93
94struct dm_deferred_entry *dm_deferred_entry_inc(struct dm_deferred_set *ds);
95void dm_deferred_entry_dec(struct dm_deferred_entry *entry, struct list_head *head);
96int dm_deferred_set_add_work(struct dm_deferred_set *ds, struct list_head *work);
97
98/*----------------------------------------------------------------*/
99
100#endif