You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Merge branch 'core/percpu' into percpu-cpumask-x86-for-linus-2
Conflicts:
arch/parisc/kernel/irq.c
arch/x86/include/asm/fixmap_64.h
arch/x86/include/asm/setup.h
kernel/irq/handle.c
Semantic merge:
arch/x86/include/asm/fixmap.h
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
+2
-2
@@ -1375,10 +1375,10 @@ EXPORT_SYMBOL_GPL(snmp_fold_field);
|
||||
int snmp_mib_init(void *ptr[2], size_t mibsize)
|
||||
{
|
||||
BUG_ON(ptr == NULL);
|
||||
ptr[0] = __alloc_percpu(mibsize);
|
||||
ptr[0] = __alloc_percpu(mibsize, __alignof__(unsigned long long));
|
||||
if (!ptr[0])
|
||||
goto err0;
|
||||
ptr[1] = __alloc_percpu(mibsize);
|
||||
ptr[1] = __alloc_percpu(mibsize, __alignof__(unsigned long long));
|
||||
if (!ptr[1])
|
||||
goto err1;
|
||||
return 0;
|
||||
|
||||
+1
-1
@@ -3377,7 +3377,7 @@ int __init ip_rt_init(void)
|
||||
int rc = 0;
|
||||
|
||||
#ifdef CONFIG_NET_CLS_ROUTE
|
||||
ip_rt_acct = __alloc_percpu(256 * sizeof(struct ip_rt_acct));
|
||||
ip_rt_acct = __alloc_percpu(256 * sizeof(struct ip_rt_acct), __alignof__(struct ip_rt_acct));
|
||||
if (!ip_rt_acct)
|
||||
panic("IP: failed to allocate ip_rt_acct\n");
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user