]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
io-wq: remove extra space characters
authorDan Carpenter <dan.carpenter@oracle.com>
Tue, 19 Nov 2019 06:22:16 +0000 (09:22 +0300)
committerJens Axboe <axboe@kernel.dk>
Tue, 26 Nov 2019 02:56:05 +0000 (19:56 -0700)
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>
fs/io-wq.c

index 243eb1d4d2bdb7cd0e66067d332d37964cf35c2d..b4bc377dda619e6fbffffb772dcc83b883f8b63f 100644 (file)
@@ -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;