From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id D45C31384B4 for ; Tue, 3 Nov 2015 18:39:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A13821C01A; Tue, 3 Nov 2015 18:39:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0953121C01A for ; Tue, 3 Nov 2015 18:39:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5084433FE7D for ; Tue, 3 Nov 2015 18:39:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 69A551FC8 for ; Tue, 3 Nov 2015 18:39:56 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1446575986.22cf0359e3a1f6a2406230bdd75bb7a63c3212d0.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:3.18 commit in: / X-VCS-Repository: proj/linux-patches X-VCS-Files: 0000_README 1023_linux-3.18.24.patch X-VCS-Directories: / X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 22cf0359e3a1f6a2406230bdd75bb7a63c3212d0 X-VCS-Branch: 3.18 Date: Tue, 3 Nov 2015 18:39:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b5d99d98-3fe3-4e26-a4aa-4ad19922a61c X-Archives-Hash: eed4d9ea54513c56bf82895eab252fc0 commit: 22cf0359e3a1f6a2406230bdd75bb7a63c3212d0 Author: Mike Pagano gentoo org> AuthorDate: Tue Nov 3 18:39:46 2015 +0000 Commit: Mike Pagano gentoo org> CommitDate: Tue Nov 3 18:39:46 2015 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=22cf0359 Linux patch 3.18.24 0000_README | 4 ++++ 1023_linux-3.18.24.patch | 24 ++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/0000_README b/0000_README index 84e11a6..d829823 100644 --- a/0000_README +++ b/0000_README @@ -135,6 +135,10 @@ Patch: 1022_linux-3.18.23.patch From: http://www.kernel.org Desc: Linux 3.18.23 +Patch: 1023_linux-3.18.24.patch +From: http://www.kernel.org +Desc: Linux 3.18.24 + Patch: 1500_XATTR_USER_PREFIX.patch From: https://bugs.gentoo.org/show_bug.cgi?id=470644 Desc: Support for namespace user.pax.* on tmpfs. diff --git a/1023_linux-3.18.24.patch b/1023_linux-3.18.24.patch new file mode 100644 index 0000000..bed3a75 --- /dev/null +++ b/1023_linux-3.18.24.patch @@ -0,0 +1,24 @@ +diff --git a/Makefile b/Makefile +index 2ebc49903d33..9769e3bce6a2 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,6 +1,6 @@ + VERSION = 3 + PATCHLEVEL = 18 +-SUBLEVEL = 23 ++SUBLEVEL = 24 + EXTRAVERSION = + NAME = Diseased Newt + +diff --git a/drivers/tty/n_tty.c b/drivers/tty/n_tty.c +index fea7d905e77c..04e7d8e38c53 100644 +--- a/drivers/tty/n_tty.c ++++ b/drivers/tty/n_tty.c +@@ -364,7 +364,6 @@ static void n_tty_packet_mode_flush(struct tty_struct *tty) + spin_lock_irqsave(&tty->ctrl_lock, flags); + if (tty->link->packet) { + tty->ctrl_status |= TIOCPKT_FLUSHREAD; +- spin_unlock_irqrestore(&tty->ctrl_lock, flags); + wake_up_interruptible(&tty->link->read_wait); + } + spin_unlock_irqrestore(&tty->ctrl_lock, flags);