1. 08 Feb, 2023 8 commits
  2. 02 Feb, 2023 1 commit
  3. 01 Feb, 2023 4 commits
  4. 31 Jan, 2023 5 commits
  5. 30 Jan, 2023 1 commit
    • Stephen Rothwell's avatar
      driver core: fixup for "driver core: make struct bus_type.uevent() take a const *" · b7810ea8
      Stephen Rothwell authored
      After merging the driver-core tree, today's linux-next build (powerpc
      ppc64_defconfig) failed like this:
      
      arch/powerpc/platforms/ps3/system-bus.c:472:19: error: initialization of 'int (*)(const struct device *, struct kobj_uevent_env *)' from incompatible pointer type 'int (*)(struct device *, struct kobj_uevent_env *)' [-Werror=incompatible-pointer-types]
        472 |         .uevent = ps3_system_bus_uevent,
            |                   ^~~~~~~~~~~~~~~~~~~~~
      arch/powerpc/platforms/ps3/system-bus.c:472:19: note: (near initialization for 'ps3_system_bus_type.uevent')
      arch/powerpc/platforms/pseries/ibmebus.c:436:22: error: initialization of 'int (*)(const struct device *, struct kobj_uevent_env *)' from incompatible pointer type 'int (*)(struct device *, struct kobj_uevent_env *)' [-Werror=incompatible-pointer-types]
        436 |         .uevent    = ibmebus_bus_modalias,
            |                      ^~~~~~~~~~~~~~~~~~~~
      arch/powerpc/platforms/pseries/ibmebus.c:436:22: note: (near initialization for 'ibmebus_bus_type.uevent')
      Signed-off-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
      Fixes: 2a81ada3 ("driver core: make struct bus_type.uevent() take a const *")
      Link: https://lore.kernel.org/r/20230130152818.03c00ea3@canb.auug.org.auSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      b7810ea8
  6. 27 Jan, 2023 17 commits
  7. 23 Jan, 2023 1 commit
  8. 22 Jan, 2023 3 commits
    • Greg Kroah-Hartman's avatar
      Merge 6.2-rc5 into driver-core-next · f89fd043
      Greg Kroah-Hartman authored
      We need the driver core fixes in here as well.
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      f89fd043
    • Linus Torvalds's avatar
      Linux 6.2-rc5 · 2241ab53
      Linus Torvalds authored
      2241ab53
    • Linus Torvalds's avatar
      Merge tag 'io_uring-6.2-2023-01-21' of git://git.kernel.dk/linux · 95f184d0
      Linus Torvalds authored
      Pull another io_uring fix from Jens Axboe:
       "Just a single fix for a regression that happened in this release due
        to a poll change. Normally I would've just deferred it to next week,
        but since the original fix got picked up by stable, I think it's
        better to just send this one off separately.
      
        The issue is around the poll race fix, and how it mistakenly also got
        applied to multishot polling. Those don't need the race fix, and we
        should not be doing any reissues for that case. Exhaustive test cases
        were written and committed to the liburing regression suite for the
        reported issue, and additions for similar issues"
      
      * tag 'io_uring-6.2-2023-01-21' of git://git.kernel.dk/linux:
        io_uring/poll: don't reissue in case of poll race on multishot request
      95f184d0