From: Jens Axboe Date: Tue, 15 May 2007 17:30:07 +0000 (+0200) Subject: ll_rw_blk: fix gcc 4.2 warning on current_io_context() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f653c34dd3d8bde2c918316fd5ba2e2c4f95afcf;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git ll_rw_blk: fix gcc 4.2 warning on current_io_context() current_io_context() is both static and exported with EXPORT_SYMBOL(). As there are no users outside of ll_rw_blk.c itself, just kill the export. Problem reported by Martin Michlmayr Signed-off-by: Jens Axboe Signed-off-by: Linus Torvalds --- diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c index 74a567afb830..6b5173ac8131 100644 --- a/block/ll_rw_blk.c +++ b/block/ll_rw_blk.c @@ -3802,7 +3802,6 @@ static struct io_context *current_io_context(gfp_t gfp_flags, int node) return ret; } -EXPORT_SYMBOL(current_io_context); /* * If the current task has no IO context then create one and initialise it.