mbox series

[GIT,PULL] afs

Message ID 20250118-vfs-afs-c73684b81023@brauner (mailing list archive)
State New
Headers show
Series [GIT,PULL] afs | expand

Pull-request

git@gitolite.kernel.org:pub/scm/linux/kernel/git/vfs/vfs tags/vfs-6.14-rc1.afs

Message

Christian Brauner Jan. 18, 2025, 1:10 p.m. UTC
Hey Linus,

/* Summary */

This contains afs updates for this cycle:

Features:

- dynamic root improvements:

  - Create an /afs/.<cell> mountpoint to match the /afs/<cell>
    mountpoint when a cell is created.

  - Add some more checks on cell names proposed by the user to prevent
    dodgy symlink bodies from being created.  Also prevent rootcell from
    being altered once set to simplify the locking.

  - Change the handling of /afs/@cell from being a dentry name
    substitution at lookup time to making it a symlink to the current
    cell name and also provide a /afs/.@cell symlink to point to the
    dotted cell mountpoint.

Fixes:

- Fix the abort code check in the fallback handling for the
  YFS.RemoveFile2 RPC call.

- Use call->op->server() for oridnary filesystem RPC calls that have an
  operation descriptor instead of call->server()

/* Testing */

gcc version 14.2.0 (Debian 14.2.0-6)
Debian clang version 16.0.6 (27+b1)

No build failures or warnings were observed.

/* Conflicts */

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

No known conflicts.

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

No known conflicts.

The following changes since commit 40384c840ea1944d7c5a392e8975ed088ecf0b37:

  Linux 6.13-rc1 (2024-12-01 14:28:56 -0800)

are available in the Git repository at:

  git@gitolite.kernel.org:pub/scm/linux/kernel/git/vfs/vfs tags/vfs-6.14-rc1.afs

for you to fetch changes up to e30458d690f35abb01de8b3cbc09285deb725d00:

  afs: Fix the fallback handling for the YFS.RemoveFile2 RPC call (2025-01-15 11:47:22 +0100)

Please consider pulling these changes from the signed vfs-6.14-rc1.afs tag.

Thanks!
Christian

----------------------------------------------------------------
vfs-6.14-rc1.afs

----------------------------------------------------------------
Christian Brauner (1):
      Merge patch series "afs: Dynamic root improvements"

David Howells (4):
      afs: Make /afs/.<cell> as well as /afs/<cell> mountpoints
      afs: Add rootcell checks
      afs: Make /afs/@cell and /afs/.@cell symlinks
      afs: Fix the fallback handling for the YFS.RemoveFile2 RPC call

 fs/afs/cell.c              |  21 ++++-
 fs/afs/dynroot.c           | 227 ++++++++++++++++++++++++++++++++-------------
 fs/afs/proc.c              |   8 +-
 fs/afs/yfsclient.c         |   5 +-
 include/trace/events/afs.h |   2 +
 5 files changed, 189 insertions(+), 74 deletions(-)