linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] fs helper kernel-doc update
@ 2021-04-27 11:38 Christian Brauner
  2021-04-27 11:43 ` [GIT PULL] fs mapping helpers update Christian Brauner
  2021-04-27 20:07 ` [GIT PULL] fs helper kernel-doc update pr-tracker-bot
  0 siblings, 2 replies; 4+ messages in thread
From: Christian Brauner @ 2021-04-27 11:38 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-fsdevel, linux-kernel

Hi Linus,

/* Summary */
After last cycles changes we missed to update the kernel-docs in some places
that were changed during the idmapped mount work. Lukas and Randy took the
chance to not just fixup those places but also fixup and expand kernel-docs for
some additional helpers.

There are no functional changes in this PR which is why I split it out from the
following one.

The following changes since commit a38fd8748464831584a19438cbb3082b5a2dab15:

  Linux 5.12-rc2 (2021-03-05 17:33:41 -0800)

are available in the Git repository at:

  git@gitolite.kernel.org:pub/scm/linux/kernel/git/brauner/linux tags/fs.idmapped.docs.v5.13

for you to fetch changes up to 92cb01c74ef13ca01e1af836236b140634967b82:

  fs: update kernel-doc for vfs_rename() (2021-03-23 11:20:26 +0100)

/* Testing */
All patches are based on v5.12-rc2 and have been sitting in linux-next. No
build failures or warnings were observed. All old and new tests are passing.

ubuntu@f2-vm:~/src/git/xfstests$ sudo ./check -g idmapped
FSTYP         -- xfs (debug)
PLATFORM      -- Linux/x86_64 f2-vm 5.12.0-rc6-idmapped-cfebad8730dd #387 SMP PREEMPT Tue Apr 27 10:39:29 UTC 2021
MKFS_OPTIONS  -- -f -bsize=4096 /dev/loop1
MOUNT_OPTIONS -- /dev/loop1 /mnt/scratch

generic/633 files ...  27s
xfs/152 files ...  68s
xfs/153 files ...  36s
Ran: generic/633 xfs/152 xfs/153
Passed all 3 tests

/* Conflicts */
At the time of creating this PR no merge conflicts were reported from
linux-next and no merge conflicts showed up doing a test-merge with current
mainline.

(Note, in case you care about this at all I changed my tag naming pattern
 simply because I ran into limitations with branch naming in git using "/"
 separators and I like to have a 1:1 correspondence between the branch and the
 tag name.)

Please consider pulling these changes from the signed fs.idmapped.docs.v5.13 tag.

Thanks!
Christian

----------------------------------------------------------------
fs.idmapped.docs.v5.13

----------------------------------------------------------------
Christian Brauner (1):
      fs: update kernel-doc for vfs_rename()

Lukas Bulwahn (1):
      fs: turn some comments into kernel-doc

Randy Dunlap (3):
      libfs: fix kernel-doc for mnt_userns
      namei: fix kernel-doc for struct renamedata and more
      xattr: fix kernel-doc for mnt_userns and vfs xattr helpers

 fs/libfs.c         |  1 +
 fs/namei.c         | 14 +++-----------
 fs/xattr.c         | 14 ++++++++------
 include/linux/fs.h | 17 ++++++++++++++---
 4 files changed, 26 insertions(+), 20 deletions(-)

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

* [GIT PULL] fs mapping helpers update
  2021-04-27 11:38 [GIT PULL] fs helper kernel-doc update Christian Brauner
@ 2021-04-27 11:43 ` Christian Brauner
  2021-04-27 20:07   ` pr-tracker-bot
  2021-04-27 20:07 ` [GIT PULL] fs helper kernel-doc update pr-tracker-bot
  1 sibling, 1 reply; 4+ messages in thread
From: Christian Brauner @ 2021-04-27 11:43 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-fsdevel, linux-kernel

Hi Linus,

/* Summary */
This adds kernel-doc to all new idmapping helpers and improves their naming
which was triggered by a discussion with some fs developers. Some of the names
are based on suggestions by Vivek and Al. We also remove the open-coded
permission checking in a few places with simple helpers. Overall this should
lead to more clarity make it easier to maintain.

The following changes since commit 0d02ec6b3136c73c09e7859f0d0e4e2c4c07b49b:

  Linux 5.12-rc4 (2021-03-21 14:56:43 -0700)

are available in the Git repository at:

  git@gitolite.kernel.org:pub/scm/linux/kernel/git/brauner/linux tags/fs.idmapped.helpers.v5.13

for you to fetch changes up to db998553cf11dd697485ac6142adbb35d21fff10:

  fs: introduce two inode i_{u,g}id initialization helpers (2021-03-23 11:15:26 +0100)

/* Testing */
All patches are based on v5.12-rc4 and have been sitting in linux-next. No
build failures or warnings were observed. All old and new tests are passing.

ubuntu@f2-vm:~/src/git/xfstests$ sudo ./check -g idmapped
FSTYP         -- xfs (debug)
PLATFORM      -- Linux/x86_64 f2-vm 5.12.0-rc6-idmapped-cfebad8730dd #387 SMP PREEMPT Tue Apr 27 10:39:29 UTC 2021
MKFS_OPTIONS  -- -f -bsize=4096 /dev/loop1
MOUNT_OPTIONS -- /dev/loop1 /mnt/scratch

generic/633 files ...  27s
xfs/152 files ...  68s
xfs/153 files ...  36s
Ran: generic/633 xfs/152 xfs/153
Passed all 3 tests

/* Conflicts */
At the time of creating this PR no merge conflicts were reported from
linux-next and no merge conflicts showed up doing a test-merge with current
mainline.

(Note, in case you care about this at all I changed my tag naming pattern
 simply because I ran into limitations with branch naming in git using "/"
 separators and I like to have a 1:1 correspondence between the branch and the
 tag name.)

Please consider pulling these changes from the signed fs.idmapped.helpers.v5.13 tag.

----------------------------------------------------------------
fs.idmapped.helpers.v5.13

----------------------------------------------------------------
Christian Brauner (4):
      fs: document mapping helpers
      fs: document and rename fsid helpers
      fs: introduce fsuidgid_has_mapping() helper
      fs: introduce two inode i_{u,g}id initialization helpers

 fs/ext4/ialloc.c     |   2 +-
 fs/inode.c           |   4 +-
 fs/namei.c           |  11 ++---
 fs/xfs/xfs_inode.c   |  10 ++---
 fs/xfs/xfs_symlink.c |   4 +-
 include/linux/fs.h   | 124 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 6 files changed, 135 insertions(+), 20 deletions(-)

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

* Re: [GIT PULL] fs helper kernel-doc update
  2021-04-27 11:38 [GIT PULL] fs helper kernel-doc update Christian Brauner
  2021-04-27 11:43 ` [GIT PULL] fs mapping helpers update Christian Brauner
@ 2021-04-27 20:07 ` pr-tracker-bot
  1 sibling, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2021-04-27 20:07 UTC (permalink / raw)
  To: Christian Brauner; +Cc: Linus Torvalds, linux-fsdevel, linux-kernel

The pull request you sent on Tue, 27 Apr 2021 13:38:46 +0200:

> git@gitolite.kernel.org:pub/scm/linux/kernel/git/brauner/linux tags/fs.idmapped.docs.v5.13

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

Thank you!

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

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

* Re: [GIT PULL] fs mapping helpers update
  2021-04-27 11:43 ` [GIT PULL] fs mapping helpers update Christian Brauner
@ 2021-04-27 20:07   ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2021-04-27 20:07 UTC (permalink / raw)
  To: Christian Brauner; +Cc: Linus Torvalds, linux-fsdevel, linux-kernel

The pull request you sent on Tue, 27 Apr 2021 13:43:32 +0200:

> git@gitolite.kernel.org:pub/scm/linux/kernel/git/brauner/linux tags/fs.idmapped.helpers.v5.13

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/34a456eb1fe26303d0661693d01a50e83a551da3

Thank you!

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

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

end of thread, other threads:[~2021-04-27 20:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-27 11:38 [GIT PULL] fs helper kernel-doc update Christian Brauner
2021-04-27 11:43 ` [GIT PULL] fs mapping helpers update Christian Brauner
2021-04-27 20:07   ` pr-tracker-bot
2021-04-27 20:07 ` [GIT PULL] fs helper kernel-doc update 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;
as well as URLs for NNTP newsgroup(s).