mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Hook in handling of sub-messages, for now treat them as ignored attrs. Reviewed-by: Donald Hunter <donald.hunter@gmail.com> Link: https://patch.msgid.link/20250515231650.1325372-5-kuba@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
9 lines
439 B
Python
9 lines
439 B
Python
# SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
|
|
|
|
from .nlspec import SpecAttr, SpecAttrSet, SpecEnumEntry, SpecEnumSet, \
|
|
SpecFamily, SpecOperation, SpecSubMessage, SpecSubMessageFormat
|
|
from .ynl import YnlFamily, Netlink, NlError
|
|
|
|
__all__ = ["SpecAttr", "SpecAttrSet", "SpecEnumEntry", "SpecEnumSet",
|
|
"SpecFamily", "SpecOperation", "SpecSubMessage", "SpecSubMessageFormat",
|
|
"YnlFamily", "Netlink", "NlError"]
|