|
Revision 1, 0.6 kB
(checked in by dkaplan1, 7 years ago)
|
Initial import
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 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 |
|
|---|
| 17 |
void __init sock_init(void) |
|---|
| 18 |
{ |
|---|
| 19 |
printk(KERN_INFO "Linux NoNET1.0 for Linux 2.6\n"); |
|---|
| 20 |
} |
|---|
| 21 |
|
|---|
| 22 |
static int sock_no_open(struct inode *irrelevant, struct file *dontcare) |
|---|
| 23 |
{ |
|---|
| 24 |
return -ENXIO; |
|---|
| 25 |
} |
|---|
| 26 |
|
|---|
| 27 |
struct file_operations bad_sock_fops = { |
|---|
| 28 |
.owner = THIS_MODULE, |
|---|
| 29 |
.open = sock_no_open, |
|---|
| 30 |
}; |
|---|