Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 348990
b: refs/heads/master
c: 3078358
h: refs/heads/master
v: v3
  • Loading branch information
David Herrmann authored and Miklos Szeredi committed Jan 17, 2013
1 parent 2585050 commit b73e0ae
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8ce03fd76d323526a693d05d85296ef07a387a9f
refs/heads/master: 30783587b0f318b9e2e165f34cf5dfd9425a4904
21 changes: 15 additions & 6 deletions trunk/fs/fuse/cuse.c
Original file line number Diff line number Diff line change
Expand Up @@ -304,14 +304,14 @@ static void cuse_gendev_release(struct device *dev)
*/
static void cuse_process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
{
struct cuse_conn *cc = fc_to_cc(fc);
struct cuse_conn *cc = fc_to_cc(fc), *pos;
struct cuse_init_out *arg = req->out.args[0].value;
struct page *page = req->pages[0];
struct cuse_devinfo devinfo = { };
struct device *dev;
struct cdev *cdev;
dev_t devt;
int rc;
int rc, i;

if (req->out.h.error ||
arg->major != FUSE_KERNEL_VERSION || arg->minor < 11) {
Expand Down Expand Up @@ -355,15 +355,24 @@ static void cuse_process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
dev_set_drvdata(dev, cc);
dev_set_name(dev, "%s", devinfo.name);

mutex_lock(&cuse_lock);

/* make sure the device-name is unique */
for (i = 0; i < CUSE_CONNTBL_LEN; ++i) {
list_for_each_entry(pos, &cuse_conntbl[i], list)
if (!strcmp(dev_name(pos->dev), dev_name(dev)))
goto err_unlock;
}

rc = device_add(dev);
if (rc)
goto err_device;
goto err_unlock;

/* register cdev */
rc = -ENOMEM;
cdev = cdev_alloc();
if (!cdev)
goto err_device;
goto err_unlock;

cdev->owner = THIS_MODULE;
cdev->ops = &cuse_frontend_fops;
Expand All @@ -376,7 +385,6 @@ static void cuse_process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
cc->cdev = cdev;

/* make the device available */
mutex_lock(&cuse_lock);
list_add(&cc->list, cuse_conntbl_head(devt));
mutex_unlock(&cuse_lock);

Expand All @@ -390,7 +398,8 @@ static void cuse_process_init_reply(struct fuse_conn *fc, struct fuse_req *req)

err_cdev:
cdev_del(cdev);
err_device:
err_unlock:
mutex_unlock(&cuse_lock);
put_device(dev);
err_region:
unregister_chrdev_region(devt, 1);
Expand Down

0 comments on commit b73e0ae

Please sign in to comment.