diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2024-10-07 12:43:50 +0200 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2024-10-25 17:05:49 +0200 |
commit | d34a5575e6d2380cc375d2b4650d385a859e67bc (patch) | |
tree | aac5164e431f9057a0437f31a2d6a91e5e6903ac | |
parent | Revert "fuse: move initialization of fuse_file to fuse_writepages() instead o... (diff) | |
download | linux-d34a5575e6d2380cc375d2b4650d385a859e67bc.tar.xz linux-d34a5575e6d2380cc375d2b4650d385a859e67bc.zip |
fuse: remove stray debug line
It wasn't there when the patch was posted for review, but somehow made it
into the pull.
Link: https://lore.kernel.org/all/20240913104703.1673180-1-mszeredi@redhat.com/
Fixes: efad7153bf93 ("fuse: allow O_PATH fd for FUSE_DEV_IOC_BACKING_OPEN")
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
-rw-r--r-- | fs/fuse/passthrough.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/fuse/passthrough.c b/fs/fuse/passthrough.c index 7b097e332a90..bbac547dfcb3 100644 --- a/fs/fuse/passthrough.c +++ b/fs/fuse/passthrough.c @@ -234,7 +234,6 @@ int fuse_backing_open(struct fuse_conn *fc, struct fuse_backing_map *map) goto out; backing_sb = file_inode(file)->i_sb; - pr_info("%s: %x:%pD %i\n", __func__, backing_sb->s_dev, file, backing_sb->s_stack_depth); res = -ELOOP; if (backing_sb->s_stack_depth >= fc->max_stack_depth) goto out_fput; |