/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | fs.h | 180 #define fops_get(fops) (fops) argument 181 #define replace_fops(f, fops) ((f)->f_op = (fops)) argument 189 const struct file_operations *fops); 192 const struct file_operations *fops, uid_t uid, 206 const struct file_operations *fops) in register_chrdev() argument 209 return (__register_chrdev(major, 0, 256, name, fops)); in register_chrdev() 214 const struct file_operations *fops, uid_t uid, gid_t gid, int mode) in register_chrdev_p() argument 217 return (__register_chrdev_p(major, 0, 256, name, fops, uid, gid, mode)); in register_chrdev_p() 402 #define DEFINE_SIMPLE_ATTRIBUTE(fops, get, set, fmt) \ argument 403 __DEFINE_SIMPLE_ATTRIBUTE(fops, get, set, fmt, simple_attr_write) [all …]
|
H A D | debugfs.h | 62 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 D | anon_inodes.h | 38 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 D | miscdevice.h | 40 const struct file_operations *fops; member 58 misc->cdev->ops = misc->fops; in misc_register()
|
H A D | file.h | 156 alloc_file(int mode, const struct file_operations *fops) in alloc_file() argument 161 filp->f_op = fops; in alloc_file()
|
/freebsd/sys/contrib/openzfs/config/ |
H A D | kernel-vfs-file_range.m4 | 86 fops __attribute__ ((unused)) = { 92 AC_MSG_CHECKING([whether fops->clone_file_range() is available]) 96 [fops->clone_file_range() is available]) 116 fops __attribute__ ((unused)) = { 122 AC_MSG_CHECKING([whether fops->dedupe_file_range() is available]) 126 [fops->dedupe_file_range() is available]) 146 fops __attribute__ ((unused)) = { 153 AC_MSG_CHECKING([whether fops->remap_file_range() is available]) 157 [fops->remap_file_range() is available])
|
H A D | kernel-filemap-splice-read.m4 | 10 struct file_operations fops __attribute__((unused)) = {
|
/freebsd/sys/compat/lindebugfs/ |
H A D | lindebugfs.c | 188 const struct file_operations *fops) in debugfs_create_file() argument 199 dm->dm_fops = fops; in debugfs_create_file() 208 flags = fops->write ? PFS_RDWR : PFS_RD; in debugfs_create_file() 223 const struct file_operations *fops, in debugfs_create_file_size() argument 227 return debugfs_create_file(name, mode, parent, data, fops); in debugfs_create_file_size() 243 const struct file_operations *fops) in debugfs_create_file_unsafe() argument 246 return (debugfs_create_file(name, mode, parent, data, fops)); in debugfs_create_file_unsafe() 252 const struct file_operations *fops, in debugfs_create_mode_unsafe() argument 265 return (debugfs_create_file_unsafe(name, mode, parent, data, fops)); in debugfs_create_mode_unsafe()
|
/freebsd/sys/ofed/include/rdma/ |
H A D | uverbs_types.h | 174 const struct file_operations *fops; member 194 .fops = _fops, \
|
/freebsd/sys/contrib/dev/mediatek/mt76/ |
H A D | debugfs.c | 107 const struct file_operations *fops = ops ? ops : &fops_regval; in mt76_register_debugfs_fops() local 117 debugfs_create_file_unsafe("regval", 0600, dir, dev, fops); in mt76_register_debugfs_fops()
|
/freebsd/sys/kern/ |
H A D | kern_event.c | 109 static int kqueue_expand(struct kqueue *kq, const struct filterops *fops, 1493 const struct filterops *fops; in kqueue_register() local 1511 fops = kqueue_fo_find(filt); in kqueue_register() 1512 if (fops == NULL) in kqueue_register() 1534 if (fops->f_isfd) { in kqueue_register() 1543 if ((kev->flags & EV_ADD) == EV_ADD && kqueue_expand(kq, fops, in kqueue_register() 1548 error = kqueue_expand(kq, fops, kev->ident, mflag); in kqueue_register() 1585 error = kqueue_expand(kq, fops, kev->ident, mflag); in kqueue_register() 1644 kn->kn_fop = fops; in kqueue_register() 1649 fops = NULL; in kqueue_register() [all …]
|
/freebsd/sys/ofed/drivers/infiniband/core/ |
H A D | ib_rdma_core.c | 363 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 D | ib_ucma.c | 1756 .fops = &ucma_fops,
|
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/ |
H A D | zfs_ctldir.c | 482 const struct file_operations *fops, const struct inode_operations *ops, in zfsctl_inode_alloc() argument 524 ip->i_fop = fops; in zfsctl_inode_alloc() 551 const struct file_operations *fops, const struct inode_operations *ops) in zfsctl_inode_lookup() argument 575 ip = zfsctl_inode_alloc(zfsvfs, id, fops, ops, creation); in zfsctl_inode_lookup()
|
H A D | zfs_ioctl_os.c | 241 .fops = &zfsdev_fops,
|
H A D | zvol_os.c | 1399 zso->zvo_disk->fops = &zvol_ops_blk_mq; in zvol_alloc() 1402 zso->zvo_disk->fops = &zvol_ops; in zvol_alloc()
|
/freebsd/sys/contrib/openzfs/include/os/linux/kernel/linux/ |
H A D | blkdev_compat.h | 289 const struct block_device_operations *bdo = gd->fops; in zfs_check_media_change()
|
/freebsd/sys/compat/linuxkpi/common/src/ |
H A D | linux_compat.c | 2568 const struct file_operations *fops) in __register_chrdev() argument 2576 cdev->ops = fops; in __register_chrdev() 2589 const struct file_operations *fops, uid_t uid, in __register_chrdev_p() argument 2598 cdev->ops = fops; in __register_chrdev_p()
|