Skip to content

Commit

Permalink
async: remove unused @node from struct async_domain
Browse files Browse the repository at this point in the history
The @node in struct async_domain is unused after we introduce
async_global_pending, remove it.

tj: Unnecessary whitespace adjustments dropped.

Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Arjan van de Ven <arjan@linux.intel.com>
  • Loading branch information
Lai Jiangshan authored and Tejun Heo committed Mar 12, 2013
1 parent 92266d6 commit cc2a8b1
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions include/linux/async.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
typedef u64 async_cookie_t;
typedef void (async_func_ptr) (void *data, async_cookie_t cookie);
struct async_domain {
struct list_head node;
struct list_head pending;
unsigned registered:1;
};
Expand All @@ -27,17 +26,15 @@ struct async_domain {
* domain participates in global async_synchronize_full
*/
#define ASYNC_DOMAIN(_name) \
struct async_domain _name = { .node = LIST_HEAD_INIT(_name.node), \
.pending = LIST_HEAD_INIT(_name.pending), \
struct async_domain _name = { .pending = LIST_HEAD_INIT(_name.pending), \
.registered = 1 }

/*
* domain is free to go out of scope as soon as all pending work is
* complete, this domain does not participate in async_synchronize_full
*/
#define ASYNC_DOMAIN_EXCLUSIVE(_name) \
struct async_domain _name = { .node = LIST_HEAD_INIT(_name.node), \
.pending = LIST_HEAD_INIT(_name.pending), \
struct async_domain _name = { .pending = LIST_HEAD_INIT(_name.pending), \
.registered = 0 }

extern async_cookie_t async_schedule(async_func_ptr *ptr, void *data);
Expand Down

0 comments on commit cc2a8b1

Please sign in to comment.