Lines Matching refs:fud
1024 struct fuse_dev *fud; in fuse_dev_alloc() local
1026 fud = kzalloc(sizeof(struct fuse_dev), GFP_KERNEL); in fuse_dev_alloc()
1027 if (fud) { in fuse_dev_alloc()
1028 fud->fc = fuse_conn_get(fc); in fuse_dev_alloc()
1029 fuse_pqueue_init(&fud->pq); in fuse_dev_alloc()
1032 list_add_tail(&fud->entry, &fc->devices); in fuse_dev_alloc()
1036 return fud; in fuse_dev_alloc()
1040 void fuse_dev_free(struct fuse_dev *fud) in fuse_dev_free() argument
1042 struct fuse_conn *fc = fud->fc; in fuse_dev_free()
1046 list_del(&fud->entry); in fuse_dev_free()
1051 kfree(fud); in fuse_dev_free()
1057 struct fuse_dev *fud; in fuse_fill_super() local
1124 fud = fuse_dev_alloc(fc); in fuse_fill_super()
1125 if (!fud) in fuse_fill_super()
1179 file->private_data = fud; in fuse_fill_super()
1199 fuse_dev_free(fud); in fuse_fill_super()