summaryrefslogtreecommitdiffstats
path: root/recipes-containers/lxc/files/cgroups-work-around-issue-in-gcc-7.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-containers/lxc/files/cgroups-work-around-issue-in-gcc-7.patch')
-rw-r--r--recipes-containers/lxc/files/cgroups-work-around-issue-in-gcc-7.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/recipes-containers/lxc/files/cgroups-work-around-issue-in-gcc-7.patch b/recipes-containers/lxc/files/cgroups-work-around-issue-in-gcc-7.patch
deleted file mode 100644
index 90740fb3..00000000
--- a/recipes-containers/lxc/files/cgroups-work-around-issue-in-gcc-7.patch
+++ /dev/null
@@ -1,34 +0,0 @@
1From 58a2d817a82100d287c60c63315d81445cdba3f9 Mon Sep 17 00:00:00 2001
2From: Mark Asselstine <mark.asselstine@windriver.com>
3Date: Thu, 15 Jun 2017 15:12:08 -0400
4Subject: [PATCH] cgroups: work around issue in gcc 7
5
6This works around
7https://bugzilla.yoctoproject.org/show_bug.cgi?id=11672
8https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78969
9
10By removing a single cgroup entry. For the majority of usecases this
11loss of a single entry should not be an issue and once gcc 7 is fixed
12we can revert this.
13
14Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
15---
16 src/lxc/cgroups/cgfsng.c | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/src/lxc/cgroups/cgfsng.c b/src/lxc/cgroups/cgfsng.c
20index ebd548b..c520abd 100644
21--- a/src/lxc/cgroups/cgfsng.c
22+++ b/src/lxc/cgroups/cgfsng.c
23@@ -1373,7 +1373,7 @@ static inline bool cgfsng_create(void *hdata)
24 offset = cgname + len - 5;
25
26 again:
27- if (idx == 1000) {
28+ if (idx == 999) {
29 ERROR("Too many conflicting cgroup names");
30 goto out_free;
31 }
32--
332.7.4
34