/* * net/nonet.c * * Dummy functions to allow us to configure network support entirely * out of the kernel. * * Distributed under the terms of the GNU GPL version 2. * Copyright (c) Matthew Wilcox 2003 */ #include #include #include #include #include static int sock_no_open(struct inode *irrelevant, struct file *dontcare) { return -ENXIO; } const struct file_operations bad_sock_fops = { .owner = THIS_MODULE, .open = sock_no_open, .llseek = noop_llseek, }; Git repository'/>
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2014-08-08fs/coda: use linux/uaccess.hFabian Frederick1-1/+1
2013-02-22new helper: file_inode(file)Al Viro1-1/+1
2011-07-20->permission() sanitizing: don't pass flags to ->permission()Al Viro1-2/+2
2011-06-20coda_ioctl_permission() is safe in RCU modeAl Viro1-2/+0
2011-01-12take coda-private headers out of include/linuxAl Viro1-2/+2
2011-01-07fs: provide rcu-walk aware permission i_opsNick Piggin1-2/+4
2010-10-25Coda: push BKL regions into coda_upcall()Yoshihisa Abe1-16/+6
2010-10-15llseek: automatically add .llseek fopArnd Bergmann1-0/+1
2010-05-17coda: Clean-up whitespace problems in pioctl.cJohn Kacur1-18/+17
2010-05-17coda: BKL ioctl pushdownJohn Kacur1-17/+24
2008-10-23[PATCH] move executable checking into ->permission()Miklos Szeredi1-1/+1
2008-07-26[PATCH] sanitize __user_walk_fd() et.al.Al Viro1-7/+7
2008-07-26[PATCH] sanitize ->permission() prototypeAl Viro1-4/+2