id stringlengths 4 63 | text stringlengths 153 8.81M |
|---|---|
KUNIT_ASSERT_NULL(9) | NAME KUNIT_ASSERT_NULL - Asserts that pointers @ptr is null.
SYNOPSIS KUNIT_ASSERT_NULL (test , ptr );
ARGUMENTS test The test context object.
ptr an arbitrary pointer.
DESCRIPTION Sets an assertion that the values that ptr evaluates to is null. This is the same as KUNIT_EXPECT_NULL, except it... |
KUNIT_ASSERT_PTR_EQ(9) | NAME KUNIT_ASSERT_PTR_EQ - Asserts that pointers @left and @right are equal.
SYNOPSIS KUNIT_ASSERT_PTR_EQ (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a pointer.
right an arbitrary expression that evaluates to a poin... |
KUNIT_ASSERT_PTR_NE(9) | NAME KUNIT_ASSERT_PTR_NE - Asserts that pointers @left and @right are not equal. KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
SYNOPSIS KUNIT_ASSERT_PTR_NE (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a... |
KUNIT_ASSERT_STREQ(9) | NAME KUNIT_ASSERT_STREQ - An assertion that strings @left and @right are equal.
SYNOPSIS KUNIT_ASSERT_STREQ (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a null terminated string.
right an arbitrary expression that ev... |
KUNIT_ASSERT_STRNEQ(9) | NAME KUNIT_ASSERT_STRNEQ - An assertion that strings @left and @right are not equal.
SYNOPSIS KUNIT_ASSERT_STRNEQ (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a null terminated string.
right an arbitrary expression t... |
KUNIT_ASSERT_TRUE(9) | NAME KUNIT_ASSERT_TRUE - Sets an assertion that @condition is true.
SYNOPSIS KUNIT_ASSERT_TRUE (test , condition );
ARGUMENTS test The test context object.
condition an arbitrary boolean expression. The test fails and aborts when this does not evaluate to true.
DESCRIPTION This and assertions of the... |
KUNIT_CASE(9) | NAME KUNIT_CASE - A helper for creating a &struct kunit_case
SYNOPSIS KUNIT_CASE (test_name );
ARGUMENTS test_name a reference to a test case function.
DESCRIPTION Takes a symbol for a function representing a test case and creates a struct kunit_case object from it. See the documentation for struct kunit_case for ... |
KUNIT_CASE_ATTR(9) | NAME KUNIT_CASE_ATTR - A helper for creating a &struct kunit_case with attributes
SYNOPSIS KUNIT_CASE_ATTR (test_name , attributes );
ARGUMENTS test_name a reference to a test case function.
attributes a reference to a struct kunit_attributes object containing test attributes
SEE ALSO Kernel file ./includ... |
KUNIT_CASE_PARAM(9) | NAME KUNIT_CASE_PARAM - A helper for creation a parameterized &struct kunit_case
SYNOPSIS KUNIT_CASE_PARAM (test_name , gen_params );
ARGUMENTS test_name a reference to a test case function.
gen_params a reference to a parameter generator function.
DESCRIPTION The generator function:: const void* gen... |
KUNIT_CASE_PARAM_ATTR(9) | NAME KUNIT_CASE_PARAM_ATTR - A helper for creating a parameterized &struct kunit_case with attributes
SYNOPSIS KUNIT_CASE_PARAM_ATTR (test_name , gen_params , attributes );
ARGUMENTS test_name a reference to a test case function.
gen_params a reference to a parameter generator function.
attributes ... |
KUNIT_CASE_PARAM_WITH_INIT(9) | NAME KUNIT_CASE_PARAM_WITH_INIT - Define a parameterized KUnit test case with custom param_init() and param_exit() functions.
SYNOPSIS KUNIT_CASE_PARAM_WITH_INIT (test_name , gen_params , init , exit );
ARGUMENTS test_name The function implementing the test case.
gen_params The function to generate paramet... |
KUNIT_CASE_SLOW(9) | NAME KUNIT_CASE_SLOW - A helper for creating a &struct kunit_case with the slow attribute
SYNOPSIS KUNIT_CASE_SLOW (test_name );
ARGUMENTS test_name a reference to a test case function.
SEE ALSO Kernel file ./include/kunit/test.h enum kunit_status(9), struct kunit_case(9), KUNIT_CASE(9), KUNIT_CASE_ATTR(9), KUNIT_... |
KUNIT_DEFINE_ACTION_WRAPPER(9) | NAME KUNIT_DEFINE_ACTION_WRAPPER - Wrap a function for use as a deferred action.
SYNOPSIS KUNIT_DEFINE_ACTION_WRAPPER (wrapper , orig , arg_type );
ARGUMENTS wrapper The name of the new wrapper function define.
orig The original function to wrap.
arg_type The type of the argument accepte... |
KUNIT_EXPECT_EQ(9) | NAME KUNIT_EXPECT_EQ - Sets an expectation that @left and @right are equal.
SYNOPSIS KUNIT_EXPECT_EQ (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a primitive C type.
right an arbitrary expression that evaluates to a ... |
KUNIT_EXPECT_FALSE(9) | NAME KUNIT_EXPECT_FALSE - Makes a test failure when the expression is not false.
SYNOPSIS KUNIT_EXPECT_FALSE (test , condition );
ARGUMENTS test The test context object.
condition an arbitrary boolean expression. The test fails when this does not evaluate to false.
DESCRIPTION Sets an expectation th... |
KUNIT_EXPECT_GE(9) | NAME KUNIT_EXPECT_GE - Expects that @left is greater than or equal to @right.
SYNOPSIS KUNIT_EXPECT_GE (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a primitive C type.
right an arbitrary expression that evaluates to ... |
KUNIT_EXPECT_GT(9) | NAME KUNIT_EXPECT_GT - An expectation that @left is greater than @right.
SYNOPSIS KUNIT_EXPECT_GT (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a primitive C type.
right an arbitrary expression that evaluates to a pri... |
KUNIT_EXPECT_KASAN_RESULT(9) | NAME KUNIT_EXPECT_KASAN_RESULT - checks whether the executed expression produces a KASAN report; causes a KUnit test failure when the result is different from @fail.
SYNOPSIS KUNIT_EXPECT_KASAN_RESULT (test , expr , expr_str , fail );
ARGUMENTS test Currently executing KUnit test.
expr Expressio... |
KUNIT_EXPECT_LE(9) | NAME KUNIT_EXPECT_LE - Expects that @left is less than or equal to @right.
SYNOPSIS KUNIT_EXPECT_LE (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a primitive C type.
right an arbitrary expression that evaluates to a p... |
KUNIT_EXPECT_LT(9) | NAME KUNIT_EXPECT_LT - An expectation that @left is less than @right.
SYNOPSIS KUNIT_EXPECT_LT (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a primitive C type.
right an arbitrary expression that evaluates to a primit... |
KUNIT_EXPECT_MEMEQ(9) | NAME KUNIT_EXPECT_MEMEQ - Expects that the first @size bytes of @left and @right are equal.
SYNOPSIS KUNIT_EXPECT_MEMEQ (test , left , right , size );
ARGUMENTS test The test context object.
left An arbitrary expression that evaluates to the specified size.
right An arbitrary expre... |
KUNIT_EXPECT_MEMNEQ(9) | NAME KUNIT_EXPECT_MEMNEQ - Expects that the first @size bytes of @left and @right are not equal.
SYNOPSIS KUNIT_EXPECT_MEMNEQ (test , left , right , size );
ARGUMENTS test The test context object.
left An arbitrary expression that evaluates to the specified size.
right An arbitrary... |
KUNIT_EXPECT_NE(9) | NAME KUNIT_EXPECT_NE - An expectation that @left and @right are not equal.
SYNOPSIS KUNIT_EXPECT_NE (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a primitive C type.
right an arbitrary expression that evaluates to a p... |
KUNIT_EXPECT_NOT_ERR_OR_NULL(9) | NAME KUNIT_EXPECT_NOT_ERR_OR_NULL - Expects that @ptr is not null and not err.
SYNOPSIS KUNIT_EXPECT_NOT_ERR_OR_NULL (test , ptr );
ARGUMENTS test The test context object.
ptr an arbitrary pointer.
DESCRIPTION Sets an expectation that the value that ptr evaluates to is not null and not an er... |
KUNIT_EXPECT_NOT_NULL(9) | NAME KUNIT_EXPECT_NOT_NULL - Expects that @ptr is not null.
SYNOPSIS KUNIT_EXPECT_NOT_NULL (test , ptr );
ARGUMENTS test The test context object.
ptr an arbitrary pointer.
DESCRIPTION Sets an expectation that the value that ptr evaluates to is not null. This is semantically equivalent to KUNIT... |
KUNIT_EXPECT_NULL(9) | NAME KUNIT_EXPECT_NULL - Expects that @ptr is null.
SYNOPSIS KUNIT_EXPECT_NULL (test , ptr );
ARGUMENTS test The test context object.
ptr an arbitrary pointer.
DESCRIPTION Sets an expectation that the value that ptr evaluates to is null. This is semantically equivalent to KUNIT_EXPECT_PTR_EQ(t... |
KUNIT_EXPECT_PTR_EQ(9) | NAME KUNIT_EXPECT_PTR_EQ - Expects that pointers @left and @right are equal.
SYNOPSIS KUNIT_EXPECT_PTR_EQ (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a pointer.
right an arbitrary expression that evaluates to a poin... |
KUNIT_EXPECT_PTR_NE(9) | NAME KUNIT_EXPECT_PTR_NE - Expects that pointers @left and @right are not equal.
SYNOPSIS KUNIT_EXPECT_PTR_NE (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a pointer.
right an arbitrary expression that evaluates to a ... |
KUNIT_EXPECT_STREQ(9) | NAME KUNIT_EXPECT_STREQ - Expects that strings @left and @right are equal.
SYNOPSIS KUNIT_EXPECT_STREQ (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a null terminated string.
right an arbitrary expression that evaluat... |
KUNIT_EXPECT_STRNEQ(9) | NAME KUNIT_EXPECT_STRNEQ - Expects that strings @left and @right are not equal.
SYNOPSIS KUNIT_EXPECT_STRNEQ (test , left , right );
ARGUMENTS test The test context object.
left an arbitrary expression that evaluates to a null terminated string.
right an arbitrary expression that e... |
KUNIT_EXPECT_TRUE(9) | NAME KUNIT_EXPECT_TRUE - Causes a test failure when the expression is not true.
SYNOPSIS KUNIT_EXPECT_TRUE (test , condition );
ARGUMENTS test The test context object.
condition an arbitrary boolean expression. The test fails when this does not evaluate to true.
DESCRIPTION This and expectations of ... |
KUNIT_FAIL(9) | NAME KUNIT_FAIL - Always causes a test to fail when evaluated.
SYNOPSIS KUNIT_FAIL (test , fmt , ... );
ARGUMENTS test The test context object.
fmt an informational message to be printed when the assertion is made.
... string format arguments.
DESCRIPTION The opposite of KUNIT... |
KUNIT_FAIL_AND_ABORT(9) | NAME KUNIT_FAIL_AND_ABORT - Always causes a test to fail and abort when evaluated.
SYNOPSIS KUNIT_FAIL_AND_ABORT (test , fmt , ... );
ARGUMENTS test The test context object.
fmt an informational message to be printed when the assertion is made.
... string format arguments.
DESC... |
KUNIT_STATIC_STUB_REDIRECT(9) | NAME KUNIT_STATIC_STUB_REDIRECT - call a replacement 'static stub' if one exists
SYNOPSIS KUNIT_STATIC_STUB_REDIRECT (real_fn_name , args... );
ARGUMENTS real_fn_name The name of this function (as an identifier, not a string)
args All of the arguments passed to this function
DESCRIPTION This is a fu... |
KUNIT_SUCCEED(9) | NAME KUNIT_SUCCEED - A no-op expectation. Only exists for code clarity.
SYNOPSIS KUNIT_SUCCEED (test );
ARGUMENTS test The test context object.
DESCRIPTION The opposite of KUNIT_FAIL, it is an expectation that cannot fail. In other words, it does nothing and only exists for code clarity. See KUNIT_EXPECT_TRUE... |
Kernel API(9) | Kernel API(9) API Manual Kernel API(9)
operators Operators for use in TEST and TEST_F. ASSERT_* calls will stop test execution i... |
KickStart(9) | NAME KickStart - Perform hard reset of MPT adapter.
SYNOPSIS int KickStart (MPT_ADAPTER *ioc , int force , int sleepFlag );
ARGUMENTS ioc Pointer to MPT_ADAPTER structure
force Force hard reset
sleepFlag Specifies whether the process can sleep
DESCRIPTION This routine places MPT adapt... |
LAN8814_PAGE_AFE_PMA(9) | NAME LAN8814_PAGE_AFE_PMA - Selects Extended Page 1.
SYNOPSIS LAN8814_PAGE_AFE_PMA
DESCRIPTION This page appears to control the Analog Front-End (AFE) and Physical Medium Attachment (PMA) layers. It is used to access registers like LAN8814_PD_CONTROLS and LAN8814_LINK_QUALITY.
SEE ALSO Kernel file ./drivers/net/ph... |
LAN8814_PAGE_COMMON_REGS(9) | NAME LAN8814_PAGE_COMMON_REGS - Selects Extended Page 4.
SYNOPSIS LAN8814_PAGE_COMMON_REGS
DESCRIPTION This page contains device-common registers that affect the entire chip. It includes controls for chip-level resets, strap status, GPIO, QSGMII, the shared 1588 PTP block, and the PVT monitor.
SEE ALSO Kernel fil... |
LAN8814_PAGE_EEE(9) | NAME LAN8814_PAGE_EEE - Selects Extended Page 3.
SYNOPSIS LAN8814_PAGE_EEE
DESCRIPTION This page contains EEE registers
SEE ALSO Kernel file ./drivers/net/phy/micrel.c kszphy_get_sqi(9), LAN8814_PAGE_PCS(9), LAN8814_PAGE_AFE_PMA(9), LAN8814_PAGE_PCS_DIGITAL(9), LAN8814_PAGE_COMMON_REGS(9), LAN8814_PAGE_PORT_REG... |
LAN8814_PAGE_PCS(9) | NAME LAN8814_PAGE_PCS - Selects Extended Page 0.
SYNOPSIS LAN8814_PAGE_PCS
DESCRIPTION This page contains timers used for auto-negotiation, debug registers and register to configure fast link failure.
SEE ALSO Kernel file ./drivers/net/phy/micrel.c kszphy_get_sqi(9), LAN8814_PAGE_AFE_PMA(9), LAN8814_PAGE_PCS_DI... |
LAN8814_PAGE_PCS_DIGITAL(9) | NAME LAN8814_PAGE_PCS_DIGITAL - Selects Extended Page 2.
SYNOPSIS LAN8814_PAGE_PCS_DIGITAL
DESCRIPTION This page seems dedicated to the Physical Coding Sublayer (PCS) and other digital logic. It is used for MDI-X alignment (LAN8814_ALIGN_SWAP) and EEE state (LAN8814_EEE_STATE) in the LAN8814, and is repurposed for s... |
LAN8814_PAGE_PORT_REGS(9) | NAME LAN8814_PAGE_PORT_REGS - Selects Extended Page 5.
SYNOPSIS LAN8814_PAGE_PORT_REGS
DESCRIPTION This page contains port-specific registers that must be accessed on a per-port basis. It includes controls for port LEDs, QSGMII PCS, rate adaptation FIFOs, and the per-port 1588 TSU block.
SEE ALSO Kernel file ./dri... |
LAN8814_PAGE_POWER_REGS(9) | NAME LAN8814_PAGE_POWER_REGS - Selects Extended Page 28.
SYNOPSIS LAN8814_PAGE_POWER_REGS
DESCRIPTION This page contains analog control registers and power mode registers.
SEE ALSO Kernel file ./drivers/net/phy/micrel.c kszphy_get_sqi(9), LAN8814_PAGE_PCS(9), LAN8814_PAGE_AFE_PMA(9), LAN8814_PAGE_PCS_DIGITA... |
LAN8814_PAGE_SYSTEM_CTRL(9) | NAME LAN8814_PAGE_SYSTEM_CTRL - Selects Extended Page 31.
SYNOPSIS LAN8814_PAGE_SYSTEM_CTRL
DESCRIPTION This page appears to hold fundamental system or global controls. In the driver, it is used by the related LAN8804 to access the LAN8814_CLOCK_MANAGEMENT register.
SEE ALSO Kernel file ./drivers/net/phy/micrel.... |
LAST_ARG(9) | NAME LAST_ARG - Returns the last argument.
SYNOPSIS LAST_ARG (args... );
ARGUMENTS args arguments
DESCRIPTION This helper macro allows manipulation the argument list before passing it to the next level macro. Like COUNT_ARGS this macro works up to 12 arguments.
EXAMPLE #define foo X,Y,Z,Q #define bar ... |
LHASH.3ssl(3) | NAME LHASH, LHASH_OF, DEFINE_LHASH_OF_EX, DEFINE_LHASH_OF, OPENSSL_LH_COMPFUNC, OPENSSL_LH_HASHFUNC, OPENSSL_LH_DOALL_FUNC, LHASH_DOALL_ARG_FN_TYPE, IMPLEMENT_LHASH_HASH_FN, IMPLEMENT_LHASH_COMP_FN, lh_TYPE_new, lh_TYPE_free, lh_TYPE_flush, lh_TYPE_insert, lh_TYPE_delete, lh_TYPE_retrieve, lh_TYPE_doall, lh_TYPE_doall_... |
LHASH_DOALL_ARG_FN_TYPE.3ssl(3) | NAME LHASH, LHASH_OF, DEFINE_LHASH_OF_EX, DEFINE_LHASH_OF, OPENSSL_LH_COMPFUNC, OPENSSL_LH_HASHFUNC, OPENSSL_LH_DOALL_FUNC, LHASH_DOALL_ARG_FN_TYPE, IMPLEMENT_LHASH_HASH_FN, IMPLEMENT_LHASH_COMP_FN, lh_TYPE_new, lh_TYPE_free, lh_TYPE_flush, lh_TYPE_insert, lh_TYPE_delete, lh_TYPE_retrieve, lh_TYPE_doall, lh_TYPE_doall_... |
LHASH_OF.3ssl(3) | NAME LHASH, LHASH_OF, DEFINE_LHASH_OF_EX, DEFINE_LHASH_OF, OPENSSL_LH_COMPFUNC, OPENSSL_LH_HASHFUNC, OPENSSL_LH_DOALL_FUNC, LHASH_DOALL_ARG_FN_TYPE, IMPLEMENT_LHASH_HASH_FN, IMPLEMENT_LHASH_COMP_FN, lh_TYPE_new, lh_TYPE_free, lh_TYPE_flush, lh_TYPE_insert, lh_TYPE_delete, lh_TYPE_retrieve, lh_TYPE_doall, lh_TYPE_doall_... |
LIBETH_SQE_CHECK_PRIV(9) | NAME LIBETH_SQE_CHECK_PRIV - check the driver's private SQE data
SYNOPSIS LIBETH_SQE_CHECK_PRIV (p );
ARGUMENTS p type or name of the object the driver wants to fit into libeth_sqe
DESCRIPTION Make sure the driver's private data fits into libeth_sqe::priv. To be used right after its declaration.
SEE ALSO ... |
LIBETH_XDP_DEFINE_FINALIZE(9) | NAME LIBETH_XDP_DEFINE_FINALIZE - define a driver Rx NAPI poll finalize function
SYNOPSIS LIBETH_XDP_DEFINE_FINALIZE (name , flush , finalize );
ARGUMENTS name name of the function to define
flush driver callback to flush an “XDP_TX“ bulk
finalize driver callback to finalize an XDPSQ a... |
LIBETH_XDP_DEFINE_FLUSH_TX(9) | NAME LIBETH_XDP_DEFINE_FLUSH_TX - define a driver “XDP_TX“ bulk flush function
SYNOPSIS LIBETH_XDP_DEFINE_FLUSH_TX (name , prep , xmit );
ARGUMENTS name name of the function to define
prep driver callback to clean an XDPSQ
xmit driver callback to write a HW Tx descriptor
SEE ALSO... |
LIBETH_XDP_DEFINE_FLUSH_XMIT(9) | NAME LIBETH_XDP_DEFINE_FLUSH_XMIT - define a driver XDP xmit bulk flush function
SYNOPSIS LIBETH_XDP_DEFINE_FLUSH_XMIT (name , prep , xmit );
ARGUMENTS name name of the function to define
prep driver callback to clean an XDPSQ
xmit driver callback to write a HW Tx descriptor
SEE ... |
LIBETH_XDP_DEFINE_RUN(9) | NAME LIBETH_XDP_DEFINE_RUN - define a driver buffer process, run + pass function
SYNOPSIS LIBETH_XDP_DEFINE_RUN (name , run , flush , populate );
ARGUMENTS name name of the function to define
run name of the XDP prog run function to define
flush driver callback to flush an “XDP_TX... |
LIBETH_XDP_DEFINE_RUN_PASS(9) | NAME LIBETH_XDP_DEFINE_RUN_PASS - define a driver buffer process + pass function
SYNOPSIS LIBETH_XDP_DEFINE_RUN_PASS (name , run , populate );
ARGUMENTS name name of the function to define
run driver callback to run XDP program (above)
populate driver callback to fill an skb with HW ... |
LIBETH_XDP_DEFINE_RUN_PROG(9) | NAME LIBETH_XDP_DEFINE_RUN_PROG - define a driver XDP program run function
SYNOPSIS LIBETH_XDP_DEFINE_RUN_PROG (name , flush );
ARGUMENTS name name of the function to define
flush driver callback to flush an “XDP_TX“ bulk
SEE ALSO Kernel file ./include/net/libeth/xdp.h struct libeth_xdp_buff... |
LIBETH_XDP_DEFINE_TIMER(9) | NAME LIBETH_XDP_DEFINE_TIMER - define a driver XDPSQ cleanup timer callback
SYNOPSIS LIBETH_XDP_DEFINE_TIMER (name , poll );
ARGUMENTS name name of the function to define
poll Tx polling/completion function
SEE ALSO Kernel file ./include/net/libeth/xdp.h struct libeth_xdp_buff(9), __LIBETH... |
LIBETH_XDP_ONSTACK_BUFF(9) | NAME LIBETH_XDP_ONSTACK_BUFF - declare a &libeth_xdp_buff on the stack
SYNOPSIS LIBETH_XDP_ONSTACK_BUFF (name , ... );
ARGUMENTS name name of the variable to declare
... type or variable name of the driver-private data
SEE ALSO Kernel file ./include/net/libeth/xdp.h struct libeth_xdp_b... |
LIBETH_XDP_ONSTACK_BULK(9) | NAME LIBETH_XDP_ONSTACK_BULK - declare &libeth_xdp_tx_bulk on the stack
SYNOPSIS LIBETH_XDP_ONSTACK_BULK (bq );
ARGUMENTS bq name of the variable to declare
DESCRIPTION Helper to declare a bulk on the stack with a compiler hint that it should not be initialized automatically (with `CONFIG_INIT_STACK_ALL_*`)... |
LIBETH_XSK_DEFINE_FINALIZE(9) | NAME LIBETH_XSK_DEFINE_FINALIZE - define a driver XSk NAPI poll finalize function
SYNOPSIS LIBETH_XSK_DEFINE_FINALIZE (name , flush , finalize );
ARGUMENTS name name of the function to define
flush driver callback to flush an XSk “XDP_TX“ bulk
finalize driver callback to finalize an XD... |
LIBETH_XSK_DEFINE_FLUSH_TX(9) | NAME LIBETH_XSK_DEFINE_FLUSH_TX - define a driver XSk “XDP_TX“ flush function
SYNOPSIS LIBETH_XSK_DEFINE_FLUSH_TX (name , prep , xmit );
ARGUMENTS name name of the function to define
prep driver callback to clean an XDPSQ
xmit driver callback to write a HW Tx descriptor
SEE ALSO ... |
LIBETH_XSK_DEFINE_RUN(9) | NAME LIBETH_XSK_DEFINE_RUN - define a driver buffer process, run + pass function
SYNOPSIS LIBETH_XSK_DEFINE_RUN (name , run , flush , populate );
ARGUMENTS name name of the function to define
run name of the XDP prog run function to define
flush driver callback to flush an XSk “XD... |
LIBETH_XSK_DEFINE_RUN_PASS(9) | NAME LIBETH_XSK_DEFINE_RUN_PASS - define a driver buffer process + pass function
SYNOPSIS LIBETH_XSK_DEFINE_RUN_PASS (name , run , populate );
ARGUMENTS name name of the function to define
run driver callback to run XDP program (above)
populate driver callback to fill an skb with HW ... |
LIBETH_XSK_DEFINE_RUN_PROG(9) | NAME LIBETH_XSK_DEFINE_RUN_PROG - define a driver XDP program run function
SYNOPSIS LIBETH_XSK_DEFINE_RUN_PROG (name , flush );
ARGUMENTS name name of the function to define
flush driver callback to flush an XSk “XDP_TX“ bulk
SEE ALSO Kernel file ./include/net/libeth/xsk.h libeth_xsk_tx... |
LINES.3x(3) | NAME bool, chtype, cchar_t, attr_t, SCREEN, WINDOW, TRUE, FALSE, ERR, OK, curscr, newscr, stdscr, COLORS, COLOR_PAIRS, COLS, LINES, ESCDELAY, TABSIZE - curses data types, constants, and global variables
SYNOPSIS #include <ncursesw/curses.h>
/* data types */
typedef /* ... */ bool;
typedef /* ... ... |
LISTEN(7) | NAME LISTEN - listen for a notification
SYNOPSIS LISTEN channel
DESCRIPTION LISTEN registers the current session as a listener on the notification channel named channel. If the current session is already registered as a listener for this notification channel, nothing is done.
Whenever the command NOTIFY chann... |
LIST_EMPTY(3) | NAME LIST_EMPTY, LIST_ENTRY, LIST_FIRST, LIST_FOREACH, LIST_HEAD, LIST_HEAD_INITIALIZER, LIST_INIT, LIST_INSERT_AFTER, LIST_INSERT_BEFORE, LIST_INSERT_HEAD, LIST_NEXT, LIST_REMOVE - implementation of a doubly linked list
LIBRARY Standard C library (libc, -lc)
SYNOPSIS #include <sys/queue.h>
LIST_ENTRY(TYPE);
... |
LIST_ENTRY(3) | NAME LIST_EMPTY, LIST_ENTRY, LIST_FIRST, LIST_FOREACH, LIST_HEAD, LIST_HEAD_INITIALIZER, LIST_INIT, LIST_INSERT_AFTER, LIST_INSERT_BEFORE, LIST_INSERT_HEAD, LIST_NEXT, LIST_REMOVE - implementation of a doubly linked list
LIBRARY Standard C library (libc, -lc)
SYNOPSIS #include <sys/queue.h>
LIST_ENTRY(TYPE);
... |
LIST_FIRST(3) | NAME LIST_EMPTY, LIST_ENTRY, LIST_FIRST, LIST_FOREACH, LIST_HEAD, LIST_HEAD_INITIALIZER, LIST_INIT, LIST_INSERT_AFTER, LIST_INSERT_BEFORE, LIST_INSERT_HEAD, LIST_NEXT, LIST_REMOVE - implementation of a doubly linked list
LIBRARY Standard C library (libc, -lc)
SYNOPSIS #include <sys/queue.h>
LIST_ENTRY(TYPE);
... |
LIST_FOREACH(3) | NAME LIST_EMPTY, LIST_ENTRY, LIST_FIRST, LIST_FOREACH, LIST_HEAD, LIST_HEAD_INITIALIZER, LIST_INIT, LIST_INSERT_AFTER, LIST_INSERT_BEFORE, LIST_INSERT_HEAD, LIST_NEXT, LIST_REMOVE - implementation of a doubly linked list
LIBRARY Standard C library (libc, -lc)
SYNOPSIS #include <sys/queue.h>
LIST_ENTRY(... |
LIST_HEAD(3) | NAME LIST_EMPTY, LIST_ENTRY, LIST_FIRST, LIST_FOREACH, LIST_HEAD, LIST_HEAD_INITIALIZER, LIST_INIT, LIST_INSERT_AFTER, LIST_INSERT_BEFORE, LIST_INSERT_HEAD, LIST_NEXT, LIST_REMOVE - implementation of a doubly linked list
LIBRARY Standard C library (libc, -lc)
SYNOPSIS #include <sys/queue.h>
LIST_ENTRY(TYPE);
... |
LIST_HEAD(9) | NAME LIST_HEAD - definition of a &struct list_head with initialization values
SYNOPSIS LIST_HEAD (name );
ARGUMENTS name name of the list_head
SEE ALSO Kernel file ./include/linux/list.h LIST_HEAD_INIT(9), INIT_LIST_HEAD(9), list_add(9), list_add_tail(9), list_del(9), list_replace(9), list_replace_init(9), l... |
LIST_HEAD_INIT(9) | NAME LIST_HEAD_INIT - initialize a &struct list_head's links to point to itself
SYNOPSIS LIST_HEAD_INIT (name );
ARGUMENTS name name of the list_head
SEE ALSO Kernel file ./include/linux/list.h LIST_HEAD(9), INIT_LIST_HEAD(9), list_add(9), list_add_tail(9), list_del(9), list_replace(9), list_replace_ini... |
LIST_HEAD_INITIALIZER(3) | NAME LIST_EMPTY, LIST_ENTRY, LIST_FIRST, LIST_FOREACH, LIST_HEAD, LIST_HEAD_INITIALIZER, LIST_INIT, LIST_INSERT_AFTER, LIST_INSERT_BEFORE, LIST_INSERT_HEAD, LIST_NEXT, LIST_REMOVE - implementation of a doubly linked list
LIBRARY Standard C library (libc, -lc)
SYNOPSIS #include <sys/queue.h>
LIST_ENTRY(TYPE);
... |
LIST_INIT(3) | NAME LIST_EMPTY, LIST_ENTRY, LIST_FIRST, LIST_FOREACH, LIST_HEAD, LIST_HEAD_INITIALIZER, LIST_INIT, LIST_INSERT_AFTER, LIST_INSERT_BEFORE, LIST_INSERT_HEAD, LIST_NEXT, LIST_REMOVE - implementation of a doubly linked list
LIBRARY Standard C library (libc, -lc)
SYNOPSIS #include <sys/queue.h>
LIST_ENTRY(TYPE);
... |
LIST_INSERT_AFTER(3) | NAME LIST_EMPTY, LIST_ENTRY, LIST_FIRST, LIST_FOREACH, LIST_HEAD, LIST_HEAD_INITIALIZER, LIST_INIT, LIST_INSERT_AFTER, LIST_INSERT_BEFORE, LIST_INSERT_HEAD, LIST_NEXT, LIST_REMOVE - implementation of a doubly linked list
LIBRARY Standard C library (libc, -lc)
SYNOPSIS #include <sys/queue.h>
LIST_ENTRY(TYPE);
... |
LIST_INSERT_BEFORE(3) | NAME LIST_EMPTY, LIST_ENTRY, LIST_FIRST, LIST_FOREACH, LIST_HEAD, LIST_HEAD_INITIALIZER, LIST_INIT, LIST_INSERT_AFTER, LIST_INSERT_BEFORE, LIST_INSERT_HEAD, LIST_NEXT, LIST_REMOVE - implementation of a doubly linked list
LIBRARY Standard C library (libc, -lc)
SYNOPSIS #include <sys/queue.h>
LIST_ENTRY(TYPE);
... |
LIST_INSERT_HEAD(3) | NAME LIST_EMPTY, LIST_ENTRY, LIST_FIRST, LIST_FOREACH, LIST_HEAD, LIST_HEAD_INITIALIZER, LIST_INIT, LIST_INSERT_AFTER, LIST_INSERT_BEFORE, LIST_INSERT_HEAD, LIST_NEXT, LIST_REMOVE - implementation of a doubly linked list
LIBRARY Standard C library (libc, -lc)
SYNOPSIS #include <sys/queue.h>
LIST_ENTRY(TYPE);
... |
LIST_NEXT(3) | NAME LIST_EMPTY, LIST_ENTRY, LIST_FIRST, LIST_FOREACH, LIST_HEAD, LIST_HEAD_INITIALIZER, LIST_INIT, LIST_INSERT_AFTER, LIST_INSERT_BEFORE, LIST_INSERT_HEAD, LIST_NEXT, LIST_REMOVE - implementation of a doubly linked list
LIBRARY Standard C library (libc, -lc)
SYNOPSIS #include <sys/queue.h>
LIST_ENTRY(TYPE);
... |
LIST_REMOVE(3) | NAME LIST_EMPTY, LIST_ENTRY, LIST_FIRST, LIST_FOREACH, LIST_HEAD, LIST_HEAD_INITIALIZER, LIST_INIT, LIST_INSERT_AFTER, LIST_INSERT_BEFORE, LIST_INSERT_HEAD, LIST_NEXT, LIST_REMOVE - implementation of a doubly linked list
LIBRARY Standard C library (libc, -lc)
SYNOPSIS #include <sys/queue.h>
LIST_ENTRY(TYPE);
... |
LMS.7ssl(7) | NAME EVP_PKEY-LMS, EVP_KEYMGMT-LMS, LMS - EVP_PKEY Leighton-Micali Signature (LMS) keytype and algorithm support
DESCRIPTION The LMS keytype is implemented in OpenSSL's default and FIPS providers. The OpenSSL providers only support LMS signature verification, as this is a [SP 800-208](https://csrc.nist.gov/pubs/sp/80... |
LOAD(7) | NAME LOAD - load a shared library file
SYNOPSIS LOAD 'filename'
DESCRIPTION This command loads a shared library file into the PostgreSQL server's address space. If the file has been loaded already, the command does nothing. Shared library files that contain C functions are automatically loaded whenever one of their f... |
LOADPIN_IOC_SET_TRUSTED_VERITY_DIGESTS(9) | NAME LOADPIN_IOC_SET_TRUSTED_VERITY_DIGESTS - Set up the root digests of verity devices that loadpin should trust.
SYNOPSIS LOADPIN_IOC_SET_TRUSTED_VERITY_DIGESTS
DESCRIPTION Takes a file descriptor from which to read the root digests of trusted verity devices. The file is expected to contain a list of digests in A... |
LOCK(7) | NAME LOCK - lock a table
SYNOPSIS LOCK [ TABLE ] [ ONLY ] name [ * ] [, ...] [ IN lockmode MODE ] [ NOWAIT ]
where lockmode is one of:
ACCESS SHARE | ROW SHARE | ROW EXCLUSIVE | SHARE UPDATE EXCLUSIVE
| SHARE | SHARE ROW EXCLUSIVE | EXCLUSIVE | ACCESS EXCLUSIVE
DESCRIPTION LOCK TABLE ob... |
LOWPAN_NHC(9) | NAME LOWPAN_NHC - helper macro to generate nh id fields and lowpan_nhc struct
SYNOPSIS LOWPAN_NHC (__nhc , _name , _nexthdr , _hdrlen , _id , _idmask , _uncompress , _compress );
ARGUMENTS __nhc variable name of the lowpan_nhc struct.
_name const char * of common header compression name.
_... |
LZ4_compressBound(9) | NAME LZ4_compressBound - Max. output size in worst case szenarios
SYNOPSIS int LZ4_compressBound (size_t isize );
ARGUMENTS isize Size of the input data
RETURN Max. size LZ4 may output in a "worst case" szenario (data not compressible)
SEE ALSO Kernel file ./include/linux/lz4.h LZ4_compress_default(9), LZ... |
LZ4_compress_HC(9) | NAME LZ4_compress_HC - Compress data from `src` into `dst`, using HC algorithm
SYNOPSIS int LZ4_compress_HC (const char *src , char *dst , int srcSize , int dstCapacity , int compressionLevel , void *wrkmem );
ARGUMENTS src source address of the original data
dst output buffer address of the c... |
LZ4_compress_HC_continue(9) | NAME LZ4_compress_HC_continue - Compress 'src' using data from previously compressed blocks as a dictionary using the HC algorithm
SYNOPSIS int LZ4_compress_HC_continue (LZ4_streamHC_t *streamHCPtr , const char *src , char *dst , int srcSize , int maxDstSize );
ARGUMENTS streamHCPtr Pointer to the previous 'LZ4_strea... |
LZ4_compress_default(9) | NAME LZ4_compress_default - Compress data from source to dest
SYNOPSIS int LZ4_compress_default (const char *source , char *dest , int inputSize , int maxOutputSize , void *wrkmem );
ARGUMENTS source source address of the original data
dest output buffer address of the compressed data
inpu... |
LZ4_compress_destSize(9) | NAME LZ4_compress_destSize - Compress as much data as possible from source to dest
SYNOPSIS int LZ4_compress_destSize (const char *source , char *dest , int *sourceSizePtr , int targetDestSize , void *wrkmem );
ARGUMENTS source source address of the original data
dest output buffer address of the ... |
LZ4_compress_fast(9) | NAME LZ4_compress_fast - As LZ4_compress_default providing an acceleration param
SYNOPSIS int LZ4_compress_fast (const char *source , char *dest , int inputSize , int maxOutputSize , int acceleration , void *wrkmem );
ARGUMENTS source source address of the original data
dest output buffer address ... |
LZ4_compress_fast_continue(9) | NAME LZ4_compress_fast_continue - Compress 'src' using data from previously compressed blocks as a dictionary
SYNOPSIS int LZ4_compress_fast_continue (LZ4_stream_t *streamPtr , const char *src , char *dst , int srcSize , int maxDstSize , int acceleration );
ARGUMENTS streamPtr Pointer to the previous 'LZ4_stream_t'... |
LZ4_decompress_fast(9) | NAME LZ4_decompress_fast - Decompresses data from 'source' into 'dest'
SYNOPSIS int LZ4_decompress_fast (const char *source , char *dest , int originalSize );
ARGUMENTS source source address of the compressed data
dest output buffer address of the uncompressed data which must be already allocated ... |
LZ4_decompress_fast_continue(9) | NAME LZ4_decompress_fast_continue - Decompress blocks in streaming mode
SYNOPSIS int LZ4_decompress_fast_continue (LZ4_streamDecode_t *LZ4_streamDecode , const char *source , char *dest , int originalSize );
ARGUMENTS LZ4_streamDecode the 'LZ4_streamDecode_t' structure
source source address of the compre... |
LZ4_decompress_fast_usingDict(9) | NAME LZ4_decompress_fast_usingDict - Same as LZ4_setStreamDecode() followed by LZ4_decompress_fast_continue()
SYNOPSIS int LZ4_decompress_fast_usingDict (const char *source , char *dest , int originalSize , const char *dictStart , int dictSize );
ARGUMENTS source source address of the compressed data
des... |
LZ4_decompress_safe(9) | NAME LZ4_decompress_safe - Decompression protected against buffer overflow
SYNOPSIS int LZ4_decompress_safe (const char *source , char *dest , int compressedSize , int maxDecompressedSize );
ARGUMENTS source source address of the compressed data
dest output buffer address of the uncompressed data ... |
LZ4_decompress_safe_continue(9) | NAME LZ4_decompress_safe_continue - Decompress blocks in streaming mode
SYNOPSIS int LZ4_decompress_safe_continue (LZ4_streamDecode_t *LZ4_streamDecode , const char *source , char *dest , int compressedSize , int maxDecompressedSize );
ARGUMENTS LZ4_streamDecode the 'LZ4_streamDecode_t' structure
source ... |
LZ4_decompress_safe_partial(9) | NAME LZ4_decompress_safe_partial - Decompress a block of size 'compressedSize' at position 'source' into buffer 'dest'
SYNOPSIS int LZ4_decompress_safe_partial (const char *source , char *dest , int compressedSize , int targetOutputSize , int maxDecompressedSize );
ARGUMENTS source source address of the compress... |
LZ4_decompress_safe_usingDict(9) | NAME LZ4_decompress_safe_usingDict - Same as LZ4_setStreamDecode() followed by LZ4_decompress_safe_continue()
SYNOPSIS int LZ4_decompress_safe_usingDict (const char *source , char *dest , int compressedSize , int maxDecompressedSize , const char *dictStart , int dictSize );
ARGUMENTS source source address of the... |
LZ4_loadDict(9) | NAME LZ4_loadDict - Load a static dictionary into LZ4_stream
SYNOPSIS int LZ4_loadDict (LZ4_stream_t *streamPtr , const char *dictionary , int dictSize );
ARGUMENTS streamPtr pointer to the LZ4_stream_t
dictionary dictionary to load
dictSize size of dictionary
DESCRIPTION Use this function to l... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.