6658584eab5d03df79265de8419ccf10121bed69
[openwrt.git] / target / linux / xburst / patches-2.6.32 / 300-jffs2-summery-vmalloc.patch
1 From d3699249d687dc0b4d8d4e0e5ac3f9405d31b1ac Mon Sep 17 00:00:00 2001
2 From: Lars-Peter Clausen <lars@metafoo.de>
3 Date: Mon, 11 Jan 2010 04:29:47 +0100
4 Subject: [PATCH] /opt/Projects/openwrt/target/linux/xburst/patches-2.6.31/300-jffs2-summery-vmalloc.patch
5
6 ---
7  fs/jffs2/summary.c |    4 ++--
8  1 files changed, 2 insertions(+), 2 deletions(-)
9
10 diff --git a/fs/jffs2/summary.c b/fs/jffs2/summary.c
11 index 6caf1e1..b4882c6 100644
12 --- a/fs/jffs2/summary.c
13 +++ b/fs/jffs2/summary.c
14 @@ -32,7 +32,7 @@ int jffs2_sum_init(struct jffs2_sb_info *c)
15                 return -ENOMEM;
16         }
17  
18 -       c->summary->sum_buf = kmalloc(sum_size, GFP_KERNEL);
19 +       c->summary->sum_buf = vmalloc(sum_size);
20  
21         if (!c->summary->sum_buf) {
22                 JFFS2_WARNING("Can't allocate buffer for writing out summary information!\n");
23 @@ -51,7 +51,7 @@ void jffs2_sum_exit(struct jffs2_sb_info *c)
24  
25         jffs2_sum_disable_collecting(c->summary);
26  
27 -       kfree(c->summary->sum_buf);
28 +       vfree(c->summary->sum_buf);
29         c->summary->sum_buf = NULL;
30  
31         kfree(c->summary);
32 -- 
33 1.5.6.5
34