All of lore.kernel.org
 help / color / mirror / Atom feed
From: Domen Puncer <domen@coderock.org>
To: kernel-janitors@vger.kernel.org
Subject: [Kernel-janitors] sleep_on removal from tokenring/tms389tr.c
Date: Fri, 23 Jul 2004 15:42:58 +0000	[thread overview]
Message-ID: <20040723154258.GB2467@masina> (raw)
In-Reply-To: <20040723154128.GA2467@masina>

[-- Attachment #1: Type: text/plain, Size: 888 bytes --]

Hi.

Replaced sleep_on_interruptible with wait_event_interruptible.
wait_event_interruptible condition is 0, but since it's a define it
compiles to nothing.

Compile tested.


Signed-off-by: Domen Puncer <domen@coderock.org>

--- c/drivers/net/tokenring/tms380tr.c	Fri Jul 23 16:00:23 2004
+++ a/drivers/net/tokenring/tms380tr.c	Fri Jul 23 17:11:05 2004
@@ -288,7 +288,7 @@
 	 * there will be a timeout from the timer.
 	 */
 	tp->Sleeping = 1;
-	interruptible_sleep_on(&tp->wait_for_tok_int);
+	wait_event_interruptible(tp->wait_for_tok_int, 0);
 	del_timer(&tp->timer);
 
 	/* If AdapterVirtOpenFlag is 1, the adapter is now open for use */
@@ -1145,7 +1145,7 @@
 	tms380tr_enable_interrupts(dev);
 
 	tp->Sleeping = 1;
-	interruptible_sleep_on(&tp->wait_for_tok_int);
+	wait_event_interruptible(tp->wait_for_tok_int, 0);
 	tp->TransmitCommandActive = 0;
     
 	del_timer(&tp->timer);

[-- Attachment #2: Type: text/plain, Size: 167 bytes --]

_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
http://lists.osdl.org/mailman/listinfo/kernel-janitors

      reply	other threads:[~2004-07-23 15:42 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-07-23 15:41 [Kernel-janitors] sleep_on removal from drivers/net/shaper.c Domen Puncer
2004-07-23 15:42 ` Domen Puncer [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=20040723154258.GB2467@masina \
    --to=domen@coderock.org \
    --cc=kernel-janitors@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.