从这个网页截图中,可以获取到以下关于漏洞的关键信息: 1. 漏洞描述: - RDMA/cxgb4: Added NULL check for lookup_atid - lookup_atid() function can return NULL if the ATID is invalid or does not exist in the identifier table, which could lead to dereferencing a null pointer without a check in the 'act_establish()' and 'act_open_rpl()' functions. - Add a NULL check to prevent null pointer dereferencing. 2. 发现者: - Linux Verification Center (linuxtesting.org) with SVACE 3. 修复补丁: - Upstream commit: e766e6a92410ca269161de059fff0843b8ddd65f - Fixes: cfddaa9d76436 ("RDMA/cxgb4: Add driver for Chelsio T4 RNIC") 4. 签名-off-by: - Mikhail Lobanov - Leon Romanovsky - Sasha Levin 5. Diffstat: - 1 file changed, 5 insertions, 0 deletions - Diff between files 6. Diff内容: - and functions have been modified to include a NULL check for . 这些信息表明,该漏洞是由于 函数在返回NULL时没有进行检查,可能导致在 和 函数中未检查null指针解引用。修复补丁通过在这些函数中添加NULL检查来防止null指针解引用。