* [Ocfs2-devel] [PATCH] ocfs2: Fix writeout in ocfs2_data_convert_worker()
@ 2008-02-28 17:27 Mark Fasheh
2008-02-28 17:54 ` Joel Becker
2008-02-29 12:18 ` Sunil Mushran
0 siblings, 2 replies; 3+ messages in thread
From: Mark Fasheh @ 2008-02-28 17:27 UTC (permalink / raw)
To: ocfs2-devel
Commit f1f540688eae66c274ff1c1133b5d9c687b28f58 "optimized"
ocfs2_data_convert_worker() to "only do work for regular files".
Unfortunately, I left out a '!', which casued it to *skip* regular files.
This was hidden from testing until recently because the default data
journaling mode (data=ordered) doesn't exercise this code.
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
---
fs/ocfs2/dlmglue.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c
index 351130c..f4b3dab 100644
--- a/fs/ocfs2/dlmglue.c
+++ b/fs/ocfs2/dlmglue.c
@@ -3042,7 +3042,7 @@ static int ocfs2_data_convert_worker(struct ocfs2_lock_res *lockres,
inode = ocfs2_lock_res_inode(lockres);
mapping = inode->i_mapping;
- if (S_ISREG(inode->i_mode))
+ if (!S_ISREG(inode->i_mode))
goto out;
/*
--
1.5.3.6
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Ocfs2-devel] [PATCH] ocfs2: Fix writeout in ocfs2_data_convert_worker()
2008-02-28 17:27 [Ocfs2-devel] [PATCH] ocfs2: Fix writeout in ocfs2_data_convert_worker() Mark Fasheh
@ 2008-02-28 17:54 ` Joel Becker
2008-02-29 12:18 ` Sunil Mushran
1 sibling, 0 replies; 3+ messages in thread
From: Joel Becker @ 2008-02-28 17:54 UTC (permalink / raw)
To: ocfs2-devel
On Thu, Feb 28, 2008 at 05:26:43PM -0800, Mark Fasheh wrote:
> Commit f1f540688eae66c274ff1c1133b5d9c687b28f58 "optimized"
> ocfs2_data_convert_worker() to "only do work for regular files".
> Unfortunately, I left out a '!', which casued it to *skip* regular files.
> This was hidden from testing until recently because the default data
> journaling mode (data=ordered) doesn't exercise this code.
>
> Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Signed-off-by: Joel Becker <joel.becker@oracle.com>
> ---
> fs/ocfs2/dlmglue.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c
> index 351130c..f4b3dab 100644
> --- a/fs/ocfs2/dlmglue.c
> +++ b/fs/ocfs2/dlmglue.c
> @@ -3042,7 +3042,7 @@ static int ocfs2_data_convert_worker(struct ocfs2_lock_res *lockres,
> inode = ocfs2_lock_res_inode(lockres);
> mapping = inode->i_mapping;
>
> - if (S_ISREG(inode->i_mode))
> + if (!S_ISREG(inode->i_mode))
> goto out;
>
> /*
> --
> 1.5.3.6
>
>
> _______________________________________________
> Ocfs2-devel mailing list
> Ocfs2-devel@oss.oracle.com
> http://oss.oracle.com/mailman/listinfo/ocfs2-devel
--
"But then she looks me in the eye
And says, 'We're going to last forever,'
And man you know I can't begin to doubt it.
Cause it just feels so good and so free and so right,
I know we ain't never going to change our minds about it, Hey!
Here comes my girl."
Joel Becker
Principal Software Developer
Oracle
E-mail: joel.becker@oracle.com
Phone: (650) 506-8127
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Ocfs2-devel] [PATCH] ocfs2: Fix writeout in ocfs2_data_convert_worker()
2008-02-28 17:27 [Ocfs2-devel] [PATCH] ocfs2: Fix writeout in ocfs2_data_convert_worker() Mark Fasheh
2008-02-28 17:54 ` Joel Becker
@ 2008-02-29 12:18 ` Sunil Mushran
1 sibling, 0 replies; 3+ messages in thread
From: Sunil Mushran @ 2008-02-29 12:18 UTC (permalink / raw)
To: ocfs2-devel
Mark Fasheh wrote:
> Commit f1f540688eae66c274ff1c1133b5d9c687b28f58 "optimized"
> ocfs2_data_convert_worker() to "only do work for regular files".
> Unfortunately, I left out a '!', which casued it to *skip* regular files.
> This was hidden from testing until recently because the default data
> journaling mode (data=ordered) doesn't exercise this code.
>
> Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
>
Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com>
> ---
> fs/ocfs2/dlmglue.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c
> index 351130c..f4b3dab 100644
> --- a/fs/ocfs2/dlmglue.c
> +++ b/fs/ocfs2/dlmglue.c
> @@ -3042,7 +3042,7 @@ static int ocfs2_data_convert_worker(struct ocfs2_lock_res *lockres,
> inode = ocfs2_lock_res_inode(lockres);
> mapping = inode->i_mapping;
>
> - if (S_ISREG(inode->i_mode))
> + if (!S_ISREG(inode->i_mode))
> goto out;
>
> /*
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-02-29 12:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-28 17:27 [Ocfs2-devel] [PATCH] ocfs2: Fix writeout in ocfs2_data_convert_worker() Mark Fasheh
2008-02-28 17:54 ` Joel Becker
2008-02-29 12:18 ` Sunil Mushran
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.