Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757195Ab2FPNZv (ORCPT ); Sat, 16 Jun 2012 09:25:51 -0400 Received: from mga11.intel.com ([192.55.52.93]:41949 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756878Ab2FPNZt (ORCPT ); Sat, 16 Jun 2012 09:25:49 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.71,315,1320652800"; d="scan'208";a="166436534" Date: Sat, 16 Jun 2012 21:25:53 +0800 From: Yuanhan Liu To: Kay Sievers Cc: linux-kernel@vger.kernel.org, wfg@linux.intel.com, Greg Kroah-Hartman Subject: Re: [PATCH 1/2] printk: use logbuf_mutex_lock to stop syslog_seq from going wild Message-ID: <20120616132553.GF2231@yliu-dev.sh.intel.com> References: <1339821655-14059-1-git-send-email-yuanhan.liu@linux.intel.com> <1339850558.905.10.camel@foo> <20120616125922.GE2231@yliu-dev.sh.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2058 Lines: 51 On Sat, Jun 16, 2012 at 03:03:37PM +0200, Kay Sievers wrote: > On Sat, Jun 16, 2012 at 2:59 PM, Yuanhan Liu > wrote: > > On Sat, Jun 16, 2012 at 02:42:38PM +0200, Kay Sievers wrote: > >> On Sat, 2012-06-16 at 12:40 +0800, Yuanhan Liu wrote: > >> > Although syslog_seq and log_next_seq stuff are protected by logbuf_lock > >> > spin log, it's not enough. Say we have two processes A and B, and let > >> > syslog_seq = N, while log_next_seq = N + 1, and the two processes both > >> > come to syslog_print at almost the same time. And No matter which > >> > process get the spin lock first, it will increase syslog_seq by one, > >> > then release spin lock; thus later, another process increase syslog_seq > >> > by one again. In this case, syslog_seq is bigger than syslog_next_seq. > >> > And latter, it would make: > >> > ? ?wait_event_interruptiable(log_wait, syslog != log_next_seq) > >> > don't wait any more even there is no new write comes. Thus it introduce > >> > a infinite loop reading. > >> > >> Oh, multiple readers on the same shared file descriptor are not useful, > >> but sure, that needs fixing. Thanks for tracking that down! > >> > >> Looks like the same issue existed in the original code already, it's > >> just that it was granular at a single character level, and not a line, > >> and the seqnum which icreases one-by-one, so the issue was hard to > >> trigger. > > > > Yes, ?I think so, too. > > > >> > >> We better make the mutexes interruptible, right? > > > > Yes, you are right. > > > >> Something like this? > > > > BTW, since you already made a patch, should I write a version 2 based > > on your comments? > > Sure, please do. > > Thanks a lot for doing this, My pleasure. An updated patch just sent out. Thanks for your comments very much. -- yliu -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/