Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
afa49791
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看板
提交
afa49791
编写于
13年前
作者:
L
Linus Torvalds
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'fbmem'
* fbmem: Further fbcon sanity checking fbmem: fix remove_conflicting_framebuffers races
上级
22fe9446
c590cece
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
71 addition
and
52 deletion
+71
-52
drivers/video/fbmem.c
drivers/video/fbmem.c
+71
-52
未找到文件。
drivers/video/fbmem.c
浏览文件 @
afa49791
...
...
@@ -1537,8 +1537,10 @@ static bool fb_do_apertures_overlap(struct apertures_struct *gena,
return
false
;
}
static
int
do_unregister_framebuffer
(
struct
fb_info
*
fb_info
);
#define VGA_FB_PHYS 0xA0000
void
remove_conflicting_framebuffers
(
struct
apertures_struct
*
a
,
static
void
do_
remove_conflicting_framebuffers
(
struct
apertures_struct
*
a
,
const
char
*
name
,
bool
primary
)
{
int
i
;
...
...
@@ -1560,39 +1562,26 @@ void remove_conflicting_framebuffers(struct apertures_struct *a,
printk
(
KERN_INFO
"fb: conflicting fb hw usage "
"%s vs %s - removing generic driver
\n
"
,
name
,
registered_fb
[
i
]
->
fix
.
id
);
unregister_framebuffer
(
registered_fb
[
i
]);
do_
unregister_framebuffer
(
registered_fb
[
i
]);
}
}
}
EXPORT_SYMBOL
(
remove_conflicting_framebuffers
);
/**
* register_framebuffer - registers a frame buffer device
* @fb_info: frame buffer info structure
*
* Registers a frame buffer device @fb_info.
*
* Returns negative errno on error, or zero for success.
*
*/
int
register_framebuffer
(
struct
fb_info
*
fb_info
)
static
int
do_register_framebuffer
(
struct
fb_info
*
fb_info
)
{
int
i
;
struct
fb_event
event
;
struct
fb_videomode
mode
;
if
(
num_registered_fb
==
FB_MAX
)
return
-
ENXIO
;
if
(
fb_check_foreignness
(
fb_info
))
return
-
ENOSYS
;
remove_conflicting_framebuffers
(
fb_info
->
apertures
,
fb_info
->
fix
.
id
,
do_
remove_conflicting_framebuffers
(
fb_info
->
apertures
,
fb_info
->
fix
.
id
,
fb_is_primary_device
(
fb_info
));
mutex_lock
(
&
registration_lock
);
if
(
num_registered_fb
==
FB_MAX
)
return
-
ENXIO
;
num_registered_fb
++
;
for
(
i
=
0
;
i
<
FB_MAX
;
i
++
)
if
(
!
registered_fb
[
i
])
...
...
@@ -1635,7 +1624,6 @@ register_framebuffer(struct fb_info *fb_info)
fb_var_to_videomode
(
&
mode
,
&
fb_info
->
var
);
fb_add_videomode
(
&
mode
,
&
fb_info
->
modelist
);
registered_fb
[
i
]
=
fb_info
;
mutex_unlock
(
&
registration_lock
);
event
.
info
=
fb_info
;
if
(
!
lock_fb_info
(
fb_info
))
...
...
@@ -1645,37 +1633,14 @@ register_framebuffer(struct fb_info *fb_info)
return
0
;
}
/**
* unregister_framebuffer - releases a frame buffer device
* @fb_info: frame buffer info structure
*
* Unregisters a frame buffer device @fb_info.
*
* Returns negative errno on error, or zero for success.
*
* This function will also notify the framebuffer console
* to release the driver.
*
* This is meant to be called within a driver's module_exit()
* function. If this is called outside module_exit(), ensure
* that the driver implements fb_open() and fb_release() to
* check that no processes are using the device.
*/
int
unregister_framebuffer
(
struct
fb_info
*
fb_info
)
static
int
do_unregister_framebuffer
(
struct
fb_info
*
fb_info
)
{
struct
fb_event
event
;
int
i
,
ret
=
0
;
mutex_lock
(
&
registration_lock
);
i
=
fb_info
->
node
;
if
(
!
registered_fb
[
i
])
{
ret
=
-
EINVAL
;
goto
done
;
}
if
(
i
<
0
||
i
>=
FB_MAX
||
registered_fb
[
i
]
!=
fb_info
)
return
-
EINVAL
;
if
(
!
lock_fb_info
(
fb_info
))
return
-
ENODEV
;
...
...
@@ -1683,10 +1648,8 @@ unregister_framebuffer(struct fb_info *fb_info)
ret
=
fb_notifier_call_chain
(
FB_EVENT_FB_UNBIND
,
&
event
);
unlock_fb_info
(
fb_info
);
if
(
ret
)
{
ret
=
-
EINVAL
;
goto
done
;
}
if
(
ret
)
return
-
EINVAL
;
if
(
fb_info
->
pixmap
.
addr
&&
(
fb_info
->
pixmap
.
flags
&
FB_PIXMAP_DEFAULT
))
...
...
@@ -1701,8 +1664,64 @@ unregister_framebuffer(struct fb_info *fb_info)
/* this may free fb info */
put_fb_info
(
fb_info
);
done:
return
0
;
}
void
remove_conflicting_framebuffers
(
struct
apertures_struct
*
a
,
const
char
*
name
,
bool
primary
)
{
mutex_lock
(
&
registration_lock
);
do_remove_conflicting_framebuffers
(
a
,
name
,
primary
);
mutex_unlock
(
&
registration_lock
);
}
EXPORT_SYMBOL
(
remove_conflicting_framebuffers
);
/**
* register_framebuffer - registers a frame buffer device
* @fb_info: frame buffer info structure
*
* Registers a frame buffer device @fb_info.
*
* Returns negative errno on error, or zero for success.
*
*/
int
register_framebuffer
(
struct
fb_info
*
fb_info
)
{
int
ret
;
mutex_lock
(
&
registration_lock
);
ret
=
do_register_framebuffer
(
fb_info
);
mutex_unlock
(
&
registration_lock
);
return
ret
;
}
/**
* unregister_framebuffer - releases a frame buffer device
* @fb_info: frame buffer info structure
*
* Unregisters a frame buffer device @fb_info.
*
* Returns negative errno on error, or zero for success.
*
* This function will also notify the framebuffer console
* to release the driver.
*
* This is meant to be called within a driver's module_exit()
* function. If this is called outside module_exit(), ensure
* that the driver implements fb_open() and fb_release() to
* check that no processes are using the device.
*/
int
unregister_framebuffer
(
struct
fb_info
*
fb_info
)
{
int
ret
;
mutex_lock
(
&
registration_lock
);
ret
=
do_unregister_framebuffer
(
fb_info
);
mutex_unlock
(
&
registration_lock
);
return
ret
;
}
...
...
This diff is collapsed.
Click to expand it.
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录
新手
引导
客服
返回
顶部