lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Tue, 28 Jul 2009 12:04:04 +0200
From:	Jens Axboe <jens.axboe@...cle.com>
To:	Jens Rosenboom <jens.rosenboom@...enet.ag>
Cc:	Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: Oops when writing to /sys/block/ram0/queue/max_sectors_kb

On Tue, Jul 28 2009, Jens Rosenboom wrote:
> On Tue, Jul 28, 2009 at 09:07:11AM +0200, Jens Axboe wrote:
> [...]
> > Looks like this will hit nonrot/merge/etc store functions after we
> > exposed these sysfs knobs for non-request_fn drivers too. Can you try
> > the below? Should fix all of them up.
> > 
> > diff --git a/block/blk-core.c b/block/blk-core.c
> > index 4b45435..a0c340d 100644
> > --- a/block/blk-core.c
> > +++ b/block/blk-core.c
> > @@ -575,13 +575,6 @@ blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
> >  		return NULL;
> >  	}
> >  
> > -	/*
> > -	 * if caller didn't supply a lock, they get per-queue locking with
> > -	 * our embedded lock
> > -	 */
> > -	if (!lock)
> > -		lock = &q->__queue_lock;
> > -
> >  	q->request_fn		= rfn;
> >  	q->prep_rq_fn		= NULL;
> >  	q->unplug_fn		= generic_unplug_device;
> > diff --git a/block/blk-settings.c b/block/blk-settings.c
> > index bd582a7..8a3ea3b 100644
> > --- a/block/blk-settings.c
> > +++ b/block/blk-settings.c
> > @@ -165,6 +165,13 @@ void blk_queue_make_request(struct request_queue *q, make_request_fn *mfn)
> >  	blk_set_default_limits(&q->limits);
> >  
> >  	/*
> > +	 * If the caller didn't supply a lock, fall back to our embedded
> > +	 * per-queue locks
> > +	 */
> > +	if (!q->queue_lock)
> > +		q->queue_lock = &q->__queue_lock;
> > +
> > +	/*
> >  	 * by default assume old behaviour and bounce for any highmem page
> >  	 */
> >  	blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH);
> 
> Works for me, no more Oopses.

Thanks for confirming, I've queued it up for next 2.6.31-rc pull
request.

-- 
Jens Axboe

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ