<feed xmlns='http://www.w3.org/2005/Atom'>
<title>user/sven/linux.git/Makefile, branch v4.14.53</title>
<subtitle>Linux Kernel
</subtitle>
<id>https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=v4.14.53</id>
<link rel='self' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/atom?h=v4.14.53'/>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/'/>
<updated>2018-07-03T09:25:05Z</updated>
<entry>
<title>Linux 4.14.53</title>
<updated>2018-07-03T09:25:05Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-07-03T09:25:05Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=fa745a1bd983b601c3f9c081ebf07dad9e0e3cb9'/>
<id>urn:sha1:fa745a1bd983b601c3f9c081ebf07dad9e0e3cb9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.14.52</title>
<updated>2018-06-26T00:06:33Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-06-26T00:06:33Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=a26899e0baa4de07caf97f5e4d7298240e98fd0e'/>
<id>urn:sha1:a26899e0baa4de07caf97f5e4d7298240e98fd0e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.14.51</title>
<updated>2018-06-20T19:03:02Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-06-20T19:03:02Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=33445c07cd45541410fb4cabd08b10827764c07f'/>
<id>urn:sha1:33445c07cd45541410fb4cabd08b10827764c07f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.14.50</title>
<updated>2018-06-16T07:45:18Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-06-16T07:45:18Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=cda6fd4d9382205bb792255cd56a91062d404bc0'/>
<id>urn:sha1:cda6fd4d9382205bb792255cd56a91062d404bc0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.14.49</title>
<updated>2018-06-11T20:49:22Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-06-11T20:49:22Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=70d7bbd9b504c1dde0dc44a469a513695d9cbdd6'/>
<id>urn:sha1:70d7bbd9b504c1dde0dc44a469a513695d9cbdd6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.14.48</title>
<updated>2018-06-05T09:42:00Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-06-05T09:42:00Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=2c6025ebc7fd8e0a8ca785d778dc6ae25225744b'/>
<id>urn:sha1:2c6025ebc7fd8e0a8ca785d778dc6ae25225744b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>kbuild: clang: disable unused variable warnings only when constant</title>
<updated>2018-06-05T09:41:57Z</updated>
<author>
<name>Sodagudi Prasad</name>
<email>psodagud@codeaurora.org</email>
</author>
<published>2018-02-06T23:46:51Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=96b086a7bfe575c3626cf2a9af301539c2623b9b'/>
<id>urn:sha1:96b086a7bfe575c3626cf2a9af301539c2623b9b</id>
<content type='text'>
commit 0a5f41767444cc3b4fc5573921ab914b4f78baaa upstream.

Currently, GCC disables -Wunused-const-variable, but not
-Wunused-variable, so warns unused variables if they are
non-constant.

While, Clang does not warn unused variables at all regardless of
the const qualifier because -Wno-unused-const-variable is implied
by the stronger option -Wno-unused-variable.

Disable -Wunused-const-variable instead of -Wunused-variable so that
GCC and Clang work in the same way.

Signed-off-by: Prasad Sodagudi &lt;psodagud@codeaurora.org&gt;
Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Cc: Guenter Roeck &lt;linux@roeck-us.net&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

</content>
</entry>
<entry>
<title>kbuild: clang: remove crufty HOSTCFLAGS</title>
<updated>2018-06-05T09:41:57Z</updated>
<author>
<name>Nick Desaulniers</name>
<email>nick.desaulniers@gmail.com</email>
</author>
<published>2017-10-07T20:23:23Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=151b144bc60268db7dfe3ef91ce5a4cb756677ae'/>
<id>urn:sha1:151b144bc60268db7dfe3ef91ce5a4cb756677ae</id>
<content type='text'>
commit df16aaac26e92e97ab7234d3f93c953466adc4b5 upstream.

When compiling with `make CC=clang HOSTCC=clang`, I was seeing warnings
that clang did not recognize -fno-delete-null-pointer-checks for HOSTCC
targets.  These were added in commit 61163efae020 ("kbuild: LLVMLinux:
Add Kbuild support for building kernel with Clang").

Clang does not support -fno-delete-null-pointer-checks, so adding it to
HOSTCFLAGS if HOSTCC is clang does not make sense.

It's not clear why the other warnings were disabled, and just for
HOSTCFLAGS, but I can remove them, add -Werror to HOSTCFLAGS and compile
with clang just fine.

Suggested-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Signed-off-by: Nick Desaulniers &lt;nick.desaulniers@gmail.com&gt;
Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;
Cc: Guenter Roeck &lt;linux@roeck-us.net&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

</content>
</entry>
<entry>
<title>Linux 4.14.47</title>
<updated>2018-05-30T20:32:31Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-05-30T20:32:31Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=57a3ca7835962109d94533465a75e8c716b26845'/>
<id>urn:sha1:57a3ca7835962109d94533465a75e8c716b26845</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.14.46</title>
<updated>2018-05-30T10:19:59Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-05-30T10:19:59Z</published>
<link rel='alternate' type='text/html' href='https://git.stealer.net/cgit.cgi/user/sven/linux.git/commit/?id=bf4367d790c514490896f29085d9fa3defa28513'/>
<id>urn:sha1:bf4367d790c514490896f29085d9fa3defa28513</id>
<content type='text'>
</content>
</entry>
</feed>
