diff options
| author | Dave Airlie <airlied@redhat.com> | 2010-05-18 19:35:51 -0400 |
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2010-05-18 19:35:51 -0400 |
| commit | 05ea893c46805b2981ea8ba6df881e3d65edd63b (patch) | |
| tree | ea381e22d99f49bd2c95238f88491d48b797a17b /fs/xfs/linux-2.6/xfs_super.c | |
| parent | 26481fb15644b5fd85d4cea020f74a234cdf6803 (diff) | |
| parent | a7c542782e92f9487c62a571565637be3d6b0ffd (diff) | |
Merge remote branch 'anholt/drm-intel-next' into drm-next
* anholt/drm-intel-next: (515 commits)
drm/i915: Fix out of tree builds
drm/i915: move fence lru to struct drm_i915_fence_reg
drm/i915: don't allow tiling changes on pinned buffers v2
drm/i915: Be extra careful about A/D matching for multifunction SDVO
drm/i915: Fix DDC bus selection for multifunction SDVO
drm/i915: cleanup mode setting before unmapping registers
drm/i915: Make fbc control wrapper functions
drm/i915: Wait for the GPU whilst shrinking, if truly desperate.
drm/i915: Use spatio-temporal dithering on PCH
[MTD] Remove zero-length files mtdbdi.c and internal.ho
pata_pcmcia / ide-cs: Fix bad hashes for Transcend and kingston IDs
libata: Fix several inaccuracies in developer's guide
slub: Fix bad boundary check in init_kmem_cache_nodes()
raid6: fix recovery performance regression
KEYS: call_sbin_request_key() must write lock keyrings before modifying them
KEYS: Use RCU dereference wrappers in keyring key type code
KEYS: find_keyring_by_name() can gain access to a freed keyring
ALSA: hda: Fix 0 dB for Packard Bell models using Conexant CX20549 (Venice)
ALSA: hda - Add quirk for Dell Inspiron 19T using a Conexant CX20582
ALSA: take tu->qlock with irqs disabled
...
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_super.c')
| -rw-r--r-- | fs/xfs/linux-2.6/xfs_super.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index 52e06b487ced..29f1edca76de 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c | |||
| @@ -1209,6 +1209,7 @@ xfs_fs_put_super( | |||
| 1209 | 1209 | ||
| 1210 | xfs_unmountfs(mp); | 1210 | xfs_unmountfs(mp); |
| 1211 | xfs_freesb(mp); | 1211 | xfs_freesb(mp); |
| 1212 | xfs_inode_shrinker_unregister(mp); | ||
| 1212 | xfs_icsb_destroy_counters(mp); | 1213 | xfs_icsb_destroy_counters(mp); |
| 1213 | xfs_close_devices(mp); | 1214 | xfs_close_devices(mp); |
| 1214 | xfs_dmops_put(mp); | 1215 | xfs_dmops_put(mp); |
| @@ -1622,6 +1623,8 @@ xfs_fs_fill_super( | |||
| 1622 | if (error) | 1623 | if (error) |
| 1623 | goto fail_vnrele; | 1624 | goto fail_vnrele; |
| 1624 | 1625 | ||
| 1626 | xfs_inode_shrinker_register(mp); | ||
| 1627 | |||
| 1625 | kfree(mtpt); | 1628 | kfree(mtpt); |
| 1626 | return 0; | 1629 | return 0; |
| 1627 | 1630 | ||
| @@ -1867,6 +1870,7 @@ init_xfs_fs(void) | |||
| 1867 | goto out_cleanup_procfs; | 1870 | goto out_cleanup_procfs; |
| 1868 | 1871 | ||
| 1869 | vfs_initquota(); | 1872 | vfs_initquota(); |
| 1873 | xfs_inode_shrinker_init(); | ||
| 1870 | 1874 | ||
| 1871 | error = register_filesystem(&xfs_fs_type); | 1875 | error = register_filesystem(&xfs_fs_type); |
| 1872 | if (error) | 1876 | if (error) |
| @@ -1894,6 +1898,7 @@ exit_xfs_fs(void) | |||
| 1894 | { | 1898 | { |
| 1895 | vfs_exitquota(); | 1899 | vfs_exitquota(); |
| 1896 | unregister_filesystem(&xfs_fs_type); | 1900 | unregister_filesystem(&xfs_fs_type); |
| 1901 | xfs_inode_shrinker_destroy(); | ||
| 1897 | xfs_sysctl_unregister(); | 1902 | xfs_sysctl_unregister(); |
| 1898 | xfs_cleanup_procfs(); | 1903 | xfs_cleanup_procfs(); |
| 1899 | xfs_buf_terminate(); | 1904 | xfs_buf_terminate(); |
