| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * net/nonet.c | 
 | 3 |  * | 
 | 4 |  * Dummy functions to allow us to configure network support entirely | 
 | 5 |  * out of the kernel. | 
 | 6 |  * | 
 | 7 |  * Distributed under the terms of the GNU GPL version 2. | 
 | 8 |  * Copyright (c) Matthew Wilcox 2003 | 
 | 9 |  */ | 
 | 10 |  | 
 | 11 | #include <linux/module.h> | 
 | 12 | #include <linux/errno.h> | 
 | 13 | #include <linux/fs.h> | 
 | 14 | #include <linux/init.h> | 
 | 15 | #include <linux/kernel.h> | 
 | 16 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | static int sock_no_open(struct inode *irrelevant, struct file *dontcare) | 
 | 18 | { | 
 | 19 | 	return -ENXIO; | 
 | 20 | } | 
 | 21 |  | 
| Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 22 | const struct file_operations bad_sock_fops = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | 	.owner = THIS_MODULE, | 
 | 24 | 	.open = sock_no_open, | 
| Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 25 | 	.llseek = noop_llseek, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | }; |