aboutsummaryrefslogtreecommitdiff
path: root/fs/btrfs/compression.c
diff options
context:
space:
mode:
authorAlexey Charkov <alchark@gmail.com>2011-02-02 21:15:35 +0000
committerChris Mason <chris.mason@oracle.com>2011-02-06 07:19:19 -0500
commit8e4eef7a60eeca0fe7503e5cbd3b24ff4941c732 (patch)
tree63c578ff52407f073f89342780a48c95b17ac1ea /fs/btrfs/compression.c
parent554233a6e0e8557e8e81e54cc70628d101291122 (diff)
btrfs: Drop __exit attribute on btrfs_exit_compress
As this function is called in some error paths while not removing the module, the __exit attribute prevents the kernel image from linking when btrfs is compiled in statically. Signed-off-by: Alexey Charkov <alchark@gmail.com> Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/compression.c')
-rw-r--r--fs/btrfs/compression.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/compression.c b/fs/btrfs/compression.c
index 3a932f183da1..4d2110eafe29 100644
--- a/fs/btrfs/compression.c
+++ b/fs/btrfs/compression.c
@@ -921,7 +921,7 @@ int btrfs_decompress(int type, unsigned char *data_in, struct page *dest_page,
return ret;
}
-void __exit btrfs_exit_compress(void)
+void btrfs_exit_compress(void)
{
free_workspaces();
}