Fix inverted logic on none elevator comparison
Commit d1d7e2689d
("cstyle: Resolve C style issues") inverted
the logic on the none elevator comparison. Fix this and make it
cstyle warning clean.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #4507
This commit is contained in:
parent
fbffa53a5c
commit
60a4ea3f94
|
@ -139,7 +139,7 @@ vdev_elevator_switch(vdev_t *v, char *elevator)
|
|||
return (0);
|
||||
|
||||
/* Leave existing scheduler when set to "none" */
|
||||
if (strncmp(elevator, "none", 4) && (strlen(elevator) == 4) == 0)
|
||||
if ((strncmp(elevator, "none", 4) == 0) && (strlen(elevator) == 4))
|
||||
return (0);
|
||||
|
||||
#ifdef HAVE_ELEVATOR_CHANGE
|
||||
|
|
Loading…
Reference in New Issue