Use schedule_timeout.
[cascardo/kernel/samples/char2/.git] / hellochar.c
1 /*
2  *  Copyright (C) 2010  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include <linux/module.h>
20 #include <linux/fs.h>
21 #include <linux/cdev.h>
22 #include <linux/slab.h>
23 #include <linux/spinlock.h>
24 #include <linux/sched.h>
25
26 MODULE_LICENSE("GPL");
27
28 static dev_t devnum;
29 static struct cdev *dev;
30 static const char default_greeting[] = "Hello, World!\n";
31
32 static DEFINE_SPINLOCK(hello_lock);
33
34 static int hello_open(struct inode *ino, struct file *fp)
35 {
36         return 0;
37 }
38
39 static ssize_t hello_read(struct file *fp, char __user *buf, size_t sz,
40         loff_t *pos)
41 {
42         unsigned long timeout = 5 * HZ;
43         while (timeout > 0) {
44                 set_current_state(TASK_INTERRUPTIBLE);
45                 timeout = schedule_timeout(timeout);
46         }
47         return 0;
48 }
49
50 static ssize_t hello_write(struct file *fp, const char __user *buf, size_t sz,
51         loff_t *pos)
52 {
53         return 0;
54 }
55
56 static int hello_release(struct inode *ino, struct file *fp)
57 {
58         return 0;
59 }
60
61 static const struct file_operations hello_fops = {
62         .owner = THIS_MODULE,
63         .open = hello_open,
64         .release = hello_release,
65         .read = hello_read,
66         .write = hello_write,
67 };
68
69 static int __init ch_init(void)
70 {
71         int r = 0;
72         r = alloc_chrdev_region(&devnum, 0, 256, "hello");
73         if (r)
74                 goto reg_out;
75         dev = cdev_alloc();
76         if (!dev) {
77                 r = -ENOMEM;
78                 goto cdev_out;
79         }
80         dev->ops = &hello_fops;
81         r = cdev_add(dev, devnum, 256);
82         if (r)
83                 goto add_out;
84         printk(KERN_DEBUG "Allocate major %d\n", MAJOR(devnum));
85         return 0;
86 add_out:
87         kfree(dev);
88 cdev_out:
89         unregister_chrdev_region(devnum, 256);
90 reg_out:
91         return r;
92 }
93
94 static void __exit ch_exit(void)
95 {
96         cdev_del(dev);
97         unregister_chrdev_region(devnum, 256);
98 }
99
100 module_init(ch_init);
101 module_exit(ch_exit);