Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
80f7228b
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
80f7228b
编写于
6月 30, 2006
作者:
A
Adrian Bunk
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
typo fixes: occuring -> occurring
Signed-off-by:
N
Adrian Bunk
<
bunk@stusta.de
>
上级
47bdd718
变更
13
隐藏空白更改
内联
并排
Showing
13 changed file
with
13 addition
and
13 deletion
+13
-13
Documentation/memory-barriers.txt
Documentation/memory-barriers.txt
+1
-1
arch/i386/mm/fault.c
arch/i386/mm/fault.c
+1
-1
arch/m32r/mm/fault.c
arch/m32r/mm/fault.c
+1
-1
arch/powerpc/platforms/powermac/cpufreq_32.c
arch/powerpc/platforms/powermac/cpufreq_32.c
+1
-1
arch/powerpc/platforms/pseries/eeh_driver.c
arch/powerpc/platforms/pseries/eeh_driver.c
+1
-1
arch/x86_64/mm/fault.c
arch/x86_64/mm/fault.c
+1
-1
drivers/infiniband/hw/ipath/ipath_intr.c
drivers/infiniband/hw/ipath/ipath_intr.c
+1
-1
drivers/message/fusion/mptbase.c
drivers/message/fusion/mptbase.c
+1
-1
drivers/net/wireless/ipw2100.c
drivers/net/wireless/ipw2100.c
+1
-1
drivers/serial/pxa.c
drivers/serial/pxa.c
+1
-1
include/asm-arm/thread_info.h
include/asm-arm/thread_info.h
+1
-1
include/asm-ia64/sn/tioca_provider.h
include/asm-ia64/sn/tioca_provider.h
+1
-1
kernel/cpuset.c
kernel/cpuset.c
+1
-1
未找到文件。
Documentation/memory-barriers.txt
浏览文件 @
80f7228b
...
...
@@ -602,7 +602,7 @@ Consider the following sequence of events:
This sequence of events is committed to the memory coherence system in an order
that the rest of the system might perceive as the unordered set of { STORE A,
STORE B, STORE C } all occuring before the unordered set of { STORE D, STORE E
STORE B, STORE C } all occur
r
ing before the unordered set of { STORE D, STORE E
}:
+-------+ : :
...
...
arch/i386/mm/fault.c
浏览文件 @
80f7228b
...
...
@@ -389,7 +389,7 @@ fastcall void __kprobes do_page_fault(struct pt_regs *regs,
/* When running in the kernel we expect faults to occur only to
* addresses in user space. All other faults represent errors in the
* kernel and should generate an OOPS. Unfortunatly, in the case of an
* erroneous fault occuring in a code path which already holds mmap_sem
* erroneous fault occur
r
ing in a code path which already holds mmap_sem
* we will deadlock attempting to validate the fault against the
* address space. Luckily the kernel only validly references user
* space from well defined areas of code, which are listed in the
...
...
arch/m32r/mm/fault.c
浏览文件 @
80f7228b
...
...
@@ -148,7 +148,7 @@ asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long error_code,
/* When running in the kernel we expect faults to occur only to
* addresses in user space. All other faults represent errors in the
* kernel and should generate an OOPS. Unfortunatly, in the case of an
* erroneous fault occuring in a code path which already holds mmap_sem
* erroneous fault occur
r
ing in a code path which already holds mmap_sem
* we will deadlock attempting to validate the fault against the
* address space. Luckily the kernel only validly references user
* space from well defined areas of code, which are listed in the
...
...
arch/powerpc/platforms/powermac/cpufreq_32.c
浏览文件 @
80f7228b
...
...
@@ -268,7 +268,7 @@ static int pmu_set_cpu_speed(int low_speed)
/* Make sure the decrementer won't interrupt us */
asm
volatile
(
"mtdec %0"
:
:
"r"
(
0x7fffffff
));
/* Make sure any pending DEC interrupt occuring while we did
/* Make sure any pending DEC interrupt occur
r
ing while we did
* the above didn't re-enable the DEC */
mb
();
asm
volatile
(
"mtdec %0"
:
:
"r"
(
0x7fffffff
));
...
...
arch/powerpc/platforms/pseries/eeh_driver.c
浏览文件 @
80f7228b
...
...
@@ -175,7 +175,7 @@ static void eeh_report_failure(struct pci_dev *dev, void *userdata)
*
* pSeries systems will isolate a PCI slot if the PCI-Host
* bridge detects address or data parity errors, DMA's
* occuring to wild addresses (which usually happen due to
* occur
r
ing to wild addresses (which usually happen due to
* bugs in device drivers or in PCI adapter firmware).
* Slot isolations also occur if #SERR, #PERR or other misc
* PCI-related errors are detected.
...
...
arch/x86_64/mm/fault.c
浏览文件 @
80f7228b
...
...
@@ -418,7 +418,7 @@ asmlinkage void __kprobes do_page_fault(struct pt_regs *regs,
/* When running in the kernel we expect faults to occur only to
* addresses in user space. All other faults represent errors in the
* kernel and should generate an OOPS. Unfortunatly, in the case of an
* erroneous fault occuring in a code path which already holds mmap_sem
* erroneous fault occur
r
ing in a code path which already holds mmap_sem
* we will deadlock attempting to validate the fault against the
* address space. Luckily the kernel only validly references user
* space from well defined areas of code, which are listed in the
...
...
drivers/infiniband/hw/ipath/ipath_intr.c
浏览文件 @
80f7228b
...
...
@@ -397,7 +397,7 @@ static void handle_errors(struct ipath_devdata *dd, ipath_err_t errs)
if
((
dd
->
ipath_maskederrs
&
~
dd
->
ipath_ignorederrs
)
&
~
(
INFINIPATH_E_RRCVEGRFULL
|
INFINIPATH_E_RRCVHDRFULL
))
ipath_dev_err
(
dd
,
"Disabling error(s) %llx because "
"occuring too frequently (%s)
\n
"
,
"occur
r
ing too frequently (%s)
\n
"
,
(
unsigned
long
long
)
(
dd
->
ipath_maskederrs
&
~
dd
->
ipath_ignorederrs
),
msg
);
...
...
drivers/message/fusion/mptbase.c
浏览文件 @
80f7228b
...
...
@@ -5592,7 +5592,7 @@ mpt_HardResetHandler(MPT_ADAPTER *ioc, int sleepFlag)
/* The SCSI driver needs to adjust timeouts on all current
* commands prior to the diagnostic reset being issued.
* Prevents timeouts occuring during a diagnostic reset...very bad.
* Prevents timeouts occur
r
ing during a diagnostic reset...very bad.
* For all other protocol drivers, this is a no-op.
*/
{
...
...
drivers/net/wireless/ipw2100.c
浏览文件 @
80f7228b
...
...
@@ -5358,7 +5358,7 @@ static int ipw2100_set_key(struct ipw2100_priv *priv,
idx
,
keylen
,
len
);
/* NOTE: We don't check cached values in case the firmware was reset
* or some other problem is occuring. If the user is setting the key,
* or some other problem is occur
r
ing. If the user is setting the key,
* then we push the change */
wep_key
->
idx
=
idx
;
...
...
drivers/serial/pxa.c
浏览文件 @
80f7228b
...
...
@@ -390,7 +390,7 @@ static int serial_pxa_startup(struct uart_port *port)
/*
* Finally, enable interrupts. Note: Modem status interrupts
* are set via set_termios(), which will be occuring imminently
* are set via set_termios(), which will be occur
r
ing imminently
* anyway, so we don't enable them here.
*/
up
->
ier
=
UART_IER_RLSI
|
UART_IER_RDI
|
UART_IER_RTOIE
|
UART_IER_UUE
;
...
...
include/asm-arm/thread_info.h
浏览文件 @
80f7228b
...
...
@@ -116,7 +116,7 @@ extern void iwmmxt_task_release(struct thread_info *);
/*
* We use bit 30 of the preempt_count to indicate that kernel
* preemption is occuring. See include/asm-arm/hardirq.h.
* preemption is occur
r
ing. See include/asm-arm/hardirq.h.
*/
#define PREEMPT_ACTIVE 0x40000000
...
...
include/asm-ia64/sn/tioca_provider.h
浏览文件 @
80f7228b
...
...
@@ -27,7 +27,7 @@
#define PV908234 (1 << 1)
/* CA:AGPDMA write request data mismatch with ABC1CL merge */
#define PV895469 (1 << 1)
/* TIO:CA TLB invalidate of written GART entries possibly not occuring in CA*/
/* TIO:CA TLB invalidate of written GART entries possibly not occur
r
ing in CA*/
#define PV910244 (1 << 1)
struct
tioca_dmamap
{
...
...
kernel/cpuset.c
浏览文件 @
80f7228b
...
...
@@ -1064,7 +1064,7 @@ static int update_flag(cpuset_flagbits_t bit, struct cpuset *cs, char *buf)
}
/*
* Frequency meter - How fast is some event occuring?
* Frequency meter - How fast is some event occur
r
ing?
*
* These routines manage a digitally filtered, constant time based,
* event frequency meter. There are four routines:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录