linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Sane return value for ecryptfs_commit_write()
@ 2006-07-20 19:34 Michael Halcrow
  0 siblings, 0 replies; only message in thread
From: Michael Halcrow @ 2006-07-20 19:34 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel

Calling functions expect the return value from ecryptfs_commit_write()
to be 0 on success.

Signed-off-by: Michael Halcrow <mhalcrow@us.ibm.com>

---

 fs/ecryptfs/mmap.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

9c56c9f6f49840860068b461c1d956391cbc5550
diff --git a/fs/ecryptfs/mmap.c b/fs/ecryptfs/mmap.c
index 65e7331..8a4040d 100644
--- a/fs/ecryptfs/mmap.c
+++ b/fs/ecryptfs/mmap.c
@@ -628,7 +628,6 @@ static int ecryptfs_commit_write(struct 
 {
 	struct ecryptfs_page_crypt_context ctx;
 	loff_t pos;
-	unsigned bytes = to - from;
 	struct inode *inode;
 	struct inode *lower_inode;
 	struct file *lower_file;
@@ -671,7 +670,7 @@ static int ecryptfs_commit_write(struct 
 				"index [0x%.16x])\n", page->index);
 		goto out;
 	}
-	rc = bytes;
+	rc = 0;
 	inode->i_blocks = lower_inode->i_blocks;
 	pos = (page->index << PAGE_CACHE_SHIFT) + to;
 	if (pos > i_size_read(inode)) {
-- 
1.3.3


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2006-07-24 19:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-07-20 19:34 [PATCH] Sane return value for ecryptfs_commit_write() Michael Halcrow

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).