Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
edd63a27
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
edd63a27
编写于
4月 27, 2012
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
set_restore_sigmask() is never called without SIGPENDING (and never should be)
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
6fd84c08
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
9 addition
and
8 deletion
+9
-8
arch/ia64/include/asm/thread_info.h
arch/ia64/include/asm/thread_info.h
+1
-1
arch/microblaze/include/asm/thread_info.h
arch/microblaze/include/asm/thread_info.h
+1
-1
arch/powerpc/include/asm/thread_info.h
arch/powerpc/include/asm/thread_info.h
+1
-1
arch/sh/include/asm/thread_info.h
arch/sh/include/asm/thread_info.h
+1
-1
arch/sparc/include/asm/thread_info_64.h
arch/sparc/include/asm/thread_info_64.h
+1
-1
arch/tile/include/asm/thread_info.h
arch/tile/include/asm/thread_info.h
+1
-1
arch/x86/include/asm/thread_info.h
arch/x86/include/asm/thread_info.h
+1
-1
include/linux/thread_info.h
include/linux/thread_info.h
+2
-1
未找到文件。
arch/ia64/include/asm/thread_info.h
浏览文件 @
edd63a27
...
...
@@ -141,7 +141,7 @@ static inline void set_restore_sigmask(void)
{
struct
thread_info
*
ti
=
current_thread_info
();
ti
->
status
|=
TS_RESTORE_SIGMASK
;
set_bit
(
TIF_SIGPENDING
,
&
ti
->
flags
);
WARN_ON
(
!
test_bit
(
TIF_SIGPENDING
,
&
ti
->
flags
)
);
}
static
inline
void
clear_restore_sigmask
(
void
)
{
...
...
arch/microblaze/include/asm/thread_info.h
浏览文件 @
edd63a27
...
...
@@ -166,7 +166,7 @@ static inline void set_restore_sigmask(void)
{
struct
thread_info
*
ti
=
current_thread_info
();
ti
->
status
|=
TS_RESTORE_SIGMASK
;
set_bit
(
TIF_SIGPENDING
,
(
unsigned
long
*
)
&
ti
->
flags
);
WARN_ON
(
!
test_bit
(
TIF_SIGPENDING
,
(
unsigned
long
*
)
&
ti
->
flags
)
);
}
static
inline
void
clear_restore_sigmask
(
void
)
{
...
...
arch/powerpc/include/asm/thread_info.h
浏览文件 @
edd63a27
...
...
@@ -140,7 +140,7 @@ static inline void set_restore_sigmask(void)
{
struct
thread_info
*
ti
=
current_thread_info
();
ti
->
local_flags
|=
_TLF_RESTORE_SIGMASK
;
set_bit
(
TIF_SIGPENDING
,
&
ti
->
flags
);
WARN_ON
(
!
test_bit
(
TIF_SIGPENDING
,
&
ti
->
flags
)
);
}
static
inline
void
clear_restore_sigmask
(
void
)
{
...
...
arch/sh/include/asm/thread_info.h
浏览文件 @
edd63a27
...
...
@@ -169,7 +169,7 @@ static inline void set_restore_sigmask(void)
{
struct
thread_info
*
ti
=
current_thread_info
();
ti
->
status
|=
TS_RESTORE_SIGMASK
;
set_bit
(
TIF_SIGPENDING
,
(
unsigned
long
*
)
&
ti
->
flags
);
WARN_ON
(
!
test_bit
(
TIF_SIGPENDING
,
(
unsigned
long
*
)
&
ti
->
flags
)
);
}
#define TI_FLAG_FAULT_CODE_SHIFT 24
...
...
arch/sparc/include/asm/thread_info_64.h
浏览文件 @
edd63a27
...
...
@@ -238,7 +238,7 @@ static inline void set_restore_sigmask(void)
{
struct
thread_info
*
ti
=
current_thread_info
();
ti
->
status
|=
TS_RESTORE_SIGMASK
;
set_bit
(
TIF_SIGPENDING
,
&
ti
->
flags
);
WARN_ON
(
!
test_bit
(
TIF_SIGPENDING
,
&
ti
->
flags
)
);
}
static
inline
void
clear_restore_sigmask
(
void
)
{
...
...
arch/tile/include/asm/thread_info.h
浏览文件 @
edd63a27
...
...
@@ -166,7 +166,7 @@ static inline void set_restore_sigmask(void)
{
struct
thread_info
*
ti
=
current_thread_info
();
ti
->
status
|=
TS_RESTORE_SIGMASK
;
set_bit
(
TIF_SIGPENDING
,
&
ti
->
flags
);
WARN_ON
(
!
test_bit
(
TIF_SIGPENDING
,
&
ti
->
flags
)
);
}
static
inline
void
clear_restore_sigmask
(
void
)
{
...
...
arch/x86/include/asm/thread_info.h
浏览文件 @
edd63a27
...
...
@@ -248,7 +248,7 @@ static inline void set_restore_sigmask(void)
{
struct
thread_info
*
ti
=
current_thread_info
();
ti
->
status
|=
TS_RESTORE_SIGMASK
;
set_bit
(
TIF_SIGPENDING
,
(
unsigned
long
*
)
&
ti
->
flags
);
WARN_ON
(
!
test_bit
(
TIF_SIGPENDING
,
(
unsigned
long
*
)
&
ti
->
flags
)
);
}
static
inline
void
clear_restore_sigmask
(
void
)
{
...
...
include/linux/thread_info.h
浏览文件 @
edd63a27
...
...
@@ -8,6 +8,7 @@
#define _LINUX_THREAD_INFO_H
#include <linux/types.h>
#include <linux/bug.h>
struct
timespec
;
struct
compat_timespec
;
...
...
@@ -125,7 +126,7 @@ static inline int test_ti_thread_flag(struct thread_info *ti, int flag)
static
inline
void
set_restore_sigmask
(
void
)
{
set_thread_flag
(
TIF_RESTORE_SIGMASK
);
set_thread_flag
(
TIF_SIGPENDING
);
WARN_ON
(
!
test_thread_flag
(
TIF_SIGPENDING
)
);
}
static
inline
void
clear_restore_sigmask
(
void
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录