Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Asynchronous refcounty things
  4 *
  5 * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
  6 * Copyright 2012 Google, Inc.
  7 */
  8
  9#include <linux/debugfs.h>
 10#include <linux/module.h>
 11#include <linux/seq_file.h>
 12#include <linux/sched/debug.h>
 13
 14#include "closure.h"
 15
 16static inline void closure_put_after_sub(struct closure *cl, int flags)
 17{
 18	int r = flags & CLOSURE_REMAINING_MASK;
 19
 20	BUG_ON(flags & CLOSURE_GUARD_MASK);
 21	BUG_ON(!r && (flags & ~CLOSURE_DESTRUCTOR));
 22
 23	if (!r) {
 24		if (cl->fn && !(flags & CLOSURE_DESTRUCTOR)) {
 25			atomic_set(&cl->remaining,
 26				   CLOSURE_REMAINING_INITIALIZER);
 27			closure_queue(cl);
 28		} else {
 29			struct closure *parent = cl->parent;
 30			closure_fn *destructor = cl->fn;
 31
 32			closure_debug_destroy(cl);
 33
 34			if (destructor)
 35				destructor(cl);
 36
 37			if (parent)
 38				closure_put(parent);
 39		}
 40	}
 41}
 42
 43/* For clearing flags with the same atomic op as a put */
 44void closure_sub(struct closure *cl, int v)
 45{
 46	closure_put_after_sub(cl, atomic_sub_return(v, &cl->remaining));
 47}
 
 48
 49/*
 50 * closure_put - decrement a closure's refcount
 51 */
 52void closure_put(struct closure *cl)
 53{
 54	closure_put_after_sub(cl, atomic_dec_return(&cl->remaining));
 55}
 
 56
 57/*
 58 * closure_wake_up - wake up all closures on a wait list, without memory barrier
 59 */
 60void __closure_wake_up(struct closure_waitlist *wait_list)
 61{
 62	struct llist_node *list;
 63	struct closure *cl, *t;
 64	struct llist_node *reverse = NULL;
 65
 66	list = llist_del_all(&wait_list->list);
 67
 68	/* We first reverse the list to preserve FIFO ordering and fairness */
 69	reverse = llist_reverse_order(list);
 70
 71	/* Then do the wakeups */
 72	llist_for_each_entry_safe(cl, t, reverse, list) {
 73		closure_set_waiting(cl, 0);
 74		closure_sub(cl, CLOSURE_WAITING + 1);
 75	}
 76}
 
 77
 78/**
 79 * closure_wait - add a closure to a waitlist
 80 * @waitlist: will own a ref on @cl, which will be released when
 81 * closure_wake_up() is called on @waitlist.
 82 * @cl: closure pointer.
 83 *
 84 */
 85bool closure_wait(struct closure_waitlist *waitlist, struct closure *cl)
 86{
 87	if (atomic_read(&cl->remaining) & CLOSURE_WAITING)
 88		return false;
 89
 90	closure_set_waiting(cl, _RET_IP_);
 91	atomic_add(CLOSURE_WAITING + 1, &cl->remaining);
 92	llist_add(&cl->list, &waitlist->list);
 93
 94	return true;
 95}
 
 96
 97struct closure_syncer {
 98	struct task_struct	*task;
 99	int			done;
100};
101
102static void closure_sync_fn(struct closure *cl)
103{
104	struct closure_syncer *s = cl->s;
105	struct task_struct *p;
106
107	rcu_read_lock();
108	p = READ_ONCE(s->task);
109	s->done = 1;
110	wake_up_process(p);
111	rcu_read_unlock();
112}
113
114void __sched __closure_sync(struct closure *cl)
115{
116	struct closure_syncer s = { .task = current };
117
118	cl->s = &s;
119	continue_at(cl, closure_sync_fn, NULL);
120
121	while (1) {
122		set_current_state(TASK_UNINTERRUPTIBLE);
123		if (s.done)
124			break;
125		schedule();
126	}
127
128	__set_current_state(TASK_RUNNING);
129}
 
130
131#ifdef CONFIG_BCACHE_CLOSURES_DEBUG
132
133static LIST_HEAD(closure_list);
134static DEFINE_SPINLOCK(closure_list_lock);
135
136void closure_debug_create(struct closure *cl)
137{
138	unsigned long flags;
139
140	BUG_ON(cl->magic == CLOSURE_MAGIC_ALIVE);
141	cl->magic = CLOSURE_MAGIC_ALIVE;
142
143	spin_lock_irqsave(&closure_list_lock, flags);
144	list_add(&cl->all, &closure_list);
145	spin_unlock_irqrestore(&closure_list_lock, flags);
146}
 
147
148void closure_debug_destroy(struct closure *cl)
149{
150	unsigned long flags;
151
152	BUG_ON(cl->magic != CLOSURE_MAGIC_ALIVE);
153	cl->magic = CLOSURE_MAGIC_DEAD;
154
155	spin_lock_irqsave(&closure_list_lock, flags);
156	list_del(&cl->all);
157	spin_unlock_irqrestore(&closure_list_lock, flags);
158}
 
159
160static struct dentry *closure_debug;
161
162static int debug_show(struct seq_file *f, void *data)
163{
164	struct closure *cl;
165
166	spin_lock_irq(&closure_list_lock);
167
168	list_for_each_entry(cl, &closure_list, all) {
169		int r = atomic_read(&cl->remaining);
170
171		seq_printf(f, "%p: %pS -> %pS p %p r %i ",
172			   cl, (void *) cl->ip, cl->fn, cl->parent,
173			   r & CLOSURE_REMAINING_MASK);
174
175		seq_printf(f, "%s%s\n",
176			   test_bit(WORK_STRUCT_PENDING_BIT,
177				    work_data_bits(&cl->work)) ? "Q" : "",
178			   r & CLOSURE_RUNNING	? "R" : "");
179
180		if (r & CLOSURE_WAITING)
181			seq_printf(f, " W %pS\n",
182				   (void *) cl->waiting_on);
183
184		seq_printf(f, "\n");
185	}
186
187	spin_unlock_irq(&closure_list_lock);
188	return 0;
189}
190
191DEFINE_SHOW_ATTRIBUTE(debug);
 
 
 
 
 
 
 
 
 
 
192
193void  __init closure_debug_init(void)
194{
195	if (!IS_ERR_OR_NULL(bcache_debug))
196		/*
197		 * it is unnecessary to check return value of
198		 * debugfs_create_file(), we should not care
199		 * about this.
200		 */
201		closure_debug = debugfs_create_file(
202			"closures", 0400, bcache_debug, NULL, &debug_fops);
203}
204#endif
205
206MODULE_AUTHOR("Kent Overstreet <koverstreet@google.com>");
207MODULE_LICENSE("GPL");
v5.4
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Asynchronous refcounty things
  4 *
  5 * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
  6 * Copyright 2012 Google, Inc.
  7 */
  8
  9#include <linux/debugfs.h>
 10#include <linux/module.h>
 11#include <linux/seq_file.h>
 12#include <linux/sched/debug.h>
 13
 14#include "closure.h"
 15
 16static inline void closure_put_after_sub(struct closure *cl, int flags)
 17{
 18	int r = flags & CLOSURE_REMAINING_MASK;
 19
 20	BUG_ON(flags & CLOSURE_GUARD_MASK);
 21	BUG_ON(!r && (flags & ~CLOSURE_DESTRUCTOR));
 22
 23	if (!r) {
 24		if (cl->fn && !(flags & CLOSURE_DESTRUCTOR)) {
 25			atomic_set(&cl->remaining,
 26				   CLOSURE_REMAINING_INITIALIZER);
 27			closure_queue(cl);
 28		} else {
 29			struct closure *parent = cl->parent;
 30			closure_fn *destructor = cl->fn;
 31
 32			closure_debug_destroy(cl);
 33
 34			if (destructor)
 35				destructor(cl);
 36
 37			if (parent)
 38				closure_put(parent);
 39		}
 40	}
 41}
 42
 43/* For clearing flags with the same atomic op as a put */
 44void closure_sub(struct closure *cl, int v)
 45{
 46	closure_put_after_sub(cl, atomic_sub_return(v, &cl->remaining));
 47}
 48EXPORT_SYMBOL(closure_sub);
 49
 50/*
 51 * closure_put - decrement a closure's refcount
 52 */
 53void closure_put(struct closure *cl)
 54{
 55	closure_put_after_sub(cl, atomic_dec_return(&cl->remaining));
 56}
 57EXPORT_SYMBOL(closure_put);
 58
 59/*
 60 * closure_wake_up - wake up all closures on a wait list, without memory barrier
 61 */
 62void __closure_wake_up(struct closure_waitlist *wait_list)
 63{
 64	struct llist_node *list;
 65	struct closure *cl, *t;
 66	struct llist_node *reverse = NULL;
 67
 68	list = llist_del_all(&wait_list->list);
 69
 70	/* We first reverse the list to preserve FIFO ordering and fairness */
 71	reverse = llist_reverse_order(list);
 72
 73	/* Then do the wakeups */
 74	llist_for_each_entry_safe(cl, t, reverse, list) {
 75		closure_set_waiting(cl, 0);
 76		closure_sub(cl, CLOSURE_WAITING + 1);
 77	}
 78}
 79EXPORT_SYMBOL(__closure_wake_up);
 80
 81/**
 82 * closure_wait - add a closure to a waitlist
 83 * @waitlist: will own a ref on @cl, which will be released when
 84 * closure_wake_up() is called on @waitlist.
 85 * @cl: closure pointer.
 86 *
 87 */
 88bool closure_wait(struct closure_waitlist *waitlist, struct closure *cl)
 89{
 90	if (atomic_read(&cl->remaining) & CLOSURE_WAITING)
 91		return false;
 92
 93	closure_set_waiting(cl, _RET_IP_);
 94	atomic_add(CLOSURE_WAITING + 1, &cl->remaining);
 95	llist_add(&cl->list, &waitlist->list);
 96
 97	return true;
 98}
 99EXPORT_SYMBOL(closure_wait);
100
101struct closure_syncer {
102	struct task_struct	*task;
103	int			done;
104};
105
106static void closure_sync_fn(struct closure *cl)
107{
108	struct closure_syncer *s = cl->s;
109	struct task_struct *p;
110
111	rcu_read_lock();
112	p = READ_ONCE(s->task);
113	s->done = 1;
114	wake_up_process(p);
115	rcu_read_unlock();
116}
117
118void __sched __closure_sync(struct closure *cl)
119{
120	struct closure_syncer s = { .task = current };
121
122	cl->s = &s;
123	continue_at(cl, closure_sync_fn, NULL);
124
125	while (1) {
126		set_current_state(TASK_UNINTERRUPTIBLE);
127		if (s.done)
128			break;
129		schedule();
130	}
131
132	__set_current_state(TASK_RUNNING);
133}
134EXPORT_SYMBOL(__closure_sync);
135
136#ifdef CONFIG_BCACHE_CLOSURES_DEBUG
137
138static LIST_HEAD(closure_list);
139static DEFINE_SPINLOCK(closure_list_lock);
140
141void closure_debug_create(struct closure *cl)
142{
143	unsigned long flags;
144
145	BUG_ON(cl->magic == CLOSURE_MAGIC_ALIVE);
146	cl->magic = CLOSURE_MAGIC_ALIVE;
147
148	spin_lock_irqsave(&closure_list_lock, flags);
149	list_add(&cl->all, &closure_list);
150	spin_unlock_irqrestore(&closure_list_lock, flags);
151}
152EXPORT_SYMBOL(closure_debug_create);
153
154void closure_debug_destroy(struct closure *cl)
155{
156	unsigned long flags;
157
158	BUG_ON(cl->magic != CLOSURE_MAGIC_ALIVE);
159	cl->magic = CLOSURE_MAGIC_DEAD;
160
161	spin_lock_irqsave(&closure_list_lock, flags);
162	list_del(&cl->all);
163	spin_unlock_irqrestore(&closure_list_lock, flags);
164}
165EXPORT_SYMBOL(closure_debug_destroy);
166
167static struct dentry *closure_debug;
168
169static int debug_seq_show(struct seq_file *f, void *data)
170{
171	struct closure *cl;
172
173	spin_lock_irq(&closure_list_lock);
174
175	list_for_each_entry(cl, &closure_list, all) {
176		int r = atomic_read(&cl->remaining);
177
178		seq_printf(f, "%p: %pS -> %pS p %p r %i ",
179			   cl, (void *) cl->ip, cl->fn, cl->parent,
180			   r & CLOSURE_REMAINING_MASK);
181
182		seq_printf(f, "%s%s\n",
183			   test_bit(WORK_STRUCT_PENDING_BIT,
184				    work_data_bits(&cl->work)) ? "Q" : "",
185			   r & CLOSURE_RUNNING	? "R" : "");
186
187		if (r & CLOSURE_WAITING)
188			seq_printf(f, " W %pS\n",
189				   (void *) cl->waiting_on);
190
191		seq_printf(f, "\n");
192	}
193
194	spin_unlock_irq(&closure_list_lock);
195	return 0;
196}
197
198static int debug_seq_open(struct inode *inode, struct file *file)
199{
200	return single_open(file, debug_seq_show, NULL);
201}
202
203static const struct file_operations debug_ops = {
204	.owner		= THIS_MODULE,
205	.open		= debug_seq_open,
206	.read		= seq_read,
207	.release	= single_release
208};
209
210void  __init closure_debug_init(void)
211{
212	if (!IS_ERR_OR_NULL(bcache_debug))
213		/*
214		 * it is unnecessary to check return value of
215		 * debugfs_create_file(), we should not care
216		 * about this.
217		 */
218		closure_debug = debugfs_create_file(
219			"closures", 0400, bcache_debug, NULL, &debug_ops);
220}
221#endif
222
223MODULE_AUTHOR("Kent Overstreet <koverstreet@google.com>");
224MODULE_LICENSE("GPL");