[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4B8BF1B4.7040502@xenotime.net>
Date: Mon, 01 Mar 2010 08:56:20 -0800
From: Randy Dunlap <rdunlap@...otime.net>
To: Jan Kara <jack@...e.cz>
CC: Stephen Rothwell <sfr@...b.auug.org.au>,
linux-next@...r.kernel.org, LKML <linux-kernel@...r.kernel.org>
Subject: Re: linux-next: Tree for February 25 (quota)
On 03/01/10 05:27, Jan Kara wrote:
> On Thu 25-02-10 09:21:39, Randy Dunlap wrote:
>> On 02/24/10 23:35, Stephen Rothwell wrote:
>>> Hi all,
>>>
>>> Changes since 20100224:
>>
>>
>> When CONFIG_BLOCK=n:
>>
>> fs/quota/dquot.c:2042: error: implicit declaration of function 'fsync_bdev'
> Thanks for notification. I've fixed this by the following patch:
>
> From 9007983e9bf994200194727bcb87d45bb924b4a8 Mon Sep 17 00:00:00 2001
> From: Jan Kara <jack@...e.cz>
> Date: Mon, 1 Mar 2010 14:24:36 +0100
> Subject: [PATCH] vfs: Provide empty fsync_bdev if !CONFIG_BLOCK
>
> Provide empty declaration of fsync_bdev when CONFIG_BLOCK is not defined so
> that quota code can use it.
>
> Signed-off-by: Jan Kara <jack@...e.cz>
> ---
> include/linux/fs.h | 5 +++++
> 1 files changed, 5 insertions(+), 0 deletions(-)
>
> diff --git a/include/linux/fs.h b/include/linux/fs.h
> index ebb1cd5..b9e4f1c 100644
> --- a/include/linux/fs.h
> +++ b/include/linux/fs.h
> @@ -1961,6 +1961,11 @@ static inline int thaw_bdev(struct block_device *bdev, struct super_block *sb)
> {
> return 0;
> }
> +
> +static inline int fsync_bdev(struct block_device *bdev)
> +{
> + return 0;
> +}
> #endif
> extern int sync_filesystem(struct super_block *);
> extern const struct file_operations def_blk_fops;
Acked-by: Randy Dunlap <rdunlap@...otime.net>
Thanks.
--
~Randy
--
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