<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pm24.git/Makefile, branch v4.19-rc7</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>https://git.kobert.dev/pm24.git/atom/Makefile?h=v4.19-rc7</id>
<link rel='self' href='https://git.kobert.dev/pm24.git/atom/Makefile?h=v4.19-rc7'/>
<link rel='alternate' type='text/html' href='https://git.kobert.dev/pm24.git/'/>
<updated>2018-10-07T15:26:02Z</updated>
<entry>
<title>Linux 4.19-rc7</title>
<updated>2018-10-07T15:26:02Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-10-07T15:26:02Z</published>
<link rel='alternate' type='text/html' href='https://git.kobert.dev/pm24.git/commit/?id=0238df646e6224016a45505d2c111a24669ebe21'/>
<id>urn:sha1:0238df646e6224016a45505d2c111a24669ebe21</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.19-rc6</title>
<updated>2018-09-30T14:15:35Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-09-30T14:15:35Z</published>
<link rel='alternate' type='text/html' href='https://git.kobert.dev/pm24.git/commit/?id=17b57b1883c1285f3d0dc2266e8f79286a7bef38'/>
<id>urn:sha1:17b57b1883c1285f3d0dc2266e8f79286a7bef38</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Linux 4.19-rc5</title>
<updated>2018-09-23T17:15:18Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-09-23T17:15:18Z</published>
<link rel='alternate' type='text/html' href='https://git.kobert.dev/pm24.git/commit/?id=6bf4ca7fbc85d80446ac01c0d1d77db4d91a6d84'/>
<id>urn:sha1:6bf4ca7fbc85d80446ac01c0d1d77db4d91a6d84</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge tag 'linux-kselftest-4.19-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest</title>
<updated>2018-09-17T05:24:28Z</updated>
<author>
<name>Greg Kroah-Hartman</name>
<email>gregkh@linuxfoundation.org</email>
</author>
<published>2018-09-17T05:24:28Z</published>
<link rel='alternate' type='text/html' href='https://git.kobert.dev/pm24.git/commit/?id=c0747ad363fff90c2edf490fc089e3ae0920b410'/>
<id>urn:sha1:c0747ad363fff90c2edf490fc089e3ae0920b410</id>
<content type='text'>
Pulled kselftest fixes from Shuah:
 "This Kselftest fixes update for 4.9-rc5 consists of:

  -- fixes to build failures
  -- fixes to add missing config files to increase test coverage
  -- fixes to cgroup test and a new cgroup test for memory.oom.group"
</content>
</entry>
<entry>
<title>Linux 4.19-rc4</title>
<updated>2018-09-16T18:52:37Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2018-09-16T18:52:37Z</published>
<link rel='alternate' type='text/html' href='https://git.kobert.dev/pm24.git/commit/?id=7876320f88802b22d4e2daf7eb027dd14175a0f8'/>
<id>urn:sha1:7876320f88802b22d4e2daf7eb027dd14175a0f8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tracing/Makefile: Fix handling redefinition of CC_FLAGS_FTRACE</title>
<updated>2018-09-12T18:32:18Z</updated>
<author>
<name>Paulo Zanoni</name>
<email>paulo.r.zanoni@intel.com</email>
</author>
<published>2018-09-10T17:59:56Z</published>
<link rel='alternate' type='text/html' href='https://git.kobert.dev/pm24.git/commit/?id=b1f4ff74fcb0e82664e8633cc225c2ad4234878a'/>
<id>urn:sha1:b1f4ff74fcb0e82664e8633cc225c2ad4234878a</id>
<content type='text'>
As a Kernel developer, I make heavy use of "make targz-pkg" in order
to locally compile and remotely install my development Kernels. The
nice feature I rely on is that after a normal "make", "make targz-pkg"
only generates the tarball without having to recompile everything.

That was true until commit f28bc3c32c05 ("tracing: Handle
CC_FLAGS_FTRACE more accurately"). After it, running "make targz-pkg"
after "make" will recompile the whole Kernel tree, making my
development workflow much slower.

The Kernel is choosing to recompile everything because it claims the
command line has changed. A diff of the .cmd files show a repeated
-mfentry in one of the files. That is because "make targz-pkg" calls
"make modules_install" and the environment is already populated with
the exported variables, CC_FLAGS_FTRACE being one of them. Then,
-mfentry gets duplicated because it is not protected behind an ifndef
block, like -pg.

To complicate the problem a little bit more, architectures can define
their own version CC_FLAGS_FTRACE, so our code not only has to
consider recursive Makefiles, but also architecture overrides.

So in this patch we move CC_FLAGS_FTRACE up and unconditionally
define it to -pg. Then we let the architecture Makefiles possibly
override it, and finally append the extra options later. This ensures
the variable is always fully redefined at each invocation so recursive
Makefiles don't keep appending, and hopefully it maintains the
intended behavior on how architectures can override the defaults..

Thanks Steven Rostedt and Vasily Gorbik for the help on this
regression.

Cc: Michal Marek &lt;michal.lkml@markovi.net&gt;
Cc: Ingo Molnar &lt;mingo@redhat.com&gt;
Cc: Tvrtko Ursulin &lt;tvrtko.ursulin@intel.com&gt;
Cc: linux-kbuild@vger.kernel.org
Fixes: commit f28bc3c32c05 ("tracing: Handle CC_FLAGS_FTRACE more accurately")
Acked-by: Vasily Gorbik &lt;gor@linux.ibm.com&gt;
Signed-off-by: Paulo Zanoni &lt;paulo.r.zanoni@intel.com&gt;
Signed-off-by: Steven Rostedt (VMware) &lt;rostedt@goodmis.org&gt;
</content>
</entry>
<entry>
<title>Linux 4.19-rc3</title>
<updated>2018-09-10T00:26:43Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2018-09-10T00:26:43Z</published>
<link rel='alternate' type='text/html' href='https://git.kobert.dev/pm24.git/commit/?id=11da3a7f84f19c26da6f86af878298694ede0804'/>
<id>urn:sha1:11da3a7f84f19c26da6f86af878298694ede0804</id>
<content type='text'>
</content>
</entry>
<entry>
<title>selftests: add headers_install to lib.mk</title>
<updated>2018-09-05T14:12:09Z</updated>
<author>
<name>Anders Roxell</name>
<email>anders.roxell@linaro.org</email>
</author>
<published>2018-09-04T10:47:21Z</published>
<link rel='alternate' type='text/html' href='https://git.kobert.dev/pm24.git/commit/?id=b2d35fa5fc80c27e868e393dcab4c94a0d71737f'/>
<id>urn:sha1:b2d35fa5fc80c27e868e393dcab4c94a0d71737f</id>
<content type='text'>
If the kernel headers aren't installed we can't build all the tests.
Add a new make target rule 'khdr' in the file lib.mk to generate the
kernel headers and that gets include for every test-dir Makefile that
includes lib.mk If the testdir in turn have its own sub-dirs the
top_srcdir needs to be set to the linux-rootdir to be able to generate
the kernel headers.

Signed-off-by: Anders Roxell &lt;anders.roxell@linaro.org&gt;
Reviewed-by: Fathi Boudra &lt;fathi.boudra@linaro.org&gt;
Signed-off-by: Shuah Khan (Samsung OSG) &lt;shuah@kernel.org&gt;
</content>
</entry>
<entry>
<title>Linux 4.19-rc2</title>
<updated>2018-09-02T21:37:30Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@linux-foundation.org</email>
</author>
<published>2018-09-02T21:37:30Z</published>
<link rel='alternate' type='text/html' href='https://git.kobert.dev/pm24.git/commit/?id=57361846b52bc686112da6ca5368d11210796804'/>
<id>urn:sha1:57361846b52bc686112da6ca5368d11210796804</id>
<content type='text'>
</content>
</entry>
<entry>
<title>disable stringop truncation warnings for now</title>
<updated>2018-08-31T01:15:34Z</updated>
<author>
<name>Stephen Rothwell</name>
<email>sfr@canb.auug.org.au</email>
</author>
<published>2018-08-30T21:47:28Z</published>
<link rel='alternate' type='text/html' href='https://git.kobert.dev/pm24.git/commit/?id=217c3e0196758662aa0429863b09d1c13da1c5d6'/>
<id>urn:sha1:217c3e0196758662aa0429863b09d1c13da1c5d6</id>
<content type='text'>
They are too noisy

Signed-off-by: Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
</entry>
</feed>
