diff options
| author | 2009-02-09 10:07:00 -0600 | |
|---|---|---|
| committer | 2009-02-09 10:07:00 -0600 | |
| commit | 9483c89eae58bee79b0280c625ca35a7b78fa300 (patch) | |
| tree | 5aab7aee070c3011b93662eb9db3f6abfafba479 /fs/xfs/xfs_rtalloc.c | |
| parent | Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6 (diff) | |
| parent | xfs: remove the unused XFS_QMOPT_DQLOCK flag (diff) | |
| download | linux-dev-9483c89eae58bee79b0280c625ca35a7b78fa300.tar.xz linux-dev-9483c89eae58bee79b0280c625ca35a7b78fa300.zip | |
Merge branch 'master' of git://git.kernel.org/pub/scm/fs/xfs/xfs
Diffstat (limited to 'fs/xfs/xfs_rtalloc.c')
| -rw-r--r-- | fs/xfs/xfs_rtalloc.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c index c5bb86f3ec05..385f6dceba5d 100644 --- a/fs/xfs/xfs_rtalloc.c +++ b/fs/xfs/xfs_rtalloc.c @@ -2288,6 +2288,16 @@ xfs_rtmount_inodes( return 0; } +void +xfs_rtunmount_inodes( + struct xfs_mount *mp) +{ + if (mp->m_rbmip) + IRELE(mp->m_rbmip); + if (mp->m_rsumip) + IRELE(mp->m_rsumip); +} + /* * Pick an extent for allocation at the start of a new realtime file. * Use the sequence number stored in the atime field of the bitmap inode. |
