From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754606AbZJRNS5 (ORCPT ); Sun, 18 Oct 2009 09:18:57 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754167AbZJRNS4 (ORCPT ); Sun, 18 Oct 2009 09:18:56 -0400 Received: from mx1.redhat.com ([209.132.183.28]:45013 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753303AbZJRNS4 (ORCPT ); Sun, 18 Oct 2009 09:18:56 -0400 Date: Sun, 18 Oct 2009 15:18:14 +0200 (CEST) From: John Kacur X-X-Sender: jkacur@localhost.localdomain To: linux-kernel@vger.kernel.org, Ralf Baechle cc: Thomas Gleixner , Alan Cox , Frederic Weisbecker , Arnd Bergmann , Andrew Morton , Linus Torvalds , Ingo Molnar Subject: [PATCH] MIPS: VPE: Remove leftover unlock_kernel() Message-ID: User-Agent: Alpine 2.00 (LFD 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Please push the following patch to Linus for 2.6.32-rc6. (or else drop 1bbfc20d0161cd94b1b8111566be2fa41b41b608) >>From aaf663d27d2ce9641df5833163f47fdb9ba9c833 Mon Sep 17 00:00:00 2001 From: John Kacur Date: Sun, 18 Oct 2009 15:00:35 +0200 Subject: [PATCH] MIPS: VPE: Remove leftover unlock_kernel() commit 1bbfc20d0161cd94b1b8111566be2fa41b41b608 was supposed to have removed the BKL, but there is a leftover and unpaired unlock_kernel call in the function vpe_open. Remove it. Signed-off-by: John Kacur --- arch/mips/kernel/vpe.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/arch/mips/kernel/vpe.c b/arch/mips/kernel/vpe.c index 03092ab..6047752 100644 --- a/arch/mips/kernel/vpe.c +++ b/arch/mips/kernel/vpe.c @@ -1116,8 +1116,6 @@ static int vpe_open(struct inode *inode, struct file *filp) v->shared_ptr = NULL; v->__start = 0; - unlock_kernel(); - return 0; } -- 1.6.0.6