From: Zach Brown <zach.brown@oracle.com>
To: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>,
akpm@osdl.org, linux-kernel@vger.kernel.org
Subject: Re: PATCH: Voyager, tty locking
Date: Tue, 08 Aug 2006 11:38:32 -0700 [thread overview]
Message-ID: <44D8DA28.1030005@oracle.com> (raw)
In-Reply-To: <1155060288.26517.43.camel@mulgrave.il.steeleye.com>
[-- Attachment #1: Type: text/plain, Size: 252 bytes --]
> I'll add the kthread conversion to my list ... unless the suggestor also
> wants to become the implementor?
Well, here's a start that builds. I didn't want to get too close to the
nutty sem and timeout logic.
- z
[ apologies for the attachment ]
[-- Attachment #2: voyager-thread-to-kthread.patch --]
[-- Type: text/x-patch, Size: 2638 bytes --]
Index: 2.6.18-rc4-removing-foot-from-mouth/arch/i386/mach-voyager/voyager_thread.c
===================================================================
--- 2.6.18-rc4-removing-foot-from-mouth.orig/arch/i386/mach-voyager/voyager_thread.c
+++ 2.6.18-rc4-removing-foot-from-mouth/arch/i386/mach-voyager/voyager_thread.c
@@ -24,34 +24,21 @@
#include <linux/kmod.h>
#include <linux/completion.h>
#include <linux/sched.h>
+#include <linux/kthread.h>
#include <asm/desc.h>
#include <asm/voyager.h>
#include <asm/vic.h>
#include <asm/mtrr.h>
#include <asm/msr.h>
-#define THREAD_NAME "kvoyagerd"
-
/* external variables */
int kvoyagerd_running = 0;
DECLARE_MUTEX_LOCKED(kvoyagerd_sem);
-static int thread(void *);
+static struct task_struct *voyager_task;
static __u8 set_timeout = 0;
-/* Start the machine monitor thread. Return 1 if OK, 0 if fail */
-static int __init
-voyager_thread_start(void)
-{
- if(kernel_thread(thread, NULL, CLONE_KERNEL) < 0) {
- /* This is serious, but not fatal */
- printk(KERN_ERR "Voyager: Failed to create system monitor thread!!!\n");
- return 1;
- }
- return 0;
-}
-
static int
execute(const char *string)
{
@@ -116,25 +103,19 @@ wakeup(unsigned long unused)
up(&kvoyagerd_sem);
}
-static int
-thread(void *unused)
+static int voyager_thread(void *unused)
{
struct timer_list wakeup_timer;
kvoyagerd_running = 1;
- daemonize(THREAD_NAME);
-
set_timeout = 0;
init_timer(&wakeup_timer);
- sigfillset(¤t->blocked);
- current->signal->tty = NULL;
-
printk(KERN_NOTICE "Voyager starting monitor thread\n");
- for(;;) {
+ while(!kthread_should_stop()) {
down_interruptible(&kvoyagerd_sem);
VDEBUG(("Voyager Daemon awoken\n"));
if(voyager_status.request_from_kernel == 0) {
@@ -151,13 +132,28 @@ thread(void *unused)
add_timer(&wakeup_timer);
}
}
+
+ return 0;
+}
+
+/* Start the machine monitor thread. Return 1 if OK, 0 if fail */
+static int __init voyager_thread_init(void)
+{
+ voyager_task = kthread_run(voyager_thread, NULL, "kvoyagerd");
+ if (IS_ERR(voyager_task)) {
+ /* This is serious, but not fatal */
+ printk(KERN_ERR "Voyager: Failed to create system monitor thread! error %ld\n", PTR_ERR(voyager_task));
+ return PTR_ERR(voyager_task);
+ }
+
+ return 0;
}
+module_init(voyager_thread_init);
-static void __exit
-voyager_thread_stop(void)
+static void __exit voyager_thread_exit(void)
{
- /* FIXME: do nothing at the moment */
+ if (voyager_task && !IS_ERR(voyager_task))
+ kthread_stop(voyager_task);
}
+module_exit(voyager_thread_exit);
-module_init(voyager_thread_start);
-//module_exit(voyager_thread_stop);
prev parent reply other threads:[~2006-08-08 18:38 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-08-08 18:07 PATCH: Voyager, tty locking Alan Cox
2006-08-08 17:57 ` Zach Brown
2006-08-08 18:04 ` James Bottomley
2006-08-08 18:38 ` Zach Brown [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=44D8DA28.1030005@oracle.com \
--to=zach.brown@oracle.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=akpm@osdl.org \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.