Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1221605

[PATCH 2/2] fs: isofs: Fix several coding style issues

From Maitesin <oscar.forner.martinez@gmail.com>
Newsgroups linux.kernel
Subject [PATCH 2/2] fs: isofs: Fix several coding style issues
Date 2015-09-09 20:10 +0200
Message-ID <q6RYL-2ez-29@gated-at.bofh.it> (permalink)
References <q6RYK-2ez-25@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


As recommended I fixed several coding style issues related with whitespaces.

Signed-off-by: Oscar Forner Martinez <oscar.forner.martinez@gmail.com>
---
 fs/isofs/compress.c | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/fs/isofs/compress.c b/fs/isofs/compress.c
index 5750830..107a078 100644
--- a/fs/isofs/compress.c
+++ b/fs/isofs/compress.c
@@ -67,7 +67,7 @@ static loff_t zisofs_uncompress_block(struct inode *inode, loff_t block_start,
 	}
 	/* Empty block? */
 	if (!block_size) {
-		for (i = 0 ; i < pcount ; i++) {
+		for (i = 0; i < pcount; i++) {
 			if (!pages[i])
 				continue;
 			memset(page_address(pages[i]), 0, PAGE_CACHE_SIZE);
@@ -103,7 +103,7 @@ static loff_t zisofs_uncompress_block(struct inode *inode, loff_t block_start,
 
 	stream.workspace = zisofs_zlib_workspace;
 	mutex_lock(&zisofs_zlib_lock);
-		
+
 	zerr = zlib_inflateInit(&stream);
 	if (zerr != Z_OK) {
 		if (zerr == Z_MEM_ERROR)
@@ -134,7 +134,7 @@ static loff_t zisofs_uncompress_block(struct inode *inode, loff_t block_start,
 				*errp = -EIO;
 				break;
 			}
-			stream.next_in  = bhs[curbh]->b_data +
+			stream.next_in = bhs[curbh]->b_data +
 						(block_start & bufmask);
 			stream.avail_in = min_t(unsigned, bufsize -
 						(block_start & bufmask),
@@ -353,7 +353,7 @@ static int zisofs_readpage(struct file *file, struct page *page)
 			if (i != full_page)
 				page_cache_release(pages[i]);
 		}
-	}			
+	}
 
 	/* At this point, err contains 0 or -EIO depending on the "critical" page */
 	return err;
@@ -368,9 +368,8 @@ const struct address_space_operations zisofs_aops = {
 int __init zisofs_init(void)
 {
 	zisofs_zlib_workspace = vmalloc(zlib_inflate_workspacesize());
-	if ( !zisofs_zlib_workspace )
+	if (!zisofs_zlib_workspace)
 		return -ENOMEM;
-
 	return 0;
 }
 
-- 
2.5.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH 0/2] Fix coding style issues and a consistence change. Maitesin <oscar.forner.martinez@gmail.com> - 2015-09-09 20:10 +0200
  [PATCH 2/2] fs: isofs: Fix several coding style issues Maitesin <oscar.forner.martinez@gmail.com> - 2015-09-09 20:10 +0200

csiph-web