/linux-4.1.27/fs/nfs/ |
D | nfs42proc.c | 35 static int _nfs42_proc_fallocate(struct rpc_message *msg, struct file *filep, in _nfs42_proc_fallocate() argument 38 struct inode *inode = file_inode(filep); in _nfs42_proc_fallocate() 54 status = nfs42_set_rw_stateid(&args.falloc_stateid, filep, FMODE_WRITE); in _nfs42_proc_fallocate() 71 static int nfs42_proc_fallocate(struct rpc_message *msg, struct file *filep, in nfs42_proc_fallocate() argument 74 struct nfs_server *server = NFS_SERVER(file_inode(filep)); in nfs42_proc_fallocate() 79 err = _nfs42_proc_fallocate(msg, filep, offset, len); in nfs42_proc_fallocate() 88 int nfs42_proc_allocate(struct file *filep, loff_t offset, loff_t len) in nfs42_proc_allocate() argument 93 struct inode *inode = file_inode(filep); in nfs42_proc_allocate() 101 err = nfs42_proc_fallocate(&msg, filep, offset, len); in nfs42_proc_allocate() 109 int nfs42_proc_deallocate(struct file *filep, loff_t offset, loff_t len) in nfs42_proc_deallocate() argument [all …]
|
D | nfs4file.c | 131 static loff_t nfs4_file_llseek(struct file *filep, loff_t offset, int whence) in nfs4_file_llseek() argument 138 ret = nfs42_proc_llseek(filep, offset, whence); in nfs4_file_llseek() 142 return nfs_file_llseek(filep, offset, whence); in nfs4_file_llseek() 146 static long nfs42_fallocate(struct file *filep, int mode, loff_t offset, loff_t len) in nfs42_fallocate() argument 148 struct inode *inode = file_inode(filep); in nfs42_fallocate() 162 return nfs42_proc_deallocate(filep, offset, len); in nfs42_fallocate() 163 return nfs42_proc_allocate(filep, offset, len); in nfs42_fallocate()
|
/linux-4.1.27/drivers/isdn/mISDN/ |
D | timerdev.c | 51 mISDN_open(struct inode *ino, struct file *filep) in mISDN_open() argument 56 printk(KERN_DEBUG "%s(%p,%p)\n", __func__, ino, filep); in mISDN_open() 66 filep->private_data = dev; in mISDN_open() 67 return nonseekable_open(ino, filep); in mISDN_open() 71 mISDN_close(struct inode *ino, struct file *filep) in mISDN_close() argument 73 struct mISDNtimerdev *dev = filep->private_data; in mISDN_close() 78 printk(KERN_DEBUG "%s(%p,%p)\n", __func__, ino, filep); in mISDN_close() 100 mISDN_read(struct file *filep, char __user *buf, size_t count, loff_t *off) in mISDN_read() argument 102 struct mISDNtimerdev *dev = filep->private_data; in mISDN_read() 109 filep, buf, (int)count, off); in mISDN_read() [all …]
|
/linux-4.1.27/drivers/isdn/hysdn/ |
D | hysdn_procconf.c | 229 hysdn_conf_open(struct inode *ino, struct file *filep) in hysdn_conf_open() argument 240 filep->f_cred->fsuid, filep->f_cred->fsgid, in hysdn_conf_open() 241 filep->f_mode); in hysdn_conf_open() 243 if ((filep->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_WRITE) { in hysdn_conf_open() 253 filep->private_data = cnf; in hysdn_conf_open() 255 } else if ((filep->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ) { in hysdn_conf_open() 262 filep->private_data = tmp; /* start of string */ in hysdn_conf_open() 297 return nonseekable_open(ino, filep); in hysdn_conf_open() 304 hysdn_conf_close(struct inode *ino, struct file *filep) in hysdn_conf_close() argument 314 filep->f_cred->fsuid, filep->f_cred->fsgid, in hysdn_conf_close() [all …]
|
D | hysdn_proclog.c | 204 hysdn_log_open(struct inode *ino, struct file *filep) in hysdn_log_open() argument 209 if ((filep->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_WRITE) { in hysdn_log_open() 211 filep->private_data = card; /* remember our own card */ in hysdn_log_open() 212 } else if ((filep->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ) { in hysdn_log_open() 220 filep->private_data = &pd->log_tail->next; in hysdn_log_open() 222 filep->private_data = &pd->log_head; in hysdn_log_open() 229 return nonseekable_open(ino, filep); in hysdn_log_open() 240 hysdn_log_close(struct inode *ino, struct file *filep) in hysdn_log_close() argument 248 if ((filep->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_WRITE) { in hysdn_log_close() 254 inf = *((struct log_data **) filep->private_data); /* get first log entry */ in hysdn_log_close() [all …]
|
/linux-4.1.27/drivers/vfio/ |
D | vfio.c | 924 static long vfio_fops_unl_ioctl(struct file *filep, in vfio_fops_unl_ioctl() argument 927 struct vfio_container *container = filep->private_data; in vfio_fops_unl_ioctl() 961 static long vfio_fops_compat_ioctl(struct file *filep, in vfio_fops_compat_ioctl() argument 965 return vfio_fops_unl_ioctl(filep, cmd, arg); in vfio_fops_compat_ioctl() 969 static int vfio_fops_open(struct inode *inode, struct file *filep) in vfio_fops_open() argument 981 filep->private_data = container; in vfio_fops_open() 986 static int vfio_fops_release(struct inode *inode, struct file *filep) in vfio_fops_release() argument 988 struct vfio_container *container = filep->private_data; in vfio_fops_release() 990 filep->private_data = NULL; in vfio_fops_release() 1001 static ssize_t vfio_fops_read(struct file *filep, char __user *buf, in vfio_fops_read() argument [all …]
|
/linux-4.1.27/drivers/isdn/hardware/eicon/ |
D | divamnt.c | 130 static int maint_open(struct inode *ino, struct file *filep) in maint_open() argument 140 filep->private_data = NULL; in maint_open() 141 ret = nonseekable_open(ino, filep); in maint_open() 147 static int maint_close(struct inode *ino, struct file *filep) in maint_close() argument 149 if (filep->private_data) { in maint_close() 150 diva_os_free(0, filep->private_data); in maint_close() 151 filep->private_data = NULL; in maint_close()
|
/linux-4.1.27/drivers/uio/ |
D | uio.c | 423 static int uio_open(struct inode *inode, struct file *filep) in uio_open() argument 450 filep->private_data = listener; in uio_open() 469 static int uio_fasync(int fd, struct file *filep, int on) in uio_fasync() argument 471 struct uio_listener *listener = filep->private_data; in uio_fasync() 474 return fasync_helper(fd, filep, on, &idev->async_queue); in uio_fasync() 477 static int uio_release(struct inode *inode, struct file *filep) in uio_release() argument 480 struct uio_listener *listener = filep->private_data; in uio_release() 491 static unsigned int uio_poll(struct file *filep, poll_table *wait) in uio_poll() argument 493 struct uio_listener *listener = filep->private_data; in uio_poll() 499 poll_wait(filep, &idev->wait, wait); in uio_poll() [all …]
|
/linux-4.1.27/fs/cifs/ |
D | ioctl.c | 136 long cifs_ioctl(struct file *filep, unsigned int command, unsigned long arg) in cifs_ioctl() argument 138 struct inode *inode = file_inode(filep); in cifs_ioctl() 142 struct cifsFileInfo *pSMBFile = filep->private_data; in cifs_ioctl() 149 cifs_dbg(FYI, "ioctl file %p cmd %u arg %lu\n", filep, command, arg); in cifs_ioctl() 214 rc = cifs_ioctl_clone(xid, filep, arg, 0, 0, 0); in cifs_ioctl()
|
D | cifsfs.h | 129 extern long cifs_ioctl(struct file *filep, unsigned int cmd, unsigned long arg);
|
/linux-4.1.27/arch/metag/include/asm/ |
D | elf.h | 110 unsigned long __metag_elf_map(struct file *filep, unsigned long addr, 114 static inline unsigned long metag_elf_map(struct file *filep, in metag_elf_map() argument 119 return __metag_elf_map(filep, addr, eppnt, prot, type, total_size); in metag_elf_map()
|
/linux-4.1.27/drivers/isdn/divert/ |
D | divert_procfs.c | 139 isdn_divert_open(struct inode *ino, struct file *filep) in isdn_divert_open() argument 146 filep->private_data = &(divert_info_tail->next); in isdn_divert_open() 148 filep->private_data = &divert_info_head; in isdn_divert_open() 151 return nonseekable_open(ino, filep); in isdn_divert_open() 158 isdn_divert_close(struct inode *ino, struct file *filep) in isdn_divert_close() argument 165 inf = *((struct divert_info **) filep->private_data); in isdn_divert_close()
|
/linux-4.1.27/tools/hv/ |
D | hv_kvp_daemon.c | 149 FILE *filep; in kvp_update_file() local 157 filep = fopen(kvp_file_info[pool].fname, "we"); in kvp_update_file() 158 if (!filep) { in kvp_update_file() 166 kvp_file_info[pool].num_records, filep); in kvp_update_file() 168 if (ferror(filep) || fclose(filep)) { in kvp_update_file() 179 FILE *filep; in kvp_update_mem_state() local 188 filep = fopen(kvp_file_info[pool].fname, "re"); in kvp_update_mem_state() 189 if (!filep) { in kvp_update_mem_state() 199 filep); in kvp_update_mem_state() 201 if (ferror(filep)) { in kvp_update_mem_state() [all …]
|
/linux-4.1.27/drivers/iio/ |
D | industrialio-event.c | 79 static unsigned int iio_event_poll(struct file *filep, in iio_event_poll() argument 82 struct iio_dev *indio_dev = filep->private_data; in iio_event_poll() 89 poll_wait(filep, &ev_int->wait, wait); in iio_event_poll() 97 static ssize_t iio_event_chrdev_read(struct file *filep, in iio_event_chrdev_read() argument 102 struct iio_dev *indio_dev = filep->private_data; in iio_event_chrdev_read() 115 if (filep->f_flags & O_NONBLOCK) in iio_event_chrdev_read() 141 if (copied == 0 && (filep->f_flags & O_NONBLOCK)) in iio_event_chrdev_read() 149 static int iio_event_chrdev_release(struct inode *inode, struct file *filep) in iio_event_chrdev_release() argument 151 struct iio_dev *indio_dev = filep->private_data; in iio_event_chrdev_release()
|
/linux-4.1.27/drivers/gpu/drm/amd/amdkfd/ |
D | kfd_chardev.c | 101 static int kfd_open(struct inode *inode, struct file *filep) in kfd_open() argument 129 static int kfd_ioctl_get_version(struct file *filep, struct kfd_process *p, in kfd_ioctl_get_version() argument 248 static int kfd_ioctl_create_queue(struct file *filep, struct kfd_process *p, in kfd_ioctl_create_queue() argument 285 err = pqm_create_queue(&p->pqm, dev, filep, &q_properties, in kfd_ioctl_create_queue() 381 static int kfd_ioctl_set_memory_policy(struct file *filep, in kfd_ioctl_set_memory_policy() argument 433 static int kfd_ioctl_get_clock_counters(struct file *filep, in kfd_ioctl_get_clock_counters() argument 546 static long kfd_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) in kfd_ioctl() argument 614 retcode = func(filep, process, kdata); in kfd_ioctl()
|
D | kfd_priv.h | 489 typedef int amdkfd_ioctl_t(struct file *filep, struct kfd_process *p,
|
/linux-4.1.27/drivers/staging/media/lirc/ |
D | lirc_parallel.c | 320 static loff_t lirc_lseek(struct file *filep, loff_t offset, int orig) in lirc_lseek() argument 325 static ssize_t lirc_read(struct file *filep, char __user *buf, size_t n, in lirc_read() argument 347 if (filep->f_flags & O_NONBLOCK) { in lirc_read() 364 static ssize_t lirc_write(struct file *filep, const char __user *buf, size_t n, in lirc_write() argument 462 static long lirc_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) in lirc_ioctl() argument 515 static int lirc_open(struct inode *node, struct file *filep) in lirc_open() argument 531 static int lirc_close(struct inode *node, struct file *filep) in lirc_close() argument
|
D | lirc_zilog.c | 891 static ssize_t read(struct file *filep, char __user *outbuf, size_t n, in read() argument 894 struct IR *ir = filep->private_data; in read() 933 if (filep->f_flags & O_NONBLOCK) { in read() 1100 static ssize_t write(struct file *filep, const char __user *buf, size_t n, in write() argument 1103 struct IR *ir = filep->private_data; in write() 1208 static unsigned int poll(struct file *filep, poll_table *wait) in poll() argument 1210 struct IR *ir = filep->private_data; in poll() 1231 poll_wait(filep, &rbuf->wait_poll, wait); in poll() 1241 static long ioctl(struct file *filep, unsigned int cmd, unsigned long arg) in ioctl() argument 1243 struct IR *ir = filep->private_data; in ioctl() [all …]
|
D | lirc_sir.c | 152 static long lirc_ioctl(struct file *filep, unsigned int cmd, unsigned long arg); 272 static long lirc_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) in lirc_ioctl() argument
|
D | lirc_serial.c | 919 static long lirc_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) in lirc_ioctl() argument 977 return lirc_dev_fop_ioctl(filep, cmd, arg); in lirc_ioctl()
|
/linux-4.1.27/drivers/net/ethernet/intel/fm10k/ |
D | fm10k_debugfs.c | 131 static int fm10k_dbg_desc_open(struct inode *inode, struct file *filep) in fm10k_dbg_desc_open() argument 143 err = seq_open(filep, desc_seq_ops); in fm10k_dbg_desc_open() 147 ((struct seq_file *)filep->private_data)->private = ring; in fm10k_dbg_desc_open()
|
/linux-4.1.27/drivers/vhost/ |
D | vhost.c | 635 struct file *eventfp, *filep = NULL; in vhost_vring_ioctl() local 766 pollstop = (filep = vq->kick) != NULL; in vhost_vring_ioctl() 769 filep = eventfp; in vhost_vring_ioctl() 782 filep = vq->call; in vhost_vring_ioctl() 788 filep = eventfp; in vhost_vring_ioctl() 801 filep = vq->error; in vhost_vring_ioctl() 807 filep = eventfp; in vhost_vring_ioctl() 818 if (filep) in vhost_vring_ioctl() 819 fput(filep); in vhost_vring_ioctl() 835 struct file *eventfp, *filep = NULL; in vhost_dev_ioctl() local [all …]
|
/linux-4.1.27/tools/power/x86/turbostat/ |
D | turbostat.c | 1423 FILE *filep = fopen(path, "r"); in fopen_or_die() local 1424 if (!filep) in fopen_or_die() 1426 return filep; in fopen_or_die() 1436 FILE *filep; in parse_int_file() local 1442 filep = fopen_or_die(path, "r"); in parse_int_file() 1443 if (fscanf(filep, "%d", &value) != 1) in parse_int_file() 1445 fclose(filep); in parse_int_file() 1457 FILE *filep; in get_cpu_position_in_core() local 1465 filep = fopen(path, "r"); in get_cpu_position_in_core() 1466 if (filep == NULL) { in get_cpu_position_in_core() [all …]
|
/linux-4.1.27/arch/metag/kernel/ |
D | process.c | 378 unsigned long __metag_elf_map(struct file *filep, unsigned long addr, in __metag_elf_map() argument 410 map_addr = vm_mmap(filep, addr, total_size, prot, type, off); in __metag_elf_map() 414 map_addr = vm_mmap(filep, addr, size, prot, type, off); in __metag_elf_map()
|
/linux-4.1.27/drivers/char/ipmi/ |
D | ipmi_devintf.c | 783 static long compat_ipmi_ioctl(struct file *filep, unsigned int cmd, in compat_ipmi_ioctl() argument 787 struct ipmi_file_private *priv = filep->private_data; in compat_ipmi_ioctl() 825 rc = ipmi_ioctl(filep, in compat_ipmi_ioctl() 842 return ipmi_ioctl(filep, cmd, arg); in compat_ipmi_ioctl() 846 static long unlocked_compat_ipmi_ioctl(struct file *filep, unsigned int cmd, in unlocked_compat_ipmi_ioctl() argument 852 ret = compat_ipmi_ioctl(filep, cmd, arg); in unlocked_compat_ipmi_ioctl()
|
D | ipmi_watchdog.c | 863 static int ipmi_open(struct inode *ino, struct file *filep) in ipmi_open() argument 876 return nonseekable_open(ino, filep); in ipmi_open() 906 static int ipmi_close(struct inode *ino, struct file *filep) in ipmi_close() argument
|
/linux-4.1.27/drivers/scsi/megaraid/ |
D | megaraid_mm.c | 96 mraid_mm_open(struct inode *inode, struct file *filep) in mraid_mm_open() argument 114 mraid_mm_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) in mraid_mm_ioctl() argument 222 mraid_mm_unlocked_ioctl(struct file *filep, unsigned int cmd, in mraid_mm_unlocked_ioctl() argument 229 err = mraid_mm_ioctl(filep, cmd, arg); in mraid_mm_unlocked_ioctl() 1238 mraid_mm_compat_ioctl(struct file *filep, unsigned int cmd, in mraid_mm_compat_ioctl() argument 1243 err = mraid_mm_ioctl(filep, cmd, arg); in mraid_mm_compat_ioctl()
|
D | megaraid_sas_base.c | 5939 static int megasas_mgmt_open(struct inode *inode, struct file *filep) in megasas_mgmt_open() argument 5956 static int megasas_mgmt_fasync(int fd, struct file *filep, int mode) in megasas_mgmt_fasync() argument 5962 rc = fasync_helper(fd, filep, mode, &megasas_async_queue); in megasas_mgmt_fasync() 5968 filep->private_data = filep; in megasas_mgmt_fasync()
|
/linux-4.1.27/drivers/media/rc/ |
D | ir-lirc-codec.c | 183 static long ir_lirc_ioctl(struct file *filep, unsigned int cmd, in ir_lirc_ioctl() argument 192 lirc = lirc_get_pdata(filep); in ir_lirc_ioctl() 306 return lirc_dev_fop_ioctl(filep, cmd, arg); in ir_lirc_ioctl()
|
D | ir-rx51.c | 287 static long lirc_rx51_ioctl(struct file *filep, in lirc_rx51_ioctl() argument 293 struct lirc_rx51 *lirc_rx51 = filep->private_data; in lirc_rx51_ioctl()
|
/linux-4.1.27/virt/kvm/ |
D | vfio.c | 34 static struct vfio_group *kvm_vfio_group_get_external_user(struct file *filep) in kvm_vfio_group_get_external_user() argument 43 vfio_group = fn(filep); in kvm_vfio_group_get_external_user()
|
/linux-4.1.27/include/linux/ |
D | vfio.h | 86 extern struct vfio_group *vfio_group_get_external_user(struct file *filep);
|
/linux-4.1.27/drivers/scsi/qla4xxx/ |
D | ql4_attr.c | 13 qla4_8xxx_sysfs_read_fw_dump(struct file *filep, struct kobject *kobj, in qla4_8xxx_sysfs_read_fw_dump() argument 31 qla4_8xxx_sysfs_write_fw_dump(struct file *filep, struct kobject *kobj, in qla4_8xxx_sysfs_write_fw_dump() argument
|
/linux-4.1.27/security/selinux/ |
D | selinuxfs.c | 1048 static ssize_t sel_read_bool(struct file *filep, char __user *buf, in sel_read_bool() argument 1055 unsigned index = file_inode(filep)->i_ino & SEL_INO_MASK; in sel_read_bool() 1056 const char *name = filep->f_path.dentry->d_name.name; in sel_read_bool() 1083 static ssize_t sel_write_bool(struct file *filep, const char __user *buf, in sel_write_bool() argument 1089 unsigned index = file_inode(filep)->i_ino & SEL_INO_MASK; in sel_write_bool() 1090 const char *name = filep->f_path.dentry->d_name.name; in sel_write_bool() 1142 static ssize_t sel_commit_bools_write(struct file *filep, in sel_commit_bools_write() argument
|
/linux-4.1.27/drivers/isdn/i4l/ |
D | isdn_common.c | 1733 isdn_open(struct inode *ino, struct file *filep) in isdn_open() argument 1746 p->private = (char *) &(filep->private_data); in isdn_open() 1749 filep->private_data = (char *) 1; in isdn_open() 1783 retval = isdn_ppp_open(minor - ISDN_MINOR_PPP, filep); in isdn_open() 1790 nonseekable_open(ino, filep); in isdn_open() 1796 isdn_close(struct inode *ino, struct file *filep) in isdn_close() argument 1806 if (p->private == (char *) &(filep->private_data)) { in isdn_close() 1830 isdn_ppp_release(minor - ISDN_MINOR_PPP, filep); in isdn_close()
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | radeon_ttm.c | 1044 static int radeon_ttm_vram_open(struct inode *inode, struct file *filep) in radeon_ttm_vram_open() argument 1048 filep->private_data = inode->i_private; in radeon_ttm_vram_open() 1096 static int radeon_ttm_gtt_open(struct inode *inode, struct file *filep) in radeon_ttm_gtt_open() argument 1100 filep->private_data = inode->i_private; in radeon_ttm_gtt_open()
|
/linux-4.1.27/arch/powerpc/platforms/powernv/ |
D | opal-elog.c | 155 static ssize_t raw_attr_read(struct file *filep, struct kobject *kobj, in raw_attr_read() argument
|
D | opal-dump.c | 282 static ssize_t dump_attr_read(struct file *filep, struct kobject *kobj, in dump_attr_read() argument
|
/linux-4.1.27/drivers/char/ |
D | nwflash.c | 95 static long flash_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) in flash_ioctl() argument
|
/linux-4.1.27/fs/gfs2/ |
D | file.c | 331 static void gfs2_size_hint(struct file *filep, loff_t offset, size_t size) in gfs2_size_hint() argument 333 struct inode *inode = file_inode(filep); in gfs2_size_hint()
|
/linux-4.1.27/drivers/video/fbdev/msm/ |
D | mdp.c | 257 struct file **filep) in get_img() argument
|
/linux-4.1.27/drivers/scsi/ |
D | pmcraid.c | 3523 static int pmcraid_chr_open(struct inode *inode, struct file *filep) in DEF_SCSI_QCMD() 3532 filep->private_data = pinstance; in DEF_SCSI_QCMD() 3543 static int pmcraid_chr_fasync(int fd, struct file *filep, int mode) in pmcraid_chr_fasync() argument 3548 pinstance = filep->private_data; in pmcraid_chr_fasync() 3550 rc = fasync_helper(fd, filep, mode, &pinstance->aen_queue); in pmcraid_chr_fasync() 4019 struct file *filep, in pmcraid_chr_ioctl() argument 4043 pinstance = filep->private_data; in pmcraid_chr_ioctl()
|
D | megaraid.c | 97 megadev_unlocked_ioctl(struct file *filep, unsigned int cmd, unsigned long arg); 2991 megadev_open (struct inode *inode, struct file *filep) in megadev_open() argument 3015 megadev_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) in megadev_ioctl() argument 3407 megadev_unlocked_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) in megadev_unlocked_ioctl() argument 3412 ret = megadev_ioctl(filep, cmd, arg); in megadev_unlocked_ioctl()
|
D | gdth.c | 181 static int gdth_open(struct inode *inode, struct file *filep); 182 static int gdth_close(struct inode *inode, struct file *filep); 183 static long gdth_unlocked_ioctl(struct file *filep, unsigned int cmd, 4036 static int gdth_open(struct inode *inode, struct file *filep) in gdth_open() argument 4051 static int gdth_close(struct inode *inode, struct file *filep) in gdth_close() argument 4470 static int gdth_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) in gdth_ioctl() argument
|
/linux-4.1.27/drivers/scsi/mpt3sas/ |
D | mpt3sas_ctl.c | 501 _ctl_fasync(int fd, struct file *filep, int mode) in _ctl_fasync() argument 503 return fasync_helper(fd, filep, mode, &async_queue); in _ctl_fasync() 513 _ctl_poll(struct file *filep, poll_table *wait) in _ctl_poll() argument 517 poll_wait(filep, &ctl_poll_wait, wait); in _ctl_poll()
|
/linux-4.1.27/drivers/scsi/mpt2sas/ |
D | mpt2sas_ctl.c | 507 _ctl_fasync(int fd, struct file *filep, int mode) in _ctl_fasync() argument 509 return fasync_helper(fd, filep, mode, &async_queue); in _ctl_fasync() 519 _ctl_poll(struct file *filep, poll_table *wait) in _ctl_poll() argument 523 poll_wait(filep, &ctl_poll_wait, wait); in _ctl_poll()
|
/linux-4.1.27/drivers/s390/char/ |
D | zcore.c | 376 static int zcore_release(struct inode *inode, struct file *filep) in zcore_release() argument
|
/linux-4.1.27/fs/ |
D | binfmt_elf.c | 336 static unsigned long elf_map(struct file *filep, unsigned long addr, in elf_map() argument 361 map_addr = vm_mmap(filep, addr, total_size, prot, type, off); in elf_map() 365 map_addr = vm_mmap(filep, addr, size, prot, type, off); in elf_map()
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | i915_debugfs.c | 3019 static int i915_pipe_crc_open(struct inode *inode, struct file *filep) in i915_pipe_crc_open() argument 3036 filep->private_data = inode->i_private; in i915_pipe_crc_open() 3043 static int i915_pipe_crc_release(struct inode *inode, struct file *filep) in i915_pipe_crc_release() argument 3069 i915_pipe_crc_read(struct file *filep, char __user *user_buf, size_t count, in i915_pipe_crc_read() argument 3072 struct pipe_crc_info *info = filep->private_data; in i915_pipe_crc_read() 3095 if (filep->f_flags & O_NONBLOCK) { in i915_pipe_crc_read()
|
/linux-4.1.27/drivers/message/fusion/ |
D | mptctl.c | 600 mptctl_fasync(int fd, struct file *filep, int mode) in mptctl_fasync() argument 609 ret = fasync_helper(fd, filep, mode, &async_queue); in mptctl_fasync()
|
/linux-4.1.27/drivers/media/platform/davinci/ |
D | vpif_display.c | 1041 static int vpif_log_status(struct file *filep, void *priv) in vpif_log_status() argument
|
D | vpif_capture.c | 1238 static int vpif_log_status(struct file *filep, void *priv) in vpif_log_status() argument
|