mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 03:44:45 +01:00
block/rnbd-clt: fix CHECK:BRACES warning
This patch fix the "CHECK:BRACES: braces {} should be used on all
arms of this statement" warning from checkpatch
Signed-off-by: Gioh Kim <gi-oh.kim@ionos.com>
Signed-off-by: Md Haris Iqbal <haris.iqbal@ionos.com>
Link: https://lore.kernel.org/r/20220114155855.984144-2-haris.iqbal@ionos.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
451f0b6f4c
commit
4a09a845c1
1 changed files with 2 additions and 2 deletions
|
|
@ -1262,9 +1262,9 @@ find_and_get_or_create_sess(const char *sessname,
|
|||
struct rtrs_clt_ops rtrs_ops;
|
||||
|
||||
sess = find_or_create_sess(sessname, &first);
|
||||
if (sess == ERR_PTR(-ENOMEM))
|
||||
if (sess == ERR_PTR(-ENOMEM)) {
|
||||
return ERR_PTR(-ENOMEM);
|
||||
else if ((nr_poll_queues && !first) || (!nr_poll_queues && sess->nr_poll_queues)) {
|
||||
} else if ((nr_poll_queues && !first) || (!nr_poll_queues && sess->nr_poll_queues)) {
|
||||
/*
|
||||
* A device MUST have its own session to use the polling-mode.
|
||||
* It must fail to map new device with the same session.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue