Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754185Ab1CYP5T (ORCPT ); Fri, 25 Mar 2011 11:57:19 -0400 Received: from 0122700014.0.fullrate.dk ([95.166.99.235]:47225 "EHLO kernel.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754070Ab1CYP5S (ORCPT ); Fri, 25 Mar 2011 11:57:18 -0400 Message-ID: <4D8CBB5C.5070406@kernel.dk> Date: Fri, 25 Mar 2011 16:57:16 +0100 From: Jens Axboe MIME-Version: 1.0 To: Markus Trippelsdorf CC: Sergey Senozhatsky , linux-kernel@vger.kernel.org, Mike Snitzer , Chris Mason Subject: Re: [OOPS] elevator private data for REQ_FLUSH References: <20110325151530.GA4414@swordfish.minsk.epam.com> <20110325152228.GA1707@gentoo.trippels.de> In-Reply-To: <20110325152228.GA1707@gentoo.trippels.de> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2288 Lines: 58 On 2011-03-25 16:22, Markus Trippelsdorf wrote: > On 2011.03.25 at 17:15 +0200, Sergey Senozhatsky wrote: >> Hello, >> >> Commit >> 9d5a4e946ce5352f19400b6370f4cd8e72806278 >> block: skip elevator data initialization for flush requests >> >> Skip elevator initialization for flush requests by passing priv=0 to >> blk_alloc_request() in get_request(). As such elv_set_request() is >> never called for flush requests. >> >> introduced priv flag, to skip elevator_private data init for FLUSH requests. >> This, I guess, lead to NULL pointer deref on my machine in cfq_insert_request, >> which requires elevator_private to be set: >> >> 1 [ 78.982169] Call Trace: >> 2 [ 78.982178] [] cfq_insert_request+0x4e/0x47d >> 3 [ 78.982184] [] ? do_raw_spin_lock+0x6b/0x122 > >> Should we in that case use ELEVATOR_INSERT_FLUSH for REQ_FLUSH | REQ_FUA requests >> (like below)? >> >> --- >> >> block/elevator.c | 2 ++ >> 1 files changed, 2 insertions(+), 0 deletions(-) >> >> diff --git a/block/elevator.c b/block/elevator.c >> index c387d31..b17e577 100644 >> --- a/block/elevator.c >> +++ b/block/elevator.c >> @@ -734,6 +734,8 @@ void __elv_add_request(struct request_queue *q, struct request *rq, int where) >> q->end_sector = rq_end_sector(rq); >> q->boundary_rq = rq; >> } >> + } else if (rq->cmd_flags & (REQ_FLUSH | REQ_FUA)) { >> + where = ELEVATOR_INSERT_FLUSH; >> } else if (!(rq->cmd_flags & REQ_ELVPRIV) && >> where == ELEVATOR_INSERT_SORT) >> where = ELEVATOR_INSERT_BACK; > > Thanks. That solves all (corruption-) problems that I reported earlier > in an other thread. That's great. I'm surprised that this would cause silent corruption for you, should have been accompanied by an oops. Or was that with noop only? -- Jens Axboe -- 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/