summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.24/0012-ext4-Report-max_batch_time-option-correctly.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2012-08-08 10:41:23 +0200
committerDenys Dmytriyenko <denis@denix.org>2012-10-17 15:51:17 -0400
commit56e60917b21bd76bfea7c65f9a885b60e3c128ef (patch)
tree7f20f0d359ee7be2d53ca7af8c763e9a4659d909 /recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.24/0012-ext4-Report-max_batch_time-option-correctly.patch
parenteff601caffe58c3e8049140bdb02723b5cb62da4 (diff)
downloadmeta-ti-56e60917b21bd76bfea7c65f9a885b60e3c128ef.tar.gz
linux-ti33x-psp 3.2: update to 3.2.25
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Diffstat (limited to 'recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.24/0012-ext4-Report-max_batch_time-option-correctly.patch')
-rw-r--r--recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.24/0012-ext4-Report-max_batch_time-option-correctly.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.24/0012-ext4-Report-max_batch_time-option-correctly.patch b/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.24/0012-ext4-Report-max_batch_time-option-correctly.patch
new file mode 100644
index 00000000..5bd27b49
--- /dev/null
+++ b/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.24/0012-ext4-Report-max_batch_time-option-correctly.patch
@@ -0,0 +1,32 @@
1From 877ee75ef7f45fd1022c37f6a8a957e9d1b098b7 Mon Sep 17 00:00:00 2001
2From: Ben Hutchings <ben@decadent.org.uk>
3Date: Wed, 4 Jan 2012 21:22:51 -0500
4Subject: [PATCH 012/109] ext4: Report max_batch_time option correctly
5
6commit 1d526fc91bea04ee35b7599bf8b82f86c0aaf46c upstream.
7
8Currently the value reported for max_batch_time is really the
9value of min_batch_time.
10
11Reported-by: Russell Coker <russell@coker.com.au>
12Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
13---
14 fs/ext4/super.c | 2 +-
15 1 files changed, 1 insertions(+), 1 deletions(-)
16
17diff --git a/fs/ext4/super.c b/fs/ext4/super.c
18index ab7aa3f..a93486e 100644
19--- a/fs/ext4/super.c
20+++ b/fs/ext4/super.c
21@@ -1097,7 +1097,7 @@ static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
22 }
23 if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
24 seq_printf(seq, ",max_batch_time=%u",
25- (unsigned) sbi->s_min_batch_time);
26+ (unsigned) sbi->s_max_batch_time);
27 }
28
29 /*
30--
311.7.7.6
32