Use single threaded work queue.
[cascardo/kernel/samples/workqueue/.git] / wq.c
1 /*
2  *  Copyright (C) 2009  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
20 #include <linux/init.h>
21 #include <linux/module.h>
22 #include <linux/workqueue.h>
23
24 MODULE_LICENSE("GPL");
25
26 static struct workqueue_struct *mywq;
27
28 static void do_mywork(struct work_struct *data)
29 {
30         printk(KERN_INFO "I've been scheduled.\n");
31         queue_delayed_work(mywq, to_delayed_work(data), 8 * HZ);
32 }
33
34 DECLARE_DELAYED_WORK(mywork, do_mywork);
35
36 static int mywq_init(void)
37 {
38         mywq = create_workqueue("mywq");
39         printk(KERN_INFO "Here I am, this is me.\n");
40         queue_delayed_work(mywq, &mywork, 8 * HZ);
41         return 0;
42 }
43
44 static void mywq_exit(void)
45 {
46         cancel_delayed_work_sync(&mywork);
47         flush_workqueue(mywq);
48         destroy_workqueue(mywq);
49 }
50
51 module_init(mywq_init);
52 module_exit(mywq_exit);