Commit 0469950c authored by Andrew Morton's avatar Andrew Morton Committed by james toy

ERROR: code indent should use tabs where possible

#27: FILE: fs/reiser4/plugin/item/extent_file_ops.c:1063:
+^I^I^I                   page_off + to_page,$

ERROR: code indent should use tabs where possible
#28: FILE: fs/reiser4/plugin/item/extent_file_ops.c:1064:
+^I^I^I                   PAGE_CACHE_SIZE);$

total: 2 errors, 0 warnings, 11 lines checked

./patches/reiser4-remove-simple_prepare_write-usage.patch has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.

Please run checkpatch prior to sending patches

Cc: Edward Shishkin <edward.shishkin@gmail.com>
Cc: Laurent Riffard <laurent.riffard@free.fr>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent aca2b5ee
...@@ -1060,8 +1060,8 @@ ssize_t reiser4_write_extent(struct file *file, struct inode * inode, ...@@ -1060,8 +1060,8 @@ ssize_t reiser4_write_extent(struct file *file, struct inode * inode,
lock_page(page); lock_page(page);
if (!PageUptodate(page) && to_page != PAGE_CACHE_SIZE) if (!PageUptodate(page) && to_page != PAGE_CACHE_SIZE)
zero_user_segments(page, 0, page_off, zero_user_segments(page, 0, page_off,
page_off + to_page, page_off + to_page,
PAGE_CACHE_SIZE); PAGE_CACHE_SIZE);
written = filemap_copy_from_user(page, page_off, buf, to_page); written = filemap_copy_from_user(page, page_off, buf, to_page);
if (unlikely(written != to_page)) { if (unlikely(written != to_page)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment