aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/io-wq.c
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2019-11-19 09:22:16 +0300
committerJens Axboe <axboe@kernel.dk>2019-11-25 19:56:05 -0700
commitb2e9c7d64b7ecacc1d0f15a6af88a73cab7d8db9 (patch)
treef100665802ff6920bc116eced3ad1dc3d2837518 /fs/io-wq.c
parentio-wq: wait for io_wq_create() to setup necessary workers (diff)
downloadwireguard-linux-b2e9c7d64b7ecacc1d0f15a6af88a73cab7d8db9.tar.xz
wireguard-linux-b2e9c7d64b7ecacc1d0f15a6af88a73cab7d8db9.zip
io-wq: remove extra space characters
These lines are indented an extra space character. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/io-wq.c')
-rw-r--r--fs/io-wq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/io-wq.c b/fs/io-wq.c
index 243eb1d4d2bd..b4bc377dda61 100644
--- a/fs/io-wq.c
+++ b/fs/io-wq.c
@@ -328,9 +328,9 @@ static void __io_worker_busy(struct io_wqe *wqe, struct io_worker *worker,
* If worker is moving from bound to unbound (or vice versa), then
* ensure we update the running accounting.
*/
- worker_bound = (worker->flags & IO_WORKER_F_BOUND) != 0;
- work_bound = (work->flags & IO_WQ_WORK_UNBOUND) == 0;
- if (worker_bound != work_bound) {
+ worker_bound = (worker->flags & IO_WORKER_F_BOUND) != 0;
+ work_bound = (work->flags & IO_WQ_WORK_UNBOUND) == 0;
+ if (worker_bound != work_bound) {
io_wqe_dec_running(wqe, worker);
if (work_bound) {
worker->flags |= IO_WORKER_F_BOUND;