public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net: pfcp: fix typo in message_priority field name
@ 2025-06-10 16:06 RubenKelevra
  2025-06-10 18:42 ` Charalampos Mitrodimas
  0 siblings, 1 reply; 5+ messages in thread
From: RubenKelevra @ 2025-06-10 16:06 UTC (permalink / raw)
  To: netdev
  Cc: davem, kuba, edumazet, pabeni, horms, linux-kernel, stable,
	RubenKelevra

Fix 'message_priprity' typo to 'message_priority' in big endian
bitfield definition. This typo breaks compilation on big endian
architectures.

Fixes: 6dd514f48110 ("pfcp: always set pfcp metadata")
Cc: stable@vger.kernel.org # commit 6dd514f48110 ("pfcp: always set pfcp metadata")
Signed-off-by: RubenKelevra <rubenkelevra@gmail.com>
---
 include/net/pfcp.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/net/pfcp.h b/include/net/pfcp.h
index af14f970b80e1..639553797d3e4 100644
--- a/include/net/pfcp.h
+++ b/include/net/pfcp.h
@@ -45,7 +45,7 @@ struct pfcphdr_session {
 		reserved:4;
 #elif defined(__BIG_ENDIAN_BITFIELD)
 	u8	reserved:4,
-		message_priprity:4;
+		message_priority:4;
 #else
 #error "Please fix <asm/byteorder>"
 #endif
-- 
2.49.0


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

end of thread, other threads:[~2025-06-12 14:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-10 16:06 [PATCH] net: pfcp: fix typo in message_priority field name RubenKelevra
2025-06-10 18:42 ` Charalampos Mitrodimas
2025-06-11 21:51   ` Jakub Kicinski
2025-06-12  6:38     ` Ruben Kelevra
2025-06-12 14:29       ` Jakub Kicinski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox