2003-05-14 18:26:22

by Hans Reiser

[permalink] [raw]
Subject: [BK] [PATCH] [2.4] ReiserFS export balance_dirty

please apply

--
Hans


Attachments:
[PATCH] [2.4] export balance_dirty (2.40 kB)

2003-05-14 22:15:14

by Carl-Daniel Hailfinger

[permalink] [raw]
Subject: Re: [BK] [PATCH] [2.4] ReiserFS export balance_dirty

Hans Reiser wrote:
> Subject:
> [PATCH] [2.4] export balance_dirty
> From:
> Oleg Drokin <[email protected]>
>
> ===== fs/buffer.c 1.82 vs edited =====
> --- 1.82/fs/buffer.c Mon Dec 16 09:22:07 2002
> +++ edited/fs/buffer.c Wed May 14 16:51:00 2003
> @@ -1026,6 +1026,7 @@
> write_some_buffers(NODEV);
> }
> }
> +EXPORT_SYMBOL(balance_dirty);
>
> inline void __mark_dirty(struct buffer_head *bh)
> {

Any reason why you don't put this in ksyms.c?
This is a honest question, no flamebait.


Carl-Daniel

2003-05-14 23:25:36

by Dave Jones

[permalink] [raw]
Subject: Re: [BK] [PATCH] [2.4] ReiserFS export balance_dirty

On Thu, May 15, 2003 at 12:27:47AM +0200, Carl-Daniel Hailfinger wrote:
> > +EXPORT_SYMBOL(balance_dirty);
>
> Any reason why you don't put this in ksyms.c?
> This is a honest question, no flamebait.

because it follows the style of the rest of fs/buffer.c

Dave