[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <x49sismzevl.fsf@segfault.boston.devel.redhat.com>
Date: Fri, 17 Jan 2014 12:39:58 -0500
From: Jeff Moyer <jmoyer@...hat.com>
To: Raghavendra K T <raghavendra.kt@...ux.vnet.ibm.com>
Cc: Alexander Viro <viro@...iv.linux.org.uk>,
Matias Bjorling <m@...rling.me>, Jens Axboe <axboe@...nel.dk>,
Andrew Morton <akpm@...ux-foundation.org>,
Yuanhan Liu <yuanhan.liu@...ux.intel.com>,
"Darrick J. Wong" <darrick.wong@...cle.com>,
Jan Kara <jack@...e.cz>, Johannes Weiner <hannes@...xchg.org>,
Zhang Yanfei <zhangyanfei@...fujitsu.com>,
linux-kernel@...r.kernel.org, linux-fsdevel@...r.kernel.org,
Sumanth <sumantk2@...ux.vnet.ibm.com>
Subject: Re: [RFC PATCH] fs null_blk: Null pointer deference problem in alloc_page_buffers
Raghavendra K T <raghavendra.kt@...ux.vnet.ibm.com> writes:
> diff --git a/drivers/block/null_blk.c b/drivers/block/null_blk.c
> index a2e69d2..6b0e049 100644
> --- a/drivers/block/null_blk.c
> +++ b/drivers/block/null_blk.c
> @@ -535,6 +535,11 @@ static int null_add_dev(void)
> if (!nullb)
> return -ENOMEM;
>
> + if (bs > PAGE_SIZE) {
> + WARN(1, "Invalid block size. Setting it to 4096\n");
> + bs = 4096;
> + }
> +
Why are you hard-coding 4k instead of just using PAGE_SIZE?
Cheers,
Jeff
--
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