Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
iSulad
提交
f5ff0844
I
iSulad
项目概览
openeuler
/
iSulad
通知
15
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
I
iSulad
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
f5ff0844
编写于
4月 26, 2020
作者:
L
LiFeng
提交者:
lifeng68
7月 25, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
driver: add support driver name overlay
Signed-off-by:
N
LiFeng
<
lifeng68@huawei.com
>
上级
c1666d73
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
5 addition
and
89 deletion
+5
-89
CI/test_cases/basic_cases/share_ns_test.bash
CI/test_cases/basic_cases/share_ns_test.bash
+0
-77
src/image/oci/storage/layer_store/graphdriver/driver.c
src/image/oci/storage/layer_store/graphdriver/driver.c
+5
-12
未找到文件。
CI/test_cases/basic_cases/share_ns_test.bash
已删除
100755 → 0
浏览文件 @
c1666d73
#!/bin/bash
#
# attributes: isulad share namepaces
# concurrent: NO
# spend time: 21
#######################################################################
##- @Copyright (C) Huawei Technologies., Ltd. 2020. All rights reserved.
# - iSulad licensed under the Mulan PSL v2.
# - You can use this software according to the terms and conditions of the Mulan PSL v2.
# - You may obtain a copy of Mulan PSL v2 at:
# - http://license.coscl.org.cn/MulanPSL2
# - THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR
# - IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
# - PURPOSE.
# - See the Mulan PSL v2 for more details.
##- @Description:CI
##- @Author: gaohuatao
##- @Create: 2020-04-24
#######################################################################
curr_path
=
$(
dirname
$(
readlink
-f
"
$0
"
))
data_path
=
$(
realpath
$curr_path
/../data
)
source
./helpers.bash
arr_ns_type[0]
=
"--ipc"
arr_ns_type[1]
=
"--pid"
arr_ns_type[2]
=
"--net"
arr_ns_type[3]
=
"--uts"
function
do_test_t
()
{
for
((
i
=
0
;
i <
${#
arr_ns_type
[*]
}
;
i++
))
do
echo
${
arr_ns_type
[
$i
]
}
cid[
$i
]=
`
isula create
-ti
busybox /bin/sh
`
fn_check_eq
"
$?
"
"0"
"create
${
cid
[
$i
]
}
"
msg
=
`
isula run
-tid
${
arr_ns_type
[
$i
]
}
=
"container:
${
cid
[
$i
]
}
"
busybox /bin/sh 2>&1
`
echo
$msg
|
grep
"Can not join namespace of a non running container"
fn_check_eq
"
$?
"
"0"
"share ipc fail test"
isula
rm
-f
${
cid
[
$i
]
}
rid[
$i
]=
`
isula run
-tid
busybox /bin/sh
`
fn_check_eq
"
$?
"
"0"
"run
${
rid
[
$i
]
}
"
id
=
`
isula run
-tid
busybox /bin/sh
`
fn_check_eq
"
$?
"
"0"
"run
$id
"
test_id
=
`
isula run
-tid
${
arr_ns_type
[
$i
]
}
=
"container:
$id
"
busybox /bin/sh
`
fn_check_eq
"
$?
"
"0"
"share
${
arr_ns_type
[
$i
]
}
success test"
isula restart
--time
=
0
$id
fn_check_eq
"
$?
"
"0"
"restart container
$id
"
testcontainer
$id
running
isula restart
--time
=
0
${
test_id
}
fn_check_eq
"
$?
"
"0"
"restart container
${
test_id
}
"
testcontainer
${
test_id
}
running
isula
rm
-f
${
test_id
}
$id
done
return
$TC_RET_T
}
ret
=
0
do_test_t
if
[
$?
-ne
0
]
;
then
let
"ret=
$ret
+ 1"
fi
show_result
$ret
"basic share ns test"
src/image/oci/storage/layer_store/graphdriver/driver.c
浏览文件 @
f5ff0844
...
...
@@ -12,6 +12,7 @@
* Create: 2017-11-22
* Description: provide image functions
******************************************************************************/
#include "driver.h"
#include <stdlib.h>
...
...
@@ -33,6 +34,8 @@ static struct graphdriver *g_graphdriver = NULL;
/* overlay2 */
#define DRIVER_OVERLAY2_NAME "overlay2"
#define DRIVER_OVERLAY_NAME "overlay"
static
const
struct
graphdriver_ops
g_overlay2_ops
=
{
.
init
=
overlay2_init
,
.
create_rw
=
overlay2_create_rw
,
...
...
@@ -56,7 +59,8 @@ static const struct graphdriver_ops g_devmapper_ops = {
};
static
struct
graphdriver
g_drivers
[]
=
{
{.
name
=
DRIVER_OVERLAY2_NAME
,
.
ops
=
&
g_overlay2_ops
},
{.
name
=
DRIVER_OVERLAY2_NAME
,
.
ops
=
&
g_overlay2_ops
},
{.
name
=
DRIVER_OVERLAY_NAME
,
.
ops
=
&
g_overlay2_ops
},
{.
name
=
DRIVER_DEVMAPPER_NAME
,
.
ops
=
&
g_devmapper_ops
}
};
...
...
@@ -97,17 +101,6 @@ int graphdriver_init(struct storage_module_init_options *opts)
goto
out
;
}
//just for test
struct
driver_create_opts
test_create_opts
=
{
0
};
struct
driver_mount_opts
test_mount_opts
=
{
0
};
graphdriver_create_ro
(
"1"
,
""
,
&
test_create_opts
);
graphdriver_create_ro
(
"2"
,
"1"
,
&
test_create_opts
);
graphdriver_create_ro
(
"3"
,
"2"
,
&
test_create_opts
);
graphdriver_create_ro
(
"4"
,
"3"
,
&
test_create_opts
);
graphdriver_create_rw
(
"5"
,
"4"
,
&
test_create_opts
);
ERROR
(
"mount: %s"
,
graphdriver_mount_layer
(
"5"
,
&
test_mount_opts
));
//end test
out:
return
ret
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录