diff options
| author | Amar Tumballi <amar@gluster.com> | 2011-03-16 09:38:35 +0000 | 
|---|---|---|
| committer | Vijay Bellur <vijay@dev.gluster.com> | 2011-03-17 11:57:27 -0700 | 
| commit | 75bda6e41d9b244ab9d040a035582ea6bd4c8120 (patch) | |
| tree | 1678cdbef24d4902ff8c7622d3f969c3d73eaf67 /libglusterfs/src/inode.c | |
| parent | 858944850adf7ec04898a15db90e231655ac4965 (diff) | |
libglusterfs/src/*.c: whitespace cleanup
Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 2346 (Log message enhancements in GlusterFS - phase 1)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2346
Diffstat (limited to 'libglusterfs/src/inode.c')
| -rw-r--r-- | libglusterfs/src/inode.c | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/libglusterfs/src/inode.c b/libglusterfs/src/inode.c index e193d782400..dac314b977d 100644 --- a/libglusterfs/src/inode.c +++ b/libglusterfs/src/inode.c @@ -37,7 +37,7 @@     move latest accessed dentry to list_head of inode  */ -#define INODE_DUMP_LIST(head, key_buf, key_prefix, list_type) \ +#define INODE_DUMP_LIST(head, key_buf, key_prefix, list_type)           \          {                                                               \                  int i = 1;                                              \                  inode_t *inode = NULL;                                  \ @@ -311,7 +311,7 @@ noctx:          LOCK_DESTROY (&inode->lock);          //  memset (inode, 0xb, sizeof (*inode));          mem_put (tmp_pool, inode); -	 tmp_pool = NULL; +        tmp_pool = NULL;  } @@ -512,7 +512,7 @@ __inode_create (inode_table_t *table)          newi->_ctx = GF_CALLOC (1, (sizeof (struct _inode_ctx) *                                      table->xl->graph->xl_count), -                                    gf_common_mt_inode_ctx); +                                gf_common_mt_inode_ctx);          if (newi->_ctx == NULL) {                  gf_log ("inode", GF_LOG_ERROR, "out of memory"); @@ -1155,12 +1155,12 @@ inode_table_new (size_t lru_limit, xlator_t *xl)                  return NULL;          } -	 new->fd_mem_pool = mem_pool_new (fd_t, 16384); +        new->fd_mem_pool = mem_pool_new (fd_t, 16384); -	 if (!new->fd_mem_pool) { -		  GF_FREE (new->inode_hash); -		  GF_FREE (new); -	 } +        if (!new->fd_mem_pool) { +                GF_FREE (new->inode_hash); +                GF_FREE (new); +        }          for (i = 0; i < 65536; i++) {                  INIT_LIST_HEAD (&new->inode_hash[i]);  | 
