diff options
-rw-r--r-- | fs/proc/stat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/proc/stat.c b/fs/proc/stat.c index 1cffa2b8a2fc..9758b654a1bc 100644 --- a/fs/proc/stat.c +++ b/fs/proc/stat.c | |||
@@ -138,9 +138,9 @@ static int stat_open(struct inode *inode, struct file *file) | |||
138 | struct seq_file *m; | 138 | struct seq_file *m; |
139 | int res; | 139 | int res; |
140 | 140 | ||
141 | /* don't ask for more than the kmalloc() max size, currently 128 KB */ | 141 | /* don't ask for more than the kmalloc() max size */ |
142 | if (size > 128 * 1024) | 142 | if (size > KMALLOC_MAX_SIZE) |
143 | size = 128 * 1024; | 143 | size = KMALLOC_MAX_SIZE; |
144 | buf = kmalloc(size, GFP_KERNEL); | 144 | buf = kmalloc(size, GFP_KERNEL); |
145 | if (!buf) | 145 | if (!buf) |
146 | return -ENOMEM; | 146 | return -ENOMEM; |