public inbox for linux-fsdevel@vger.kernel.org
 help / color / mirror / Atom feed
From: Christian Brauner <brauner@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Christian Brauner <brauner@kernel.org>,
	linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [GIT PULL 13/12 for v7.0] kernel misc
Date: Mon, 16 Feb 2026 13:29:20 +0100	[thread overview]
Message-ID: <20260216-kernel-misc-v70-899e4272dc4d@brauner> (raw)
In-Reply-To: <20260206-vfs-v70-7df0b750d594@brauner>

Hey Linus,

as announced in [1] this is one of pull requests that was delayed.

/* Summary */

- pid: introduce task_ppid_vnr() helper

- Revert "pid: make __task_pid_nr_ns(ns => NULL) safe for zombie callers"

- ipc: Add SPDX license id to mqueue.c

- pidfs: convert rb-tree to rhashtable

  Mateusz reported performance penalties during task creation because
  pidfs uses pidmap_lock to add elements into the rbtree. Switch to an
  rhashtable to have separate fine-grained locking and to decouple from
  pidmap_lock moving all heavy manipulations outside of it.

  Also move inode allocation outside of pidmap_lock. With this there's
  nothing happening for pidfs under pidmap_lock.

- pid: reorder fields in pid_namespace to reduce false sharing

Link: https://lore.kernel.org/20260206-vfs-v70-7df0b750d594@brauner [1]
/* Testing */

gcc (Debian 14.2.0-19) 14.2.0
Debian clang version 19.1.7 (3+b1)

No build failures or warnings were observed.

/* Conflicts */

Merge conflicts with mainline
=============================

No known conflicts.

Merge conflicts with other trees
================================

The following changes since commit 6cbfdf89470ef3c2110f376a507d135e7a7a7378:

  posix_acl: make posix_acl_to_xattr() alloc the buffer (2026-01-16 10:51:12 +0100)

are available in the Git repository at:

  git@gitolite.kernel.org:pub/scm/linux/kernel/git/vfs/vfs tags/kernel-7.0-rc1.misc

for you to fetch changes up to 3673dd3c7dc1f37baf0448164d323d7c7a44d1da:

  Merge patch series "Revert "pid: make __task_pid_nr_ns(ns => NULL) safe for zombie callers"" (2026-02-10 11:39:31 +0100)

----------------------------------------------------------------
kernel-7.0-rc1.misc

Please consider pulling these changes from the signed kernel-7.0-rc1.misc tag.

Thanks!
Christian

----------------------------------------------------------------
Christian Brauner (2):
      pidfs: convert rb-tree to rhashtable
      Merge patch series "Revert "pid: make __task_pid_nr_ns(ns => NULL) safe for zombie callers""

Mateusz Guzik (2):
      pid: reorder fields in pid_namespace to reduce false sharing
      pidfs: implement ino allocation without the pidmap lock

Oleg Nesterov (2):
      Revert "pid: make __task_pid_nr_ns(ns => NULL) safe for zombie callers"
      pid: introduce task_ppid_vnr() helper

Tim Bird (1):
      ipc: Add SPDX license id to mqueue.c

 fs/pidfs.c                    | 174 +++++++++++++++++++++++-------------------
 include/linux/pid.h           |   9 ++-
 include/linux/pid_namespace.h |  14 ++--
 include/linux/pidfs.h         |   3 +-
 ipc/mqueue.c                  |   3 +-
 kernel/pid.c                  |  15 ++--
 6 files changed, 121 insertions(+), 97 deletions(-)

  parent reply	other threads:[~2026-02-16 12:30 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-06 16:49 [GIT PULL 00/12 for v7.0] v7.0 Christian Brauner
2026-02-06 16:49 ` [GIT PULL 01/12 for v7.0] vfs rust Christian Brauner
2026-02-10  0:50   ` pr-tracker-bot
2026-02-06 16:49 ` [GIT PULL 02/12 for v7.0] vfs initrd Christian Brauner
2026-02-10  0:50   ` pr-tracker-bot
2026-02-06 16:49 ` [GIT PULL 03/12 for v7.0] vfs nonblocking_timestamps Christian Brauner
2026-02-10  0:50   ` pr-tracker-bot
2026-02-06 16:50 ` [GIT PULL 04/12 for v7.0] vfs leases Christian Brauner
2026-02-10  0:50   ` pr-tracker-bot
2026-02-06 16:50 ` [GIT PULL 05/12 for v7.0] vfs fserror Christian Brauner
2026-02-10  0:50   ` pr-tracker-bot
2026-02-06 16:50 ` [GIT PULL 06/12 for v7.0] vfs btrfs Christian Brauner
2026-02-10  0:50   ` pr-tracker-bot
2026-02-06 16:50 ` [GIT PULL 07/12 for v7.0] vfs minix Christian Brauner
2026-02-10  0:50   ` pr-tracker-bot
2026-02-06 16:50 ` [GIT PULL 08/12 for v7.0] vfs nullfs Christian Brauner
2026-02-10  0:50   ` pr-tracker-bot
2026-02-06 16:50 ` [GIT PULL 09/12 for v7.0] vfs atomic_open Christian Brauner
2026-02-10  0:50   ` pr-tracker-bot
2026-02-06 16:50 ` [GIT PULL 10/12 for v7.0] vfs namespace Christian Brauner
2026-02-10  0:50   ` pr-tracker-bot
2026-02-06 16:50 ` [GIT PULL 11/12 for v7.0] vfs iomap Christian Brauner
2026-02-10  0:50   ` pr-tracker-bot
2026-02-06 16:50 ` [GIT PULL 12/12 for v7.0] vfs misc Christian Brauner
2026-02-07  5:11   ` Nathan Chancellor
2026-02-09  9:31     ` Christian Brauner
2026-02-10  0:50   ` pr-tracker-bot
2026-02-16 12:29 ` Christian Brauner [this message]
2026-02-16 22:11   ` [GIT PULL 13/12 for v7.0] kernel misc pr-tracker-bot
2026-02-16 12:55 ` [GIT PULL 14/12 for v7.0] vfs misc 2 Christian Brauner
2026-02-16 22:11   ` 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=20260216-kernel-misc-v70-899e4272dc4d@brauner \
    --to=brauner@kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox