Skip to content

Commit

Permalink
Merge pull request zen-kernel#14 from JackNorris/master
Browse files Browse the repository at this point in the history
@JackNorris has glanced at the code and it has fixed itself to build on kernel versions 2.6.36 to 3.5.0
  • Loading branch information
rxrz committed Aug 10, 2013
2 parents 3782f98 + da04c48 commit 29c8b73
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions exfat_super.c
Original file line number Diff line number Diff line change
Expand Up @@ -1545,7 +1545,11 @@ static void exfat_evict_inode(struct inode *inode)
//mark_inode_dirty(inode);
}
invalidate_inode_buffers(inode);
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,5,0)
clear_inode(inode);
#else
end_writeback(inode);
#endif
exfat_detach(inode);
/*
struct exfat_sb_info *sbi = EXFAT_SB(inode->i_sb);
Expand Down

0 comments on commit 29c8b73

Please sign in to comment.