Skip to content

Commit 0daf10c

Browse files
committed
maple_tree-add-mas_next_range-and-mas_find_range-interfaces-checkpatch-fixes
ERROR: Macros with complex values should be enclosed in parentheses #58: FILE: include/linux/maple_tree.h:544: +#define mas_contiguous(__mas, __entry, __max) \ + while (((__entry) = mas_find_range((__mas), (__max))) != NULL) WARNING: suspect code indent for conditional statements (8, 12) torvalds#285: FILE: lib/maple_tree.c:6136: + if (mas_find_setup(mas, max, &entry)) + return entry; WARNING: Statements should start on a tabstop torvalds#286: FILE: lib/maple_tree.c:6137: + return entry; total: 1 errors, 2 warnings, 284 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. ./patches/maple_tree-add-mas_next_range-and-mas_find_range-interfaces.patch has style problems, please review. NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: "Liam R. Howlett" <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent 01cca62 commit 0daf10c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/maple_tree.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6134,7 +6134,7 @@ void *mas_find(struct ma_state *mas, unsigned long max)
61346134
void *entry = NULL;
61356135

61366136
if (mas_find_setup(mas, max, &entry))
6137-
return entry;
6137+
return entry;
61386138

61396139
/* Retries on dead nodes handled by mas_next_slot */
61406140
return mas_next_slot(mas, max, false);

0 commit comments

Comments
 (0)