diff options
author | Christian Brauner <brauner@kernel.org> | 2025-09-01 12:47:05 +0200 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2025-09-01 12:48:28 +0200 |
commit | e23654f5b12b1aa3384d0565ce1eb5ff860a5592 (patch) | |
tree | fc0a78009430bae548005261aedf1d9d153e904d /rust/kernel/faux.rs | |
parent | bb585591ebf00fb1f6a1fdd1ea96b5848bd9112d (diff) | |
parent | 9d81ba6d49a7457784f0b6a71046818b86ec7e44 (diff) |
Merge tag 'fuse-fixes-6.17-rc5' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse into vfs.fixes
fuse fixes for 6.17-rc5
* tag 'fuse-fixes-6.17-rc5' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse: (6 commits)
fuse: Block access to folio overlimit
fuse: fix fuseblk i_blkbits for iomap partial writes
fuse: reflect cached blocksize if blocksize was changed
fuse: prevent overflow in copy_file_range return value
fuse: check if copy_file_range() returns larger than requested size
fuse: do not allow mapping a non-regular backing file
Link: https://lore.kernel.org/CAJfpeguEVMMyw_zCb+hbOuSxdE2Z3Raw=SJsq=Y56Ae6dn2W3g@mail.gmail.com
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'rust/kernel/faux.rs')
-rw-r--r-- | rust/kernel/faux.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/kernel/faux.rs b/rust/kernel/faux.rs index 7a906099993f..7fe2dd197e37 100644 --- a/rust/kernel/faux.rs +++ b/rust/kernel/faux.rs @@ -4,7 +4,7 @@ //! //! This module provides bindings for working with faux devices in kernel modules. //! -//! C header: [`include/linux/device/faux.h`] +//! C header: [`include/linux/device/faux.h`](srctree/include/linux/device/faux.h) use crate::{bindings, device, error::code::*, prelude::*}; use core::ptr::{addr_of_mut, null, null_mut, NonNull}; |