* [Ocfs2-devel] [PATCH] ocfs2: lock the page in __ocfs2_page_mkwrite()
@ 2010-11-05 4:53 Wengang Wang
2010-11-15 2:12 ` Wengang Wang
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Wengang Wang @ 2010-11-05 4:53 UTC (permalink / raw)
To: ocfs2-devel
Lock the page in __ocfs2_page_mkwrite(). Or we may get -EINVAL error
from ocfs2_grab_pages_for_write() if the page(page cache) gets truncated.
regards,
wengang.
Signed-off-by: Wengang Wang <wen.gang.wang@oracle.com>
---
fs/ocfs2/aops.c | 9 +++++++--
fs/ocfs2/mmap.c | 10 +++++++---
2 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/fs/ocfs2/aops.c b/fs/ocfs2/aops.c
index f1e962c..ade2f48 100644
--- a/fs/ocfs2/aops.c
+++ b/fs/ocfs2/aops.c
@@ -1097,6 +1097,7 @@ static int ocfs2_grab_pages_for_write(struct address_space *mapping,
unsigned long start, target_index, end_index, index;
struct inode *inode = mapping->host;
loff_t last_byte;
+ int lockpg= !PageLocked(mmap_page);
target_index = user_pos >> PAGE_CACHE_SHIFT;
@@ -1133,11 +1134,15 @@ static int ocfs2_grab_pages_for_write(struct address_space *mapping,
* ocfs2_pagemkwrite() is a little different
* and wants us to directly use the page
* passed in.
+ * in ocfs2_page_mkwirte() path, the page is already
+ * locked, don't lock it again.
*/
- lock_page(mmap_page);
+ if (lockpg)
+ lock_page(mmap_page);
if (mmap_page->mapping != mapping) {
- unlock_page(mmap_page);
+ if (lockpg)
+ unlock_page(mmap_page);
/*
* Sanity check - the locking in
* ocfs2_pagemkwrite() should ensure
diff --git a/fs/ocfs2/mmap.c b/fs/ocfs2/mmap.c
index 7e32db9..bb29335 100644
--- a/fs/ocfs2/mmap.c
+++ b/fs/ocfs2/mmap.c
@@ -79,9 +79,10 @@ static int __ocfs2_page_mkwrite(struct file *file, struct buffer_head *di_bh,
* from do_generic_file_read.
*/
last_index = (size - 1) >> PAGE_CACHE_SHIFT;
+ lock_page(page);
if (unlikely(!size || page->index > last_index)) {
ret = -EINVAL;
- goto out;
+ goto out_unlock;
}
/*
@@ -96,7 +97,7 @@ static int __ocfs2_page_mkwrite(struct file *file, struct buffer_head *di_bh,
* So return 0 here and let VFS retry.
*/
ret = 0;
- goto out;
+ goto out_unlock;
}
/*
@@ -117,7 +118,7 @@ static int __ocfs2_page_mkwrite(struct file *file, struct buffer_head *di_bh,
if (ret) {
if (ret != -ENOSPC)
mlog_errno(ret);
- goto out;
+ goto out_unlock;
}
ret = ocfs2_write_end_nolock(mapping, pos, len, len, locked_page,
@@ -128,6 +129,9 @@ static int __ocfs2_page_mkwrite(struct file *file, struct buffer_head *di_bh,
}
BUG_ON(ret != len);
ret = 0;
+ goto out;
+out_unlock:
+ unlock_page(page);
out:
return ret;
}
--
1.7.2.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Ocfs2-devel] [PATCH] ocfs2: lock the page in __ocfs2_page_mkwrite()
2010-11-05 4:53 [Ocfs2-devel] [PATCH] ocfs2: lock the page in __ocfs2_page_mkwrite() Wengang Wang
@ 2010-11-15 2:12 ` Wengang Wang
2010-11-17 23:17 ` Joel Becker
2010-11-17 23:21 ` Joel Becker
2 siblings, 0 replies; 5+ messages in thread
From: Wengang Wang @ 2010-11-15 2:12 UTC (permalink / raw)
To: ocfs2-devel
Any comments on this patch? --It's not DLM related.
regards,
wengang.
On 10-11-05 12:53, Wengang Wang wrote:
> Lock the page in __ocfs2_page_mkwrite(). Or we may get -EINVAL error
> from ocfs2_grab_pages_for_write() if the page(page cache) gets truncated.
>
> regards,
> wengang.
>
> Signed-off-by: Wengang Wang <wen.gang.wang@oracle.com>
> ---
> fs/ocfs2/aops.c | 9 +++++++--
> fs/ocfs2/mmap.c | 10 +++++++---
> 2 files changed, 14 insertions(+), 5 deletions(-)
>
> diff --git a/fs/ocfs2/aops.c b/fs/ocfs2/aops.c
> index f1e962c..ade2f48 100644
> --- a/fs/ocfs2/aops.c
> +++ b/fs/ocfs2/aops.c
> @@ -1097,6 +1097,7 @@ static int ocfs2_grab_pages_for_write(struct address_space *mapping,
> unsigned long start, target_index, end_index, index;
> struct inode *inode = mapping->host;
> loff_t last_byte;
> + int lockpg= !PageLocked(mmap_page);
>
> target_index = user_pos >> PAGE_CACHE_SHIFT;
>
> @@ -1133,11 +1134,15 @@ static int ocfs2_grab_pages_for_write(struct address_space *mapping,
> * ocfs2_pagemkwrite() is a little different
> * and wants us to directly use the page
> * passed in.
> + * in ocfs2_page_mkwirte() path, the page is already
> + * locked, don't lock it again.
> */
> - lock_page(mmap_page);
> + if (lockpg)
> + lock_page(mmap_page);
>
> if (mmap_page->mapping != mapping) {
> - unlock_page(mmap_page);
> + if (lockpg)
> + unlock_page(mmap_page);
> /*
> * Sanity check - the locking in
> * ocfs2_pagemkwrite() should ensure
> diff --git a/fs/ocfs2/mmap.c b/fs/ocfs2/mmap.c
> index 7e32db9..bb29335 100644
> --- a/fs/ocfs2/mmap.c
> +++ b/fs/ocfs2/mmap.c
> @@ -79,9 +79,10 @@ static int __ocfs2_page_mkwrite(struct file *file, struct buffer_head *di_bh,
> * from do_generic_file_read.
> */
> last_index = (size - 1) >> PAGE_CACHE_SHIFT;
> + lock_page(page);
> if (unlikely(!size || page->index > last_index)) {
> ret = -EINVAL;
> - goto out;
> + goto out_unlock;
> }
>
> /*
> @@ -96,7 +97,7 @@ static int __ocfs2_page_mkwrite(struct file *file, struct buffer_head *di_bh,
> * So return 0 here and let VFS retry.
> */
> ret = 0;
> - goto out;
> + goto out_unlock;
> }
>
> /*
> @@ -117,7 +118,7 @@ static int __ocfs2_page_mkwrite(struct file *file, struct buffer_head *di_bh,
> if (ret) {
> if (ret != -ENOSPC)
> mlog_errno(ret);
> - goto out;
> + goto out_unlock;
> }
>
> ret = ocfs2_write_end_nolock(mapping, pos, len, len, locked_page,
> @@ -128,6 +129,9 @@ static int __ocfs2_page_mkwrite(struct file *file, struct buffer_head *di_bh,
> }
> BUG_ON(ret != len);
> ret = 0;
> + goto out;
> +out_unlock:
> + unlock_page(page);
> out:
> return ret;
> }
> --
> 1.7.2.3
>
>
> _______________________________________________
> Ocfs2-devel mailing list
> Ocfs2-devel at oss.oracle.com
> http://oss.oracle.com/mailman/listinfo/ocfs2-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Ocfs2-devel] [PATCH] ocfs2: lock the page in __ocfs2_page_mkwrite()
2010-11-05 4:53 [Ocfs2-devel] [PATCH] ocfs2: lock the page in __ocfs2_page_mkwrite() Wengang Wang
2010-11-15 2:12 ` Wengang Wang
@ 2010-11-17 23:17 ` Joel Becker
2010-11-17 23:24 ` Sunil Mushran
2010-11-17 23:21 ` Joel Becker
2 siblings, 1 reply; 5+ messages in thread
From: Joel Becker @ 2010-11-17 23:17 UTC (permalink / raw)
To: ocfs2-devel
On Fri, Nov 05, 2010 at 12:53:16PM +0800, Wengang Wang wrote:
> Lock the page in __ocfs2_page_mkwrite(). Or we may get -EINVAL error
> from ocfs2_grab_pages_for_write() if the page(page cache) gets truncated.
Hmm. Have you seen this happen? Do you have a reproducible
test case? The inode lock and alloc sem are taken in
ocfs2_page_mkwrite(), which should prevent real truncation of the file
and truncation of the page due to downconvert. I think you're saying
that someone could flush the pagecache and cause a problem here, but I'd
like to have a testcase.
Also, earlier in __ocfs2_page_mkwrite() we return 0 when the
mapping is wrong. Can we do that again?
Joel
--
Pitchers and catchers report.
Joel Becker
Senior Development Manager
Oracle
E-mail: joel.becker at oracle.com
Phone: (650) 506-8127
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Ocfs2-devel] [PATCH] ocfs2: lock the page in __ocfs2_page_mkwrite()
2010-11-05 4:53 [Ocfs2-devel] [PATCH] ocfs2: lock the page in __ocfs2_page_mkwrite() Wengang Wang
2010-11-15 2:12 ` Wengang Wang
2010-11-17 23:17 ` Joel Becker
@ 2010-11-17 23:21 ` Joel Becker
2 siblings, 0 replies; 5+ messages in thread
From: Joel Becker @ 2010-11-17 23:21 UTC (permalink / raw)
To: ocfs2-devel
On Fri, Nov 05, 2010 at 12:53:16PM +0800, Wengang Wang wrote:
Here's review based on the assumption we need this change.
> @@ -1097,6 +1097,7 @@ static int ocfs2_grab_pages_for_write(struct address_space *mapping,
> unsigned long start, target_index, end_index, index;
> struct inode *inode = mapping->host;
> loff_t last_byte;
> + int lockpg= !PageLocked(mmap_page);
This change is not necessary. If mmap_page exists, it came from
__ocfs2_page_mkwrite(), where you've locked it, so you know it is
locked.
>
> target_index = user_pos >> PAGE_CACHE_SHIFT;
>
> @@ -1133,11 +1134,15 @@ static int ocfs2_grab_pages_for_write(struct address_space *mapping,
> * ocfs2_pagemkwrite() is a little different
> * and wants us to directly use the page
> * passed in.
> + * in ocfs2_page_mkwirte() path, the page is already
> + * locked, don't lock it again.
> */
> - lock_page(mmap_page);
> + if (lockpg)
> + lock_page(mmap_page);
This block is only accessed when mmap_page is not NULL. Thus
the page must exist and must be locked (as stated above). You should
just BUG_ON(!PageLocked(mmap_page)) here.
Joel
--
"I think it would be a good idea."
- Mahatma Ghandi, when asked what he thought of Western
civilization
Joel Becker
Senior Development Manager
Oracle
E-mail: joel.becker at oracle.com
Phone: (650) 506-8127
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Ocfs2-devel] [PATCH] ocfs2: lock the page in __ocfs2_page_mkwrite()
2010-11-17 23:17 ` Joel Becker
@ 2010-11-17 23:24 ` Sunil Mushran
0 siblings, 0 replies; 5+ messages in thread
From: Sunil Mushran @ 2010-11-17 23:24 UTC (permalink / raw)
To: ocfs2-devel
On 11/17/2010 03:17 PM, Joel Becker wrote:
> On Fri, Nov 05, 2010 at 12:53:16PM +0800, Wengang Wang wrote:
>> Lock the page in __ocfs2_page_mkwrite(). Or we may get -EINVAL error
>> from ocfs2_grab_pages_for_write() if the page(page cache) gets truncated.
> Hmm. Have you seen this happen? Do you have a reproducible
> test case? The inode lock and alloc sem are taken in
> ocfs2_page_mkwrite(), which should prevent real truncation of the file
> and truncation of the page due to downconvert. I think you're saying
> that someone could flush the pagecache and cause a problem here, but I'd
> like to have a testcase.
> Also, earlier in __ocfs2_page_mkwrite() we return 0 when the
> mapping is wrong. Can we do that again?
orabug#10127979
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-11-17 23:24 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-05 4:53 [Ocfs2-devel] [PATCH] ocfs2: lock the page in __ocfs2_page_mkwrite() Wengang Wang
2010-11-15 2:12 ` Wengang Wang
2010-11-17 23:17 ` Joel Becker
2010-11-17 23:24 ` Sunil Mushran
2010-11-17 23:21 ` Joel Becker
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.