mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:20:37 +02:00
010807acc0
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24652 3c298f89-4303-0410-b956-a3cf2f4a3e73
26 lines
841 B
Diff
26 lines
841 B
Diff
From 0fed784b0f1ecf57d568ae60b2cada43f9d90759 Mon Sep 17 00:00:00 2001
|
|
From: Roel Kluin <roel.kluin@gmail.com>
|
|
Date: Sat, 21 Nov 2009 16:34:36 +0100
|
|
Subject: [PATCH] JFFS2: fix min/max confusion
|
|
|
|
MAX_SUMMARY_SIZE was meant as a limit, not as a minimum
|
|
|
|
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
|
|
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
|
|
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
|
|
---
|
|
fs/jffs2/summary.c | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
--- a/fs/jffs2/summary.c
|
|
+++ b/fs/jffs2/summary.c
|
|
@@ -23,7 +23,7 @@
|
|
|
|
int jffs2_sum_init(struct jffs2_sb_info *c)
|
|
{
|
|
- uint32_t sum_size = max_t(uint32_t, c->sector_size, MAX_SUMMARY_SIZE);
|
|
+ uint32_t sum_size = min_t(uint32_t, c->sector_size, MAX_SUMMARY_SIZE);
|
|
|
|
c->summary = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL);
|
|
|