登录
注册
开源
企业版
高校版
搜索
帮助中心
使用条款
关于我们
开源
企业版
高校版
私有云
模力方舟
登录
注册
代码拉取完成,页面将自动刷新
开源项目
>
其他开源
>
操作系统
&&
捐赠
捐赠前请先登录
取消
前往登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
Watch
不关注
关注所有动态
仅关注版本发行动态
关注但不提醒动态
441
Star
1.6K
Fork
1.8K
GVP
openEuler
/
kernel
代码
Issues
1479
Pull Requests
2628
Wiki
统计
流水线
服务
质量分析
Jenkins for Gitee
腾讯云托管
腾讯云 Serverless
悬镜安全
阿里云 SAE
Codeblitz
SBOM
我知道了,不再自动展开
更新失败,请稍后重试!
移除标识
内容风险标识
本任务被
标识为内容中包含有代码安全 Bug 、隐私泄露等敏感信息,仓库外成员不可访问
nfs09_v3相关用例失败
已完成
#IBCU3L
内核缺陷
Li Lingfeng
创建于
2024-12-21 17:27
> _**请尽量提供详细的信息,如缺乏必要的定位信息,则缺陷不会被定位**_ ## 环境信息 【OS版本】OLK 6.6 【内核版本】6.6.0-23469-g93509d36bc89 【硬件平台】x86 qemu 【组网信息】NA ## 缺陷信息 【问题复现步骤】 问题1: 服务端: mkfs.ext4 -F /dev/sdb mount /dev/sdb /mnt/sdb echo "/mnt *(rw,no_root_squash,fsid=0)" > /etc/exports echo "/mnt/sdb *(rw,no_root_squash,fsid=1)" >> /etc/exports systemctl restart nfs-server 两个客户端: mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb 就绪后按如下顺序在两个客户端上操作: 客户端1 客户端2 ls -l /mnt/sdbb/afile echo hello there > /mnt/sdbb/afile echo HELLO > /mnt/sdbb/afile cat /mnt/sdbb/afile 问题2: mkfs.ext4 -F /dev/sdb mount /dev/sdb /mnt/sdb echo "/mnt *(rw,no_root_squash,fsid=0)" > /etc/exports echo "/mnt/sdb *(rw,no_root_squash,fsid=1)" >> /etc/exports systemctl restart nfs-server mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb 问题3: mkfs.ext4 -F /dev/sdb mount /dev/sdb /mnt/sdb echo "/mnt *(rw,no_root_squash,fsid=0)" > /etc/exports echo "/mnt/sdb *(rw,no_root_squash,fsid=1)" >> /etc/exports systemctl restart nfs-server mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb 问题2用例: [root@localhost sdbb]# cat test.c #include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <string.h> #include <unistd.h> int main() { char filename[1025]; memset(filename, 'a', 1024); // 将字符数组填充为连续的'a' filename[1024] = '\0'; // 确保字符串以null结尾 int fd = open(filename, O_RDWR | O_CREAT, 0644); if (fd == -1) { perror("open"); exit(EXIT_FAILURE); } printf("成功打开/创建文件: %s\n", filename); close(fd); return 0; } [root@localhost sdbb]# 问题3用例: open.c #include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <string.h> #include <unistd.h> #define FILE_PATH "/mnt/sdbb/testfile" int main() { int fd = open(FILE_PATH, O_RDWR | O_CREAT, 0644); if (fd == -1) { perror("open"); exit(EXIT_FAILURE); } printf("成功打开/创建文件: %s\n", FILE_PATH); close(fd); return 0; } inotify.c #include <stdio.h> #include <string.h> #include <stdlib.h> #include <unistd.h> #include <errno.h> #include <sys/inotify.h> #define EVENT_NUM 12 const char *event_str[EVENT_NUM] = { "IN_ACCESS", "IN_MODIFY", "IN_ATTRIB", "IN_CLOSE_WRITE", "IN_CLOSE_NOWRITE", "IN_OPEN", "IN_MOVED_FROM", "IN_MOVED_TO", "IN_CREATE", "IN_DELETE", "IN_DELETE_SELF", "IN_MOVE_SELF" }; int inotifyTask(char *argv[]) { int errTimes = 0; int fd = -1; fd = inotify_init(); if(fd < 0) { fprintf(stderr, "inotify_init failed\n"); printf("Error no.%d: %s\n", errno, strerror(errno)); return -1; } int wd1 = -1; struct inotify_event *event; int length; int nread; char buf[BUFSIZ]; int i = 0; buf[sizeof(buf) - 1] = 0; wd1 = inotify_add_watch(fd, argv[1], IN_ALL_EVENTS); if(wd1 < 0) { fprintf(stderr, "inotify_add_watch %s failed\n", argv[1]); printf("Error no.%d: %s\n", errno, strerror(errno)); return; } length = read(fd, buf, sizeof(buf) - 1); nread = 0; // inotify 事件发生时 while(length > 0) { printf("\n"); event = (struct inotify_event *)&buf[nread]; // 遍历所有事件 for(i = 0; i< EVENT_NUM; i++) { // 判断事件是否发生 if( (event->mask >> i) & 1 ) { // 该监控项为目录或目录下的文件时 if(event->len > 0) { fprintf(stdout, "%s --- %s\n", event->name, event_str[i]); } else if (event->len == 0) { if(event->wd == wd1) { fprintf(stdout, "%s --- %s\n", argv[1], event_str[i]); } } } } nread = nread + sizeof(struct inotify_event) + event->len; length = length - sizeof(struct inotify_event) - event->len; } close(fd); return 0; } int main(int argc, char *argv[]) { if(argc < 2) { fprintf(stderr, "Usage: %s path path\n", argv[0]); return -1; } if(inotifyTask(argv) == -1) { return -1; } return 0; } 【实际结果】 问题1: 客户端1读取到的文件内容与写入的不一致 客户端1 Fedora 26 (Twenty Six) Kernel 6.6.0-g261eefed5930 on an x86_64 (ttyS0) localhost login: root Password: [ 114.346413][ T2611] systemd[2611]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set Last login: Wed Dec 18 11:21:34 on ttyS0 b [root@localhost ~]# mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb [root@localhost ~]# [root@localhost ~]# ls -l /mnt/sdbb/afile ls: cannot access '/mnt/sdbb/afile': No such file or directory [root@localhost ~]# echo HELLO > /mnt/sdbb/afile [root@localhost ~]# cat /mnt/sdbb/afile HELLO there [root@localhost ~]# 客户端2 Fedora 26 (Twenty Six) Kernel 6.6.0-g261eefed5930 on an x86_64 (ttyS0) nfs_test login: root Password: [ 123.112464][ T2604] systemd[2604]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set Last login: Wed Dec 18 11:21:30 on ttyS0 [root@nfs_test ~]# mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb [root@nfs_test ~]# echo hello there > /mnt/sdbb/afile [root@nfs_test ~]# 问题2: [root@localhost ~]# cd /mnt/sdbb/ [root@localhost sdbb]# vim test.c [root@localhost sdbb]# gcc test.c -o test [root@localhost sdbb]# ./test [ 123.433359][ T3052] ------------[ cut here ]------------ [ 123.434015][ T3052] WARNING: CPU: 10 PID: 3052 at fs/nfs/nfs3xdr.c:188 nfs3_xdr_enc_create3args+0x107/0x110 [ 123.435170][ T3052] Modules linked in: [ 123.435612][ T3052] CPU: 10 PID: 3052 Comm: test Not tainted 6.6.0+ #67 [ 123.436380][ T3052] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.3-2.fc40 04/01/2014 [ 123.437491][ T3052] RIP: 0010:nfs3_xdr_enc_create3args+0x107/0x110 [ 123.438220][ T3052] Code: 5d 41 5e 41 5f e9 09 dd ff ff 48 8b 73 18 4c 89 ea 5b 48 89 ef 5d 41 5c 41 5d 41 5e 41 5f e9 20 dd ff ff 0f 0b e9 2f ff ff ff <0f> 0b e9 53 ff ff ff 0f0 [ 123.440435][ T3052] RSP: 0018:ffffb5df82cff9a0 EFLAGS: 00010212 [ 123.441150][ T3052] RAX: ffff94e1444a5868 RBX: ffff94e148073c30 RCX: ffff94e14745be00 [ 123.442063][ T3052] RDX: 0000000000000008 RSI: ffff94e1486ef152 RDI: ffff94e1444a5860 [ 123.442973][ T3052] RBP: ffffb5df82cff9e0 R08: 0000000100010001 R09: 0000000100010001 [ 123.443870][ T3052] R10: ffff94e1444a5845 R11: 6e69616d6f646c61 R12: ffff94e1486ef150 [ 123.444782][ T3052] R13: ffff94e14745be00 R14: 0000000000000400 R15: ffff94e15d241010 [ 123.445691][ T3052] FS: 00007fa2b46f9440(0000) GS:ffff94f03fb00000(0000) knlGS:0000000000000000 [ 123.446710][ T3052] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 123.447459][ T3052] CR2: 00007fa2b40ffe70 CR3: 000000010773e000 CR4: 00000000000006e0 [ 123.448366][ T3052] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 123.449288][ T3052] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 123.450196][ T3052] Call Trace: [ 123.450573][ T3052] <TASK> [ 123.450907][ T3052] ? nfs3_xdr_enc_create3args+0x107/0x110 [ 123.451560][ T3052] ? __warn+0x81/0x120 [ 123.452029][ T3052] ? nfs3_xdr_enc_create3args+0x107/0x110 [ 123.452691][ T3052] ? report_bug+0x15b/0x180 [ 123.453212][ T3052] ? handle_bug+0x53/0x90 [ 123.453706][ T3052] ? exc_invalid_op+0x17/0x70 [ 123.454247][ T3052] ? asm_exc_invalid_op+0x1a/0x20 [ 123.454823][ T3052] ? nfs3_xdr_enc_create3args+0x107/0x110 [ 123.455474][ T3052] ? __pfx_call_encode+0x10/0x10 [ 123.456041][ T3052] rpcauth_wrap_req_encode+0x24/0x30 [ 123.456657][ T3052] rpc_xdr_encode+0x12e/0x1a0 [ 123.457195][ T3052] ? __pfx_call_encode+0x10/0x10 [ 123.457758][ T3052] call_encode+0x37/0x160 [ 123.458254][ T3052] __rpc_execute+0xae/0x2d0 [ 123.458770][ T3052] rpc_execute+0xb4/0xe0 [ 123.459260][ T3052] rpc_run_task+0x93/0xc0 [ 123.459752][ T3052] rpc_call_sync+0x51/0xa0 [ 123.460262][ T3052] nfs3_rpc_wrapper+0x29/0x70 [ 123.460809][ T3052] nfs3_proc_create+0xbf/0x320 [ 123.461357][ T3052] nfs_do_create+0x8f/0x170 [ 123.461873][ T3052] ? may_create+0x147/0x150 [ 123.462394][ T3052] ? selinux_inode_permission+0x125/0x1c0 [ 123.463048][ T3052] ? do_sys_openat2+0x218/0x290 [ 123.463604][ T3052] nfs_atomic_open_v23+0x52/0xa0 [ 123.464170][ T3052] lookup_open.isra.0+0x441/0x5b0 [ 123.464756][ T3052] open_last_lookups+0x202/0x410 [ 123.465326][ T3052] path_openat+0x94/0x2b0 [ 123.465818][ T3052] do_filp_open+0xbb/0x170 [ 123.466329][ T3052] ? __create_object+0x1bc/0x430 [ 123.466892][ T3052] ? page_counter_try_charge+0x33/0xc0 [ 123.467516][ T3052] ? alloc_fd+0x81/0x130 [ 123.468001][ T3052] do_sys_openat2+0x218/0x290 [ 123.468551][ T3052] ? handle_mm_fault+0x193/0x350 [ 123.469120][ T3052] __x64_sys_open+0x53/0xa0 [ 123.469635][ T3052] do_syscall_64+0x5a/0x110 [ 123.470151][ T3052] entry_SYSCALL_64_after_hwframe+0x78/0xe2 [ 123.470810][ T3052] RIP: 0033:0x7fa2b40ffe80 [ 123.471318][ T3052] Code: 00 f7 d8 64 89 01 48 83 c8 ff c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 83 3d 69 48 2d 00 00 75 10 b8 02 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 314 [ 123.473539][ T3052] RSP: 002b:00007ffc21f43dc8 EFLAGS: 00000246 ORIG_RAX: 0000000000000002 [ 123.474498][ T3052] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007fa2b40ffe80 [ 123.475403][ T3052] RDX: 00000000000001a4 RSI: 0000000000000042 RDI: 00007ffc21f43dd0 [ 123.476310][ T3052] RBP: 00007ffc21f441e0 R08: 0000000000400750 R09: 00007fa2b4411090 [ 123.477228][ T3052] R10: 0000000000000003 R11: 0000000000000246 R12: 0000000000400570 [ 123.478140][ T3052] R13: 00007ffc21f442c0 R14: 0000000000000000 R15: 0000000000000000 [ 123.479046][ T3052] </TASK> [ 123.479394][ T3052] ---[ end trace 0000000000000000 ]--- [ 123.480021][ T3052] BUG: kernel NULL pointer dereference, address: 0000000000000000 [ 123.480913][ T3052] #PF: supervisor write access in kernel mode [ 123.481603][ T3052] #PF: error_code(0x0002) - not-present page [ 123.482291][ T3052] PGD 8000000102ede067 P4D 8000000102ede067 PUD e073e7067 PMD 0 [ 123.483172][ T3052] Oops: 0002 [#1] SMP PTI [ 123.483665][ T3052] CPU: 10 PID: 3052 Comm: test Tainted: G W 6.6.0+ #67 [ 123.484600][ T3052] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.3-2.fc40 04/01/2014 [ 123.485693][ T3052] RIP: 0010:xdr_encode_opaque+0x11/0x20 [ 123.486327][ T3052] Code: 5d c3 cc cc cc cc 0f 1f 00 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 89 d0 48 83 c7 04 0f c8 <89> 47 fc e9 67 ff ff ff0 [ 123.488547][ T3052] RSP: 0018:ffffb5df82cff998 EFLAGS: 00010202 [ 123.489242][ T3052] RAX: 0000000000040000 RBX: ffff94e148073c30 RCX: ffff94e14745be08 [ 123.490146][ T3052] RDX: 0000000000000400 RSI: ffff94e15d241010 RDI: 0000000000000004 [ 123.491048][ T3052] RBP: ffffb5df82cff9e0 R08: 0000000100010001 R09: 0000000100010001 [ 123.491956][ T3052] R10: ffff94e1444a5845 R11: 6e69616d6f646c61 R12: ffff94e1486ef150 [ 123.492856][ T3052] R13: ffff94e14745be00 R14: 0000000000000400 R15: ffff94e15d241010 [ 123.493762][ T3052] FS: 00007fa2b46f9440(0000) GS:ffff94f03fb00000(0000) knlGS:0000000000000000 [ 123.494781][ T3052] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 123.495533][ T3052] CR2: 0000000000000000 CR3: 000000010773e000 CR4: 00000000000006e0 [ 123.496445][ T3052] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 123.497352][ T3052] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 123.498257][ T3052] Call Trace: [ 123.498633][ T3052] <TASK> [ 123.498974][ T3052] ? __die+0x23/0x70 [ 123.499420][ T3052] ? page_fault_oops+0x7f/0x140 [ 123.499977][ T3052] ? fixup_exception+0x26/0x310 [ 123.500531][ T3052] ? exc_page_fault+0x336/0x720 [ 123.501086][ T3052] ? asm_exc_page_fault+0x26/0x30 [ 123.501658][ T3052] ? xdr_encode_opaque+0x11/0x20 [ 123.502222][ T3052] nfs3_xdr_enc_create3args+0x7b/0x110 [ 123.502843][ T3052] ? __pfx_call_encode+0x10/0x10 [ 123.503407][ T3052] rpcauth_wrap_req_encode+0x24/0x30 [ 123.504010][ T3052] rpc_xdr_encode+0x12e/0x1a0 [ 123.504544][ T3052] ? __pfx_call_encode+0x10/0x10 [ 123.505108][ T3052] call_encode+0x37/0x160 [ 123.505600][ T3052] __rpc_execute+0xae/0x2d0 [ 123.506129][ T3052] rpc_execute+0xb4/0xe0 [ 123.506612][ T3052] rpc_run_task+0x93/0xc0 [ 123.507112][ T3052] rpc_call_sync+0x51/0xa0 [ 123.507624][ T3052] nfs3_rpc_wrapper+0x29/0x70 [ 123.508164][ T3052] nfs3_proc_create+0xbf/0x320 [ 123.508708][ T3052] nfs_do_create+0x8f/0x170 [ 123.509230][ T3052] ? may_create+0x147/0x150 [ 123.509744][ T3052] ? selinux_inode_permission+0x125/0x1c0 [ 123.510394][ T3052] ? do_sys_openat2+0x218/0x290 [ 123.510950][ T3052] nfs_atomic_open_v23+0x52/0xa0 [ 123.511511][ T3052] lookup_open.isra.0+0x441/0x5b0 [ 123.512087][ T3052] open_last_lookups+0x202/0x410 [ 123.512650][ T3052] path_openat+0x94/0x2b0 [ 123.513144][ T3052] do_filp_open+0xbb/0x170 [ 123.513649][ T3052] ? __create_object+0x1bc/0x430 [ 123.514214][ T3052] ? page_counter_try_charge+0x33/0xc0 [ 123.514833][ T3052] ? alloc_fd+0x81/0x130 [ 123.515318][ T3052] do_sys_openat2+0x218/0x290 [ 123.515852][ T3052] ? handle_mm_fault+0x193/0x350 [ 123.516417][ T3052] __x64_sys_open+0x53/0xa0 [ 123.516936][ T3052] do_syscall_64+0x5a/0x110 [ 123.517451][ T3052] entry_SYSCALL_64_after_hwframe+0x78/0xe2 [ 123.518127][ T3052] RIP: 0033:0x7fa2b40ffe80 [ 123.518632][ T3052] Code: 00 f7 d8 64 89 01 48 83 c8 ff c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 83 3d 69 48 2d 00 00 75 10 b8 02 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 314 [ 123.520846][ T3052] RSP: 002b:00007ffc21f43dc8 EFLAGS: 00000246 ORIG_RAX: 0000000000000002 [ 123.521796][ T3052] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007fa2b40ffe80 [ 123.522699][ T3052] RDX: 00000000000001a4 RSI: 0000000000000042 RDI: 00007ffc21f43dd0 [ 123.523605][ T3052] RBP: 00007ffc21f441e0 R08: 0000000000400750 R09: 00007fa2b4411090 [ 123.524509][ T3052] R10: 0000000000000003 R11: 0000000000000246 R12: 0000000000400570 [ 123.525413][ T3052] R13: 00007ffc21f442c0 R14: 0000000000000000 R15: 0000000000000000 [ 123.526318][ T3052] </TASK> [ 123.526665][ T3052] Modules linked in: [ 123.527110][ T3052] CR2: 0000000000000000 [ 123.527592][ T3052] ---[ end trace 0000000000000000 ]--- [ 123.528215][ T3052] RIP: 0010:xdr_encode_opaque+0x11/0x20 [ 123.528857][ T3052] Code: 5d c3 cc cc cc cc 0f 1f 00 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 89 d0 48 83 c7 04 0f c8 <89> 47 fc e9 67 ff ff ff0 [ 123.531079][ T3052] RSP: 0018:ffffb5df82cff998 EFLAGS: 00010202 [ 123.531768][ T3052] RAX: 0000000000040000 RBX: ffff94e148073c30 RCX: ffff94e14745be08 [ 123.532684][ T3052] RDX: 0000000000000400 RSI: ffff94e15d241010 RDI: 0000000000000004 [ 123.533590][ T3052] RBP: ffffb5df82cff9e0 R08: 0000000100010001 R09: 0000000100010001 [ 123.534489][ T3052] R10: ffff94e1444a5845 R11: 6e69616d6f646c61 R12: ffff94e1486ef150 [ 123.535388][ T3052] R13: ffff94e14745be00 R14: 0000000000000400 R15: ffff94e15d241010 [ 123.536288][ T3052] FS: 00007fa2b46f9440(0000) GS:ffff94f03fb00000(0000) knlGS:0000000000000000 [ 123.537311][ T3052] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 123.538064][ T3052] CR2: 0000000000000000 CR3: 000000010773e000 CR4: 00000000000006e0 [ 123.538974][ T3052] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 123.539877][ T3052] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 123.540795][ T3052] Kernel panic - not syncing: Fatal exception [ 123.541979][ T3052] Kernel Offset: 0x39000000 from 0xffffffff81000000 (relocation range: 0xffffffff80000000-0xffffffffbfffffff) [ 123.543291][ T3052] ---[ end Kernel panic - not syncing: Fatal exception ]--- 问题3: 先上报OPEN,再上报CREATE 终端1: [root@localhost test]# ./open 成功打开/创建文件: /mnt/sdbb/testfile [root@localhost test]# 终端2: [root@localhost test]# ./inotify /mnt/sdbb testfile --- IN_OPEN testfile --- IN_CREATE [root@localhost test]# 【期望结果】 问题1: 客户端1读取到的文件内容与写入的一致 客户端1 Fedora 26 (Twenty Six) Kernel 6.6.0-g5d2a62f8592b on an x86_64 (ttyS0) localhost login: root Password: [ 95.330192][ T2339] systemd[2339]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set Last login: Wed Dec 18 14:47:13 on ttyS0 b [root@localhost ~]# mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb [root@localhost ~]# [root@localhost ~]# ls -l /mnt/sdbb/afile ls: cannot access '/mnt/sdbb/afile': No such file or directory [root@localhost ~]# echo HELLO > /mnt/sdbb/afile [root@localhost ~]# cat /mnt/sdbb/afile HELLO [root@localhost ~]# 客户端2 Fedora 26 (Twenty Six) Kernel 6.6.0-g5d2a62f8592b on an x86_64 (ttyS0) nfs_test login: root Password: [ 88.656342][ T1906] systemd[1906]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set Last login: Wed Dec 18 14:47:18 on ttyS0 [root@nfs_test ~]# mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb [root@nfs_test ~]# echo hello there > /mnt/sdbb/afile [root@nfs_test ~]# 问题2: [root@localhost ~]# cd /mnt/sdbb [root@localhost sdbb]# ls lost+found nfs_testfile1209 [root@localhost sdbb]# gcc test.c -o test [root@localhost sdbb]# ./test open: File name too long [root@localhost sdbb]# 问题3: 先上报CREATE,再上报OPEN 终端1: [root@localhost test]# ./open 成功打开/创建文件: /mnt/sdbb/testfile [root@localhost test]# 终端2: [root@localhost test]# ./inotify /mnt/sdbb testfile --- IN_CREATE testfile --- IN_OPEN [root@localhost test]# 【其他相关附件信息】比如 syslog、dmesg、panic、lockup、kdump 信息、图片等 ``` # 这里可以附上相关文本信息 ``` 【已分析信息】如已经做过分析和定位,请尽量附上详细的分析结果
> _**请尽量提供详细的信息,如缺乏必要的定位信息,则缺陷不会被定位**_ ## 环境信息 【OS版本】OLK 6.6 【内核版本】6.6.0-23469-g93509d36bc89 【硬件平台】x86 qemu 【组网信息】NA ## 缺陷信息 【问题复现步骤】 问题1: 服务端: mkfs.ext4 -F /dev/sdb mount /dev/sdb /mnt/sdb echo "/mnt *(rw,no_root_squash,fsid=0)" > /etc/exports echo "/mnt/sdb *(rw,no_root_squash,fsid=1)" >> /etc/exports systemctl restart nfs-server 两个客户端: mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb 就绪后按如下顺序在两个客户端上操作: 客户端1 客户端2 ls -l /mnt/sdbb/afile echo hello there > /mnt/sdbb/afile echo HELLO > /mnt/sdbb/afile cat /mnt/sdbb/afile 问题2: mkfs.ext4 -F /dev/sdb mount /dev/sdb /mnt/sdb echo "/mnt *(rw,no_root_squash,fsid=0)" > /etc/exports echo "/mnt/sdb *(rw,no_root_squash,fsid=1)" >> /etc/exports systemctl restart nfs-server mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb 问题3: mkfs.ext4 -F /dev/sdb mount /dev/sdb /mnt/sdb echo "/mnt *(rw,no_root_squash,fsid=0)" > /etc/exports echo "/mnt/sdb *(rw,no_root_squash,fsid=1)" >> /etc/exports systemctl restart nfs-server mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb 问题2用例: [root@localhost sdbb]# cat test.c #include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <string.h> #include <unistd.h> int main() { char filename[1025]; memset(filename, 'a', 1024); // 将字符数组填充为连续的'a' filename[1024] = '\0'; // 确保字符串以null结尾 int fd = open(filename, O_RDWR | O_CREAT, 0644); if (fd == -1) { perror("open"); exit(EXIT_FAILURE); } printf("成功打开/创建文件: %s\n", filename); close(fd); return 0; } [root@localhost sdbb]# 问题3用例: open.c #include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <string.h> #include <unistd.h> #define FILE_PATH "/mnt/sdbb/testfile" int main() { int fd = open(FILE_PATH, O_RDWR | O_CREAT, 0644); if (fd == -1) { perror("open"); exit(EXIT_FAILURE); } printf("成功打开/创建文件: %s\n", FILE_PATH); close(fd); return 0; } inotify.c #include <stdio.h> #include <string.h> #include <stdlib.h> #include <unistd.h> #include <errno.h> #include <sys/inotify.h> #define EVENT_NUM 12 const char *event_str[EVENT_NUM] = { "IN_ACCESS", "IN_MODIFY", "IN_ATTRIB", "IN_CLOSE_WRITE", "IN_CLOSE_NOWRITE", "IN_OPEN", "IN_MOVED_FROM", "IN_MOVED_TO", "IN_CREATE", "IN_DELETE", "IN_DELETE_SELF", "IN_MOVE_SELF" }; int inotifyTask(char *argv[]) { int errTimes = 0; int fd = -1; fd = inotify_init(); if(fd < 0) { fprintf(stderr, "inotify_init failed\n"); printf("Error no.%d: %s\n", errno, strerror(errno)); return -1; } int wd1 = -1; struct inotify_event *event; int length; int nread; char buf[BUFSIZ]; int i = 0; buf[sizeof(buf) - 1] = 0; wd1 = inotify_add_watch(fd, argv[1], IN_ALL_EVENTS); if(wd1 < 0) { fprintf(stderr, "inotify_add_watch %s failed\n", argv[1]); printf("Error no.%d: %s\n", errno, strerror(errno)); return; } length = read(fd, buf, sizeof(buf) - 1); nread = 0; // inotify 事件发生时 while(length > 0) { printf("\n"); event = (struct inotify_event *)&buf[nread]; // 遍历所有事件 for(i = 0; i< EVENT_NUM; i++) { // 判断事件是否发生 if( (event->mask >> i) & 1 ) { // 该监控项为目录或目录下的文件时 if(event->len > 0) { fprintf(stdout, "%s --- %s\n", event->name, event_str[i]); } else if (event->len == 0) { if(event->wd == wd1) { fprintf(stdout, "%s --- %s\n", argv[1], event_str[i]); } } } } nread = nread + sizeof(struct inotify_event) + event->len; length = length - sizeof(struct inotify_event) - event->len; } close(fd); return 0; } int main(int argc, char *argv[]) { if(argc < 2) { fprintf(stderr, "Usage: %s path path\n", argv[0]); return -1; } if(inotifyTask(argv) == -1) { return -1; } return 0; } 【实际结果】 问题1: 客户端1读取到的文件内容与写入的不一致 客户端1 Fedora 26 (Twenty Six) Kernel 6.6.0-g261eefed5930 on an x86_64 (ttyS0) localhost login: root Password: [ 114.346413][ T2611] systemd[2611]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set Last login: Wed Dec 18 11:21:34 on ttyS0 b [root@localhost ~]# mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb [root@localhost ~]# [root@localhost ~]# ls -l /mnt/sdbb/afile ls: cannot access '/mnt/sdbb/afile': No such file or directory [root@localhost ~]# echo HELLO > /mnt/sdbb/afile [root@localhost ~]# cat /mnt/sdbb/afile HELLO there [root@localhost ~]# 客户端2 Fedora 26 (Twenty Six) Kernel 6.6.0-g261eefed5930 on an x86_64 (ttyS0) nfs_test login: root Password: [ 123.112464][ T2604] systemd[2604]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set Last login: Wed Dec 18 11:21:30 on ttyS0 [root@nfs_test ~]# mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb [root@nfs_test ~]# echo hello there > /mnt/sdbb/afile [root@nfs_test ~]# 问题2: [root@localhost ~]# cd /mnt/sdbb/ [root@localhost sdbb]# vim test.c [root@localhost sdbb]# gcc test.c -o test [root@localhost sdbb]# ./test [ 123.433359][ T3052] ------------[ cut here ]------------ [ 123.434015][ T3052] WARNING: CPU: 10 PID: 3052 at fs/nfs/nfs3xdr.c:188 nfs3_xdr_enc_create3args+0x107/0x110 [ 123.435170][ T3052] Modules linked in: [ 123.435612][ T3052] CPU: 10 PID: 3052 Comm: test Not tainted 6.6.0+ #67 [ 123.436380][ T3052] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.3-2.fc40 04/01/2014 [ 123.437491][ T3052] RIP: 0010:nfs3_xdr_enc_create3args+0x107/0x110 [ 123.438220][ T3052] Code: 5d 41 5e 41 5f e9 09 dd ff ff 48 8b 73 18 4c 89 ea 5b 48 89 ef 5d 41 5c 41 5d 41 5e 41 5f e9 20 dd ff ff 0f 0b e9 2f ff ff ff <0f> 0b e9 53 ff ff ff 0f0 [ 123.440435][ T3052] RSP: 0018:ffffb5df82cff9a0 EFLAGS: 00010212 [ 123.441150][ T3052] RAX: ffff94e1444a5868 RBX: ffff94e148073c30 RCX: ffff94e14745be00 [ 123.442063][ T3052] RDX: 0000000000000008 RSI: ffff94e1486ef152 RDI: ffff94e1444a5860 [ 123.442973][ T3052] RBP: ffffb5df82cff9e0 R08: 0000000100010001 R09: 0000000100010001 [ 123.443870][ T3052] R10: ffff94e1444a5845 R11: 6e69616d6f646c61 R12: ffff94e1486ef150 [ 123.444782][ T3052] R13: ffff94e14745be00 R14: 0000000000000400 R15: ffff94e15d241010 [ 123.445691][ T3052] FS: 00007fa2b46f9440(0000) GS:ffff94f03fb00000(0000) knlGS:0000000000000000 [ 123.446710][ T3052] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 123.447459][ T3052] CR2: 00007fa2b40ffe70 CR3: 000000010773e000 CR4: 00000000000006e0 [ 123.448366][ T3052] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 123.449288][ T3052] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 123.450196][ T3052] Call Trace: [ 123.450573][ T3052] <TASK> [ 123.450907][ T3052] ? nfs3_xdr_enc_create3args+0x107/0x110 [ 123.451560][ T3052] ? __warn+0x81/0x120 [ 123.452029][ T3052] ? nfs3_xdr_enc_create3args+0x107/0x110 [ 123.452691][ T3052] ? report_bug+0x15b/0x180 [ 123.453212][ T3052] ? handle_bug+0x53/0x90 [ 123.453706][ T3052] ? exc_invalid_op+0x17/0x70 [ 123.454247][ T3052] ? asm_exc_invalid_op+0x1a/0x20 [ 123.454823][ T3052] ? nfs3_xdr_enc_create3args+0x107/0x110 [ 123.455474][ T3052] ? __pfx_call_encode+0x10/0x10 [ 123.456041][ T3052] rpcauth_wrap_req_encode+0x24/0x30 [ 123.456657][ T3052] rpc_xdr_encode+0x12e/0x1a0 [ 123.457195][ T3052] ? __pfx_call_encode+0x10/0x10 [ 123.457758][ T3052] call_encode+0x37/0x160 [ 123.458254][ T3052] __rpc_execute+0xae/0x2d0 [ 123.458770][ T3052] rpc_execute+0xb4/0xe0 [ 123.459260][ T3052] rpc_run_task+0x93/0xc0 [ 123.459752][ T3052] rpc_call_sync+0x51/0xa0 [ 123.460262][ T3052] nfs3_rpc_wrapper+0x29/0x70 [ 123.460809][ T3052] nfs3_proc_create+0xbf/0x320 [ 123.461357][ T3052] nfs_do_create+0x8f/0x170 [ 123.461873][ T3052] ? may_create+0x147/0x150 [ 123.462394][ T3052] ? selinux_inode_permission+0x125/0x1c0 [ 123.463048][ T3052] ? do_sys_openat2+0x218/0x290 [ 123.463604][ T3052] nfs_atomic_open_v23+0x52/0xa0 [ 123.464170][ T3052] lookup_open.isra.0+0x441/0x5b0 [ 123.464756][ T3052] open_last_lookups+0x202/0x410 [ 123.465326][ T3052] path_openat+0x94/0x2b0 [ 123.465818][ T3052] do_filp_open+0xbb/0x170 [ 123.466329][ T3052] ? __create_object+0x1bc/0x430 [ 123.466892][ T3052] ? page_counter_try_charge+0x33/0xc0 [ 123.467516][ T3052] ? alloc_fd+0x81/0x130 [ 123.468001][ T3052] do_sys_openat2+0x218/0x290 [ 123.468551][ T3052] ? handle_mm_fault+0x193/0x350 [ 123.469120][ T3052] __x64_sys_open+0x53/0xa0 [ 123.469635][ T3052] do_syscall_64+0x5a/0x110 [ 123.470151][ T3052] entry_SYSCALL_64_after_hwframe+0x78/0xe2 [ 123.470810][ T3052] RIP: 0033:0x7fa2b40ffe80 [ 123.471318][ T3052] Code: 00 f7 d8 64 89 01 48 83 c8 ff c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 83 3d 69 48 2d 00 00 75 10 b8 02 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 314 [ 123.473539][ T3052] RSP: 002b:00007ffc21f43dc8 EFLAGS: 00000246 ORIG_RAX: 0000000000000002 [ 123.474498][ T3052] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007fa2b40ffe80 [ 123.475403][ T3052] RDX: 00000000000001a4 RSI: 0000000000000042 RDI: 00007ffc21f43dd0 [ 123.476310][ T3052] RBP: 00007ffc21f441e0 R08: 0000000000400750 R09: 00007fa2b4411090 [ 123.477228][ T3052] R10: 0000000000000003 R11: 0000000000000246 R12: 0000000000400570 [ 123.478140][ T3052] R13: 00007ffc21f442c0 R14: 0000000000000000 R15: 0000000000000000 [ 123.479046][ T3052] </TASK> [ 123.479394][ T3052] ---[ end trace 0000000000000000 ]--- [ 123.480021][ T3052] BUG: kernel NULL pointer dereference, address: 0000000000000000 [ 123.480913][ T3052] #PF: supervisor write access in kernel mode [ 123.481603][ T3052] #PF: error_code(0x0002) - not-present page [ 123.482291][ T3052] PGD 8000000102ede067 P4D 8000000102ede067 PUD e073e7067 PMD 0 [ 123.483172][ T3052] Oops: 0002 [#1] SMP PTI [ 123.483665][ T3052] CPU: 10 PID: 3052 Comm: test Tainted: G W 6.6.0+ #67 [ 123.484600][ T3052] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.16.3-2.fc40 04/01/2014 [ 123.485693][ T3052] RIP: 0010:xdr_encode_opaque+0x11/0x20 [ 123.486327][ T3052] Code: 5d c3 cc cc cc cc 0f 1f 00 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 89 d0 48 83 c7 04 0f c8 <89> 47 fc e9 67 ff ff ff0 [ 123.488547][ T3052] RSP: 0018:ffffb5df82cff998 EFLAGS: 00010202 [ 123.489242][ T3052] RAX: 0000000000040000 RBX: ffff94e148073c30 RCX: ffff94e14745be08 [ 123.490146][ T3052] RDX: 0000000000000400 RSI: ffff94e15d241010 RDI: 0000000000000004 [ 123.491048][ T3052] RBP: ffffb5df82cff9e0 R08: 0000000100010001 R09: 0000000100010001 [ 123.491956][ T3052] R10: ffff94e1444a5845 R11: 6e69616d6f646c61 R12: ffff94e1486ef150 [ 123.492856][ T3052] R13: ffff94e14745be00 R14: 0000000000000400 R15: ffff94e15d241010 [ 123.493762][ T3052] FS: 00007fa2b46f9440(0000) GS:ffff94f03fb00000(0000) knlGS:0000000000000000 [ 123.494781][ T3052] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 123.495533][ T3052] CR2: 0000000000000000 CR3: 000000010773e000 CR4: 00000000000006e0 [ 123.496445][ T3052] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 123.497352][ T3052] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 123.498257][ T3052] Call Trace: [ 123.498633][ T3052] <TASK> [ 123.498974][ T3052] ? __die+0x23/0x70 [ 123.499420][ T3052] ? page_fault_oops+0x7f/0x140 [ 123.499977][ T3052] ? fixup_exception+0x26/0x310 [ 123.500531][ T3052] ? exc_page_fault+0x336/0x720 [ 123.501086][ T3052] ? asm_exc_page_fault+0x26/0x30 [ 123.501658][ T3052] ? xdr_encode_opaque+0x11/0x20 [ 123.502222][ T3052] nfs3_xdr_enc_create3args+0x7b/0x110 [ 123.502843][ T3052] ? __pfx_call_encode+0x10/0x10 [ 123.503407][ T3052] rpcauth_wrap_req_encode+0x24/0x30 [ 123.504010][ T3052] rpc_xdr_encode+0x12e/0x1a0 [ 123.504544][ T3052] ? __pfx_call_encode+0x10/0x10 [ 123.505108][ T3052] call_encode+0x37/0x160 [ 123.505600][ T3052] __rpc_execute+0xae/0x2d0 [ 123.506129][ T3052] rpc_execute+0xb4/0xe0 [ 123.506612][ T3052] rpc_run_task+0x93/0xc0 [ 123.507112][ T3052] rpc_call_sync+0x51/0xa0 [ 123.507624][ T3052] nfs3_rpc_wrapper+0x29/0x70 [ 123.508164][ T3052] nfs3_proc_create+0xbf/0x320 [ 123.508708][ T3052] nfs_do_create+0x8f/0x170 [ 123.509230][ T3052] ? may_create+0x147/0x150 [ 123.509744][ T3052] ? selinux_inode_permission+0x125/0x1c0 [ 123.510394][ T3052] ? do_sys_openat2+0x218/0x290 [ 123.510950][ T3052] nfs_atomic_open_v23+0x52/0xa0 [ 123.511511][ T3052] lookup_open.isra.0+0x441/0x5b0 [ 123.512087][ T3052] open_last_lookups+0x202/0x410 [ 123.512650][ T3052] path_openat+0x94/0x2b0 [ 123.513144][ T3052] do_filp_open+0xbb/0x170 [ 123.513649][ T3052] ? __create_object+0x1bc/0x430 [ 123.514214][ T3052] ? page_counter_try_charge+0x33/0xc0 [ 123.514833][ T3052] ? alloc_fd+0x81/0x130 [ 123.515318][ T3052] do_sys_openat2+0x218/0x290 [ 123.515852][ T3052] ? handle_mm_fault+0x193/0x350 [ 123.516417][ T3052] __x64_sys_open+0x53/0xa0 [ 123.516936][ T3052] do_syscall_64+0x5a/0x110 [ 123.517451][ T3052] entry_SYSCALL_64_after_hwframe+0x78/0xe2 [ 123.518127][ T3052] RIP: 0033:0x7fa2b40ffe80 [ 123.518632][ T3052] Code: 00 f7 d8 64 89 01 48 83 c8 ff c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 44 00 00 83 3d 69 48 2d 00 00 75 10 b8 02 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 314 [ 123.520846][ T3052] RSP: 002b:00007ffc21f43dc8 EFLAGS: 00000246 ORIG_RAX: 0000000000000002 [ 123.521796][ T3052] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007fa2b40ffe80 [ 123.522699][ T3052] RDX: 00000000000001a4 RSI: 0000000000000042 RDI: 00007ffc21f43dd0 [ 123.523605][ T3052] RBP: 00007ffc21f441e0 R08: 0000000000400750 R09: 00007fa2b4411090 [ 123.524509][ T3052] R10: 0000000000000003 R11: 0000000000000246 R12: 0000000000400570 [ 123.525413][ T3052] R13: 00007ffc21f442c0 R14: 0000000000000000 R15: 0000000000000000 [ 123.526318][ T3052] </TASK> [ 123.526665][ T3052] Modules linked in: [ 123.527110][ T3052] CR2: 0000000000000000 [ 123.527592][ T3052] ---[ end trace 0000000000000000 ]--- [ 123.528215][ T3052] RIP: 0010:xdr_encode_opaque+0x11/0x20 [ 123.528857][ T3052] Code: 5d c3 cc cc cc cc 0f 1f 00 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 89 d0 48 83 c7 04 0f c8 <89> 47 fc e9 67 ff ff ff0 [ 123.531079][ T3052] RSP: 0018:ffffb5df82cff998 EFLAGS: 00010202 [ 123.531768][ T3052] RAX: 0000000000040000 RBX: ffff94e148073c30 RCX: ffff94e14745be08 [ 123.532684][ T3052] RDX: 0000000000000400 RSI: ffff94e15d241010 RDI: 0000000000000004 [ 123.533590][ T3052] RBP: ffffb5df82cff9e0 R08: 0000000100010001 R09: 0000000100010001 [ 123.534489][ T3052] R10: ffff94e1444a5845 R11: 6e69616d6f646c61 R12: ffff94e1486ef150 [ 123.535388][ T3052] R13: ffff94e14745be00 R14: 0000000000000400 R15: ffff94e15d241010 [ 123.536288][ T3052] FS: 00007fa2b46f9440(0000) GS:ffff94f03fb00000(0000) knlGS:0000000000000000 [ 123.537311][ T3052] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 123.538064][ T3052] CR2: 0000000000000000 CR3: 000000010773e000 CR4: 00000000000006e0 [ 123.538974][ T3052] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 [ 123.539877][ T3052] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 [ 123.540795][ T3052] Kernel panic - not syncing: Fatal exception [ 123.541979][ T3052] Kernel Offset: 0x39000000 from 0xffffffff81000000 (relocation range: 0xffffffff80000000-0xffffffffbfffffff) [ 123.543291][ T3052] ---[ end Kernel panic - not syncing: Fatal exception ]--- 问题3: 先上报OPEN,再上报CREATE 终端1: [root@localhost test]# ./open 成功打开/创建文件: /mnt/sdbb/testfile [root@localhost test]# 终端2: [root@localhost test]# ./inotify /mnt/sdbb testfile --- IN_OPEN testfile --- IN_CREATE [root@localhost test]# 【期望结果】 问题1: 客户端1读取到的文件内容与写入的一致 客户端1 Fedora 26 (Twenty Six) Kernel 6.6.0-g5d2a62f8592b on an x86_64 (ttyS0) localhost login: root Password: [ 95.330192][ T2339] systemd[2339]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set Last login: Wed Dec 18 14:47:13 on ttyS0 b [root@localhost ~]# mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb [root@localhost ~]# [root@localhost ~]# ls -l /mnt/sdbb/afile ls: cannot access '/mnt/sdbb/afile': No such file or directory [root@localhost ~]# echo HELLO > /mnt/sdbb/afile [root@localhost ~]# cat /mnt/sdbb/afile HELLO [root@localhost ~]# 客户端2 Fedora 26 (Twenty Six) Kernel 6.6.0-g5d2a62f8592b on an x86_64 (ttyS0) nfs_test login: root Password: [ 88.656342][ T1906] systemd[1906]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set Last login: Wed Dec 18 14:47:18 on ttyS0 [root@nfs_test ~]# mount -t nfs -o rw,vers=3 192.168.240.251:/mnt/sdb /mnt/sdbb [root@nfs_test ~]# echo hello there > /mnt/sdbb/afile [root@nfs_test ~]# 问题2: [root@localhost ~]# cd /mnt/sdbb [root@localhost sdbb]# ls lost+found nfs_testfile1209 [root@localhost sdbb]# gcc test.c -o test [root@localhost sdbb]# ./test open: File name too long [root@localhost sdbb]# 问题3: 先上报CREATE,再上报OPEN 终端1: [root@localhost test]# ./open 成功打开/创建文件: /mnt/sdbb/testfile [root@localhost test]# 终端2: [root@localhost test]# ./inotify /mnt/sdbb testfile --- IN_CREATE testfile --- IN_OPEN [root@localhost test]# 【其他相关附件信息】比如 syslog、dmesg、panic、lockup、kdump 信息、图片等 ``` # 这里可以附上相关文本信息 ``` 【已分析信息】如已经做过分析和定位,请尽量附上详细的分析结果
评论 (
4
)
登录
后才可以发表评论
状态
已完成
待办的
已挂起
进行中
已拒绝
已完成
负责人
未设置
标签
sig/Kernel
未设置
项目
未立项任务
未立项任务
里程碑
未关联里程碑
未关联里程碑
Pull Requests
未关联
未关联
关联的 Pull Requests 被合并后可能会关闭此 issue
分支
未关联
分支 (15)
标签 (1847)
openEuler-1.0-LTS
OLK-6.6
OLK-5.10
oe_txgbe
merge_txgbe_66
openEuler-25.03
openEuler-22.03-LTS-SP1
openEuler-23.09
openEuler-22.03-LTS-SP2
openEuler-22.03-LTS
openEuler-22.09
master
openEuler-21.09
openEuler-21.03
openEuler-20.09
5.10.0-284.0.0
4.19.90-2510.1.0
6.6.0-111.0.1
4.19.90-2509.6.0
5.10.0-283.0.0
6.6.0-111.0.0
4.19.90-2509.5.0
6.6.0-110.0.0
5.10.0-282.0.0
4.19.90-2509.4.0
6.6.0-109.0.0
5.10.0-281.0.0
4.19.90-2509.3.0
4.19.90-2509.2.0
4.19.90-2509.1.0
6.6.0-108.0.0
5.10.0-280.0.0
4.19.90-2508.3.0
6.6.0-107.0.0
5.10.0-279.0.0
4.19.90-2508.2.0
5.10.0-278.0.0
6.6.0-106.0.0
5.10.0-277.0.0
4.19.90-2508.1.0
6.6.0-105.0.0
6.6.0-104.0.0
5.10.0-276.0.0
4.19.90-2507.5.0
6.6.0-103.0.0
5.10.0-275.0.0
v6.16
4.19.90-2507.4.0
5.10.0-274.0.0
6.6.0-102.0.0
6.6.0-101.0.0
4.19.90-2507.3.0
5.10.0-273.0.0
openEuler-22.03-LTS-SP4
openEuler-22.03-LTS-SP3
openEuler-22.03-LTS-SP2
openEuler-22.03-LTS-SP1
openEuler-22.03-LTS
openEuler-24.03-LTS-SP2
openEuler-24.03-LTS-SP1
openEuler-24.03-LTS
6.6.0-100.0.0
5.10.0-272.0.0
5.10.0-271.0.0
4.19.90-2507.2.0
6.6.0-99.0.0
5.10.0-270.0.0
4.19.90-2507.1.0
4.19.90-2506.4.0
5.10.0-269.0.0
6.6.0-98.0.0
4.19.90-2506.3.0
5.10.0-268.0.0
6.6.0-97.0.0
6.6.0-96.0.0
4.19.90-2506.2.0
5.10.0-267.0.0
v6.12.33
v6.12.32
6.6.0-95.0.0
4.19.90-2506.1.0
5.10.0-266.0.0
6.6.0-94.0.0
v6.12.31
6.6.0-93.0.0
4.19.90-2505.5.0
5.10.0-265.0.0
v6.15
v6.12.30
6.6.0-92.0.0
6.6.0-91.0.0
4.19.90-2505.4.0
5.10.0-264.0.0
6.6.0-90.0.0
4.19.90-2505.3.0
5.10.0-263.0.0
4.19.90-2505.2.0
6.6.0-89.0.0
4.19.90-2505.1.0
5.10.0-262.0.0
6.6.0-88.0.0
6.6.0-87.0.0
4.19.90-2504.4.0
5.10.0-261.0.0
4.19.90-2504.3.0
5.10.0-260.0.0
6.6.0-86.0.0
4.19.90-2504.2.0
5.10.0-259.0.0
6.6.0-85.0.0
4.19.90-2504.1.0
5.10.0-258.0.0
5.10.0-257.0.0
4.19.90-2503.5.0
5.10.0-256.0.0
6.6.0-84.0.0
v6.14
6.6.0-72.6.0
5.10.0-255.0.0
4.19.90-2503.4.0
6.6.0-83.0.0
6.6.0-72.5.0
6.6.0-72.4.0
5.10.0-254.0.0
4.19.90-2503.3.0
6.6.0-82.0.0
6.6.0-81.0.0
5.10.0-253.0.0
4.19.90-2503.2.0
6.6.0-72.3.0
6.6.0-72.2.0
4.19.90-2503.1.0
6.6.0-80.0.0
5.10.0-252.0.0
6.6.0-79.0.0
4.19.90-2502.4.0
5.10.0-251.0.0
5.10.0-250.0.0
6.6.0-78.0.0
4.19.90-2502.3.0
6.6.0-77.0.0
4.19.90-2502.2.0
5.10.0-249.0.0
6.6.0-72.1.0
4.19.90-2502.1.0
6.6.0-76.0.0
5.10.0-248.0.0
5.10.0-247.0.0
4.19.90-2501.4.0
6.6.0-75.0.0
v6.13
6.6.0-74.0.0
5.10.0-246.0.0
4.19.90-2501.3.0
4.19.90-2501.2.0
5.10.0-245.0.0
5.10.0-136.108.0
4.19.90-2501.1.0
6.6.0-73.0.0
4.19.90-2412.5.0
5.10.0-244.0.0
5.10.0-136.107.0
5.10.0-243.0.0
4.19.90-2412.4.0
6.6.0-72.0.0
6.6.0-71.0.0
6.6.0-70.0.0
6.6.0-69.0.0
5.10.0-242.0.0
4.19.90-2412.3.0
5.10.0-241.0.0
5.10.0-136.106.0
6.6.0-68.0.0
6.6.0-67.0.0
6.6.0-66.0.0
6.6.0-65.0.0
4.19.90-2412.2.0
5.10.0-136.105.0
5.10.0-240.0.0
6.6.0-64.0.0
6.6.0-63.0.0
6.6.0-62.0.0
6.6.0-61.0.0
4.19.90-2412.1.0
5.10.0-239.0.0
5.10.0-136.104.0
6.6.0-60.0.0
6.6.0-59.0.0
6.6.0-58.0.0
6.6.0-57.0.0
5.10.0-136.103.0
5.10.0-238.0.0
4.19.90-2411.5.0
6.6.0-56.0.0
5.10.0-237.0.0
5.10.0-136.102.0
4.19.90-2411.4.0
6.6.0-55.0.0
v6.12
6.6.0-54.0.0
5.10.0-236.0.0
5.10.0-136.101.0
4.19.90-2411.3.0
6.6.0-53.0.0
6.6.0-52.0.0
6.6.0-51.0.0
4.19.90-2411.2.0
6.6.0-50.0.0
5.10.0-235.0.0
5.10.0-136.100.0
6.6.0-49.0.0
5.10.0-136.99.0
6.6.0-48.0.0
5.10.0-234.0.0
4.19.90-2411.1.0
5.10.0-233.0.0
6.6.0-47.0.0
5.10.0-136.98.0
4.19.90-2410.3.0
4.19.90-2410.2.0
5.10.0-232.0.0
5.10.0-136.97.0
5.10.0-136.96.0
5.10.0-231.0.0
6.6.0-46.0.0
4.19.90-2410.1.0
6.6.0-45.0.0
4.19.90-2409.6.0
6.6.0-44.0.0
5.10.0-230.0.0
4.19.90-2409.5.0
5.10.0-136.95.0
6.6.0-43.0.0
5.10.0-229.0.0
5.10.0-136.94.0
6.6.0-42.0.0
4.19.90-2409.4.0
5.10.0-136.93.0
5.10.0-228.0.0
4.19.90-2409.3.0
5.10.0-227.0.0
6.6.0-41.0.0
4.19.90-2409.2.0
5.10.0-136.92.0
5.10.0-226.0.0
4.19.90-2409.1.0
6.6.0-40.0.0
4.19.90-2408.5.0
5.10.0-225.0.0
5.10.0-136.91.0
6.6.0-39.0.0
4.19.90-2408.4.0
5.10.0-136.90.0
5.10.0-224.0.0
5.10.0-223.0.0
5.10.0-136.89.0
4.19.90-2408.3.0
6.6.0-38.0.0
6.6.0-37.0.0
5.10.0-222.0.0
5.10.0-136.88.0
4.19.90-2408.2.0
6.6.0-36.0.0
5.10.0-221.0.0
5.10.0-136.87.0
4.19.90-2408.1.0
5.10.0-136.86.0
5.10.0-220.0.0
6.6.0-35.0.0
4.19.90-2407.5.0
5.10.0-136.85.0
5.10.0-219.0.0
6.6.0-34.0.0
4.19.90-2407.4.0
5.10.0-218.0.0
5.10.0-136.84.0
6.6.0-33.0.0
4.19.90-2407.3.0
4.19.90-2407.2.0
6.6.0-32.0.0
5.10.0-136.83.0
5.10.0-217.0.0
4.19.90-2407.1.0
5.10.0-216.0.0
5.10.0-136.82.0
4.19.90-2406.4.0
5.10.0-136.81.0
5.10.0-215.0.0
6.6.0-31.0.0
5.10.0-214.0.0
5.10.0-213.0.0
5.10.0-212.0.0
5.10.0-211.0.0
5.10.0-210.0.0
5.10.0-136.80.0
5.10.0-209.0.0
6.6.0-30.0.0
4.19.90-2406.3.0
5.10.0-208.0.0
6.6.0-28.0.0.34.oe2403
5.10.0-136.79.0
5.10.0-207.0.0
4.19.90-2406.2.0
5.10.0-206.0.0
5.10.0-205.0.0
5.10.0-204.0.0
5.10.0-203.0.0
5.10.0-136.78.0
5.10.0-202.0.0
4.19.90-2406.1.0
6.6.0-29.0.0
5.10.0-60.139.0
5.10.0-136.77.0
5.10.0-153.56.0
5.10.0-201.0.0
4.19.90-2405.5.0
6.6.0-28.0.0
5.10.0-153.55.0
5.10.0-136.76.0
5.10.0-60.138.0
5.10.0-200.0.0
4.19.90-2405.4.0
6.6.0-27.0.0
5.10.0-153.54.0
5.10.0-136.75.0
5.10.0-60.137.0
5.10.0-199.0.0
4.19.90-2405.3.0
6.6.0-26.0.0
4.19.90-2405.2.0
5.10.0-60.18.0.50.oe2203
6.6.0-25.0.0
6.6.0-24.0.0
5.10.0-153.53.0
5.10.0-136.74.0
5.10.0-60.136.0
5.10.0-198.0.0
4.19.90-2405.1.0
6.6.0-23.0.0
6.6.0-22.0.0
5.10.0-153.52.0
5.10.0-136.73.0
5.10.0-60.135.0
4.19.90-2404.3.0
5.10.0-197.0.0
6.6.0-21.0.0
5.10.0-153.51.0
5.10.0-136.72.0
5.10.0-60.134.0
4.19.90-2404.2.0
5.10.0-196.0.0
6.6.0-20.0.0
5.10.0-153.50.0
5.10.0-136.71.0
5.10.0-60.133.0
6.6.0-19.0.0
5.10.0-195.0.0
4.19.90-2404.1.0
6.6.0-18.0.0
6.6.0-17.0.0
6.6.0-16.0.0
5.10.0-194.0.0
5.10.0-153.49.0
5.10.0-136.70.0
5.10.0-60.132.0
6.6.0-15.0.0
6.6.0-14.0.0
5.10.0-193.0.0
5.10.0-153.48.0
5.10.0-136.69.0
5.10.0-60.131.0
4.19.90-2403.4.0
6.6.0-13.0.0
5.10.0-192.0.0
5.10.0-153.47.0
5.10.0-136.68.0
5.10.0-60.130.0
4.19.90-2403.3.0
6.6.0-12.0.0
5.10.0-191.0.0
5.10.0-153.46.0
5.10.0-136.67.0
5.10.0-60.129.0
6.6.0-11.0.0
4.19.90-2403.2.0
5.10.0-190.0.0
5.10.0-153.45.0
5.10.0-136.66.0
5.10.0-60.128.0
4.19.90-2403.1.0
4.19.90-2402.6.0
5.10.0-189.0.0
5.10.0-153.44.0
5.10.0-136.65.0
5.10.0-60.127.0
6.6.0-10.0.0
5.10.0-188.0.0
5.10.0-153.43.0
5.10.0-136.64.0
5.10.0-60.126.0
4.19.90-2402.5.0
6.6.0-9.0.0
5.10.0-187.0.0
5.10.0-153.42.0
5.10.0-136.63.0
5.10.0-60.125.0
6.6.0-8.0.0
4.19.90-2402.4.0
4.19.90-2402.3.0
4.19.90-2402.2.0
5.10.0-186.0.0
5.10.0-153.41.0
5.10.0-136.62.0
5.10.0-60.124.0
4.19.90-2402.1.0
6.6.0-7.0.0
5.10.0-185.0.0
5.10.0-153.40.0
5.10.0-136.61.0
5.10.0-60.123.0
4.19.90-2401.5.0
6.6.0-6.0.0
5.10.0-184.0.0
5.10.0-153.39.0
5.10.0-136.60.0
5.10.0-60.122.0
4.19.90-2401.4.0
6.6.0-5.0.0
5.10.0-183.0.0
5.10.0-153.38.0
5.10.0-136.59.0
5.10.0-60.121.0
4.19.90-2401.3.0
4.19.90-2401.2.0
6.6.0-4.0.0
4.19.90-2401.1.0
5.10.0-153.37.0
5.10.0-136.58.0
5.10.0-60.120.0
4.19.90-2312.6.0
4.19.90-2312.5.0
6.6.0-3.0.0
5.10.0-182.0.0
5.10.0-181.0.0
5.10.0-180.0.0
5.10.0-153.36.0
4.19.90-2312.4.0
5.10.0-179.0.0
6.6.0-2.0.0
5.10.0-178.0.0
5.10.0-177.0.0
4.19.90-2312.3.0
4.19.90-2312.2.0
5.10.0-176.0.0
5.10.0-175.0.0
4.19.90-2312.1.0
5.10.0-174.0.0
5.10.0-153.35.0
5.10.0-136.57.0
5.10.0-60.119.0
6.6.0-1.0.0
5.10.0-173.0.0
5.10.0-153.34.0
5.10.0-136.56.0
5.10.0-60.118.0
4.19.90-2311.5.0
5.10.0-172.0.0
5.10.0-171.0.0
4.19.90-2311.4.0
5.10.0-170.0.0
5.10.0-169.0.0
5.10.0-168.0.0
5.10.0-153.33.0
5.10.0-136.55.0
5.10.0-60.117.0
4.19.90-2311.3.0
5.10.0-167.0.0
5.10.0-153.32.0
5.10.0-136.54.0
5.10.0-60.116.0
4.19.90-2311.2.0
5.10.0-166.0.0
4.19.90-2311.1.0
5.10.0-165.0.0
5.10.0-153.31.0
5.10.0-136.53.0
5.10.0-60.115.0
v6.6
5.10.0-164.0.0
4.19.90-2310.4.0
4.19.90-2310.3.0
5.10.0-163.0.0
5.10.0-153.30.0
5.10.0-136.52.0
5.10.0-60.114.0
5.10.0-162.0.0
5.10.0-153.29.0
5.10.0-136.51.0
5.10.0-60.113.0
4.19.90-2310.2.0
4.19.90-2310.1.0
4.19.90-2309.5.0
6.4.0-10.1.0
5.10.0-161.0.0
6.4.0-7.0.1
6.4.0-10.0.0
6.4.0-6.0.6
6.4.0-6.0.5
6.4.0-6.0.4
6.4.0-6.0.3
6.4.0-6.0.2
6.4.0-6.0.1
5.10.0-153.28.0
5.10.0-136.50.0
5.10.0-60.112.0
4.19.90-2309.4.0
6.4.0-9.0.0
5.10.0-153.27.0
5.10.0-136.49.0
5.10.0-60.111.0
6.4.0-8.0.0
4.19.90-2309.3.0
6.4.0-7.0.0
4.19.90-2309.2.0
5.10.0-160.0.0
6.4.0-6.0.0
5.10.0-153.26.0
5.10.0-136.48.0
5.10.0-60.110.0
4.19.90-2309.1.0
6.4.0-5.0.0
6.4.0-4.0.0
6.4.0-3.0.0
4.19.90-2308.5.0
6.4.0-2.0.0
5.10.0-153.25.0
5.10.0-136.47.0
5.10.0-60.109.0
5.10.0-159.0.0
6.4.0-1.0.2
4.19.90-2308.4.0
5.10.0-153.24.0
5.10.0-136.46.0
5.10.0-60.108.0
4.19.90-2308.3.0
5.10.0-153.23.0
5.10.0-136.45.0
5.10.0-60.107.0
5.10.0-158.0.0
5.10.0-153.22.0
5.10.0-60.106.0
5.10.0-136.44.0
4.19.90-2308.2.0
5.10.0-153.21.0
5.10.0-60.105.0
5.10.0-136.43.0
4.19.90-2308.1.0
6.4.0-1.0.1
5.10.0-157.0.0
4.19.90-2307.5.0
5.10.0-153.20.0
5.10.0-60.104.0
5.10.0-136.42.0
5.10.0-153.19.0
5.10.0-60.103.0
5.10.0-136.41.0
4.19.90-2307.4.0
5.10.0-156.0.0
4.19.90-2307.3.0
5.10.0-153.18.0
5.10.0-60.102.0
5.10.0-136.40.0
6.4.0-1.0.0
4.19.90-2307.2.0
4.19.90-2307.1.0
5.10.0-60.101.0
5.10.0-153.17.0
5.10.0-136.39.0
4.19.90-2306.7.0
4.19.90-2306.6.0
5.10.0-155.0.0
5.10.0-153.16.0
4.19.90-2306.5.0
5.10.0-136.38.0
5.10.0-60.100.0
v6.4
5.10.0-153.12.0
5.10.0-153.10.0
5.10.0-60.99.0
5.10.0-136.37.0
4.19.90-2306.4.0
5.10.0-153.9.0
5.10.0-153.8.0
5.10.0-60.98.0
5.10.0-136.36.0
4.19.90-2306.3.0
5.10.0-153.6.0
5.10.0-153.5.0
5.10.0-154.0.0
5.10.0-153.4.0
4.19.90-2306.2.0
5.10.0-153.3.0
5.10.0-60.97.0
5.10.0-136.35.0
4.19.90-2306.1.0
5.10.0-153.2.0
5.10.0-153.1.0
5.10.0-60.96.0
5.10.0-136.34.0
4.19.90-2305.4.0
5.10.0-153.0.0
v6.4-rc4
5.10.0-152.0.0
4.19.90-2305.3.0
5.10.0-60.95.0
5.10.0-136.33.0
5.10.0-151.0.0
5.10.0-150.0.0
5.10.0-149.0.0
5.10.0-136.32.0
5.10.0-60.94.0
4.19.90-2305.2.0
5.10.0-60.93.0
5.10.0-136.31.0
4.19.90-2305.1.0
5.10.0-148.0.0
5.10.0-136.30.0
5.10.0-60.92.0
4.19.90-2304.5.0
v6.3
5.10.0-136.29.0
5.10.0-60.91.0
4.19.90-2304.4.0
5.10.0-136.28.0
5.10.0-60.90.0
4.19.90-2304.3.0
4.19.90-2304.2.0
5.10.0-147.0.0
4.19.90-2304.1.0
5.10.0-136.27.0
5.10.0-60.89.0
5.10.0-146.0.0
5.10.0-136.26.0
5.10.0-60.88.0
4.19.90-2303.6.0
5.10.0-60.87.0
5.10.0-136.25.0
4.19.90-2303.5.0
5.10.0-145.0.0
5.10.0-60.86.0
5.10.0-136.24.0
4.19.90-2303.4.0
5.10.0-136.23.0
5.10.0-60.85.0
4.19.90-2303.3.0
v6.1.19
4.19.90-2303.2.0
5.10.0-144.0.0
5.10.0-136.22.0
5.10.0-60.84.0
4.19.90-2303.1.0
5.10.0-60.83.0
5.10.0-136.21.0
4.19.90-2302.5.0
v6.1.14
5.10.0-143.0.0
5.10.0-60.82.0
5.10.0-136.20.0
4.19.90-2302.4.0
5.10.0-60.81.0
5.10.0-136.19.0
4.19.90-2302.3.0
5.10.0-142.0.0
4.19.90-2302.2.0
5.10.0-136.18.0
5.10.0-60.80.0
4.19.90-2302.1.0
5.10.0-60.79.0
5.10.0-136.17.0
4.19.90-2301.6.0
v6.1.8
v6.2-rc5
5.10.0-141.0.0
v6.1.7
5.10.0-136.16.0
5.10.0-60.78.0
4.19.90-2301.5.0
v6.2-rc4
v6.1.6
6.1.0-1.0.0
v6.1.5
4.19.90-2301.4.0
5.10.0-60.77.0
5.10.0-136.15.0
4.19.90-2301.3.0
4.19.90-2301.2.0
4.19.90-2301.1.0
5.10.0-136.14.2
5.10.0-60.76.0
5.10.0-140.0.0
5.10.0-136.13.2
5.10.0-60.75.0
5.10.0-60.74.0
5.10.0-136.12.2
4.19.90-2212.4.0
5.10.0-136.12.0
5.10.0-136.10.0
4.19.90-2212.3.0
5.10.0-136.8.0
5.10.0-136.7.0
5.10.0-139.0.0
5.10.0-136.6.0
5.10.0-136.5.0
5.10.0-60.73.0
5.10.0-136.4.0
5.10.0-136.3.0
5.10.0-138.0.0
5.10.0-136.2.0
5.10.0-60.72.0
5.10.0-60.71.0
5.10.0-137.0.0
5.10.0-136.1.0
v6.1
5.10.0-136.0.0
5.10.0-135.0.0
5.10.0-134.0.0
4.19.90-2212.2.0
5.10.0-133.0.0
5.10.0-60.70.0
4.19.90-2212.1.0
5.10.0-60.69.0
5.10.0-132.0.0
5.10.0-131.0.0
5.10.0-130.0.0
4.19.90-2211.6.0
5.10.0-129.0.0
5.10.0-60.68.0
4.19.90-2211.5.0
5.10.0-128.0.0
5.10.0-60.67.0
5.10.0-127.0.0
4.19.90-2211.4.0
5.10.0-60.66.0
5.10.0-126.0.0
4.19.90-2211.3.0
4.19.90-2211.2.0
5.10.0-125.0.0
5.10.0-60.65.0
5.10.0-60.64.0
4.19.90-2211.1.0
4.19.90-2210.5.0
5.10.0-123.0.0
5.10.0-60.63.0
5.10.0-60.62.0
4.19.90-2210.4.0
5.10.0-121.0.0
5.10.0-60.61.0
4.19.90-2210.3.0
5.10.0-60.60.0
5.10.0-120.0.0
5.10.0-60.59.0
5.10.0-119.0.0
4.19.90-2210.2.0
4.19.90-2210.1.0
5.10.0-118.0.0
5.10.0-106.19.0
5.10.0-60.58.0
4.19.90-2209.6.0
5.10.0-106.18.0
5.10.0-106.17.0
5.10.0-106.16.0
5.10.0-106.15.0
5.10.0-117.0.0
5.10.0-60.57.0
5.10.0-116.0.0
5.10.0-106.14.0
5.10.0-106.13.0
4.19.90-2209.5.0
4.19.90-2209.4.0
5.10.0-60.56.0
4.19.90-2209.3.0
5.10.0-106.12.0
5.10.0-106.10.0
5.10.0-106.11.0
5.10.0-60.55.0
4.19.90-2209.2.0
5.10.0-114.0.0
5.10.0-106.9.0
5.10.0-60.54.0
4.19.90-2209.1.0
5.10.0-113.0.0
5.10.0-60.53.0
5.10.0-106.8.0
4.19.90-2208.6.0
5.10.0-106.7.0
4.19.90-2208.5.0
5.10.0-112.0.0
5.10.0-106.6.0
5.10.0-60.52.0
5.10.0-60.51.0
5.10.0-106.3.1
4.19.90-2208.4.0
5.10.0-106.5.0
5.10.0-110.0.0
5.10.0-60.50.0
5.10.0-106.4.0
5.10.0-109.0.0
5.10.0-60.49.0
4.19.90-2208.3.0
4.19.90-2208.2.0
5.10.0-108.0.0
5.10.0-106.3.0
5.10.0-60.48.0
4.19.90-2208.1.0
5.10.0-106.2.0
5.10.0-107.0.0
5.10.0-60.47.0
4.19.90-2207.4.0
5.10.0-106.1.0
5.10.0-106.0.0
5.10.0-60.46.0
4.19.90-2207.3.0
5.10.0-105.0.0
5.10.0-60.45.0
5.10.0-60.44.0
5.10.0-104.0.0
5.10.0-103.0.0
5.10.0-60.43.0
4.19.90-2207.2.0
5.10.0-102.0.0
5.10.0-60.42.0
4.19.90-2207.1.0
5.10.0-101.0.0
5.10.0-60.41.0
5.10.0-100.0.0
4.19.90-2206.4.0
5.10.0-60.40.0
5.10.0-99.0.0
5.10.0-60.39.0
4.19.90-2206.3.0
5.10.0-98.0.0
5.10.0-60.38.0
4.19.90-2206.2.0
5.10.0-60.37.0
5.10.0-97.0.0
4.19.90-2206.1.0
5.10.0-60.36.0
5.10.0-96.0.0
4.19.90-2205.6.0
5.10.0-60.35.0
5.10.0-95.0.0
5.10.0-60.34.0
5.10.0-94.0.0
5.10.0-60.33.0
4.19.90-2205.5.0
5.10.0-93.0.0
5.10.0-60.32.0
5.10.0-92.0.0
5.10.0-91.0.0
5.10.0-60.31.0
5.10.0-90.0.0
5.10.0-60.30.0
4.19.90-2205.4.0
5.10.0-60.29.0
5.10.0-89.0.0
5.10.0-88.0.0
5.10.0-60.28.0
4.19.90-2205.3.0
4.19.90-2205.2.0
4.19.90-2205.1.0
5.10.0-87.0.0
5.10.0-86.0.0
5.10.0-60.27.0
5.10.0-60.26.0
5.10.0-85.0.0
5.10.0-60.25.0
5.10.0-60.24.0
5.10.0-84.0.0
4.19.90-2204.4.0
5.10.0-60.23.0
5.10.0-83.0.0
5.10.0-82.0.0
5.10.0-60.22.0
5.10.0-81.0.0
5.10.0-60.21.0
4.19.90-2204.3.0
5.10.0-80.0.0
5.10.0-60.20.0
5.10.0-60.19.0
4.19.90-2204.2.0
5.10.0-79.0.0
4.19.90-2204.1.0
4.19.90-2203.5.0
5.10.0-78.0.0
5.10.0-77.0.0
5.10.0-60.18.0
5.10.0-60.17.0
5.10.0-60.16.0
5.10.0-76.0.0
4.19.90-2203.4.0
5.10.0-75.0.0
5.10.0-60.15.0
5.10.0-74.0.0
5.10.0-60.14.0
5.10.0-73.0.0
5.10.0-60.13.0
5.10.0-60.12.0
5.10.0-72.0.0
5.10.0-60.11.0
5.10.0-71.0.0
5.10.0-70.0.0
5.10.0-60.10.0
4.19.90-2203.3.0
5.10.0-69.0.0
5.10.0-68.0.0
5.10.0-60.9.0
5.10.0-60.8.0
5.10.0-60.7.0
5.10.0-67.0.0
5.10.0-5.10.1
5.10.0-5.12.0
5.10.0-66.0.0
5.10.0-60.6.0
5.10.0-65.0.0
5.10.0-60.5.0
5.10.0-60.4.0
5.10.0-63.0.0
5.10.0-60.3.0
4.19.90-2203.2.0
5.10.0-60.2.0
5.10.0-62.0.0
5.10.0-61.0.0
5.10.0-60.1.0
5.10.0-60.0.0
4.19.90-2203.1.0
5.10.0-59.0.0
5.10.0-58.0.0
5.10.0-57.0.0
4.19.90-2202.4.0
5.10.0-56.0.0
4.19.90-2202.3.0
5.10.0-55.0.0
5.10.0-54.0.0
4.19.90-2202.2.0
4.19.90-2202.1.0
5.10.0-53.0.0
5.10.0-52.0.0
5.10.0-51.0.0
5.10.0-50.0.0
5.10.0-49.0.0
5.10.0-48.0.0
5.10.0-47.0.0
5.10.0-46.0.0
5.10.0-45.0.0
4.19.90-2201.4.0
5.10.0-44.0.0
5.10.0-43.0.0
5.10.0-42.0.0
4.19.90-2201.3.0
5.10.0-41.0.0
5.10.0-40.0.0
5.10.0-39.0.0
4.19.90-2201.2.0
5.10.0-38.0.0
5.10.0-37.0.0
5.10.0-36.0.0
5.10.0-35.0.0
5.10.0-34.0.0
5.10.0-33.0.0
4.19.90-2201.1.0
5.10.0-32.0.0
5.10.0-31.0.0
5.10.0-30.0.0
4.19.90-2112.8.0
4.19.90-2112.7.0
5.10.0-29.0.0
4.19.90-2112.6.0
5.10.0-28.0.0
5.10.0-27.0.0
4.19.90-2112.5.0
4.19.90-2112.4.0
4.19.90-2112.3.0
5.10.0-26.0.0
4.19.90-2112.2.0
4.19.90-2112.1.0
5.10.0-25.0.0
5.10.0-24.0.0
5.10.0-23.0.0
4.19.90-2111.7.0
5.10.0-22.0.0
5.10.0-21.0.0
4.19.90-2111.6.0
5.10.0-20.0.0
4.19.90-2111.5.0
5.10.0-19.0.0
4.19.90-2111.4.0
5.10.0-18.0.0
5.10.0-17.0.0
4.19.90-2111.3.0
4.19.90-2111.2.0
4.19.208-2111.1.0
4.19.90-2111.1.0
5.10.0-16.0.0
5.10.0-4.25.0
4.19.90-2110.8.0
4.19.90-2110.7.0
5.10.0-15.0.0
5.10.0-4.24.0
5.10.0-14.0.0
4.19.90-2110.6.0
4.19.90-2110.5.0
4.19.90-2110.4.0
5.10.0-13.0.0
5.10.0-12.0.0
5.10.0-11.0.0
4.19.90-2110.3.0
5.10.0-10.0.0
4.19.90-2110.2.0
5.10.0-9.0.0
4.19.90-2110.1.0
5.10.0-8.0.0
5.10.0-5.11.0
4.19.90-2109.8.0
5.10.0-7.0.0
4.19.90-2109.7.0
4.19.90-2109.6.0
4.19.90-2109.5.0
5.10.0-5.10.0
4.19.90-2109.4.0
4.19.90-2109.3.0
4.19.90-2109.2.0
5.10.0-5.9.0
5.10.0-6.0.0
4.19.90-2109.1.0
4.19.90-2108.9.0
5.10.0-5.8.0
5.10.0-5.7.0
4.19.90-2108.8.0
4.19.90-2108.7.0
5.10.0-5.6.0
5.10.0-5.5.0
5.10.0-5.4.0
5.10.0-4.23.0
4.19.90-2108.6.0
4.19.90-2108.5.0
5.10.0-5.3.0
4.19.201-2108.1.0
4.19.90-2108.4.0
4.19.90-2108.3.0
5.10.0-5.2.0
4.19.90-2108.2.0
4.19.90-2108.1.0
5.10.0-5.1.0
4.19.90-2107.5.0
5.10.0-4.22.0
4.19.90-2107.4.0
4.19.90-2107.3.0
4.19.90-2107.2.0
5.10.0-5.0.0
4.19.90-2107.1.0
5.10.0-4.21.0
4.19.90-2106.3.0
4.19.90-2106.2.0
4.19.90-2106.1.0
4.19.194-2106.1.0
4.19.90-2105.9.0
4.19.90-2105.8.0
4.19.90-2105.7.0
4.19.90-2105.6.0
4.19.90-2105.5.0
4.19.90-2105.4.0
4.19.90-2105.3.0
4.19.90-2105.2.0
4.19.90-2105.1.0
4.19.189-2104.7.0
4.19.90-2104.26.0
4.19.189-2104.6.0
4.19.189-2104.5.0
4.19.90-2104.25.0
4.19.90-2104.24.0
4.19.90-2104.23.0
4.19.90-2104.22.0
4.19.90-2104.21.0
4.19.90-2104.20.0
5.10.0-4.20.0
4.19.188-2104.4.0
4.19.188-2104.3.0
4.19.90-2104.19.0
4.19.90-2104.18.0
4.19.90-2104.17.0
5.10.0-4.19.0
4.19.90-2104.16.0
4.19.90-2104.15.0
4.19.90-2104.14.0
4.19.90-2104.13.0
4.19.90-2104.12.0
4.19.90-2104.11.0
4.19.90-2104.10.0
4.19.90-2104.9.0
4.19.90-2104.8.0
4.19.90-2104.7.0
4.19.90-2104.6.0
4.19.90-2104.5.0
4.19.90-2104.4.0
4.19.90-2104.3.0
4.19.90-2104.2.0
4.19.183-2104.2.0
4.19.183-2104.1.0
4.19.140-2104.1.0
4.19.90-2104.1.0
4.19.90-2103.4.0
5.10.0-4.18.0
5.10.0-4.17.0
4.19.90-2103.3.0
5.10.0-4.16.0
5.10.0-4.15.0
5.10.0-4.14.0
5.10.0-4.13.0
4.19.140-2103.1.0
4.19.90-2103.2.0
5.10.0-4.12.0
5.10.0-4.11.0
5.10.0-4.10.0
4.19.90-2103.1.0
5.10.0-4.9.0
5.10.0-4.8.0
5.10.0-4.7.0
5.10.0-4.6.0
5.10.0-4.5.0
5.10.0-4.4.0
5.10.0-4.3.0
5.10.0-4.2.0
4.19.90-2102.3.0
5.10.0-4.1.0
4.19.90-2102.2.0
5.10.0-4.0.0
4.19.140-2102.1.0
4.19.90-2102.1.0
5.10.0-3.0.0
5.10.0-2.0.0
5.10.0-1.0.0
4.19.140-2101.1.0
4.19.90-2101.1.0
4.19.90-2012.5.0
4.19.90-2012.4.0
4.19.140-2012.2.0
4.19.90-2012.3.0
4.19.90-2012.2.0
v5.10
4.19.140-2012.1.0
4.19.90-2012.1.0
v5.10-rc7
v5.10-rc6
4.19.90-2011.6.0
4.19.90-2011.5.0
4.19.90-2011.4.0
v5.10-rc5
4.19.140-2011.2.0
4.19.90-2011.3.0
4.19.90-2011.2.0
v5.10-rc4
v5.10-rc3
4.19.140-2011.1.0
v5.10-rc2
4.19.90-2010.2.0
v5.10-rc1
v5.9
4.19.148-2009.1.0
v5.9-rc8
v5.9-rc7
4.19.140-2009.4.0
4.19.90-2009.1.0
4.19.90-2009.2.0
4.19.90-2009.3.0
4.19.140-2009.3.0
v5.9-rc6
4.19.140-2009.2.0
v5.9-rc5
4.19.140-2009.1.0
v5.9-rc4
4.19.90-2008.6.0
v5.9-rc3
4.19.140-2008.3.0
4.19.140-2008.2.0
v5.9-rc2
4.19.90-2008.3.0
4.19.90-2008.2.0
v5.9-rc1
4.19.138-2008.1.0
v5.8
4.19.90-2007.2.0
v5.8-rc7
v5.8-rc6
v5.8-rc5
v5.8-rc4
v5.8-rc3
v5.8-rc2
v5.8-rc1
4.19.128-2006.1.0
v5.7
4.19.90-2005.2.0
v5.7-rc7
v5.7-rc6
4.19.90-2005.1.0
v5.7-rc5
v5.7-rc4
4.19.90-2004.1.0
v5.7-rc3
v5.7-rc2
v5.7-rc1
v5.6
v5.6-rc7
4.19.90-2003.4.0
4.19.90-2003.3.0
4.19.90-2003.2.0
v5.6-rc6
4.19.90-2003.1.1
4.19.90-2003.1.0
v5.6-rc5
v5.6-rc4
v5.6-rc3
v5.6-rc2
v5.6-rc1
v5.5
v5.5-rc7
4.19.90-2001.1.0
v5.5-rc6
v5.5-rc5
v5.5-rc4
v5.5-rc3
v5.5-rc2
v5.5-rc1
v5.4
v5.4-rc8
v5.4-rc7
v5.4-rc6
v5.4-rc5
v5.4-rc4
v5.4-rc3
v5.4-rc2
v5.4-rc1
v5.3
v5.3-rc8
v5.3-rc7
v5.3-rc6
v5.3-rc5
v5.3-rc4
v5.3-rc3
v5.3-rc2
v5.3-rc1
v5.2
v5.2-rc7
v5.2-rc6
v5.2-rc5
v5.2-rc4
v5.2-rc3
v5.2-rc2
v5.2-rc1
v5.1
v5.1-rc7
v5.1-rc6
v5.1-rc5
v5.1-rc4
v5.1-rc3
v5.1-rc2
v5.1-rc1
v5.0
v5.0-rc8
v5.0-rc7
v5.0-rc6
v5.0-rc5
v5.0-rc4
v5.0-rc3
v5.0-rc2
v5.0-rc1
v4.20
v4.20-rc7
v4.20-rc6
v4.20-rc5
v4.20-rc4
v4.20-rc3
v4.20-rc2
v4.20-rc1
v4.19
v4.19-rc8
v4.19-rc7
v4.19-rc6
v4.19-rc5
v4.19-rc4
v4.19-rc3
v4.19-rc2
v4.19-rc1
v4.18
v4.18-rc8
v4.18-rc7
v4.18-rc6
v4.18-rc5
v4.18-rc4
v4.18-rc3
v4.18-rc2
v4.18-rc1
v4.17
v4.17-rc7
v4.17-rc6
v4.17-rc5
v4.17-rc4
v4.17-rc3
v4.17-rc2
v4.17-rc1
v4.16
v4.16-rc7
v4.16-rc6
v4.16-rc5
v4.16-rc4
v4.16-rc3
v4.16-rc2
v4.16-rc1
v4.15
v4.15-rc9
v4.15-rc8
v4.15-rc7
v4.15-rc6
v4.15-rc5
v4.15-rc4
v4.15-rc3
v4.15-rc2
v4.15-rc1
v4.14
v4.14-rc8
v4.14-rc7
v4.14-rc6
v4.14-rc5
v4.14-rc4
v4.14-rc3
v4.14-rc2
v4.14-rc1
v4.13
v4.13-rc7
v4.13-rc6
v4.13-rc5
v4.13-rc4
v4.13-rc3
v4.13-rc2
v4.13-rc1
v4.12
v4.12-rc7
v4.12-rc6
v4.12-rc5
v4.12-rc4
v4.12-rc3
v4.12-rc2
v4.12-rc1
v4.11
v4.11-rc8
v4.11-rc7
v4.11-rc6
v4.11-rc5
v4.11-rc4
v4.11-rc3
v4.11-rc2
v4.11-rc1
v4.10
v4.10-rc8
v4.10-rc7
v4.10-rc6
v4.10-rc5
v4.10-rc4
v4.10-rc3
v4.10-rc2
v4.10-rc1
v4.9
v4.9-rc8
v4.9-rc7
v4.9-rc6
v4.9-rc5
v4.9-rc4
v4.9-rc3
v4.9-rc2
v4.9-rc1
v4.8
v4.8-rc8
v4.8-rc7
v4.8-rc6
v4.8-rc5
v4.8-rc4
v4.8-rc3
v4.8-rc2
v4.8-rc1
v4.7
v4.7-rc7
v4.7-rc6
v4.7-rc5
v4.7-rc4
v4.7-rc3
v4.7-rc2
v4.7-rc1
v4.6
v4.6-rc7
v4.6-rc6
v4.6-rc5
v4.6-rc4
v4.6-rc3
v4.6-rc2
v4.6-rc1
v4.5
v4.5-rc7
v4.5-rc6
v4.5-rc5
v4.5-rc4
v4.5-rc3
v4.5-rc2
v4.5-rc1
v4.4
v4.4-rc8
v4.4-rc7
v4.4-rc6
v4.4-rc5
v4.4-rc4
v4.4-rc3
v4.4-rc2
v4.4-rc1
v4.3
v4.3-rc7
v4.3-rc6
v4.3-rc5
v4.3-rc4
v4.3-rc3
v4.3-rc2
v4.3-rc1
v4.2
v4.2-rc8
v4.2-rc7
v4.2-rc6
v4.2-rc5
v4.2-rc4
v4.2-rc3
v4.2-rc2
v4.2-rc1
v4.1
v4.1-rc8
v4.1-rc7
v4.1-rc6
v4.1-rc5
v4.1-rc4
v4.1-rc3
v4.1-rc2
v4.1-rc1
v4.0
v4.0-rc7
v4.0-rc6
v4.0-rc5
v4.0-rc4
v4.0-rc3
v4.0-rc2
v4.0-rc1
v3.19
v3.19-rc7
v3.19-rc6
v3.19-rc5
v3.19-rc4
v3.19-rc3
v3.19-rc2
v3.19-rc1
v3.18
v3.18-rc7
v3.18-rc6
v3.18-rc5
v3.18-rc4
v3.18-rc3
v3.18-rc2
v3.18-rc1
v3.17
v3.17-rc7
v3.17-rc6
v3.17-rc5
v3.17-rc4
v3.17-rc3
v3.17-rc2
v3.17-rc1
v3.16
v3.16-rc7
v3.16-rc6
v3.16-rc5
v3.16-rc4
v3.16-rc3
v3.16-rc2
v3.16-rc1
v3.15
v3.15-rc8
v3.15-rc7
v3.15-rc6
v3.15-rc5
v3.15-rc4
v3.15-rc3
v3.15-rc2
v3.15-rc1
v3.14
v3.14-rc8
v3.14-rc7
v3.14-rc6
v3.14-rc5
v3.14-rc4
v3.14-rc3
v3.14-rc2
v3.14-rc1
v3.13
v3.13-rc8
v3.13-rc7
v3.13-rc6
v3.13-rc5
v3.13-rc4
v3.13-rc3
v3.13-rc2
v3.13-rc1
v3.12
v3.12-rc7
v3.12-rc6
v3.12-rc5
v3.12-rc4
v3.12-rc3
v3.12-rc2
v3.12-rc1
v3.11
v3.11-rc7
v3.11-rc6
v3.11-rc5
v3.11-rc4
v3.11-rc3
v3.11-rc2
v3.11-rc1
v3.10
v3.10-rc7
v3.10-rc6
v3.10-rc5
v3.10-rc4
v3.10-rc3
v3.10-rc2
v3.10-rc1
v3.9
v3.9-rc8
v3.9-rc7
v3.9-rc6
v3.9-rc5
v3.9-rc4
v3.9-rc3
v3.9-rc2
v3.9-rc1
v3.8
v3.9-kvm-arm
v3.8-rc7
v3.8-rc6
v3.8-rc5
v3.8-rc4
v3.8-rc3
v3.8-rc2
v3.8-rc1
v3.7
v3.7-rc8
v3.7-rc7
v3.7-rc6
v3.7-rc5
v3.7-rc4
v3.7-rc3
v3.7-rc2
v3.7-rc1
v3.6
v3.6-rc7
v3.6-rc6
v3.6-rc5
v3.6-rc4
v3.6-rc3
v3.6-rc2
v3.6-rc1
v3.5
v3.5-rc7
v3.5-rc6
v3.5-rc5
v3.5-rc4
v3.5-rc3
v3.5-rc2
v3.5-rc1
v3.4
v3.4-rc7
v3.4-rc6
v3.4-rc5
v3.4-rc4
v3.4-rc3
v3.4-rc2
v3.4-rc1
v3.3
v3.3-rc7
v3.3-rc6
v3.3-rc5
v3.3-rc4
v3.3-rc3
v3.3-rc2
v3.3-rc1
v3.2
v3.2-rc7
v3.2-rc6
v3.2-rc5
v3.2-rc4
v3.2-rc3
v3.2-rc2
v3.2-rc1
v3.1
v3.1-rc10
v3.1-rc9
v3.1-rc8
v3.1-rc7
v3.1-rc6
v3.1-rc5
v3.1-rc4
v3.1-rc3
v3.1-rc2
v3.1-rc1
v3.0
v3.0-rc7
v3.0-rc6
v3.0-rc5
v3.0-rc4
v3.0-rc3
v3.0-rc2
v3.0-rc1
v2.6.39
v2.6.39-rc7
v2.6.39-rc6
v2.6.39-rc5
v2.6.39-rc4
v2.6.39-rc3
v2.6.39-rc2
v2.6.39-rc1
v2.6.38
v2.6.38-rc8
v2.6.38-rc7
v2.6.38-rc6
v2.6.38-rc5
v2.6.38-rc4
v2.6.38-rc3
v2.6.38-rc2
v2.6.38-rc1
v2.6.37
v2.6.37-rc8
v2.6.37-rc7
v2.6.37-rc6
v2.6.37-rc5
v2.6.37-rc4
v2.6.37-rc3
v2.6.37-rc2
v2.6.37-rc1
v2.6.36
v2.6.36-rc8
v2.6.36-rc7
v2.6.36-rc6
v2.6.36-rc5
v2.6.36-rc4
v2.6.36-rc3
v2.6.36-rc2
v2.6.36-rc1
v2.6.35
v2.6.35-rc6
v2.6.35-rc5
v2.6.35-rc4
v2.6.35-rc3
v2.6.35-rc2
v2.6.35-rc1
v2.6.34
v2.6.34-rc7
v2.6.34-rc6
v2.6.34-rc5
v2.6.34-rc4
v2.6.34-rc3
v2.6.34-rc2
v2.6.34-rc1
v2.6.33
v2.6.33-rc8
v2.6.33-rc7
v2.6.33-rc6
v2.6.33-rc5
v2.6.33-rc4
v2.6.33-rc3
v2.6.33-rc2
v2.6.33-rc1
v2.6.32
v2.6.32-rc8
v2.6.32-rc7
v2.6.32-rc6
v2.6.32-rc5
v2.6.32-rc4
v2.6.32-rc3
v2.6.32-rc1
v2.6.32-rc2
v2.6.31
v2.6.31-rc9
v2.6.31-rc8
v2.6.31-rc7
v2.6.31-rc6
v2.6.31-rc5
v2.6.31-rc4
v2.6.31-rc3
v2.6.31-rc2
v2.6.31-rc1
v2.6.30
v2.6.30-rc8
v2.6.30-rc7
v2.6.30-rc6
v2.6.30-rc5
v2.6.30-rc4
v2.6.30-rc3
v2.6.30-rc2
v2.6.30-rc1
v2.6.29
v2.6.29-rc8
v2.6.29-rc7
v2.6.29-rc6
v2.6.29-rc5
v2.6.29-rc4
v2.6.29-rc3
v2.6.29-rc2
v2.6.29-rc1
v2.6.28
v2.6.28-rc9
v2.6.28-rc8
v2.6.28-rc7
v2.6.28-rc6
v2.6.28-rc5
v2.6.28-rc4
v2.6.28-rc3
v2.6.28-rc2
v2.6.28-rc1
v2.6.27
v2.6.27-rc9
v2.6.27-rc8
v2.6.27-rc7
v2.6.27-rc6
v2.6.27-rc5
v2.6.27-rc4
v2.6.27-rc3
v2.6.27-rc2
v2.6.27-rc1
v2.6.26
v2.6.26-rc9
v2.6.26-rc8
v2.6.26-rc7
v2.6.26-rc6
v2.6.26-rc5
v2.6.26-rc4
v2.6.26-rc3
v2.6.26-rc2
v2.6.26-rc1
v2.6.25
v2.6.25-rc9
v2.6.25-rc8
v2.6.25-rc7
v2.6.25-rc6
v2.6.25-rc5
v2.6.25-rc4
v2.6.25-rc3
v2.6.25-rc2
v2.6.25-rc1
v2.6.24
v2.6.24-rc8
v2.6.24-rc7
v2.6.24-rc6
v2.6.24-rc5
v2.6.24-rc4
v2.6.24-rc3
v2.6.24-rc2
v2.6.24-rc1
v2.6.23
v2.6.23-rc9
v2.6.23-rc8
v2.6.23-rc7
v2.6.23-rc6
v2.6.23-rc5
v2.6.23-rc4
v2.6.23-rc3
v2.6.23-rc2
v2.6.23-rc1
v2.6.22
v2.6.22-rc7
v2.6.22-rc6
v2.6.22-rc5
v2.6.22-rc4
v2.6.22-rc3
v2.6.22-rc2
v2.6.22-rc1
v2.6.21
v2.6.21-rc7
v2.6.21-rc6
v2.6.21-rc5
v2.6.21-rc4
v2.6.21-rc3
v2.6.21-rc2
v2.6.21-rc1
v2.6.20
v2.6.20-rc7
v2.6.20-rc6
v2.6.20-rc5
v2.6.20-rc4
v2.6.20-rc3
v2.6.20-rc2
v2.6.20-rc1
v2.6.19
v2.6.19-rc6
v2.6.19-rc5
v2.6.19-rc4
v2.6.19-rc3
v2.6.19-rc2
v2.6.19-rc1
v2.6.18
v2.6.18-rc7
v2.6.18-rc6
v2.6.18-rc5
v2.6.18-rc4
v2.6.18-rc3
v2.6.18-rc2
v2.6.18-rc1
v2.6.17
v2.6.17-rc6
v2.6.17-rc5
v2.6.17-rc4
v2.6.17-rc3
v2.6.17-rc2
v2.6.17-rc1
v2.6.16
v2.6.16-rc6
v2.6.16-rc5
v2.6.16-rc4
v2.6.16-rc3
v2.6.16-rc2
v2.6.16-rc1
v2.6.15
v2.6.15-rc7
v2.6.15-rc6
v2.6.15-rc5
v2.6.15-rc4
v2.6.15-rc3
v2.6.15-rc2
v2.6.15-rc1
v2.6.14
v2.6.14-rc5
v2.6.14-rc4
v2.6.14-rc3
v2.6.14-rc2
v2.6.14-rc1
v2.6.13
v2.6.13-rc7
v2.6.13-rc6
v2.6.13-rc5
v2.6.13-rc4
v2.6.11
v2.6.11-tree
v2.6.12
v2.6.12-rc2
v2.6.12-rc3
v2.6.12-rc4
v2.6.12-rc5
v2.6.12-rc6
v2.6.13-rc1
v2.6.13-rc2
v2.6.13-rc3
开始日期   -   截止日期
-
置顶选项
不置顶
置顶等级:高
置顶等级:中
置顶等级:低
优先级
不指定
严重
主要
次要
不重要
预计工期
(小时)
参与者(1)
C
1
https://gitee.com/openeuler/kernel.git
git@gitee.com:openeuler/kernel.git
openeuler
kernel
kernel
点此查找更多帮助
搜索帮助
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册