Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'fuse-fixes-6.9-final' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse

Pull fuse fixes from Miklos Szeredi:
"Two one-liner fixes for issues introduced in -rc1"

* tag 'fuse-fixes-6.9-final' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse:
virtiofs: include a newline in sysfs tag
fuse: verify zero padding in fuse_backing_map

+2 -2
+1 -1
fs/fuse/passthrough.c
··· 225 225 goto out; 226 226 227 227 res = -EINVAL; 228 - if (map->flags) 228 + if (map->flags || map->padding) 229 229 goto out; 230 230 231 231 file = fget(map->fd);
+1 -1
fs/fuse/virtio_fs.c
··· 170 170 { 171 171 struct virtio_fs *fs = container_of(kobj, struct virtio_fs, kobj); 172 172 173 - return sysfs_emit(buf, fs->tag); 173 + return sysfs_emit(buf, "%s\n", fs->tag); 174 174 } 175 175 176 176 static struct kobj_attribute virtio_fs_tag_attr = __ATTR_RO(tag);