Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 200174
b: refs/heads/master
c: 32891b2
h: refs/heads/master
v: v3
  • Loading branch information
Eric Sandeen authored and Alex Elder committed May 28, 2010
1 parent 61d296b commit 4903a3d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 657a4cffde065beca7d919e867f61e7d322708b6
refs/heads/master: 32891b292d6262d1db8e553cf3f4b38a91247b5a
11 changes: 10 additions & 1 deletion trunk/fs/xfs/xfs_rtalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,16 @@ xfs_growfs_rt(
# define xfs_rtfree_extent(t,b,l) (ENOSYS)
# define xfs_rtpick_extent(m,t,l,rb) (ENOSYS)
# define xfs_growfs_rt(mp,in) (ENOSYS)
# define xfs_rtmount_init(m) (((mp)->m_sb.sb_rblocks == 0)? 0 : (ENOSYS))
static inline int /* error */
xfs_rtmount_init(
xfs_mount_t *mp) /* file system mount structure */
{
if (mp->m_sb.sb_rblocks == 0)
return 0;

cmn_err(CE_WARN, "XFS: Not built with CONFIG_XFS_RT");
return ENOSYS;
}
# define xfs_rtmount_inodes(m) (((mp)->m_sb.sb_rblocks == 0)? 0 : (ENOSYS))
# define xfs_rtunmount_inodes(m)
#endif /* CONFIG_XFS_RT */
Expand Down

0 comments on commit 4903a3d

Please sign in to comment.