nonet.c 528 B

12345678910111213141516171819202122232425
  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. #include <linux/module.h>
  11. #include <linux/errno.h>
  12. #include <linux/fs.h>
  13. #include <linux/init.h>
  14. #include <linux/kernel.h>
  15. static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
  16. {
  17. return -ENXIO;
  18. }
  19. const struct file_operations bad_sock_fops = {
  20. .owner = THIS_MODULE,
  21. .open = sock_no_open,
  22. };