Lines Matching defs:fops
79 const struct file_operations *fops,
87 if (fops->owner && !try_module_get(fops->owner))
110 flags & (O_ACCMODE | O_NONBLOCK), fops);
123 module_put(fops->owner);
133 * @fops: [in] file operations for the new file
144 const struct file_operations *fops,
147 return __anon_inode_getfile(name, fops, priv, flags, NULL, false);
161 * @fops: [in] file operations for the new file
172 const struct file_operations *fops,
176 return __anon_inode_getfile(name, fops, priv, flags,
181 const struct file_operations *fops,
194 file = __anon_inode_getfile(name, fops, priv, flags, context_inode,
215 * @fops: [in] file operations for the new file
226 int anon_inode_getfd(const char *name, const struct file_operations *fops,
229 return __anon_inode_getfd(name, fops, priv, flags, NULL, false);
240 * @fops: [in] file operations for the new file
249 int anon_inode_getfd_secure(const char *name, const struct file_operations *fops,
253 return __anon_inode_getfd(name, fops, priv, flags, context_inode, true);