All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org,
	Peter Zijlstra <peterz@infradead.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Will Deacon <will@kernel.org>, Waiman Long <longman@redhat.com>,
	Boqun Feng <boqun.feng@gmail.com>, Borislav Petkov <bp@alien8.de>,
	Uros Bizjak <ubizjak@gmail.com>,
	Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
	Gary Guo <gary@garyguo.net>, Oleg Nesterov <oleg@redhat.com>
Subject: [GIT PULL] locking updates for v6.19
Date: Mon, 1 Dec 2025 09:53:05 +0100	[thread overview]
Message-ID: <aS1XcYC3mxhooU7s@gmail.com> (raw)
In-Reply-To: <aNanBZ9VbIO2CO9x@gmail.com>

Linus,

Please pull the latest locking/core Git tree from:

   git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking-core-2025-12-01

   # HEAD: 43decb6b628eb033a1b6188e5018773c0d38be1d locking/local_lock: Fix all kernel-doc warnings

   #
   # MERGE NOTE: Had to rebase the final 4 commits due to a SOB chain fail.
   #

Locking updates for v6.19:

Mutexes:

 - Redo __mutex_init() to reduce generated code size
   (Sebastian Andrzej Siewior)

Seqlocks:

 - Introduce scoped_seqlock_read() (Peter Zijlstra)

 - Change thread_group_cputime() to use scoped_seqlock_read()
   (Oleg Nesterov)

 - Change do_task_stat() to use scoped_seqlock_read()
   (Oleg Nesterov)

 - Change do_io_accounting() to use scoped_seqlock_read()
   (Oleg Nesterov)

 - Fix the incorrect documentation of read_seqbegin_or_lock() /
   need_seqretry() (Oleg Nesterov)

 - Allow KASAN to fail optimizing (Peter Zijlstra)

Local lock updates:

 - Fix all kernel-doc warnings (Randy Dunlap)

 - Add the <linux/local_lock*.h> headers to MAINTAINERS
   (Sebastian Andrzej Siewior)

 - Reduce the risk of shadowing via s/l/__l/ and s/tl/__tl/
   (Vincent Mailhol)

Lock debugging:

 - spinlock/debug: Fix data-race in do_raw_write_lock
   (Alexander Sverdlin)

Atomic primitives infrastructure:

 - atomic: Skip alignment check for try_cmpxchg() old arg
   (Arnd Bergmann)

Rust runtime integration:

 - sync: atomic: Enable generated Atomic<T> usage (Boqun Feng)

 - sync: atomic: Implement Debug for Atomic<Debug> (Boqun Feng)

 - debugfs: Remove Rust native atomics and replace them with
   Linux versions (Boqun Feng)

 - debugfs: Implement Reader for Mutex<T> only when T is Unpin
   (Boqun Feng)

 - lock: guard: Add T: Unpin bound to DerefMut (Daniel Almeida)

 - lock: Pin the inner data (Daniel Almeida)

 - lock: Add a Pin<&mut T> accessor (Daniel Almeida)

 Thanks,

	Ingo

------------------>
Alexander Sverdlin (1):
      locking/spinlock/debug: Fix data-race in do_raw_write_lock

Arnd Bergmann (1):
      atomic: Skip alignment check for try_cmpxchg() old arg

Boqun Feng (4):
      rust: debugfs: Implement Reader for Mutex<T> only when T is Unpin
      rust: sync: atomic: Make Atomic*Ops pub(crate)
      rust: sync: atomic: Implement Debug for Atomic<Debug>
      rust: debugfs: Replace the usage of Rust native atomics

Daniel Almeida (3):
      rust: lock: guard: Add T: Unpin bound to DerefMut
      rust: lock: Pin the inner data
      rust: lock: Add a Pin<&mut T> accessor

Oleg Nesterov (4):
      documentation: seqlock: fix the wrong documentation of read_seqbegin_or_lock/need_seqretry
      seqlock: Change thread_group_cputime() to use scoped_seqlock_read()
      seqlock: Change do_task_stat() to use scoped_seqlock_read()
      seqlock: Change do_io_accounting() to use scoped_seqlock_read()

Peter Zijlstra (2):
      seqlock: Introduce scoped_seqlock_read()
      seqlock: Allow KASAN to fail optimizing

Randy Dunlap (1):
      locking/local_lock: Fix all kernel-doc warnings

Sebastian Andrzej Siewior (2):
      locking/mutex: Redo __mutex_init() to reduce generated code size
      locking/local_lock: Add the <linux/local_lock*.h> headers to MAINTAINERS

Vincent Mailhol (1):
      locking/local_lock: s/l/__l/ and s/tl/__tl/ to reduce the risk of shadowing


 Documentation/locking/seqlock.rst          |   9 ++-
 MAINTAINERS                                |   1 +
 fs/proc/array.c                            |   9 +--
 fs/proc/base.c                             |  13 +---
 include/linux/atomic/atomic-instrumented.h |  26 +++----
 include/linux/local_lock.h                 |   4 +-
 include/linux/local_lock_internal.h        |  62 ++++++++--------
 include/linux/mutex.h                      |  45 +++++++++---
 include/linux/seqlock.h                    | 114 +++++++++++++++++++++++++++++
 kernel/locking/mutex-debug.c               |  10 +--
 kernel/locking/mutex.c                     |  28 +++++--
 kernel/locking/mutex.h                     |   5 +-
 kernel/locking/rtmutex_api.c               |  19 ++++-
 kernel/locking/spinlock_debug.c            |   4 +-
 kernel/sched/cputime.c                     |  20 ++---
 rust/kernel/debugfs/traits.rs              |  55 +++++---------
 rust/kernel/sync/atomic.rs                 |  12 ++-
 rust/kernel/sync/lock.rs                   |  41 ++++++++++-
 rust/kernel/sync/lock/global.rs            |   5 +-
 samples/rust/rust_debugfs.rs               |  12 ++-
 samples/rust/rust_debugfs_scoped.rs        |   6 +-
 scripts/atomic/gen-atomic-instrumented.sh  |  11 ++-
 22 files changed, 339 insertions(+), 172 deletions(-)

  parent reply	other threads:[~2025-12-01  8:53 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-26 14:45 [GIT PULL] locking changes for v6.18 Ingo Molnar
2025-09-26 15:55 ` Boqun Feng
2025-09-30 21:03 ` pr-tracker-bot
2025-12-01  8:53 ` Ingo Molnar [this message]
2025-12-02  5:54   ` [GIT PULL] locking updates for v6.19 pr-tracker-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=aS1XcYC3mxhooU7s@gmail.com \
    --to=mingo@kernel.org \
    --cc=bigeasy@linutronix.de \
    --cc=boqun.feng@gmail.com \
    --cc=bp@alien8.de \
    --cc=gary@garyguo.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=longman@redhat.com \
    --cc=oleg@redhat.com \
    --cc=peterz@infradead.org \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    --cc=ubizjak@gmail.com \
    --cc=will@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.