taglinefilesource code
fops257arch/alpha/kernel/osf_sys.cstruct file_operations * fops;
fops276arch/alpha/kernel/osf_sys.cfops = get_blkfops(MAJOR(dev));
fops277arch/alpha/kernel/osf_sys.cif (!fops) {
fops281arch/alpha/kernel/osf_sys.cif (fops->open) {
fops286arch/alpha/kernel/osf_sys.cretval = fops->open(inode, &dummy);
fops298arch/alpha/kernel/osf_sys.cstruct file_operations * fops;
fops300arch/alpha/kernel/osf_sys.cfops = get_blkfops(MAJOR(inode->i_rdev));
fops301arch/alpha/kernel/osf_sys.cif (fops->release)
fops302arch/alpha/kernel/osf_sys.cfops->release(inode, NULL);
fops106drivers/char/misc.cif ((file->f_op = c->fops))
fops369drivers/char/tty_io.cvoid do_tty_hangup(struct tty_struct * tty, struct file_operations *fops)
fops389drivers/char/tty_io.cfilp->f_op = fops;
fops33fs/devices.cstruct file_operations * fops;
fops51fs/devices.cif (chrdevs[i].fops) {
fops57fs/devices.cif (blkdevs[i].fops) {
fops95fs/devices.c(major != 0 && !tb[major].fops)) {
fops101fs/devices.cret = tb[major].fops;
fops121fs/devices.cint register_chrdev(unsigned int major, const char * name, struct file_operations *fops)
fops125fs/devices.cif (chrdevs[major].fops == NULL) {
fops127fs/devices.cchrdevs[major].fops = fops;
fops135fs/devices.cif (chrdevs[major].fops && chrdevs[major].fops != fops)
fops138fs/devices.cchrdevs[major].fops = fops;
fops142fs/devices.cint register_blkdev(unsigned int major, const char * name, struct file_operations *fops)
fops146fs/devices.cif (blkdevs[major].fops == NULL) {
fops148fs/devices.cblkdevs[major].fops = fops;
fops156fs/devices.cif (blkdevs[major].fops && blkdevs[major].fops != fops)
fops159fs/devices.cblkdevs[major].fops = fops;
fops167fs/devices.cif (!chrdevs[major].fops)
fops172fs/devices.cchrdevs[major].fops = NULL;
fops180fs/devices.cif (!blkdevs[major].fops)
fops185fs/devices.cblkdevs[major].fops = NULL;
fops201fs/devices.cstruct file_operations * fops;
fops204fs/devices.cif (i >= MAX_BLKDEV || (fops = blkdevs[i].fops) == NULL)
fops206fs/devices.cif (fops->check_media_change == NULL)
fops208fs/devices.cif (!fops->check_media_change(dev))
fops219fs/devices.cif (fops->revalidate)
fops220fs/devices.cfops->revalidate(dev);
fops241fs/devices.cstruct file_operations *fops = get_blkfops(MAJOR(inode->i_rdev));
fops242fs/devices.cif (fops && fops->release)
fops243fs/devices.cfops->release(inode,NULL);
fops73fs/select.cstruct file_operations *fops;
fops77fs/select.cif ((fops = file->f_op) && (select = fops->select))
fops831fs/super.cstruct file_operations * fops;
fops859fs/super.cfops = NULL;
fops877fs/super.cfops = get_blkfops(MAJOR(dev));
fops878fs/super.cif (!fops) {
fops882fs/super.cif (fops->open) {
fops887fs/super.cretval = fops->open(inode, &dummy);
fops910fs/super.cif (retval && fops && fops->release)
fops911fs/super.cfops->release(inode, NULL);
fops16include/linux/miscdevice.hstruct file_operations *fops;