All of lore.kernel.org
 help / color / mirror / Atom feed
* - char-amiserial-turn-local_save_flags-local_irq_disable-into-local_irq_save.patch removed from -mm tree
@ 2007-02-11 22:55 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2007-02-11 22:55 UTC (permalink / raw)
  To: jkosina, mm-commits


The patch titled
     CHAR-Amiserial: turn local_save_flags() + local_irq_disable() into local_irq_save()
has been removed from the -mm tree.  Its filename was
     char-amiserial-turn-local_save_flags-local_irq_disable-into-local_irq_save.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: CHAR-Amiserial: turn local_save_flags() + local_irq_disable() into local_irq_save()
From: Jiri Kosina <jkosina@suse.cz>

drivers/char/amiserial.c::rs_write() contains local_irq_disable() after
local_save_flags().  Turn it into local_irq_save().

Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 drivers/char/amiserial.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff -puN drivers/char/amiserial.c~char-amiserial-turn-local_save_flags-local_irq_disable-into-local_irq_save drivers/char/amiserial.c
--- a/drivers/char/amiserial.c~char-amiserial-turn-local_save_flags-local_irq_disable-into-local_irq_save
+++ a/drivers/char/amiserial.c
@@ -902,8 +902,7 @@ static int rs_write(struct tty_struct * 
 	if (!info->xmit.buf)
 		return 0;
 
-	local_save_flags(flags);
-	local_irq_disable();
+	local_irq_save(flags);
 	while (1) {
 		c = CIRC_SPACE_TO_END(info->xmit.head,
 				      info->xmit.tail,
_

Patches currently in -mm which might be from jkosina@suse.cz are

origin.patch
git-alsa.patch
git-hid.patch
git-ipwireless_cs.patch
ds1302-local_irq_disable-is-redundant-after-local_irq_save.patch
sysctl-mac_hid-remove-unnecessary-insert_at_head-flag.patch

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-02-11 22:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-11 22:55 - char-amiserial-turn-local_save_flags-local_irq_disable-into-local_irq_save.patch removed from -mm tree akpm

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.