public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] random number generator updates for 6.13-rc1
@ 2024-11-18  2:09 Jason A. Donenfeld
  2024-11-18  4:14 ` Stephen Rothwell
  2024-11-19 19:06 ` pr-tracker-bot
  0 siblings, 2 replies; 3+ messages in thread
From: Jason A. Donenfeld @ 2024-11-18  2:09 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel

Hi Linus,

This pull request contains a single series from Uros to replace uses of
#include <linux/random.h> with prandom.h or other more specific headers, as
needed, in order to avoid a circular header issue. Uros' goal is to be able to
use percpu.h from prandom.h, which will then allow him to define __percpu in
percpu.h rather than in compiler_types.h.

This has been sitting in next for most of the 6.12 cycle.

Please pull!

Thanks,
Jason

The following changes since commit 9852d85ec9d492ebef56dc5f229416c925758edc:

  Linux 6.12-rc1 (2024-09-29 15:06:19 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git tags/random-6.13-rc1-for-linus

for you to fetch changes up to d18c13697b4dcbf6a8f06c3d8e564c4f5ad1477c:

  prandom: Include <linux/percpu.h> in <linux/prandom.h> (2024-10-03 18:21:07 +0200)

----------------------------------------------------------------
Random number generator updates for Linux 6.13-rc1.
----------------------------------------------------------------

Uros Bizjak (19):
      x86/kaslr: Include <linux/prandom.h> instead of <linux/random.h>
      crypto: testmgr: Include <linux/prandom.h> instead of <linux/random.h>
      drm/i915/selftests: Include <linux/prandom.h> instead of <linux/random.h>
      drm/lib: Include <linux/prandom.h> instead of <linux/random.h>
      media: vivid: Include <linux/prandom.h> in vivid-vid-cap.c
      mtd: tests: Include <linux/prandom.h> instead of <linux/random.h>
      fscrypt: Include <linux/once.h> in fs/crypto/keyring.c
      scsi: libfcoe: Include <linux/prandom.h> instead of <linux/random.h>
      bpf: Include <linux/prandom.h> instead of <linux/random.h>
      lib/interval_tree_test.c: Include <linux/prandom.h> instead of <linux/random.h>
      kunit: string-stream-test: Include <linux/prandom.h>
      random32: Include <linux/prandom.h> instead of <linux/random.h>
      lib/rbtree-test: Include <linux/prandom.h> instead of <linux/random.h>
      bpf/tests: Include <linux/prandom.h> instead of <linux/random.h>
      lib/test_parman: Include <linux/prandom.h> instead of <linux/random.h>
      lib/test_scanf: Include <linux/prandom.h> instead of <linux/random.h>
      netem: Include <linux/prandom.h> in sch_netem.c
      random: Do not include <linux/prandom.h> in <linux/random.h>
      prandom: Include <linux/percpu.h> in <linux/prandom.h>

 arch/x86/mm/kaslr.c                              | 2 +-
 crypto/testmgr.c                                 | 2 +-
 drivers/gpu/drm/i915/selftests/i915_gem.c        | 2 +-
 drivers/gpu/drm/i915/selftests/i915_random.h     | 2 +-
 drivers/gpu/drm/i915/selftests/scatterlist.c     | 2 +-
 drivers/gpu/drm/lib/drm_random.h                 | 2 +-
 drivers/media/test-drivers/vivid/vivid-vid-cap.c | 1 +
 drivers/mtd/tests/oobtest.c                      | 2 +-
 drivers/mtd/tests/pagetest.c                     | 2 +-
 drivers/mtd/tests/subpagetest.c                  | 2 +-
 fs/crypto/keyring.c                              | 1 +
 include/linux/prandom.h                          | 1 +
 include/linux/random.h                           | 7 -------
 include/scsi/libfcoe.h                           | 2 +-
 kernel/bpf/core.c                                | 2 +-
 lib/interval_tree_test.c                         | 2 +-
 lib/kunit/string-stream-test.c                   | 1 +
 lib/random32.c                                   | 2 +-
 lib/rbtree_test.c                                | 2 +-
 lib/test_bpf.c                                   | 2 +-
 lib/test_parman.c                                | 2 +-
 lib/test_scanf.c                                 | 2 +-
 net/sched/sch_netem.c                            | 1 +
 23 files changed, 22 insertions(+), 24 deletions(-)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] random number generator updates for 6.13-rc1
  2024-11-18  2:09 [GIT PULL] random number generator updates for 6.13-rc1 Jason A. Donenfeld
@ 2024-11-18  4:14 ` Stephen Rothwell
  2024-11-19 19:06 ` pr-tracker-bot
  1 sibling, 0 replies; 3+ messages in thread
From: Stephen Rothwell @ 2024-11-18  4:14 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Jason A. Donenfeld, linux-kernel, Dave Airlie, DRI

[-- Attachment #1: Type: text/plain, Size: 668 bytes --]

Hi all,

On Mon, 18 Nov 2024 03:09:39 +0100 "Jason A. Donenfeld" <Jason@zx2c4.com> wrote:
>
> This pull request contains a single series from Uros to replace uses of
> #include <linux/random.h> with prandom.h or other more specific headers, as
> needed, in order to avoid a circular header issue. Uros' goal is to be able to
> use percpu.h from prandom.h, which will then allow him to define __percpu in
> percpu.h rather than in compiler_types.h.
> 
> This has been sitting in next for most of the 6.12 cycle.

One conflict against the DRM tree.

https://lore.kernel.org/lkml/20241010153855.588ec772@canb.auug.org.au/

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] random number generator updates for 6.13-rc1
  2024-11-18  2:09 [GIT PULL] random number generator updates for 6.13-rc1 Jason A. Donenfeld
  2024-11-18  4:14 ` Stephen Rothwell
@ 2024-11-19 19:06 ` pr-tracker-bot
  1 sibling, 0 replies; 3+ messages in thread
From: pr-tracker-bot @ 2024-11-19 19:06 UTC (permalink / raw)
  To: Jason A. Donenfeld; +Cc: Linus Torvalds, linux-kernel

The pull request you sent on Mon, 18 Nov 2024 03:09:39 +0100:

> https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git tags/random-6.13-rc1-for-linus

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/8a7fa81137fabb5d86be5825e03d28c371d178d6

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-11-19 19:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-18  2:09 [GIT PULL] random number generator updates for 6.13-rc1 Jason A. Donenfeld
2024-11-18  4:14 ` Stephen Rothwell
2024-11-19 19:06 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox