函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:lib\kunit\test-test.c Create Date:2022-07-27 07:36:50
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:kunit_resource_test_alloc_resource

函数原型:static void kunit_resource_test_alloc_resource(struct kunit *test)

返回类型:void

参数:

类型参数名称
struct kunit *test
143  ctx等于priv
145  free等于fake_resource_free
147  res等于kunit_alloc_and_get_resource( & test, fake_resource_init, fake_resource_free, GFP_KERNEL, ctx)
153  KUNIT_ASSERT_NOT_ERR_OR_NULL() - Assertion that @ptr is not null and not err.*@test: The test context object.*@ptr: an arbitrary pointer.* Sets an assertion that the value that @ptr evaluates to is not null and not* an errno stored in a pointer(test, res)
154  KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal(test, & is_resource_initialized, (bool * )allocation)
157  KUNIT_EXPECT_TRUE() - Causes a test failure when the expression is not true(test, 检查是否为链表尾)
158  KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal(test, free, free)