public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Pavel Machek <pavel@ucw.cz>
To: lkml@kcore.org, kernel list <linux-kernel@vger.kernel.org>,
	Andrew Morton <akpm@zip.com.au>
Subject: swsusp: fix suspending with mysqld
Date: Mon, 4 Oct 2004 14:24:22 +0200	[thread overview]
Message-ID: <20041004122422.GA2601@elf.ucw.cz> (raw)

Hi!

mysqld does signal calls in pretty tight loop, and swsusp is not able
to stop processes in such case. This should fix it. Please apply,
								Pavel


Index: linux/kernel/signal.c
===================================================================
--- linux.orig/kernel/signal.c	2004-10-01 12:24:26.000000000 +0200
+++ linux/kernel/signal.c	2004-10-01 01:00:26.000000000 +0200
@@ -1483,8 +1483,7 @@
 	unsigned long flags;
 	struct sighand_struct *psig;
 
-	if (sig == -1)
-		BUG();
+	BUG_ON(sig == -1);
 
  	/* do_notify_parent_cldstop should have been called instead.  */
  	BUG_ON(tsk->state & (TASK_STOPPED|TASK_TRACED));
@@ -2260,6 +2259,8 @@
 			ret = -EINTR;
 	}
 
+	if (current->flags & PF_FREEZE)
+		refrigerator(1);
 	return ret;
 }
 

-- 
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!

             reply	other threads:[~2004-10-04 13:26 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-10-04 12:24 Pavel Machek [this message]
2004-10-04 19:09 ` swsusp: fix suspending with mysqld Jan De Luyck
2004-10-04 22:26   ` Pavel Machek
2004-10-05 14:46     ` Jan De Luyck
2004-10-04 22:04 ` Andrew Morton

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=20041004122422.GA2601@elf.ucw.cz \
    --to=pavel@ucw.cz \
    --cc=akpm@zip.com.au \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lkml@kcore.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox