Skip to content

Commit f9dc09b

Browse files
committed
kho-add-support-for-preserving-vmalloc-allocations-checkpatch-fixes
ERROR: code indent should use tabs where possible torvalds#38: FILE: include/linux/kexec_handover.h:44: + DECLARE_KHOSER_PTR(first, struct kho_vmalloc_chunk *);$ WARNING: please, no spaces at the start of a line torvalds#38: FILE: include/linux/kexec_handover.h:44: + DECLARE_KHOSER_PTR(first, struct kho_vmalloc_chunk *);$ ERROR: code indent should use tabs where possible torvalds#39: FILE: include/linux/kexec_handover.h:45: + unsigned int total_pages;$ WARNING: please, no spaces at the start of a line torvalds#39: FILE: include/linux/kexec_handover.h:45: + unsigned int total_pages;$ ERROR: code indent should use tabs where possible torvalds#40: FILE: include/linux/kexec_handover.h:46: + unsigned short flags;$ WARNING: please, no spaces at the start of a line torvalds#40: FILE: include/linux/kexec_handover.h:46: + unsigned short flags;$ ERROR: code indent should use tabs where possible torvalds#41: FILE: include/linux/kexec_handover.h:47: + unsigned short order;$ WARNING: please, no spaces at the start of a line torvalds#41: FILE: include/linux/kexec_handover.h:47: + unsigned short order;$ total: 4 errors, 4 warnings, 350 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. NOTE: Whitespace errors detected. You may wish to use scripts/cleanpatch or scripts/cleanfile ./patches/kho-add-support-for-preserving-vmalloc-allocations.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: "Mike Rapoport (Microsoft)" <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent 4dfe4f0 commit f9dc09b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/linux/kexec_handover.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ struct kho_serialization;
4141

4242
struct kho_vmalloc_chunk;
4343
struct kho_vmalloc {
44-
DECLARE_KHOSER_PTR(first, struct kho_vmalloc_chunk *);
45-
unsigned int total_pages;
46-
unsigned short flags;
47-
unsigned short order;
44+
DECLARE_KHOSER_PTR(first, struct kho_vmalloc_chunk *);
45+
unsigned int total_pages;
46+
unsigned short flags;
47+
unsigned short order;
4848
};
4949

5050
#ifdef CONFIG_KEXEC_HANDOVER

0 commit comments

Comments
 (0)