Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
6f5cee5b
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6f5cee5b
编写于
12月 03, 2014
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau/core: rename parent to handle, use parent for nouveau_parent
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
587f7a5b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
12 addition
and
10 deletion
+12
-10
drivers/gpu/drm/nouveau/core/core/ioctl.c
drivers/gpu/drm/nouveau/core/core/ioctl.c
+12
-10
未找到文件。
drivers/gpu/drm/nouveau/core/core/ioctl.c
浏览文件 @
6f5cee5b
...
...
@@ -85,17 +85,17 @@ nvkm_ioctl_sclass(struct nouveau_handle *handle, void *data, u32 size)
}
static
int
nvkm_ioctl_new
(
struct
nouveau_handle
*
parent
,
void
*
data
,
u32
size
)
nvkm_ioctl_new
(
struct
nouveau_handle
*
handle
,
void
*
data
,
u32
size
)
{
union
{
struct
nvif_ioctl_new_v0
v0
;
}
*
args
=
data
;
struct
nouveau_client
*
client
=
nouveau_client
(
parent
->
object
);
struct
nouveau_client
*
client
=
nouveau_client
(
handle
->
object
);
struct
nouveau_object
*
engctx
=
NULL
;
struct
nouveau_object
*
object
=
NULL
;
struct
nouveau_parent
*
parent
;
struct
nouveau_object
*
engine
;
struct
nouveau_oclass
*
oclass
;
struct
nouveau_handle
*
handle
;
u32
_handle
,
_oclass
;
int
ret
;
...
...
@@ -111,16 +111,18 @@ nvkm_ioctl_new(struct nouveau_handle *parent, void *data, u32 size)
args
->
v0
.
version
,
_handle
,
_oclass
,
args
->
v0
.
route
,
args
->
v0
.
token
);
if
(
!
nv_iclass
(
parent
->
object
,
NV_PARENT_CLASS
))
{
nv_debug
(
parent
->
object
,
"cannot have children (ctor)
\n
"
);
if
(
!
nv_iclass
(
handle
->
object
,
NV_PARENT_CLASS
))
{
nv_debug
(
handle
->
object
,
"cannot have children (ctor)
\n
"
);
ret
=
-
ENODEV
;
goto
fail_class
;
}
parent
=
nv_parent
(
handle
->
object
);
/* check that parent supports the requested subclass */
ret
=
nouveau_parent_sclass
(
parent
->
object
,
_oclass
,
&
engine
,
&
oclass
);
ret
=
nouveau_parent_sclass
(
&
parent
->
object
,
_oclass
,
&
engine
,
&
oclass
);
if
(
ret
)
{
nv_debug
(
parent
->
object
,
"illegal class 0x%04x
\n
"
,
_oclass
);
nv_debug
(
parent
,
"illegal class 0x%04x
\n
"
,
_oclass
);
goto
fail_class
;
}
...
...
@@ -138,13 +140,13 @@ nvkm_ioctl_new(struct nouveau_handle *parent, void *data, u32 size)
* between the parent and its children (eg. PGRAPH context)
*/
if
(
engine
&&
nv_engine
(
engine
)
->
cclass
)
{
ret
=
nouveau_object_ctor
(
parent
->
object
,
engine
,
ret
=
nouveau_object_ctor
(
&
parent
->
object
,
engine
,
nv_engine
(
engine
)
->
cclass
,
data
,
size
,
&
engctx
);
if
(
ret
)
goto
fail_engctx
;
}
else
{
nouveau_object_ref
(
parent
->
object
,
&
engctx
);
nouveau_object_ref
(
&
parent
->
object
,
&
engctx
);
}
/* finally, create new object and bind it to its handle */
...
...
@@ -157,7 +159,7 @@ nvkm_ioctl_new(struct nouveau_handle *parent, void *data, u32 size)
if
(
ret
)
goto
fail_init
;
ret
=
nouveau_handle_create
(
parent
->
object
,
parent
->
name
,
ret
=
nouveau_handle_create
(
&
parent
->
object
,
handle
->
name
,
_handle
,
object
,
&
handle
);
if
(
ret
)
goto
fail_handle
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录