lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <CAJfpegtWHBZbvMWm2uHq0WAhrF6qHE5N=AG9QjkweyXic-e7gg@mail.gmail.com>
Date: Tue, 30 Sep 2025 14:47:35 +0200
From: Miklos Szeredi <miklos@...redi.hu>
To: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [GIT PULL] fuse update for 6.18

Hi Linus,

Please pull from:

  git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
tags/fuse-update-6.18

- Extend copy_file_range interface to be fully 64bit capable (Miklos)

- Add selftest for fusectl (Chen Linxuan)

- Move fuse docs into a separate directory (Bagas Sanjaya)

- Allow fuse to enter freezable state in some cases (Sergey Senozhatsky)

- Clean up writeback accounting after removing tmp page copies (Joanne)

- Optimize virtiofs request handling (Li RongQing)

- Add synchronous FUSE_INIT support (Miklos)

- Allow server to request prune of unused inodes (Miklos)

- Fix deadlock with AIO/sync release (Darrick)

- Add some prep patches for block/iomap support (Darrick)

- Misc fixes and cleanups

Thanks,
Miklos


Thanks,
Miklos
---

Bagas Sanjaya (1):
      Documentation: fuse: Consolidate FUSE docs into its own subdirectory

Chen Linxuan (2):
      doc: fuse: Add max_background and congestion_threshold
      selftests: filesystems: Add functional test for the abort file in fusectl

Chunsheng Luo (1):
      fuse: remove unused 'inode' parameter in fuse_passthrough_open

Darrick J. Wong (5):
      fuse: fix livelock in synchronous file put from fuseblk workers
      fuse: capture the unique id of fuse commands being sent
      fuse: enable FUSE_SYNCFS for all fuseblk servers
      fuse: move the backing file idr and code into a new source file
      fuse: move CREATE_TRACE_POINTS to a separate file

Joanne Koong (4):
      fuse: remove unneeded offset assignment when filling write pages
      fuse: use default writeback accounting
      mm: remove BDI_CAP_WRITEBACK_ACCT
      fuse: remove fuse_readpages_end() null mapping check

Li RongQing (2):
      virtio_fs: Remove redundant spinlock in virtio_fs_request_complete()
      virtio_fs: fix the hash table using in virtio_fs_enqueue_req()

Marek Szyprowski (1):
      mm: fix lockdep issues in writeback handling

Miklos Szeredi (8):
      fuse: add COPY_FILE_RANGE_64 that allows large copies
      fuse: zero initialize inode private data
      fuse: allow synchronous FUSE_INIT
      fuse: fix references to fuse.rst -> fuse/fuse.rst
      fuse: remove FUSE_NOTIFY_CODE_MAX from <uapi/linux/fuse.h>
      fuse: fix possibly missing fuse_copy_finish() call in fuse_notify()
      fuse: remove redundant calls to fuse_copy_finish() in fuse_notify()
      fuse: add prune notification

Sergey Senozhatsky (2):
      sched/wait: Add wait_event_state_exclusive()
      fuse: use freezable wait in fuse_get_req()

---
 .../filesystems/{ => fuse}/fuse-io-uring.rst       |   0
 Documentation/filesystems/{ => fuse}/fuse-io.rst   |   2 +-
 .../filesystems/{ => fuse}/fuse-passthrough.rst    |   0
 Documentation/filesystems/{ => fuse}/fuse.rst      |  20 +-
 Documentation/filesystems/fuse/index.rst           |  14 ++
 Documentation/filesystems/index.rst                |   5 +-
 Documentation/filesystems/sysfs.rst                |   2 +-
 .../translations/zh_CN/filesystems/sysfs.txt       |   2 +-
 .../translations/zh_TW/filesystems/sysfs.txt       |   2 +-
 MAINTAINERS                                        |   3 +-
 fs/fuse/Kconfig                                    |   2 +-
 fs/fuse/Makefile                                   |   5 +-
 fs/fuse/backing.c                                  | 179 ++++++++++++++++
 fs/fuse/cuse.c                                     |   3 +-
 fs/fuse/dev.c                                      | 227 +++++++++++++--------
 fs/fuse/dev_uring.c                                |   8 +-
 fs/fuse/file.c                                     |  86 ++++----
 fs/fuse/fuse_dev_i.h                               |  13 +-
 fs/fuse/fuse_i.h                                   |  70 ++++---
 fs/fuse/inode.c                                    |  76 +++++--
 fs/fuse/iomode.c                                   |   3 +-
 fs/fuse/passthrough.c                              | 167 +--------------
 fs/fuse/trace.c                                    |  13 ++
 fs/fuse/virtio_fs.c                                |  12 +-
 include/linux/backing-dev.h                        |  14 +-
 include/linux/wait.h                               |  12 ++
 include/uapi/linux/fuse.h                          |  22 +-
 mm/backing-dev.c                                   |   2 +-
 mm/page-writeback.c                                |  45 ++--
 tools/testing/selftests/Makefile                   |   1 +
 .../testing/selftests/filesystems/fuse/.gitignore  |   3 +
 tools/testing/selftests/filesystems/fuse/Makefile  |  21 ++
 .../testing/selftests/filesystems/fuse/fuse_mnt.c  | 146 +++++++++++++
 .../selftests/filesystems/fuse/fusectl_test.c      | 140 +++++++++++++
 34 files changed, 922 insertions(+), 398 deletions(-)
 rename Documentation/filesystems/{ => fuse}/fuse-io-uring.rst (100%)
 rename Documentation/filesystems/{ => fuse}/fuse-io.rst (99%)
 rename Documentation/filesystems/{ => fuse}/fuse-passthrough.rst (100%)
 rename Documentation/filesystems/{ => fuse}/fuse.rst (95%)
 create mode 100644 Documentation/filesystems/fuse/index.rst
 create mode 100644 fs/fuse/backing.c
 create mode 100644 fs/fuse/trace.c
 create mode 100644 tools/testing/selftests/filesystems/fuse/.gitignore
 create mode 100644 tools/testing/selftests/filesystems/fuse/Makefile
 create mode 100644 tools/testing/selftests/filesystems/fuse/fuse_mnt.c
 create mode 100644 tools/testing/selftests/filesystems/fuse/fusectl_test.c

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ