All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH mptcp-next v2 12/14] mptcp: pm: move generic PM helpers to pm.c
@ 2025-03-02 11:07 kernel test robot
  0 siblings, 0 replies; 2+ messages in thread
From: kernel test robot @ 2025-03-02 11:07 UTC (permalink / raw)
  To: oe-kbuild; +Cc: lkp, Dan Carpenter

BCC: lkp@intel.com
CC: oe-kbuild-all@lists.linux.dev
In-Reply-To: <20250228-mptcp-pm-reorg-code-v2-12-fa8b2542b7a5@kernel.org>
References: <20250228-mptcp-pm-reorg-code-v2-12-fa8b2542b7a5@kernel.org>
TO: "Matthieu Baerts (NGI0)" <matttbe@kernel.org>
TO: mptcp@lists.linux.dev
CC: Geliang Tang <geliang@kernel.org>
CC: "Matthieu Baerts (NGI0)" <matttbe@kernel.org>

Hi Matthieu,

kernel test robot noticed the following build warnings:

[auto build test WARNING on 6b32949274eb9e32fe867ba9a8f8cb98587ecf36]

url:    https://github.com/intel-lab-lkp/linux/commits/Matthieu-Baerts-NGI0/mptcp-pm-remove-_nl-from-mptcp_pm_nl_addr_send_ack/20250228-213416
base:   6b32949274eb9e32fe867ba9a8f8cb98587ecf36
patch link:    https://lore.kernel.org/r/20250228-mptcp-pm-reorg-code-v2-12-fa8b2542b7a5%40kernel.org
patch subject: [PATCH mptcp-next v2 12/14] mptcp: pm: move generic PM helpers to pm.c
:::::: branch date: 2 days ago
:::::: commit date: 2 days ago
config: sparc-randconfig-r071-20250302 (https://download.01.org/0day-ci/archive/20250302/202503021814.nHwMzDOP-lkp@intel.com/config)
compiler: sparc-linux-gcc (GCC) 14.2.0

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Reported-by: Dan Carpenter <error27@gmail.com>
| Closes: https://lore.kernel.org/r/202503021814.nHwMzDOP-lkp@intel.com/

smatch warnings:
net/mptcp/pm.c:156 mptcp_remove_anno_list_by_saddr() warn: returning freed memory 'entry' (line 155)

vim +/entry +156 net/mptcp/pm.c

2be048f2cf3912 Matthieu Baerts (NGI0  2025-02-28  148) 
2be048f2cf3912 Matthieu Baerts (NGI0  2025-02-28  149) bool mptcp_remove_anno_list_by_saddr(struct mptcp_sock *msk,
2be048f2cf3912 Matthieu Baerts (NGI0  2025-02-28  150) 				     const struct mptcp_addr_info *addr)
2be048f2cf3912 Matthieu Baerts (NGI0  2025-02-28  151) {
2be048f2cf3912 Matthieu Baerts (NGI0  2025-02-28  152) 	struct mptcp_pm_add_entry *entry;
2be048f2cf3912 Matthieu Baerts (NGI0  2025-02-28  153) 
2be048f2cf3912 Matthieu Baerts (NGI0  2025-02-28  154) 	entry = mptcp_pm_del_add_timer(msk, addr, false);
2be048f2cf3912 Matthieu Baerts (NGI0  2025-02-28 @155) 	kfree(entry);
2be048f2cf3912 Matthieu Baerts (NGI0  2025-02-28 @156) 	return entry;
2be048f2cf3912 Matthieu Baerts (NGI0  2025-02-28  157) }
2be048f2cf3912 Matthieu Baerts (NGI0  2025-02-28  158) 

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

^ permalink raw reply	[flat|nested] 2+ messages in thread
* [PATCH mptcp-next v2 00/14] mptcp: pm: code reorganisation
@ 2025-02-28 13:31 Matthieu Baerts (NGI0)
  2025-02-28 13:31 ` [PATCH mptcp-next v2 12/14] mptcp: pm: move generic PM helpers to pm.c Matthieu Baerts (NGI0)
  0 siblings, 1 reply; 2+ messages in thread
From: Matthieu Baerts (NGI0) @ 2025-02-28 13:31 UTC (permalink / raw)
  To: mptcp; +Cc: Geliang Tang, Matthieu Baerts (NGI0)

I have been thinking about that during the past couple of months, but
now, with the recent modifications done by Geliang, and the associated
reviews, I really think it is time to reorganise the code around the
path-managers to avoid confusions, and a mix of code used in different
conditions.

I hope this will not cause too many issues with the in-progress patches.
I tried only to move the code around, and minimise the functions
renaming. Then, to switch to the new code, it might be easier to simply
copy your modified code from the old place to the new one. In other
words, duplicate the net/mptcp directory, then do a rebase, resolve the
conflicts with 'git restore --ours', then reapply the modifications by
copying your old code to the new place. If it is too difficult, please
let me know.

Before this series, the PM code was dispersed in different places:

- pm.c had common code for all PMs

- pm_netlink.c was supposed to be about the in-kernel PM, but also had
  exported common helpers, callbacks used by the different PMs, NL
  events for PM userspace daemon, etc. quite confusing.

- pm_userspace.c had userspace PM only code, but using specific
  in-kernel PM helpers

To clarify the code, a reorganisation is suggested here, only by moving
code around, and small helper renaming to avoid confusions:

- pm_netlink.c now only contains common PM Netlink code:
  - PM events: this code was already there
  - shared helpers around Netlink code that were already there as well
  - shared Netlink commands code from pm.c

- pm_kernel.c now contains only code that is specific to the in-kernel
  PM. Now all functions are either called from:
  - pm.c: events coming from the core, when this PM is being used
  - pm_netlink.c: for shared Netlink commands
  - mptcp_pm_gen.c: for Netlink commands specific to the in-kernel PM
  - sockopt.c: for the exported counters per netns

- pm.c got many code from pm_netlink.c:
  - helpers used from both PMs and not linked to Netlink
  - callbacks used by different PMs, e.g. ADD_ADDR management
  - some helpers have been renamed to remove the '_nl' prefix, and they
    have been marked as 'static'.

- protocol.h has been updated accordingly:
  - some helpers no longer need to be exported
  - new ones needed to be exported: they have been prefixed if needed.

The code around the PM is now less confusing, which should help for the
maintenance in the long term.

This will certainly impact future backports, but because other cleanups
have already done recently, and more are coming to ease the addition of
a new path-manager controlled with BPF (struct_ops), doing that now
seems to be a good time. Also, many issues around the PM have been fixed
a few months ago while increasing the code coverage in the selftests, so
such big reorganisation can be done with more confidence now.

Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
---
Changes in v2:
- Addressing Geliang's comments
- The renaming of common helpers have been done in dedicated patches
- Some helpers have been kept where they were in pm.c, except one now in
  a dedicated patch.
- The last patch has been split in smaller chunks, only moving code from
  one file to another to help with the reviews.
- Link to v1: https://lore.kernel.org/r/20250227-mptcp-pm-reorg-code-v1-0-cb4677096709@kernel.org

---
Matthieu Baerts (NGI0) (14):
      mptcp: pm: remove '_nl' from mptcp_pm_nl_addr_send_ack
      mptcp: pm: remove '_nl' from mptcp_pm_nl_mp_prio_send_ack
      mptcp: pm: remove '_nl' from mptcp_pm_nl_work
      mptcp: pm: remove '_nl' from mptcp_pm_nl_rm_addr_received
      mptcp: pm: remove '_nl' from mptcp_pm_nl_subflow_chk_stale()
      mptcp: pm: remove '_nl' from mptcp_pm_nl_is_init_remote_addr
      mptcp: pm: kernel: add '_pm' to mptcp_nl_set_flags
      mptcp: pm: avoid calling PM specific code from core
      mptcp: pm: worker: split in-kernel and common tasks
      mptcp: pm: export mptcp_remote_address
      mptcp: pm: move generic helper at the top
      mptcp: pm: move generic PM helpers to pm.c
      mptcp: pm: split in-kernel PM specific code
      mptcp: pm: move Netlink PM helpers to pm_netlink.c

 net/mptcp/Makefile       |    2 +-
 net/mptcp/pm.c           |  644 +++++++++++----
 net/mptcp/pm_kernel.c    | 1410 +++++++++++++++++++++++++++++++++
 net/mptcp/pm_netlink.c   | 1934 ++--------------------------------------------
 net/mptcp/pm_userspace.c |   11 +-
 net/mptcp/protocol.c     |    5 +-
 net/mptcp/protocol.h     |   36 +-
 7 files changed, 2029 insertions(+), 2013 deletions(-)
---
base-commit: 6b32949274eb9e32fe867ba9a8f8cb98587ecf36
change-id: 20250227-mptcp-pm-reorg-code-13227530bd05

Best regards,
-- 
Matthieu Baerts (NGI0) <matttbe@kernel.org>


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-03-02 11:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-02 11:07 [PATCH mptcp-next v2 12/14] mptcp: pm: move generic PM helpers to pm.c kernel test robot
  -- strict thread matches above, loose matches on Subject: below --
2025-02-28 13:31 [PATCH mptcp-next v2 00/14] mptcp: pm: code reorganisation Matthieu Baerts (NGI0)
2025-02-28 13:31 ` [PATCH mptcp-next v2 12/14] mptcp: pm: move generic PM helpers to pm.c Matthieu Baerts (NGI0)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.