From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtpout-04.galae.net (smtpout-04.galae.net [185.171.202.116]) (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 DC1C82F9985 for ; Wed, 7 Jan 2026 09:58:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.171.202.116 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767779932; cv=none; b=lZg/rsCLP2UvDNY4HPKzOtxZm+57dDpAe3cyI8KbrYxCaPLkaF9r1g8PQQrMU/o7zPUdvOu9AdzqFN5Q03jpUBw9mwSaXKfOkOluCYfgRJ2uuK/B4tdk20CaReRR4uWgiI51iO3yaYGoMYXAnWXVkJEluxf0k+EcXakX+1uwsKs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767779932; c=relaxed/simple; bh=EtZ82ALavMPEoWy9HIhTbm4rA+XrdAc5HNg2q8pTQTI=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=VNS7kshrmoyjaSwnSQ5e1//wYsgx7zOzS1i7qbspcJbzF8vdJODiApSz0s/jXadFE8RxpZqHaYi+XNazWEOIAS8GlGA0Npc2teXl6JnSLFv/CxRrdnNAiSc5Y5tgNmfOkhd3getFdKfmEvAqaYorrkEbShKzd9aJOAFrVQF7UuY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=BEHEs6r1; arc=none smtp.client-ip=185.171.202.116 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="BEHEs6r1" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-04.galae.net (Postfix) with ESMTPS id 3CF24C1EC91; Wed, 7 Jan 2026 09:58:23 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id 57452606F8; Wed, 7 Jan 2026 09:58:49 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 2C1C8103C870F; Wed, 7 Jan 2026 10:58:44 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1767779928; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:content-language:in-reply-to:references; bh=3hqTdpXOizZ/e9efl1zQ2snYZOE+pxVId2PVKDUTgJc=; b=BEHEs6r1YL8i+F08IwjLuqAouIREj5O/2e9GWe4vgGbbEyhzWkbr64R3BK2pzfTioswwXs U+Zys/9/TLtk2lV08nZX3Z0xw4ok1YQpSCtd8hddmGsy1Ndyc7+OJ6XFPsohj4Rb2pNztb YNlaAW2nn2P3qT1WkJdDBdAZA0wYpJtuljWX3mX8+NLkm6ebxl0z+fBgOqCfcOyM+1QRR2 3Ff7+5B129SsxIepu3zGbxaHN0rJT8Vb7KTcDh72efCpEXpiTWXEn9wOupMWKA9R9WVfFp mJLnLWJ+Xbte0JvJegJNZFXJvNsr3ri8RLgJruiOoMkjjodCCJehDNjQufnaLQ== Message-ID: <02415558-ef2c-4b49-8be8-997376d1ecc0@bootlin.com> Date: Wed, 7 Jan 2026 10:58:43 +0100 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH net-next 5/9] net: stmmac: descs: use u32 for descriptors To: "Russell King (Oracle)" , Andrew Lunn , Heiner Kallweit Cc: Alexandre Torgue , Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , linux-arm-kernel@lists.infradead.org, linux-stm32@st-md-mailman.stormreply.com, Maxime Coquelin , netdev@vger.kernel.org, Paolo Abeni References: From: Maxime Chevallier Content-Language: en-US In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Last-TLS-Session-Version: TLSv1.3 On 06/01/2026 21:31, Russell King (Oracle) wrote: > Use u32 rather than unsigned int for 32-bit descriptor variables. > This will allow the u32 bitfield helpers to be used. > > Signed-off-by: Russell King (Oracle) Reviewed-by: Maxime Chevallier Maxime