Blame view

net/nonet.c 552 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  /*
   * 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 <linux/module.h>
  #include <linux/errno.h>
  #include <linux/fs.h>
  #include <linux/init.h>
  #include <linux/kernel.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
17
18
19
  static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
  {
  	return -ENXIO;
  }
4b6f5d20b   Arjan van de Ven   [PATCH] Make most...
20
  const struct file_operations bad_sock_fops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
21
22
  	.owner = THIS_MODULE,
  	.open = sock_no_open,
6038f373a   Arnd Bergmann   llseek: automatic...
23
  	.llseek = noop_llseek,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
  };