diff options
author | Luck, Tony <tony.luck@intel.com> | 2011-04-11 15:06:12 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-04-11 18:47:20 -0400 |
commit | 39411f81eec7dc01677b14dda97684c0ce23ac1b (patch) | |
tree | 332cbcd641b09f25c35167b44bcd8fc70918c66e /fs | |
parent | a1b7ea5d58c53c13f082110e535d98bc4e8e5cfe (diff) |
xfs_destroy_workqueues() should not be tagged with__exit
ia64 throws away .exit sections for the built-in CONFIG case, so routines
that are used in other circumstances should not be tagged as __exit.
Signed-off-by: Tony Luck <tony.luck@intel.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Alex Elder <aelder@sgi.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c index 67d5b2cddb98..b38e58d02299 100644 --- a/fs/xfs/linux-2.6/xfs_super.c +++ b/fs/xfs/linux-2.6/xfs_super.c | |||
@@ -1741,7 +1741,7 @@ out: | |||
1741 | return -ENOMEM; | 1741 | return -ENOMEM; |
1742 | } | 1742 | } |
1743 | 1743 | ||
1744 | STATIC void __exit | 1744 | STATIC void |
1745 | xfs_destroy_workqueues(void) | 1745 | xfs_destroy_workqueues(void) |
1746 | { | 1746 | { |
1747 | destroy_workqueue(xfs_ail_wq); | 1747 | destroy_workqueue(xfs_ail_wq); |