linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Taesoo Kim <tsgatesv@gmail.com>
To: jack@suse.cz, linux-kernel@vger.kernel.org
Cc: taesoo@gatech.edu, changwoo@gatech.edu, sanidhya@gatech.edu,
	blee@gatech.edu, csong84@gatech.edu,
	Taesoo Kim <tsgatesv@gmail.com>
Subject: [PATCH 1/1] udf: block-based fs should use generic_write_end()
Date: Thu, 19 Mar 2015 23:37:59 -0400	[thread overview]
Message-ID: <1426822679-18076-1-git-send-email-tsgatesv@gmail.com> (raw)

simple_write_end() is for non-block fs, which doesn't invoke
mark_inode_dirty(). Instead, generic_write_end() correctly
handles such case when i_size has changed.

Signed-off-by: Taesoo Kim <tsgatesv@gmail.com>
---
 fs/udf/file.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/udf/file.c b/fs/udf/file.c
index 08f3555..28b1dab 100644
--- a/fs/udf/file.c
+++ b/fs/udf/file.c
@@ -112,7 +112,7 @@ const struct address_space_operations udf_adinicb_aops = {
 	.readpage	= udf_adinicb_readpage,
 	.writepage	= udf_adinicb_writepage,
 	.write_begin	= udf_adinicb_write_begin,
-	.write_end	= simple_write_end,
+	.write_end	= generic_write_end,
 	.direct_IO	= udf_adinicb_direct_IO,
 };
 
-- 
2.3.3


             reply	other threads:[~2015-03-20  3:38 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-20  3:37 Taesoo Kim [this message]
2015-04-01  7:53 ` [PATCH 1/1] udf: block-based fs should use generic_write_end() Jan Kara

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1426822679-18076-1-git-send-email-tsgatesv@gmail.com \
    --to=tsgatesv@gmail.com \
    --cc=blee@gatech.edu \
    --cc=changwoo@gatech.edu \
    --cc=csong84@gatech.edu \
    --cc=jack@suse.cz \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sanidhya@gatech.edu \
    --cc=taesoo@gatech.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).