Re: [PATCH] kbuild: avoid split lines in .mod files

2020-12-15 Thread Masahiro Yamada
On Fri, Dec 4, 2020 at 3:46 AM 'Sami Tolvanen' via Clang Built Linux wrote: > > Hi Masahiro, > > On Thu, Dec 3, 2020 at 9:56 AM Masahiro Yamada wrote: > > > > "xargs echo" is not a safe way to remove line breaks because the input > > may exceed the command line limit and xargs may break it up int

Re: [PATCH] kbuild: avoid split lines in .mod files

2020-12-03 Thread Sami Tolvanen
Hi Masahiro, On Thu, Dec 3, 2020 at 9:56 AM Masahiro Yamada wrote: > > "xargs echo" is not a safe way to remove line breaks because the input > may exceed the command line limit and xargs may break it up into > multiple invocations of echo. This should never happen because > scripts/gen_autoksyms

[PATCH] kbuild: avoid split lines in .mod files

2020-12-03 Thread Masahiro Yamada
"xargs echo" is not a safe way to remove line breaks because the input may exceed the command line limit and xargs may break it up into multiple invocations of echo. This should never happen because scripts/gen_autoksyms.sh expects all undefined symbols are placed in the second line of .mod files.