Skip to content

Commit 9e54ef9

Browse files
committed
Merge tag 'driver-core-4.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core
Pull driver core fix from Greg KH: "Here is a single kernfs fix for 4.11-rc4 that resolves a reported issue. It has been in linux-next with no reported issues" * tag 'driver-core-4.11-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: kernfs: Check KERNFS_HAS_RELEASE before calling kernfs_release_file()
2 parents f1638fc + 966fa72 commit 9e54ef9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fs/kernfs/file.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,8 @@ void kernfs_drain_open_files(struct kernfs_node *kn)
809809
if (kn->flags & KERNFS_HAS_MMAP)
810810
unmap_mapping_range(inode->i_mapping, 0, 0, 1);
811811

812-
kernfs_release_file(kn, of);
812+
if (kn->flags & KERNFS_HAS_RELEASE)
813+
kernfs_release_file(kn, of);
813814
}
814815

815816
mutex_unlock(&kernfs_open_file_mutex);

0 commit comments

Comments
 (0)