Merge "Upgrade std kernel patch to CentOS7.6 3.10.0-957.12.2"

This commit is contained in:
Zuul 2019-06-12 01:20:14 +00:00 committed by Gerrit Code Review
commit 4941be06cc
8 changed files with 50 additions and 47 deletions

View File

@ -26,13 +26,13 @@ index 1c3a765..f2499b4 100644
%global distro_build 957 %global distro_build 957
%define rpmversion 3.10.0 %define rpmversion 3.10.0
-%define pkgrelease 957.1.3.el7 -%define pkgrelease 957.12.2.el7
+%define _pkgrelease 957.1.3 +%define _pkgrelease 957.12.2
+%define pkgrelease %{_pkgrelease}.el7 +%define pkgrelease %{_pkgrelease}.el7
+ +
# allow pkg_release to have configurable %%{?dist} tag # allow pkg_release to have configurable %%{?dist} tag
%define specrelease 957.1.3%{?dist} %define specrelease 957.12.2%{?dist}
-%define pkg_release %{specrelease}%{?buildid} -%define pkg_release %{specrelease}%{?buildid}
+%define pkg_release %{specrelease}%{buildid} +%define pkg_release %{specrelease}%{buildid}
@ -224,7 +224,7 @@ index 1c3a765..f2499b4 100644
+%endif +%endif
+ +
%changelog %changelog
* Mon Nov 26 2018 CentOS Sources <bugs@centos.org> - 3.10.0-957.1.3.el7 * Tue May 14 2019 CentOS Sources <bugs@centos.org> - 3.10.0-957.12.2.el7
- Apply debranding changes - Apply debranding changes
-- --
2.7.4 2.7.4

View File

@ -65,7 +65,7 @@ diff --git a/include/linux/sched.h b/include/linux/sched.h
index d184652..ba6ae5c 100644 index d184652..ba6ae5c 100644
--- a/include/linux/sched.h --- a/include/linux/sched.h
+++ b/include/linux/sched.h +++ b/include/linux/sched.h
@@ -1649,6 +1649,12 @@ struct task_struct { @@ -1653,6 +1653,12 @@ struct task_struct {
short il_next; short il_next;
short pref_node_fork; short pref_node_fork;
#endif #endif

View File

@ -47,13 +47,13 @@ This helps in:
Signed-off-by: Jim Somerville <Jim.Somerville@windriver.com> Signed-off-by: Jim Somerville <Jim.Somerville@windriver.com>
--- ---
Documentation/ABI/testing/sysfs-devices-system-cpu | 65 ++ Documentation/ABI/testing/sysfs-devices-system-cpu | 65 ++
arch/x86/kernel/cpu/cacheinfo.c | 830 +++++++-------------- arch/x86/kernel/cpu/cacheinfo.c | 833 +++++++--------------
drivers/base/Makefile | 2 +- drivers/base/Makefile | 2 +-
drivers/base/cacheinfo.c | 662 ++++++++++++++++ drivers/base/cacheinfo.c | 662 ++++++++++++++++
drivers/base/cpu.c | 54 ++ drivers/base/cpu.c | 54 ++
include/linux/cacheinfo.h | 104 +++ include/linux/cacheinfo.h | 104 +++
include/linux/cpu.h | 3 + include/linux/cpu.h | 3 +
7 files changed, 1147 insertions(+), 573 deletions(-) 7 files changed, 1147 insertions(+), 576 deletions(-)
create mode 100644 drivers/base/cacheinfo.c create mode 100644 drivers/base/cacheinfo.c
create mode 100644 include/linux/cacheinfo.h create mode 100644 include/linux/cacheinfo.h
@ -461,7 +461,7 @@ index d529019..bf23bd2 100644
+ +
+ if (nb && nb->l3_cache.indices) + if (nb && nb->l3_cache.indices)
+ init_amd_l3_attrs(); + init_amd_l3_attrs();
+
+ return &cache_private_group; + return &cache_private_group;
+} +}
+ +
@ -472,7 +472,7 @@ index d529019..bf23bd2 100644
+ /* only for L3, and not in virtualized environments */ + /* only for L3, and not in virtualized environments */
+ if (index < 3) + if (index < 3)
+ return; + return;
+
+ node = amd_get_nb_id(smp_processor_id()); + node = amd_get_nb_id(smp_processor_id());
+ this_leaf->nb = node_to_amd_nb(node); + this_leaf->nb = node_to_amd_nb(node);
+ if (this_leaf->nb && !this_leaf->nb->l3_cache.indices) + if (this_leaf->nb && !this_leaf->nb->l3_cache.indices)
@ -798,11 +798,11 @@ index d529019..bf23bd2 100644
+static int __init_cache_level(unsigned int cpu) +static int __init_cache_level(unsigned int cpu)
{ {
- int i; - int i;
-
- for (i = 0; i < num_cache_leaves; i++)
- cache_remove_shared_cpu_map(cpu, i);
+ struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu); + struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu);
- for (i = 0; i < num_cache_leaves; i++)
- cache_remove_shared_cpu_map(cpu, i);
-
- kfree(per_cpu(ici_cpuid4_info, cpu)); - kfree(per_cpu(ici_cpuid4_info, cpu));
- per_cpu(ici_cpuid4_info, cpu) = NULL; - per_cpu(ici_cpuid4_info, cpu) = NULL;
+ if (!num_cache_leaves) + if (!num_cache_leaves)
@ -815,17 +815,20 @@ index d529019..bf23bd2 100644
} }
/* /*
@@ -925,411 +985,37 @@ static void get_cache_id(int cpu, struct _cpuid4_info_regs *id4_regs) @@ -925,414 +985,37 @@ static void get_cache_id(int cpu, struct _cpuid4_info_regs *id4_regs)
int get_cpu_cache_id(int cpu, int level) int get_cpu_cache_id(int cpu, int level)
{ {
int i; int i;
+ struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu); + struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu);
- for (i = 0; i < num_cache_leaves; i++) { - if (!per_cpu(ici_cpuid4_info, cpu))
- struct _cpuid4_info *this_leaf = CPUID4_INFO_IDX(cpu, i); - return -1;
+ for (i = 0; i < this_cpu_ci->num_leaves; i++) { + for (i = 0; i < this_cpu_ci->num_leaves; i++) {
+ struct cacheinfo *this_leaf = this_cpu_ci->info_list + i; + struct cacheinfo *this_leaf = this_cpu_ci->info_list + i;
- for (i = 0; i < num_cache_leaves; i++) {
- struct _cpuid4_info *this_leaf = CPUID4_INFO_IDX(cpu, i);
-
- if (this_leaf->base.eax.split.level == level) - if (this_leaf->base.eax.split.level == level)
- return this_leaf->base.id; - return this_leaf->base.id;
+ if (this_leaf->level == level) + if (this_leaf->level == level)
@ -836,13 +839,18 @@ index d529019..bf23bd2 100644
} }
-static void get_cpu_leaves(void *_retval) -static void get_cpu_leaves(void *_retval)
-{ +static int __populate_cache_leaves(unsigned int cpu)
{
- int j, *retval = _retval, cpu = smp_processor_id(); - int j, *retval = _retval, cpu = smp_processor_id();
- -
- /* Do cpuid and store the results */ - /* Do cpuid and store the results */
- for (j = 0; j < num_cache_leaves; j++) { - for (j = 0; j < num_cache_leaves; j++) {
- struct _cpuid4_info *this_leaf = CPUID4_INFO_IDX(cpu, j); - struct _cpuid4_info *this_leaf = CPUID4_INFO_IDX(cpu, j);
- + unsigned int idx, ret;
+ struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu);
+ struct cacheinfo *this_leaf = this_cpu_ci->info_list;
+ struct _cpuid4_info_regs id4_regs = {};
- *retval = cpuid4_cache_lookup_regs(j, &this_leaf->base); - *retval = cpuid4_cache_lookup_regs(j, &this_leaf->base);
- if (unlikely(*retval < 0)) { - if (unlikely(*retval < 0)) {
- int i; - int i;
@ -853,13 +861,21 @@ index d529019..bf23bd2 100644
- } - }
- cache_shared_cpu_map_setup(cpu, j); - cache_shared_cpu_map_setup(cpu, j);
- get_cache_id(cpu, &this_leaf->base); - get_cache_id(cpu, &this_leaf->base);
- } + for (idx = 0; idx < this_cpu_ci->num_leaves; idx++) {
+ ret = cpuid4_cache_lookup_regs(idx, &id4_regs);
+ if (ret)
+ return ret;
+ get_cache_id(cpu, &id4_regs);
+ ci_leaf_init(this_leaf++, &id4_regs);
+ __cache_cpumap_setup(cpu, idx, &id4_regs);
}
-} -}
- -
-static int detect_cache_attributes(unsigned int cpu) -static int detect_cache_attributes(unsigned int cpu)
-{ -{
- int retval; - int retval;
- + this_cpu_ci->cpu_map_populated = true;
- if (num_cache_leaves == 0) - if (num_cache_leaves == 0)
- return -ENOENT; - return -ENOENT;
- -
@ -1116,8 +1132,7 @@ index d529019..bf23bd2 100644
- -
-/* Add/Remove cache interface for CPU device */ -/* Add/Remove cache interface for CPU device */
-static int cache_add_dev(struct device *dev) -static int cache_add_dev(struct device *dev)
+static int __populate_cache_leaves(unsigned int cpu) -{
{
- unsigned int cpu = dev->id; - unsigned int cpu = dev->id;
- unsigned long i, j; - unsigned long i, j;
- struct _index_kobject *this_object; - struct _index_kobject *this_object;
@ -1140,11 +1155,7 @@ index d529019..bf23bd2 100644
- this_object = INDEX_KOBJECT_PTR(cpu, i); - this_object = INDEX_KOBJECT_PTR(cpu, i);
- this_object->cpu = cpu; - this_object->cpu = cpu;
- this_object->index = i; - this_object->index = i;
+ unsigned int idx, ret; -
+ struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu);
+ struct cacheinfo *this_leaf = this_cpu_ci->info_list;
+ struct _cpuid4_info_regs id4_regs = {};
- this_leaf = CPUID4_INFO_IDX(cpu, i); - this_leaf = CPUID4_INFO_IDX(cpu, i);
- -
- ktype_cache.default_attrs = default_attrs; - ktype_cache.default_attrs = default_attrs;
@ -1164,17 +1175,9 @@ index d529019..bf23bd2 100644
- return retval; - return retval;
- } - }
- kobject_uevent(&(this_object->kobj), KOBJ_ADD); - kobject_uevent(&(this_object->kobj), KOBJ_ADD);
+ for (idx = 0; idx < this_cpu_ci->num_leaves; idx++) { - }
+ ret = cpuid4_cache_lookup_regs(idx, &id4_regs);
+ if (ret)
+ return ret;
+ get_cache_id(cpu, &id4_regs);
+ ci_leaf_init(this_leaf++, &id4_regs);
+ __cache_cpumap_setup(cpu, idx, &id4_regs);
}
- cpumask_set_cpu(cpu, to_cpumask(cache_dev_map)); - cpumask_set_cpu(cpu, to_cpumask(cache_dev_map));
+ this_cpu_ci->cpu_map_populated = true; -
- kobject_uevent(per_cpu(ici_cache_kobject, cpu), KOBJ_ADD); - kobject_uevent(per_cpu(ici_cache_kobject, cpu), KOBJ_ADD);
return 0; return 0;
} }
@ -2107,9 +2110,9 @@ diff --git a/include/linux/cpu.h b/include/linux/cpu.h
index 82180fe..434d92c 100644 index 82180fe..434d92c 100644
--- a/include/linux/cpu.h --- a/include/linux/cpu.h
+++ b/include/linux/cpu.h +++ b/include/linux/cpu.h
@@ -49,6 +49,9 @@ extern ssize_t cpu_show_spec_store_bypass(struct device *dev, @@ -51,6 +51,9 @@ extern ssize_t cpu_show_l1tf(struct device *dev,
extern ssize_t cpu_show_l1tf(struct device *dev, extern ssize_t cpu_show_mds(struct device *dev,
struct device_attribute *attr, char *buf); struct device_attribute *attr, char *buf);
+extern struct device *cpu_device_create(struct device *parent, void *drvdata, +extern struct device *cpu_device_create(struct device *parent, void *drvdata,
+ const struct attribute_group **groups, + const struct attribute_group **groups,

View File

@ -229,7 +229,7 @@ diff --git a/security/security.c b/security/security.c
index f069482..646a0e3 100644 index f069482..646a0e3 100644
--- a/security/security.c --- a/security/security.c
+++ b/security/security.c +++ b/security/security.c
@@ -157,6 +157,110 @@ EXPORT_SYMBOL(unregister_lsm_notifier); @@ -161,6 +161,110 @@ EXPORT_SYMBOL(unregister_lsm_notifier);
/* Security operations */ /* Security operations */
@ -340,7 +340,7 @@ index f069482..646a0e3 100644
int security_ptrace_access_check(struct task_struct *child, unsigned int mode) int security_ptrace_access_check(struct task_struct *child, unsigned int mode)
{ {
#ifdef CONFIG_SECURITY_YAMA_STACKED #ifdef CONFIG_SECURITY_YAMA_STACKED
@@ -716,8 +820,11 @@ EXPORT_SYMBOL(security_inode_listsecurity); @@ -720,8 +824,11 @@ EXPORT_SYMBOL(security_inode_listsecurity);
void security_inode_getsecid(struct inode *inode, u32 *secid) void security_inode_getsecid(struct inode *inode, u32 *secid)
{ {
@ -353,7 +353,7 @@ index f069482..646a0e3 100644
int security_inode_copy_up(struct dentry *src, struct cred **new) int security_inode_copy_up(struct dentry *src, struct cred **new)
{ {
@@ -1526,6 +1633,7 @@ int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule) @@ -1530,6 +1637,7 @@ int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule)
{ {
return security_ops->audit_rule_init(field, op, rulestr, lsmrule); return security_ops->audit_rule_init(field, op, rulestr, lsmrule);
} }
@ -361,7 +361,7 @@ index f069482..646a0e3 100644
int security_audit_rule_known(struct audit_krule *krule) int security_audit_rule_known(struct audit_krule *krule)
{ {
@@ -1542,6 +1650,7 @@ int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule, @@ -1546,6 +1654,7 @@ int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule,
{ {
return security_ops->audit_rule_match(secid, field, op, lsmrule, actx); return security_ops->audit_rule_match(secid, field, op, lsmrule, actx);
} }

View File

@ -107,7 +107,7 @@ diff --git a/kernel/cpu.c b/kernel/cpu.c
index 0d9e250..6c156bd 100644 index 0d9e250..6c156bd 100644
--- a/kernel/cpu.c --- a/kernel/cpu.c
+++ b/kernel/cpu.c +++ b/kernel/cpu.c
@@ -991,6 +991,19 @@ static DECLARE_BITMAP(cpu_active_bits, CONFIG_NR_CPUS) __read_mostly; @@ -1012,6 +1012,19 @@ static DECLARE_BITMAP(cpu_active_bits, CONFIG_NR_CPUS) __read_mostly;
const struct cpumask *const cpu_active_mask = to_cpumask(cpu_active_bits); const struct cpumask *const cpu_active_mask = to_cpumask(cpu_active_bits);
EXPORT_SYMBOL(cpu_active_mask); EXPORT_SYMBOL(cpu_active_mask);

View File

@ -82,7 +82,7 @@ diff --git a/include/linux/huge_mm.h b/include/linux/huge_mm.h
index 26ec982..45af11b 100644 index 26ec982..45af11b 100644
--- a/include/linux/huge_mm.h --- a/include/linux/huge_mm.h
+++ b/include/linux/huge_mm.h +++ b/include/linux/huge_mm.h
@@ -362,7 +362,7 @@ static inline int pud_trans_huge_lock(pud_t *pud, struct vm_area_struct *vma, @@ -365,7 +365,7 @@ static inline int pud_trans_huge_lock(pud_t *pud, struct vm_area_struct *vma,
return 0; return 0;
} }

View File

@ -99,7 +99,7 @@ index 260597e..6c16b68 100644
} else if (!strncmp(str, "strict", 6)) { } else if (!strncmp(str, "strict", 6)) {
pr_info("Disable batched IOTLB flush\n"); pr_info("Disable batched IOTLB flush\n");
intel_iommu_strict = 1; intel_iommu_strict = 1;
@@ -2779,6 +2789,15 @@ static bool device_is_rmrr_locked(struct device *dev) @@ -2820,6 +2830,15 @@ static bool device_is_rmrr_locked(struct device *dev)
if (IS_USB_DEVICE(pdev) || IS_GFX_DEVICE(pdev)) if (IS_USB_DEVICE(pdev) || IS_GFX_DEVICE(pdev))
return false; return false;

View File

@ -1,2 +1,2 @@
mirror:Source/kernel-3.10.0-957.1.3.el7.src.rpm mirror:Source/kernel-3.10.0-957.12.2.el7.src.rpm