Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
e641f5f5
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
e641f5f5
编写于
2月 17, 2009
作者:
I
Ingo Molnar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
x86, apic: remove duplicate asm/apic.h inclusions
Impact: cleanup Signed-off-by:
N
Ingo Molnar
<
mingo@elte.hu
>
上级
7b6aa335
变更
18
隐藏空白更改
内联
并排
Showing
18 changed file
with
3 addition
and
34 deletion
+3
-34
arch/x86/include/asm/ipi.h
arch/x86/include/asm/ipi.h
+0
-2
arch/x86/kernel/acpi/boot.c
arch/x86/kernel/acpi/boot.c
+0
-1
arch/x86/kernel/apic.c
arch/x86/kernel/apic.c
+0
-1
arch/x86/kernel/cpu/amd.c
arch/x86/kernel/cpu/amd.c
+0
-2
arch/x86/kernel/cpu/common.c
arch/x86/kernel/cpu/common.c
+2
-4
arch/x86/kernel/cpu/intel.c
arch/x86/kernel/cpu/intel.c
+0
-1
arch/x86/kernel/crash.c
arch/x86/kernel/crash.c
+0
-2
arch/x86/kernel/es7000_32.c
arch/x86/kernel/es7000_32.c
+0
-1
arch/x86/kernel/irq_32.c
arch/x86/kernel/irq_32.c
+0
-1
arch/x86/kernel/numaq_32.c
arch/x86/kernel/numaq_32.c
+0
-1
arch/x86/kernel/probe_32.c
arch/x86/kernel/probe_32.c
+0
-4
arch/x86/kernel/reboot.c
arch/x86/kernel/reboot.c
+0
-2
arch/x86/kernel/setup.c
arch/x86/kernel/setup.c
+0
-1
arch/x86/kernel/smpboot.c
arch/x86/kernel/smpboot.c
+0
-1
arch/x86/kernel/summit_32.c
arch/x86/kernel/summit_32.c
+0
-1
arch/x86/kernel/tlb_uv.c
arch/x86/kernel/tlb_uv.c
+0
-2
arch/x86/kernel/visws_quirks.c
arch/x86/kernel/visws_quirks.c
+1
-6
arch/x86/mm/tlb.c
arch/x86/mm/tlb.c
+0
-1
未找到文件。
arch/x86/include/asm/ipi.h
浏览文件 @
e641f5f5
...
...
@@ -123,8 +123,6 @@ extern void default_send_IPI_mask_sequence_phys(const struct cpumask *mask,
int
vector
);
extern
void
default_send_IPI_mask_allbutself_phys
(
const
struct
cpumask
*
mask
,
int
vector
);
#include <asm/apic.h>
extern
void
default_send_IPI_mask_sequence_logical
(
const
struct
cpumask
*
mask
,
int
vector
);
extern
void
default_send_IPI_mask_allbutself_logical
(
const
struct
cpumask
*
mask
,
...
...
arch/x86/kernel/acpi/boot.c
浏览文件 @
e641f5f5
...
...
@@ -37,7 +37,6 @@
#include <asm/pgtable.h>
#include <asm/io_apic.h>
#include <asm/apic.h>
#include <asm/apic.h>
#include <asm/io.h>
#include <asm/mpspec.h>
#include <asm/smp.h>
...
...
arch/x86/kernel/apic.c
浏览文件 @
e641f5f5
...
...
@@ -36,7 +36,6 @@
#include <asm/arch_hooks.h>
#include <asm/pgalloc.h>
#include <asm/apic.h>
#include <asm/atomic.h>
#include <asm/mpspec.h>
#include <asm/i8253.h>
...
...
arch/x86/kernel/cpu/amd.c
浏览文件 @
e641f5f5
...
...
@@ -12,8 +12,6 @@
# include <asm/cacheflush.h>
#endif
#include <asm/apic.h>
#include "cpu.h"
#ifdef CONFIG_X86_32
...
...
arch/x86/kernel/cpu/common.c
浏览文件 @
e641f5f5
...
...
@@ -23,11 +23,9 @@
#include <asm/smp.h>
#include <asm/cpu.h>
#include <asm/cpumask.h>
#ifdef CONFIG_X86_LOCAL_APIC
#include <asm/mpspec.h>
#include <asm/apic.h>
#include <asm/apic.h>
#include <asm/apic.h>
#ifdef CONFIG_X86_LOCAL_APIC
#include <asm/uv/uv.h>
#endif
...
...
arch/x86/kernel/cpu/intel.c
浏览文件 @
e641f5f5
...
...
@@ -24,7 +24,6 @@
#ifdef CONFIG_X86_LOCAL_APIC
#include <asm/mpspec.h>
#include <asm/apic.h>
#include <asm/apic.h>
#endif
static
void
__cpuinit
early_init_intel
(
struct
cpuinfo_x86
*
c
)
...
...
arch/x86/kernel/crash.c
浏览文件 @
e641f5f5
...
...
@@ -28,8 +28,6 @@
#include <asm/reboot.h>
#include <asm/virtext.h>
#include <asm/apic.h>
#if defined(CONFIG_SMP) && defined(CONFIG_X86_LOCAL_APIC)
...
...
arch/x86/kernel/es7000_32.c
浏览文件 @
e641f5f5
...
...
@@ -387,7 +387,6 @@ void __init es7000_enable_apic_mode(void)
#include <linux/threads.h>
#include <linux/cpumask.h>
#include <asm/mpspec.h>
#include <asm/apic.h>
#include <asm/fixmap.h>
#include <asm/apicdef.h>
#include <linux/kernel.h>
...
...
arch/x86/kernel/irq_32.c
浏览文件 @
e641f5f5
...
...
@@ -212,7 +212,6 @@ bool handle_irq(unsigned irq, struct pt_regs *regs)
}
#ifdef CONFIG_HOTPLUG_CPU
#include <asm/apic.h>
/* A cpu has been removed from cpu_online_mask. Reset irq affinities. */
void
fixup_irqs
(
void
)
...
...
arch/x86/kernel/numaq_32.c
浏览文件 @
e641f5f5
...
...
@@ -301,7 +301,6 @@ int __init get_memcfg_numaq(void)
#include <linux/threads.h>
#include <linux/cpumask.h>
#include <asm/mpspec.h>
#include <asm/apic.h>
#include <asm/fixmap.h>
#include <asm/apicdef.h>
#include <asm/ipi.h>
...
...
arch/x86/kernel/probe_32.c
浏览文件 @
e641f5f5
...
...
@@ -23,14 +23,12 @@
#include <linux/threads.h>
#include <linux/cpumask.h>
#include <asm/mpspec.h>
#include <asm/apic.h>
#include <asm/fixmap.h>
#include <asm/apicdef.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/smp.h>
#include <linux/init.h>
#include <asm/apic.h>
#include <asm/ipi.h>
#include <linux/smp.h>
...
...
@@ -41,8 +39,6 @@
#include <asm/e820.h>
#include <asm/setup.h>
#include <asm/apic.h>
#ifdef CONFIG_HOTPLUG_CPU
#define DEFAULT_SEND_IPI (1)
#else
...
...
arch/x86/kernel/reboot.c
浏览文件 @
e641f5f5
...
...
@@ -24,8 +24,6 @@
# include <asm/iommu.h>
#endif
#include <asm/apic.h>
/*
* Power off function, if any
*/
...
...
arch/x86/kernel/setup.c
浏览文件 @
e641f5f5
...
...
@@ -97,7 +97,6 @@
#include <asm/mmu_context.h>
#include <asm/proto.h>
#include <asm/apic.h>
#include <asm/paravirt.h>
#include <asm/hypervisor.h>
...
...
arch/x86/kernel/smpboot.c
浏览文件 @
e641f5f5
...
...
@@ -65,7 +65,6 @@
#include <asm/uv/uv.h>
#include <linux/mc146818rtc.h>
#include <asm/apic.h>
#include <asm/smpboot_hooks.h>
#ifdef CONFIG_X86_32
...
...
arch/x86/kernel/summit_32.c
浏览文件 @
e641f5f5
...
...
@@ -40,7 +40,6 @@
#include <asm/mpspec.h>
#include <asm/apic.h>
#include <asm/smp.h>
#include <asm/apic.h>
#include <asm/fixmap.h>
#include <asm/apicdef.h>
#include <asm/ipi.h>
...
...
arch/x86/kernel/tlb_uv.c
浏览文件 @
e641f5f5
...
...
@@ -20,8 +20,6 @@
#include <asm/tsc.h>
#include <asm/irq_vectors.h>
#include <asm/apic.h>
static
struct
bau_control
**
uv_bau_table_bases
__read_mostly
;
static
int
uv_bau_retry_limit
__read_mostly
;
...
...
arch/x86/kernel/visws_quirks.c
浏览文件 @
e641f5f5
...
...
@@ -29,13 +29,10 @@
#include <asm/fixmap.h>
#include <asm/reboot.h>
#include <asm/setup.h>
#include <asm/apic.h>
#include <asm/e820.h>
#include <asm/io.h>
#include <asm/apic.h>
#include <asm/apic.h>
#include <linux/kernel_stat.h>
#include <asm/i8259.h>
...
...
@@ -49,8 +46,6 @@
extern
int
no_broadcast
;
#include <asm/apic.h>
char
visws_board_type
=
-
1
;
char
visws_board_rev
=
-
1
;
...
...
arch/x86/mm/tlb.c
浏览文件 @
e641f5f5
...
...
@@ -14,7 +14,6 @@
DEFINE_PER_CPU_SHARED_ALIGNED
(
struct
tlb_state
,
cpu_tlbstate
)
=
{
&
init_mm
,
0
,
};
#include <asm/apic.h>
/*
* Smarter SMP flushing macros.
* c/o Linus Torvalds.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录