From 623cd13b165486afaa2df706d49209392f3764ca Mon Sep 17 00:00:00 2001 From: Jakub Kicinski Date: Wed, 4 Jan 2023 20:05:20 -0800 Subject: devlink: split out netlink code Move out the netlink glue into a separate file. Leave the ops in the old file because we'd have to export a ton of functions. Going forward we should switch to split ops which will let us to put the new ops in the netlink.c file. Pure code move, no functional changes. Reviewed-by: Jacob Keller Reviewed-by: Jiri Pirko Signed-off-by: Jakub Kicinski --- net/devlink/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'net/devlink/Makefile') diff --git a/net/devlink/Makefile b/net/devlink/Makefile index aff7da844e5d..1b1eeac59cb3 100644 --- a/net/devlink/Makefile +++ b/net/devlink/Makefile @@ -1,3 +1,3 @@ # SPDX-License-Identifier: GPL-2.0 -obj-y := leftover.o core.o +obj-y := leftover.o core.o netlink.o -- cgit