diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2018-06-22 21:20:35 +0200 | 
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2018-06-22 21:20:35 +0200 | 
| commit | 7731b8bc94e599c9a79e428f3359ff2c34b7576a (patch) | |
| tree | 879f18ccbe274122f2d4f095b43cbc7f953e0ada /kernel/workqueue_internal.h | |
| parent | 48e315618dc4dc8904182cd221e3d395d5d97005 (diff) | |
| parent | 9ffc59d57228d74809700be6f7ecb1db10292f05 (diff) | |
Merge branch 'linus' into x86/urgent
Required to queue a dependent fix.
Diffstat (limited to 'kernel/workqueue_internal.h')
| -rw-r--r-- | kernel/workqueue_internal.h | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/workqueue_internal.h b/kernel/workqueue_internal.h index d390d1be3748..66fbb5a9e633 100644 --- a/kernel/workqueue_internal.h +++ b/kernel/workqueue_internal.h @@ -31,13 +31,12 @@ struct worker {  	struct work_struct	*current_work;	/* L: work being processed */  	work_func_t		current_func;	/* L: current_work's fn */  	struct pool_workqueue	*current_pwq; /* L: current_work's pwq */ -	bool			desc_valid;	/* ->desc is valid */  	struct list_head	scheduled;	/* L: scheduled works */  	/* 64 bytes boundary on 64bit, 32 on 32bit */  	struct task_struct	*task;		/* I: worker task */ -	struct worker_pool	*pool;		/* I: the associated pool */ +	struct worker_pool	*pool;		/* A: the associated pool */  						/* L: for rescuers */  	struct list_head	node;		/* A: anchored at pool->workers */  						/* A: runs through worker->node */  | 
