0cd478518f
Fixes a regression on spi flash devices (upstream commit 1583eaece6fa). Changelogs: * https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.1.7 * https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.1.8 * https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.1.9 * https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.1.10 096-ipv4-off-by-one-in-continuation-handling-in-proc-net.patch was applied upstream and dropped. Signed-off-by: Mathias Kresin <openwrt@kresin.me> [update from 4.1.9 to 4.1.10] Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 47104
53 lines
1.3 KiB
Diff
53 lines
1.3 KiB
Diff
From 3af3746a509957ae4a0daa7b4a561c2a97870916 Mon Sep 17 00:00:00 2001
|
|
From: popcornmix <popcornmix@gmail.com>
|
|
Date: Wed, 18 Dec 2013 22:16:19 +0000
|
|
Subject: [PATCH 033/171] config: Enable CONFIG_MEMCG, but leave it disabled
|
|
(due to memory cost). Enable with cgroup_enable=memory.
|
|
|
|
---
|
|
kernel/cgroup.c | 23 +++++++++++++++++++++++
|
|
mm/memcontrol.c | 1 +
|
|
2 files changed, 24 insertions(+)
|
|
|
|
--- a/kernel/cgroup.c
|
|
+++ b/kernel/cgroup.c
|
|
@@ -5394,6 +5394,29 @@ static int __init cgroup_disable(char *s
|
|
}
|
|
__setup("cgroup_disable=", cgroup_disable);
|
|
|
|
+static int __init cgroup_enable(char *str)
|
|
+{
|
|
+ struct cgroup_subsys *ss;
|
|
+ char *token;
|
|
+ int i;
|
|
+
|
|
+ while ((token = strsep(&str, ",")) != NULL) {
|
|
+ if (!*token)
|
|
+ continue;
|
|
+
|
|
+ for_each_subsys(ss, i) {
|
|
+ if (!strcmp(token, ss->name)) {
|
|
+ ss->disabled = 0;
|
|
+ printk(KERN_INFO "Enabling %s control group"
|
|
+ " subsystem\n", ss->name);
|
|
+ break;
|
|
+ }
|
|
+ }
|
|
+ }
|
|
+ return 1;
|
|
+}
|
|
+__setup("cgroup_enable=", cgroup_enable);
|
|
+
|
|
static int __init cgroup_set_legacy_files_on_dfl(char *str)
|
|
{
|
|
printk("cgroup: using legacy files on the default hierarchy\n");
|
|
--- a/mm/memcontrol.c
|
|
+++ b/mm/memcontrol.c
|
|
@@ -5388,6 +5388,7 @@ struct cgroup_subsys memory_cgrp_subsys
|
|
.dfl_cftypes = memory_files,
|
|
.legacy_cftypes = mem_cgroup_legacy_files,
|
|
.early_init = 0,
|
|
+ .disabled = 1,
|
|
};
|
|
|
|
/**
|