/kernel/linux/linux-5.10/drivers/char/ |
H A D | misc.c | 105 const struct file_operations *new_fops = NULL; in misc_open() local 111 new_fops = fops_get(c->fops); in misc_open() 116 if (!new_fops) { in misc_open() 123 new_fops = fops_get(c->fops); in misc_open() 127 if (!new_fops) in misc_open() 139 replace_fops(file, new_fops); in misc_open()
|
/kernel/linux/linux-6.6/drivers/char/ |
H A D | misc.c | 127 const struct file_operations *new_fops = NULL; in misc_open() local 135 new_fops = fops_get(iter->fops); in misc_open() 139 if (!new_fops) { in misc_open() 148 new_fops = fops_get(iter->fops); in misc_open() 151 if (!new_fops) in misc_open() 163 replace_fops(file, new_fops); in misc_open()
|
/kernel/linux/linux-6.6/drivers/usb/core/ |
H A D | file.c | 36 const struct file_operations *new_fops; in usb_open() local 39 new_fops = fops_get(usb_minors[iminor(inode)]); in usb_open() 41 if (!new_fops) in usb_open() 44 replace_fops(file, new_fops); in usb_open()
|
/kernel/linux/linux-5.10/drivers/usb/core/ |
H A D | file.c | 37 const struct file_operations *new_fops; in usb_open() local 40 new_fops = fops_get(usb_minors[iminor(inode)]); in usb_open() 42 if (!new_fops) in usb_open() 45 replace_fops(file, new_fops); in usb_open()
|
/kernel/linux/linux-5.10/sound/ |
H A D | sound_core.c | 541 const struct file_operations *new_fops = NULL; in soundcore_open() local 554 new_fops = fops_get(s->unit_fops); in soundcore_open() 555 if (preclaim_oss && !new_fops) { in soundcore_open() 581 new_fops = fops_get(s->unit_fops); in soundcore_open() 584 if (new_fops) { in soundcore_open() 590 replace_fops(file, new_fops); in soundcore_open()
|
/kernel/linux/linux-6.6/sound/ |
H A D | sound_core.c | 538 const struct file_operations *new_fops = NULL; in soundcore_open() local 551 new_fops = fops_get(s->unit_fops); in soundcore_open() 552 if (preclaim_oss && !new_fops) { in soundcore_open() 578 new_fops = fops_get(s->unit_fops); in soundcore_open() 582 if (!new_fops) in soundcore_open() 589 replace_fops(file, new_fops); in soundcore_open()
|
/kernel/linux/linux-6.6/drivers/accel/ |
H A D | drm_accel.c | 259 const struct file_operations *new_fops; in accel_stub_open() local 267 new_fops = fops_get(minor->dev->driver->fops); in accel_stub_open() 268 if (!new_fops) { in accel_stub_open() 273 replace_fops(filp, new_fops); in accel_stub_open()
|
/kernel/linux/linux-5.10/sound/core/ |
H A D | sound.c | 142 const struct file_operations *new_fops; in snd_open() local 156 new_fops = fops_get(mptr->f_ops); in snd_open() 158 if (!new_fops) in snd_open() 160 replace_fops(file, new_fops); in snd_open()
|
/kernel/linux/linux-6.6/sound/core/ |
H A D | sound.c | 148 const struct file_operations *new_fops; in snd_open() local 162 new_fops = fops_get(mptr->f_ops); in snd_open() 164 if (!new_fops) in snd_open() 166 replace_fops(file, new_fops); in snd_open()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/ |
H A D | drm_drv.c | 1007 const struct file_operations *new_fops; in drm_stub_open() local 1017 new_fops = fops_get(minor->dev->driver->fops); in drm_stub_open() 1018 if (!new_fops) { in drm_stub_open() 1023 replace_fops(filp, new_fops); in drm_stub_open()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/ |
H A D | drm_drv.c | 1035 const struct file_operations *new_fops; in drm_stub_open() local 1045 new_fops = fops_get(minor->dev->driver->fops); in drm_stub_open() 1046 if (!new_fops) { in drm_stub_open() 1051 replace_fops(filp, new_fops); in drm_stub_open()
|
/kernel/linux/linux-5.10/drivers/media/dvb-core/ |
H A D | dvbdev.c | 106 const struct file_operations *new_fops; in dvb_device_open() local 108 new_fops = fops_get(dvbdev->fops); in dvb_device_open() 109 if (!new_fops) in dvb_device_open() 112 replace_fops(file, new_fops); in dvb_device_open()
|
/kernel/linux/linux-6.6/drivers/media/dvb-core/ |
H A D | dvbdev.c | 96 const struct file_operations *new_fops; in dvb_device_open() local 98 new_fops = fops_get(dvbdev->fops); in dvb_device_open() 99 if (!new_fops) in dvb_device_open() 102 replace_fops(file, new_fops); in dvb_device_open()
|