tag | line | file | source code |
fops | 26 | fs/devices.c | int register_chrdev(unsigned int major, const char * name, struct file_operations *fops) |
fops | 32 | fs/devices.c | chrdev_fops[major] = fops; |
fops | 36 | fs/devices.c | int register_blkdev(unsigned int major, const char * name, struct file_operations *fops) |
fops | 42 | fs/devices.c | blkdev_fops[major] = fops; |
fops | 66 | fs/select.c | struct file_operations *fops; |
fops | 70 | fs/select.c | if ((fops = file->f_op) && (select = fops->select)) |
fops | 239 | fs/super.c | struct file_operations * fops; |
fops | 271 | fs/super.c | fops = blkdev_fops[MAJOR(dev)]; |
fops | 272 | fs/super.c | if (fops && fops->release) |
fops | 273 | fs/super.c | fops->release(inode,NULL); |
fops | 368 | fs/super.c | struct file_operations * fops; |
fops | 416 | fs/super.c | fops = blkdev_fops[MAJOR(dev)]; |
fops | 417 | fs/super.c | if (fops && fops->open) { |
fops | 418 | fs/super.c | retval = fops->open(inode,NULL); |
fops | 440 | fs/super.c | if (retval && fops && fops->release) |
fops | 441 | fs/super.c | fops->release(inode,NULL); |
fops | 231 | kernel/chr_drv/tty_io.c | void do_tty_hangup(struct tty_struct * tty, struct file_operations *fops) |
fops | 250 | kernel/chr_drv/tty_io.c | filp->f_op = fops; |