Home
last modified time | relevance | path

Searched refs:fops (Results 1 – 20 of 20) sorted by relevance

/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dfs.h197 #define fops_get(fops) (fops) argument
198 #define replace_fops(f, fops) ((f)->f_op = (fops)) argument
206 const struct file_operations *fops);
209 const struct file_operations *fops, uid_t uid,
223 const struct file_operations *fops) in register_chrdev() argument
226 return (__register_chrdev(major, 0, 256, name, fops)); in register_chrdev()
231 const struct file_operations *fops, uid_t uid, gid_t gid, int mode) in register_chrdev_p() argument
234 return (__register_chrdev_p(major, 0, 256, name, fops, uid, gid, mode)); in register_chrdev_p()
415 #define DEFINE_SIMPLE_ATTRIBUTE(fops, get, set, fmt) \ argument
416 __DEFINE_SIMPLE_ATTRIBUTE(fops, get, set, fmt, simple_attr_write)
[all …]
H A Ddebugfs.h62 const struct file_operations *fops);
67 const struct file_operations *fops,
72 const struct file_operations *fops);
76 const struct file_operations *fops,
H A Danon_inodes.h38 const struct file_operations *fops, void *priv, int flags __unused) in anon_inode_getfile() argument
42 file = alloc_file(FMODE_READ, fops); in anon_inode_getfile()
H A Dmiscdevice.h40 const struct file_operations *fops; member
58 misc->cdev->ops = misc->fops; in misc_register()
H A Dfile.h161 alloc_file(int mode, const struct file_operations *fops) in alloc_file() argument
166 filp->f_op = fops; in alloc_file()
/freebsd/sys/contrib/openzfs/config/
H A Dkernel-vfs-file_range.m487 fops __attribute__ ((unused)) = {
93 AC_MSG_CHECKING([whether fops->clone_file_range() is available])
97 [fops->clone_file_range() is available])
117 fops __attribute__ ((unused)) = {
123 AC_MSG_CHECKING([whether fops->dedupe_file_range() is available])
127 [fops->dedupe_file_range() is available])
147 fops __attribute__ ((unused)) = {
154 AC_MSG_CHECKING([whether fops->remap_file_range() is available])
158 [fops->remap_file_range() is available])
H A Dkernel-filemap-splice-read.m411 struct file_operations fops __attribute__((unused)) = {
/freebsd/sys/compat/lindebugfs/
H A Dlindebugfs.c215 const struct file_operations *fops) in debugfs_create_file() argument
226 dm->dm_fops = fops; in debugfs_create_file()
235 flags = fops->write ? PFS_RDWR : PFS_RD; in debugfs_create_file()
250 const struct file_operations *fops, in debugfs_create_file_size() argument
254 return debugfs_create_file(name, mode, parent, data, fops); in debugfs_create_file_size()
270 const struct file_operations *fops) in debugfs_create_file_unsafe() argument
273 return (debugfs_create_file(name, mode, parent, data, fops)); in debugfs_create_file_unsafe()
279 const struct file_operations *fops, in debugfs_create_mode_unsafe() argument
292 return (debugfs_create_file_unsafe(name, mode, parent, data, fops)); in debugfs_create_mode_unsafe()
/freebsd/sys/ofed/include/rdma/
H A Duverbs_types.h174 const struct file_operations *fops; member
194 .fops = _fops, \
/freebsd/sys/contrib/dev/mediatek/mt76/
H A Ddebugfs.c107 const struct file_operations *fops = ops ? ops : &fops_regval; in mt76_register_debugfs_fops() local
115 debugfs_create_file_unsafe("regval", 0600, dir, dev, fops); in mt76_register_debugfs_fops()
/freebsd/sys/kern/
H A Dkern_event.c116 static int kqueue_expand(struct kqueue *kq, const struct filterops *fops,
1668 const struct filterops *fops; in kqueue_register() local
1686 fops = kqueue_fo_find(filt); in kqueue_register()
1687 if (fops == NULL) in kqueue_register()
1709 if (fops->f_isfd) { in kqueue_register()
1718 if ((kev->flags & EV_ADD) == EV_ADD && kqueue_expand(kq, fops, in kqueue_register()
1723 error = kqueue_expand(kq, fops, kev->ident, mflag); in kqueue_register()
1762 error = kqueue_expand(kq, fops, kev->ident, mflag); in kqueue_register()
1825 if (fops->f_isfd && in kqueue_register()
1835 kn->kn_fop = fops; in kqueue_register()
[all …]
/freebsd/sys/ofed/drivers/infiniband/core/
H A Dib_rdma_core.c363 if (f->f_op != fd_type->fops) { in lookup_get_fd_uobject()
462 if (WARN_ON(fd_type->fops->release != &uverbs_uobject_fd_release)) in alloc_begin_fd_uobject()
474 filp = alloc_file(fd_type->flags, fd_type->fops); in alloc_begin_fd_uobject()
H A Dib_ucma.c1787 .fops = &ucma_fops,
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_ctldir.c507 const struct file_operations *fops, const struct inode_operations *ops, in zfsctl_inode_alloc() argument
548 ip->i_fop = fops; in zfsctl_inode_alloc()
575 const struct file_operations *fops, const struct inode_operations *ops) in zfsctl_inode_lookup() argument
599 ip = zfsctl_inode_alloc(zfsvfs, id, fops, ops, creation); in zfsctl_inode_lookup()
H A Dzfs_ioctl_os.c236 .fops = &zfsdev_fops,
H A Dzvol_os.c1418 zso->zvo_disk->fops = &zvol_ops_blk_mq; in zvol_alloc()
1423 zso->zvo_disk->fops = &zvol_ops; in zvol_alloc()
/freebsd/sys/contrib/openzfs/include/os/linux/kernel/linux/
H A Dblkdev_compat.h280 const struct block_device_operations *bdo = gd->fops; in zfs_check_media_change()
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_compat.c2719 const struct file_operations *fops) in __register_chrdev() argument
2727 cdev->ops = fops; in __register_chrdev()
2740 const struct file_operations *fops, uid_t uid, in __register_chrdev_p() argument
2749 cdev->ops = fops; in __register_chrdev_p()
/freebsd/sys/dev/ntsync/
H A Dntsync.c270 ntsync_create_obj(struct ntsync_obj *obj, struct fileops *fops, in ntsync_create_obj() argument
297 finit(fp, FREAD | FWRITE, DTYPE_NTSYNC, obj, fops); in ntsync_create_obj()
/freebsd/contrib/sqlite3/autosetup/
H A Djimsh0.c2146 const JimAioFopsType *fops; member
2253 if (af && af->fops) in JimAioErrorString()
2254 return af->fops->strerror(af); in JimAioErrorString()
2280 ret = af->fops->error(af); in JimCheckStreamError()
2321 int ret = af->fops->writer(af, pt, len); in aio_flush()
2376 retval = af->fops->reader(af, af->rbuf, readlen, flags & AIO_NONBLOCK); in aio_read_len()
3409 af->fops = &stdio_fops; in JimMakeChannel()