Re: [PATCH 5/7] proc/kcore: clean up ELF header generation

2018-07-07 Thread Omar Sandoval
On Sat, Jul 07, 2018 at 06:05:17PM +0800, kbuild test robot wrote: > Hi Omar, > > Thank you for the patch! Perhaps something to improve: > > [auto build test WARNING on linus/master] > [also build test WARNING on v4.18-rc3 next-20180706] > [if your patch is applied to the wrong git tree, please d

Re: [PATCH 5/7] proc/kcore: clean up ELF header generation

2018-07-07 Thread kbuild test robot
Hi Omar, Thank you for the patch! Perhaps something to improve: [auto build test WARNING on linus/master] [also build test WARNING on v4.18-rc3 next-20180706] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/l

[PATCH 5/7] proc/kcore: clean up ELF header generation

2018-07-06 Thread Omar Sandoval
From: Omar Sandoval Currently, the ELF file header, program headers, and note segment are allocated all at once, in some icky code dating back to 2.3. Programs tend to read the file header, then the program headers, then the note segment, all separately, so this is a waste of effort. It's cleaner