Lines Matching +full:kernel +full:- +full:policy
1 .. SPDX-License-Identifier: BSD-3-Clause
6 Netlink notes for kernel developers
13 ---------------
21 -------------
31 ---------------
44 ----------
48 from the kernel (for example for logging purposes).
51 ------------------------
54 them - make sure to report dump inconsistency with ``NLM_F_DUMP_INTR``.
62 to the kernel space.
65 -------
67 kernel-policy subsection
70 Defines whether the kernel validation policy is ``global`` i.e. the same for all
71 operations of the family, defined for each operation individually - ``per-op``,
72 or separately for each operation and operation type (do vs dump) - ``split``.
73 New families should use ``per-op`` (default) to be able to narrow down the
77 ------
79 Documentation for the ``checks`` sub-sections of attribute specs.
81 unterminated-ok
84 Accept strings without the null-termination (for legacy families only).
85 Switches from the ``NLA_NUL_STRING`` to ``NLA_STRING`` policy type.
87 max-len
92 null character is not counted towards ``max-len``.
96 (i.e. specify ``max-len: CONST - 1``) to reserve space for the terminating
99 min-len
102 Similar to ``max-len`` but defines minimum length.