Home
last modified time | relevance | path

Searched refs:host_file (Results 1 – 3 of 3) sorted by relevance

/fs/coda/
Dfile.c33 struct file *host_file; in coda_file_read() local
37 host_file = cfi->cfi_container; in coda_file_read()
39 if (!host_file->f_op || !host_file->f_op->read) in coda_file_read()
42 return host_file->f_op->read(host_file, buf, count, ppos); in coda_file_read()
51 struct file *host_file; in coda_file_splice_read() local
55 host_file = cfi->cfi_container; in coda_file_splice_read()
57 if (!host_file->f_op || !host_file->f_op->splice_read) in coda_file_splice_read()
60 return host_file->f_op->splice_read(host_file, ppos, pipe, count,flags); in coda_file_splice_read()
68 struct file *host_file; in coda_file_write() local
73 host_file = cfi->cfi_container; in coda_file_write()
[all …]
Ddir.c435 struct file *host_file; in coda_readdir() local
440 host_file = cfi->cfi_container; in coda_readdir()
442 if (!host_file->f_op) in coda_readdir()
445 if (host_file->f_op->readdir) in coda_readdir()
451 struct inode *host_inode = host_file->f_path.dentry->d_inode; in coda_readdir()
454 host_file->f_pos = coda_file->f_pos; in coda_readdir()
458 ret = host_file->f_op->readdir(host_file, buf, filldir); in coda_readdir()
459 file_accessed(host_file); in coda_readdir()
462 coda_file->f_pos = host_file->f_pos; in coda_readdir()
497 struct file *host_file; in coda_venus_readdir() local
[all …]
/fs/hppfs/
Dhppfs.c110 char *host_file; in file_removed() local
117 host_file = dentry_name(dentry, extra + strlen("/remove")); in file_removed()
118 if (host_file == NULL) { in file_removed()
124 strcat(host_file, "/"); in file_removed()
125 strcat(host_file, file); in file_removed()
127 strcat(host_file, "/remove"); in file_removed()
129 fd = os_open_file(host_file, of_read(OPENFLAGS()), 0); in file_removed()
130 kfree(host_file); in file_removed()
303 static int open_host_sock(char *host_file, int *filter_out) in open_host_sock() argument
308 end = &host_file[strlen(host_file)]; in open_host_sock()
[all …]