From 1a4d299a0242a02aa0d4843dd9947d4187e70414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20Ter=C3=A4s?= Date: Mon, 20 Mar 2017 15:25:48 +0200 Subject: main/musl: cherry-pick upstream fixes ldso changes (lazy emulation etc) are not stable yet, so it's are not included. the missing patch numbers are for those commits. --- ...-unused-refcnt-field-for-shared-libraries.patch | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 main/musl/0025-remove-unused-refcnt-field-for-shared-libraries.patch (limited to 'main/musl/0025-remove-unused-refcnt-field-for-shared-libraries.patch') diff --git a/main/musl/0025-remove-unused-refcnt-field-for-shared-libraries.patch b/main/musl/0025-remove-unused-refcnt-field-for-shared-libraries.patch new file mode 100644 index 0000000000..15b76119fe --- /dev/null +++ b/main/musl/0025-remove-unused-refcnt-field-for-shared-libraries.patch @@ -0,0 +1,48 @@ +From cb525397bb053ea49cf160965477a17b17286eb3 Mon Sep 17 00:00:00 2001 +From: Rich Felker +Date: Tue, 14 Mar 2017 19:00:02 -0400 +Subject: [PATCH] remove unused refcnt field for shared libraries + +--- + ldso/dynlink.c | 4 ---- + 1 file changed, 4 deletions(-) + +diff --git a/ldso/dynlink.c b/ldso/dynlink.c +index 80d85e94..178fe27e 100644 +--- a/ldso/dynlink.c ++++ b/ldso/dynlink.c +@@ -52,7 +52,6 @@ struct dso { + Phdr *phdr; + int phnum; + size_t phentsize; +- int refcnt; + Sym *syms; + Elf_Symndx *hashtab; + uint32_t *ghashtab; +@@ -971,7 +970,6 @@ static struct dso *load_library(const char *name, struct dso *needed_by) + /* Search for the name to see if it's already loaded */ + for (p=head->next; p; p=p->next) { + if (p->shortname && !strcmp(p->shortname, name)) { +- p->refcnt++; + return p; + } + } +@@ -1034,7 +1032,6 @@ static struct dso *load_library(const char *name, struct dso *needed_by) + if (!p->shortname && pathname != name) + p->shortname = strrchr(p->name, '/')+1; + close(fd); +- p->refcnt++; + return p; + } + } +@@ -1074,7 +1071,6 @@ static struct dso *load_library(const char *name, struct dso *needed_by) + memcpy(p, &temp_dso, sizeof temp_dso); + p->dev = st.st_dev; + p->ino = st.st_ino; +- p->refcnt = 1; + p->needed_by = needed_by; + p->name = p->buf; + strcpy(p->name, pathname); +-- +2.11.1 + -- cgit v1.2.3