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()
53 struct file *host_file; in coda_file_splice_read() local
57 host_file = cfi->cfi_container; in coda_file_splice_read()
59 splice_read = host_file->f_op->splice_read; in coda_file_splice_read()
63 return splice_read(host_file, ppos, pipe, count, flags); in coda_file_splice_read()
71 struct file *host_file; in coda_file_write() local
76 host_file = cfi->cfi_container; in coda_file_write()
[all …]
Ddir.c384 struct file *host_file; in coda_readdir() local
389 host_file = cfi->cfi_container; in coda_readdir()
391 if (!host_file->f_op) in coda_readdir()
394 if (host_file->f_op->readdir) { in coda_readdir()
399 struct inode *host_inode = file_inode(host_file); in coda_readdir()
402 host_file->f_pos = coda_file->f_pos; in coda_readdir()
406 ret = host_file->f_op->readdir(host_file, buf, filldir); in coda_readdir()
407 file_accessed(host_file); in coda_readdir()
410 coda_file->f_pos = host_file->f_pos; in coda_readdir()
412 } else if (host_file->f_op->iterate) { in coda_readdir()
[all …]
/fs/hppfs/
Dhppfs.c112 char *host_file; in file_removed() local
119 host_file = dentry_name(dentry, extra + strlen("/remove")); in file_removed()
120 if (host_file == NULL) { in file_removed()
126 strcat(host_file, "/"); in file_removed()
127 strcat(host_file, file); in file_removed()
129 strcat(host_file, "/remove"); in file_removed()
131 fd = os_open_file(host_file, of_read(OPENFLAGS()), 0); in file_removed()
132 kfree(host_file); in file_removed()
295 static int open_host_sock(char *host_file, int *filter_out) in open_host_sock() argument
300 end = &host_file[strlen(host_file)]; in open_host_sock()
[all …]