Lines Matching refs:fud
1031 struct fuse_dev *fud; in fuse_dev_alloc() local
1033 fud = kzalloc(sizeof(struct fuse_dev), GFP_KERNEL); in fuse_dev_alloc()
1034 if (fud) { in fuse_dev_alloc()
1035 fud->fc = fuse_conn_get(fc); in fuse_dev_alloc()
1036 fuse_pqueue_init(&fud->pq); in fuse_dev_alloc()
1039 list_add_tail(&fud->entry, &fc->devices); in fuse_dev_alloc()
1043 return fud; in fuse_dev_alloc()
1047 void fuse_dev_free(struct fuse_dev *fud) in fuse_dev_free() argument
1049 struct fuse_conn *fc = fud->fc; in fuse_dev_free()
1053 list_del(&fud->entry); in fuse_dev_free()
1058 kfree(fud); in fuse_dev_free()
1064 struct fuse_dev *fud; in fuse_fill_super() local
1131 fud = fuse_dev_alloc(fc); in fuse_fill_super()
1132 if (!fud) in fuse_fill_super()
1186 file->private_data = fud; in fuse_fill_super()
1206 fuse_dev_free(fud); in fuse_fill_super()