1. 09 Apr, 2024 4 commits
  2. 08 Apr, 2024 22 commits
  3. 01 Apr, 2024 1 commit
    • Hans Verkuil's avatar
      Merge tag 'v6.9-rc2' into media_stage · b8277964
      Hans Verkuil authored
      Linux 6.9-rc2
      
      This is needed to pull in commit 11763a85 ("fs/9p: fix uaf in
      in v9fs_stat2inode_dotl"), which fixes the broken virtme. With this
      fix the media regression tests can be run again without crashing.
      b8277964
  4. 31 Mar, 2024 12 commits
  5. 30 Mar, 2024 1 commit
    • Mikulas Patocka's avatar
      objtool: Fix compile failure when using the x32 compiler · 6205125b
      Mikulas Patocka authored
      When compiling the v6.9-rc1 kernel with the x32 compiler, the following
      errors are reported. The reason is that we take an "unsigned long"
      variable and print it using "PRIx64" format string.
      
      	In file included from check.c:16:
      	check.c: In function ‘add_dead_ends’:
      	/usr/src/git/linux-2.6/tools/objtool/include/objtool/warn.h:46:17: error: format ‘%llx’ expects argument of type ‘long long unsigned int’, but argument 5 has type ‘long unsigned int’ [-Werror=format=]
      	   46 |                 "%s: warning: objtool: " format "\n",   \
      	      |                 ^~~~~~~~~~~~~~~~~~~~~~~~
      	check.c:613:33: note: in expansion of macro ‘WARN’
      	  613 |                                 WARN("can't find unreachable insn at %s+0x%" PRIx64,
      	      |                                 ^~~~
      	...
      Signed-off-by: default avatarMikulas Patocka <mpatocka@redhat.com>
      Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
      Cc: Josh Poimboeuf <jpoimboe@redhat.com>
      Cc: linux-kernel@vger.kernel.org
      6205125b