]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
cuse: do not register multiple devices with identical names
authorDavid Herrmann <dh.herrmann@googlemail.com>
Sat, 17 Nov 2012 11:45:48 +0000 (12:45 +0100)
committerMiklos Szeredi <mszeredi@suse.cz>
Thu, 17 Jan 2013 12:04:57 +0000 (13:04 +0100)
commit30783587b0f318b9e2e165f34cf5dfd9425a4904
tree4aeaf43d76cda5cad2c968214c1efce047f53f71
parent8ce03fd76d323526a693d05d85296ef07a387a9f
cuse: do not register multiple devices with identical names

Sysfs doesn't allow two devices with the same name, but we register a
sysfs entry for each cuse device without checking for name collisions.
This extends the registration to first check whether the name was already
registered.

To avoid race-conditions between the name-check and linking the device, we
need to protect the whole registration with a mutex.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
fs/fuse/cuse.c