Re: [PATCH] Check all .c files for bad kernel-doc comments

2017-11-20 Thread Jonathan Corbet
On Mon, 20 Nov 2017 10:40:40 -0800 Matthew Wilcox wrote: > > ifeq ($(KBUILD_ENABLE_EXTRA_GCC_CHECKS),) > > cmd_checkdoc = $(srctree)/scripts/kernel-doc -none $< ; > > endif > > Thanks! v2 below. Jon, could you apply? Done, thanks. jon -- To unsubscribe from this list:

Re: [PATCH] Check all .c files for bad kernel-doc comments

2017-10-31 Thread Jani Nikula
On Mon, 30 Oct 2017, Matthew Wilcox wrote: > On Mon, Oct 30, 2017 at 05:19:18PM +0200, Jani Nikula wrote: >> Related, there was also a script to do reStructuredText lint style >> checks in addition to the kernel-doc checks using make CHECK and >> C=1. See

Re: [PATCH] Check all .c files for bad kernel-doc comments

2017-10-30 Thread Matthew Wilcox
On Mon, Oct 30, 2017 at 05:19:18PM +0200, Jani Nikula wrote: > Related, there was also a script to do reStructuredText lint style > checks in addition to the kernel-doc checks using make CHECK and > C=1. See http://mid.mail-archive.com/87h98quc1w.fsf@intel.com I don't really care which patch goes

Re: [PATCH] Check all .c files for bad kernel-doc comments

2017-10-30 Thread Jani Nikula
On Mon, 30 Oct 2017, Matthew Wilcox wrote: > On Mon, Oct 30, 2017 at 12:40:20PM +0900, Masahiro Yamada wrote: >> 2017-10-28 4:41 GMT+09:00 Matthew Wilcox : >> > Implement a '-none' output mode for kernel-doc which will only output >> > warning messages,

Re: [PATCH] Check all .c files for bad kernel-doc comments

2017-10-30 Thread Masahiro Yamada
Hi Matthew, 2017-10-30 22:40 GMT+09:00 Matthew Wilcox : > On Mon, Oct 30, 2017 at 12:40:20PM +0900, Masahiro Yamada wrote: >> 2017-10-28 4:41 GMT+09:00 Matthew Wilcox : >> > Implement a '-none' output mode for kernel-doc which will only output >> >

Re: [PATCH] Check all .c files for bad kernel-doc comments

2017-10-30 Thread Matthew Wilcox
On Mon, Oct 30, 2017 at 12:40:20PM +0900, Masahiro Yamada wrote: > 2017-10-28 4:41 GMT+09:00 Matthew Wilcox : > > Implement a '-none' output mode for kernel-doc which will only output > > warning messages, and suppresses the warning message about there being > > no kernel-doc

Re: [PATCH] Check all .c files for bad kernel-doc comments

2017-10-29 Thread Masahiro Yamada
Hi Matthew, 2017-10-28 4:41 GMT+09:00 Matthew Wilcox : > From: Matthew Wilcox > > Implement a '-none' output mode for kernel-doc which will only output > warning messages, and suppresses the warning message about there being > no kernel-doc in the

Re: [PATCH] Check all .c files for bad kernel-doc comments

2017-10-29 Thread kbuild test robot
Hi Matthew, I love your patch! Perhaps something to improve: [auto build test WARNING on linus/master] [also build test WARNING on v4.14-rc6 next-20171018] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH] Check all .c files for bad kernel-doc comments

2017-10-29 Thread kbuild test robot
Hi Matthew, I love your patch! Perhaps something to improve: [auto build test WARNING on linus/master] [also build test WARNING on v4.14-rc6 next-20171018] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

[PATCH] Check all .c files for bad kernel-doc comments

2017-10-27 Thread Matthew Wilcox
From: Matthew Wilcox Implement a '-none' output mode for kernel-doc which will only output warning messages, and suppresses the warning message about there being no kernel-doc in the file. Add it to the rule to build .o files from .c files, so it will check all .c files