This is a note to let you know that I've just added the patch titled i40e: fix build warning in ice_fltr_add_mac_to_list() to the 5.15-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: i40e-fix-build-warning-in-ice_fltr_add_mac_to_list.patch and it can be found in the queue-5.15 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From foo@baz Fri Jun 9 12:43:39 PM CEST 2023 Date: Fri, 09 Jun 2023 12:43:39 +0200 To: Greg KH <gregkh@xxxxxxxxxxxxxxxxxxx> From: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Subject: i40e: fix build warning in ice_fltr_add_mac_to_list() Not upstream as this was fixed in a much larger change in commit 5e24d5984c80 ("ice: Use int for ice_status") The function ice_fltr_add_mac_to_list() has the wrong prototype match from the .h file to the .c declaration, so fix it up, otherwise gcc-13 complains (rightfully) that the type is incorrect. Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/net/ethernet/intel/ice/ice_fltr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/net/ethernet/intel/ice/ice_fltr.c +++ b/drivers/net/ethernet/intel/ice/ice_fltr.c @@ -128,7 +128,7 @@ void ice_fltr_remove_all(struct ice_vsi * @mac: MAC address to add * @action: filter action */ -int +enum ice_status ice_fltr_add_mac_to_list(struct ice_vsi *vsi, struct list_head *list, const u8 *mac, enum ice_sw_fwd_act_type action) { Patches currently in stable-queue which might be from gregkh@xxxxxxxxxxxxxxxxxxx are queue-5.15/i40e-remove-string-printing-for-i40e_status.patch queue-5.15/remove-the-sx8-block-driver.patch queue-5.15/i40e-use-int-for-i40e_status.patch queue-5.15/bonding-gcc13-synchronize-bond_-a-t-lb_xmit-types.patch queue-5.15/i40e-fix-build-warning-in-ice_fltr_add_mac_to_list.patch queue-5.15/gcc-plugins-reorganize-gimple-includes-for-gcc-13.patch queue-5.15/sfc-gcc13-synchronize-ef100_enqueue_skb-s-return-type.patch queue-5.15/ata-ahci-fix-enum-constants-for-gcc-13.patch