tag | line | file | source code |
fops | 245 | drivers/char/tty_io.c | void do_tty_hangup(struct tty_struct * tty, struct file_operations *fops) |
fops | 264 | drivers/char/tty_io.c | filp->f_op = fops; |
fops | 21 | fs/devices.c | struct file_operations * fops; |
fops | 36 | fs/devices.c | return blkdevs[major].fops; |
fops | 43 | fs/devices.c | return chrdevs[major].fops; |
fops | 46 | fs/devices.c | int register_chrdev(unsigned int major, const char * name, struct file_operations *fops) |
fops | 50 | fs/devices.c | if (chrdevs[major].fops) |
fops | 53 | fs/devices.c | chrdevs[major].fops = fops; |
fops | 57 | fs/devices.c | int register_blkdev(unsigned int major, const char * name, struct file_operations *fops) |
fops | 61 | fs/devices.c | if (blkdevs[major].fops) |
fops | 64 | fs/devices.c | blkdevs[major].fops = fops; |
fops | 72 | fs/devices.c | if (!chrdevs[major].fops) |
fops | 77 | fs/devices.c | chrdevs[major].fops = NULL; |
fops | 85 | fs/devices.c | if (!blkdevs[major].fops) |
fops | 90 | fs/devices.c | blkdevs[major].fops = NULL; |
fops | 102 | fs/devices.c | if (i >= MAX_BLKDEV || !blkdevs[i].fops) |
fops | 104 | fs/devices.c | filp->f_op = blkdevs[i].fops; |
fops | 153 | fs/devices.c | if (i >= MAX_CHRDEV || !chrdevs[i].fops) |
fops | 155 | fs/devices.c | filp->f_op = chrdevs[i].fops; |
fops | 66 | fs/select.c | struct file_operations *fops; |
fops | 70 | fs/select.c | if ((fops = file->f_op) && (select = fops->select)) |
fops | 254 | fs/super.c | struct file_operations * fops; |
fops | 286 | fs/super.c | fops = get_blkfops(MAJOR(dev)); |
fops | 287 | fs/super.c | if (fops && fops->release) |
fops | 288 | fs/super.c | fops->release(inode,NULL); |
fops | 400 | fs/super.c | struct file_operations * fops; |
fops | 448 | fs/super.c | fops = get_blkfops(MAJOR(dev)); |
fops | 449 | fs/super.c | if (fops && fops->open) { |
fops | 450 | fs/super.c | retval = fops->open(inode,NULL); |
fops | 482 | fs/super.c | if (retval && fops && fops->release) |
fops | 483 | fs/super.c | fops->release(inode,NULL); |