Searched defs:fops (Results 1 - 3 of 3) sorted by relevance

/fs/
H A Danon_inodes.c60 * @fops: [in] file operations for the new file
71 const struct file_operations *fops,
81 if (fops->owner && !try_module_get(fops->owner))
105 file = alloc_file(&path, OPEN_FMODE(flags), fops);
118 module_put(fops->owner);
129 * @fops: [in] file operations for the new file
139 int anon_inode_getfd(const char *name, const struct file_operations *fops, argument
150 file = anon_inode_getfile(name, fops, priv, flags);
70 anon_inode_getfile(const char *name, const struct file_operations *fops, void *priv, int flags) argument
H A Dchar_dev.c249 * @fops: file operations associated with this devices
266 const struct file_operations *fops)
280 cdev->owner = fops->owner;
281 cdev->ops = fops;
371 const struct file_operations *fops; local
404 fops = fops_get(p->ops);
405 if (!fops)
408 replace_fops(filp, fops);
555 * @fops: the file_operations for this device
557 * Initializes @cdev, remembering @fops, makin
264 __register_chrdev(unsigned int major, unsigned int baseminor, unsigned int count, const char *name, const struct file_operations *fops) argument
560 cdev_init(struct cdev *cdev, const struct file_operations *fops) argument
[all...]
/fs/debugfs/
H A Dinode.c38 void *data, const struct file_operations *fops)
52 inode->i_fop = fops ? fops : &debugfs_file_operations;
75 const struct file_operations *fops)
83 inode = debugfs_get_inode(dir->i_sb, mode, dev, data, fops);
113 void *data, const struct file_operations *fops)
118 res = debugfs_mknod(dir, dentry, mode, 0, data, fops);
307 const struct file_operations *fops)
341 data, fops);
367 * @fops
37 debugfs_get_inode(struct super_block *sb, umode_t mode, dev_t dev, void *data, const struct file_operations *fops) argument
73 debugfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev, void *data, const struct file_operations *fops) argument
112 debugfs_create(struct inode *dir, struct dentry *dentry, umode_t mode, void *data, const struct file_operations *fops) argument
305 __create_file(const char *name, umode_t mode, struct dentry *parent, void *data, const struct file_operations *fops) argument
383 debugfs_create_file(const char *name, umode_t mode, struct dentry *parent, void *data, const struct file_operations *fops) argument
[all...]

Completed in 90 milliseconds