diff options
Diffstat (limited to 'fs')
| -rw-r--r-- | fs/jfs/inode.c | 2 | ||||
| -rw-r--r-- | fs/jfs/jfs_imap.c | 2 | ||||
| -rw-r--r-- | fs/jfs/jfs_logmgr.c | 3 | 
3 files changed, 4 insertions, 3 deletions
diff --git a/fs/jfs/inode.c b/fs/jfs/inode.c index b7dc47ba675..77554b61d12 100644 --- a/fs/jfs/inode.c +++ b/fs/jfs/inode.c @@ -125,7 +125,7 @@ int jfs_write_inode(struct inode *inode, struct writeback_control *wbc)  {  	int wait = wbc->sync_mode == WB_SYNC_ALL; -	if (test_cflag(COMMIT_Nolink, inode)) +	if (inode->i_nlink == 0)  		return 0;  	/*  	 * If COMMIT_DIRTY is not set, the inode isn't really dirty. diff --git a/fs/jfs/jfs_imap.c b/fs/jfs/jfs_imap.c index 6ba4006e011..f7e042b63dd 100644 --- a/fs/jfs/jfs_imap.c +++ b/fs/jfs/jfs_imap.c @@ -1493,7 +1493,7 @@ int diAlloc(struct inode *pip, bool dir, struct inode *ip)  		/* mask any prior bits for the starting words of the  		 * summary map.  		 */ -		mask = ONES << (EXTSPERSUM - bitno); +		mask = (bitno == 0) ? 0 : (ONES << (EXTSPERSUM - bitno));  		inosmap = le32_to_cpu(iagp->inosmap[sword]) | mask;  		extsmap = le32_to_cpu(iagp->extsmap[sword]) | mask; diff --git a/fs/jfs/jfs_logmgr.c b/fs/jfs/jfs_logmgr.c index 2eb952c41a6..cbe48ea9318 100644 --- a/fs/jfs/jfs_logmgr.c +++ b/fs/jfs/jfs_logmgr.c @@ -1058,7 +1058,8 @@ static int lmLogSync(struct jfs_log * log, int hard_sync)   */  void jfs_syncpt(struct jfs_log *log, int hard_sync)  {	LOG_LOCK(log); -	lmLogSync(log, hard_sync); +	if (!test_bit(log_QUIESCE, &log->flag)) +		lmLogSync(log, hard_sync);  	LOG_UNLOCK(log);  }  |