closure.c 4.9 KB
Newer Older
K
Kent Overstreet 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Asynchronous refcounty things
 *
 * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
 * Copyright 2012 Google, Inc.
 */

#include <linux/debugfs.h>
#include <linux/module.h>
#include <linux/seq_file.h>

#include "closure.h"

static inline void closure_put_after_sub(struct closure *cl, int flags)
{
	int r = flags & CLOSURE_REMAINING_MASK;

	BUG_ON(flags & CLOSURE_GUARD_MASK);
K
Kent Overstreet 已提交
19
	BUG_ON(!r && (flags & ~CLOSURE_DESTRUCTOR));
K
Kent Overstreet 已提交
20 21 22 23 24 25 26 27 28 29 30 31

	/* Must deliver precisely one wakeup */
	if (r == 1 && (flags & CLOSURE_SLEEPING))
		wake_up_process(cl->task);

	if (!r) {
		if (cl->fn && !(flags & CLOSURE_DESTRUCTOR)) {
			atomic_set(&cl->remaining,
				   CLOSURE_REMAINING_INITIALIZER);
			closure_queue(cl);
		} else {
			struct closure *parent = cl->parent;
K
Kent Overstreet 已提交
32
			closure_fn *destructor = cl->fn;
K
Kent Overstreet 已提交
33 34 35

			closure_debug_destroy(cl);

K
Kent Overstreet 已提交
36 37
			if (destructor)
				destructor(cl);
K
Kent Overstreet 已提交
38 39 40 41 42 43 44 45 46 47 48 49

			if (parent)
				closure_put(parent);
		}
	}
}

/* For clearing flags with the same atomic op as a put */
void closure_sub(struct closure *cl, int v)
{
	closure_put_after_sub(cl, atomic_sub_return(v, &cl->remaining));
}
K
Kent Overstreet 已提交
50
EXPORT_SYMBOL(closure_sub);
K
Kent Overstreet 已提交
51

52 53 54
/**
 * closure_put - decrement a closure's refcount
 */
K
Kent Overstreet 已提交
55 56 57 58
void closure_put(struct closure *cl)
{
	closure_put_after_sub(cl, atomic_dec_return(&cl->remaining));
}
K
Kent Overstreet 已提交
59
EXPORT_SYMBOL(closure_put);
K
Kent Overstreet 已提交
60

61 62 63
/**
 * closure_wake_up - wake up all closures on a wait list, without memory barrier
 */
K
Kent Overstreet 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
void __closure_wake_up(struct closure_waitlist *wait_list)
{
	struct llist_node *list;
	struct closure *cl;
	struct llist_node *reverse = NULL;

	list = llist_del_all(&wait_list->list);

	/* We first reverse the list to preserve FIFO ordering and fairness */

	while (list) {
		struct llist_node *t = list;
		list = llist_next(list);

		t->next = reverse;
		reverse = t;
	}

	/* Then do the wakeups */

	while (reverse) {
		cl = container_of(reverse, struct closure, list);
		reverse = llist_next(reverse);

88
		closure_set_waiting(cl, 0);
K
Kent Overstreet 已提交
89 90 91
		closure_sub(cl, CLOSURE_WAITING + 1);
	}
}
K
Kent Overstreet 已提交
92
EXPORT_SYMBOL(__closure_wake_up);
K
Kent Overstreet 已提交
93

94 95 96 97 98 99 100 101
/**
 * closure_wait - add a closure to a waitlist
 *
 * @waitlist will own a ref on @cl, which will be released when
 * closure_wake_up() is called on @waitlist.
 *
 */
bool closure_wait(struct closure_waitlist *waitlist, struct closure *cl)
K
Kent Overstreet 已提交
102 103 104 105
{
	if (atomic_read(&cl->remaining) & CLOSURE_WAITING)
		return false;

106
	closure_set_waiting(cl, _RET_IP_);
K
Kent Overstreet 已提交
107
	atomic_add(CLOSURE_WAITING + 1, &cl->remaining);
108
	llist_add(&cl->list, &waitlist->list);
K
Kent Overstreet 已提交
109 110 111

	return true;
}
K
Kent Overstreet 已提交
112
EXPORT_SYMBOL(closure_wait);
K
Kent Overstreet 已提交
113 114

/**
115
 * closure_sync - sleep until a closure a closure has nothing left to wait on
K
Kent Overstreet 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
 *
 * Sleeps until the refcount hits 1 - the thread that's running the closure owns
 * the last refcount.
 */
void closure_sync(struct closure *cl)
{
	while (1) {
		__closure_start_sleep(cl);
		closure_set_ret_ip(cl);

		if ((atomic_read(&cl->remaining) &
		     CLOSURE_REMAINING_MASK) == 1)
			break;

		schedule();
	}

	__closure_end_sleep(cl);
}
K
Kent Overstreet 已提交
135
EXPORT_SYMBOL(closure_sync);
K
Kent Overstreet 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152

#ifdef CONFIG_BCACHE_CLOSURES_DEBUG

static LIST_HEAD(closure_list);
static DEFINE_SPINLOCK(closure_list_lock);

void closure_debug_create(struct closure *cl)
{
	unsigned long flags;

	BUG_ON(cl->magic == CLOSURE_MAGIC_ALIVE);
	cl->magic = CLOSURE_MAGIC_ALIVE;

	spin_lock_irqsave(&closure_list_lock, flags);
	list_add(&cl->all, &closure_list);
	spin_unlock_irqrestore(&closure_list_lock, flags);
}
K
Kent Overstreet 已提交
153
EXPORT_SYMBOL(closure_debug_create);
K
Kent Overstreet 已提交
154 155 156 157 158 159 160 161 162 163 164 165

void closure_debug_destroy(struct closure *cl)
{
	unsigned long flags;

	BUG_ON(cl->magic != CLOSURE_MAGIC_ALIVE);
	cl->magic = CLOSURE_MAGIC_DEAD;

	spin_lock_irqsave(&closure_list_lock, flags);
	list_del(&cl->all);
	spin_unlock_irqrestore(&closure_list_lock, flags);
}
K
Kent Overstreet 已提交
166
EXPORT_SYMBOL(closure_debug_destroy);
K
Kent Overstreet 已提交
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183

static struct dentry *debug;

#define work_data_bits(work) ((unsigned long *)(&(work)->data))

static int debug_seq_show(struct seq_file *f, void *data)
{
	struct closure *cl;
	spin_lock_irq(&closure_list_lock);

	list_for_each_entry(cl, &closure_list, all) {
		int r = atomic_read(&cl->remaining);

		seq_printf(f, "%p: %pF -> %pf p %p r %i ",
			   cl, (void *) cl->ip, cl->fn, cl->parent,
			   r & CLOSURE_REMAINING_MASK);

K
Kent Overstreet 已提交
184
		seq_printf(f, "%s%s%s%s\n",
K
Kent Overstreet 已提交
185 186 187 188
			   test_bit(WORK_STRUCT_PENDING,
				    work_data_bits(&cl->work)) ? "Q" : "",
			   r & CLOSURE_RUNNING	? "R" : "",
			   r & CLOSURE_STACK	? "S" : "",
K
Kent Overstreet 已提交
189
			   r & CLOSURE_SLEEPING	? "Sl" : "");
K
Kent Overstreet 已提交
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213

		if (r & CLOSURE_WAITING)
			seq_printf(f, " W %pF\n",
				   (void *) cl->waiting_on);

		seq_printf(f, "\n");
	}

	spin_unlock_irq(&closure_list_lock);
	return 0;
}

static int debug_seq_open(struct inode *inode, struct file *file)
{
	return single_open(file, debug_seq_show, NULL);
}

static const struct file_operations debug_ops = {
	.owner		= THIS_MODULE,
	.open		= debug_seq_open,
	.read		= seq_read,
	.release	= single_release
};

214
void __init closure_debug_init(void)
K
Kent Overstreet 已提交
215 216 217 218 219 220 221 222
{
	debug = debugfs_create_file("closures", 0400, NULL, NULL, &debug_ops);
}

#endif

MODULE_AUTHOR("Kent Overstreet <koverstreet@google.com>");
MODULE_LICENSE("GPL");