aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ntfs
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ntfs')
-rw-r--r--fs/ntfs/compress.c2
-rw-r--r--fs/ntfs/super.c4
-rw-r--r--fs/ntfs/sysctl.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/fs/ntfs/compress.c b/fs/ntfs/compress.c
index ee4144ce5d7c..f82498c35e78 100644
--- a/fs/ntfs/compress.c
+++ b/fs/ntfs/compress.c
@@ -58,7 +58,7 @@ typedef enum {
58/** 58/**
59 * ntfs_compression_buffer - one buffer for the decompression engine 59 * ntfs_compression_buffer - one buffer for the decompression engine
60 */ 60 */
61static u8 *ntfs_compression_buffer = NULL; 61static u8 *ntfs_compression_buffer;
62 62
63/** 63/**
64 * ntfs_cb_lock - spinlock which protects ntfs_compression_buffer 64 * ntfs_cb_lock - spinlock which protects ntfs_compression_buffer
diff --git a/fs/ntfs/super.c b/fs/ntfs/super.c
index 9de2491f2926..6c3296e546c3 100644
--- a/fs/ntfs/super.c
+++ b/fs/ntfs/super.c
@@ -50,8 +50,8 @@
50static unsigned long ntfs_nr_compression_users; 50static unsigned long ntfs_nr_compression_users;
51 51
52/* A global default upcase table and a corresponding reference count. */ 52/* A global default upcase table and a corresponding reference count. */
53static ntfschar *default_upcase = NULL; 53static ntfschar *default_upcase;
54static unsigned long ntfs_nr_upcase_users = 0; 54static unsigned long ntfs_nr_upcase_users;
55 55
56/* Error constants/strings used in inode.c::ntfs_show_options(). */ 56/* Error constants/strings used in inode.c::ntfs_show_options(). */
57typedef enum { 57typedef enum {
diff --git a/fs/ntfs/sysctl.c b/fs/ntfs/sysctl.c
index 79a89184cb5e..1927170a35ce 100644
--- a/fs/ntfs/sysctl.c
+++ b/fs/ntfs/sysctl.c
@@ -56,7 +56,7 @@ static ctl_table sysctls_root[] = {
56}; 56};
57 57
58/* Storage for the sysctls header. */ 58/* Storage for the sysctls header. */
59static struct ctl_table_header *sysctls_root_table = NULL; 59static struct ctl_table_header *sysctls_root_table;
60 60
61/** 61/**
62 * ntfs_sysctl - add or remove the debug sysctl 62 * ntfs_sysctl - add or remove the debug sysctl