From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 25F6C21FF47 for ; Mon, 16 Feb 2026 12:59:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771246794; cv=none; b=bcOVumfSHdPTgw720tnjNkZZcPpvDB1BW2uEihCGX0TOSY2usFNBDa8LgYY8ZMhh7tlEUPSx8hrgbvbdyeFpQRsx40UhAJa/fGyOh5ufSAX3ZROip1xgCvl7Rkn/FpFR8o2PLI7HCtdhGDJO3yoLJv3sG0ILYaYJt7r66aqT8pg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771246794; c=relaxed/simple; bh=XTSXpUaNT8kV0Iio9lfnvsZxSIMODYj1r/F/mFweMmk=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=QyxmNGfshRQZMl614PAm65SvfuD/xI2WqYYvg8rgLeYQP7BfJVY2Uu4/IyM+134+YyRHToMYCdlZuOjdbxlOsuw7l+IGcBVoYHvAmom+cQvHZ0y1b+dw5Z5b6hVIFSeQ2qgD7DF0zFCftbaDHp/t2o7+qvzyJle+jQkTkH2u45w= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=VdBAn+GZ; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="VdBAn+GZ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 685C3C116C6; Mon, 16 Feb 2026 12:59:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1771246793; bh=XTSXpUaNT8kV0Iio9lfnvsZxSIMODYj1r/F/mFweMmk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=VdBAn+GZoY86y/uvjobTk+xIte0YerJYNxBIMWj72xs+aSzxuuXURECuDRCtlCLIj +/4g9xBt5+BvrMy3TT8naaCfuObta6L936pWT4Y4yaXJFJ0m5oNuJpj4Ms7ggUJpZZ T6w67EjQSPpEUJhypwVqYBXTNd0ubjUCw0zw5lofFhU08G5repaePND1ywypweHLQF SBnmY0YKArO9BzbzWG9XZ8xzXUmd4SUDKIODhHqT0ovp1m8OB9RBu8rfJEr8KQRD3P cfehWdg0m+U3iMIXO6AMlL0xxHFn0RWgmJAS0ma929oXCVbVTgyo0+HLeFJf1I+L7e nsTLOEXTSRUnQ== Date: Mon, 16 Feb 2026 12:59:49 +0000 From: Simon Horman To: Kohei Enju Cc: intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org, Tony Nguyen , Przemek Kitszel , Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Sasha Neftin , kohei.enju@gmail.com Subject: Re: [PATCH v1 iwl-net] igc: fix missing update of skb->tail in igc_xmit_frame() Message-ID: References: <20260214194636.295647-1-kohei@enjuk.jp> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260214194636.295647-1-kohei@enjuk.jp> On Sat, Feb 14, 2026 at 07:46:32PM +0000, Kohei Enju wrote: > igc_xmit_frame() misses updating skb->tail when the packet size is > shorter than the minimum one. > Use skb_put_padto() in alignment with other Intel Ethernet drivers. > > Fixes: 0507ef8a0372 ("igc: Add transmit and receive fastpath and interrupt handlers") > Signed-off-by: Kohei Enju Reviewed-by: Simon Horman