mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
Staging: lustre: libcfs: Fix switch-case indent
This patch fixes the following checkpatch error:j ERROR: switch and case should be at the same indent 105: FILE: drivers/staging/lustre/lustre/libcfs/fail.c:105: Signed-off-by: Tina Ruchandani <ruchandani.tina@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
907cd2485b
commit
464289d876
@ -103,18 +103,18 @@ int __cfs_fail_check_set(__u32 id, __u32 value, int set)
|
||||
}
|
||||
|
||||
switch (set) {
|
||||
case CFS_FAIL_LOC_NOSET:
|
||||
case CFS_FAIL_LOC_VALUE:
|
||||
break;
|
||||
case CFS_FAIL_LOC_ORSET:
|
||||
cfs_fail_loc |= value & ~(CFS_FAILED | CFS_FAIL_ONCE);
|
||||
break;
|
||||
case CFS_FAIL_LOC_RESET:
|
||||
cfs_fail_loc = value;
|
||||
break;
|
||||
default:
|
||||
LASSERTF(0, "called with bad set %u\n", set);
|
||||
break;
|
||||
case CFS_FAIL_LOC_NOSET:
|
||||
case CFS_FAIL_LOC_VALUE:
|
||||
break;
|
||||
case CFS_FAIL_LOC_ORSET:
|
||||
cfs_fail_loc |= value & ~(CFS_FAILED | CFS_FAIL_ONCE);
|
||||
break;
|
||||
case CFS_FAIL_LOC_RESET:
|
||||
cfs_fail_loc = value;
|
||||
break;
|
||||
default:
|
||||
LASSERTF(0, "called with bad set %u\n", set);
|
||||
break;
|
||||
}
|
||||
|
||||
return 1;
|
||||
|
Loading…
Reference in New Issue
Block a user