[PATCH nf-next v2 1/3] netfilter: arp_tables: fix typo "alignement" in comment
From: Hemanth Selam
Date: Mon Sep 07 2026 - 06:02:56 EST
Fix a typo in comments, found with scripts/checkpatch.pl using the
misspelling list in scripts/spelling.txt. Only touches comments, no code
changes.
Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@xxxxxxxxx>
---
Notes:
v2: designate the patch to nf-next and use a subject prefix naming the
component, as maintainer-netdev.rst asks; v1 went out with a bare
[PATCH] and a "net:" prefix. Rebased onto nf-next, diff unchanged.
v1: https://lore.kernel.org/all/20260907064239.39910-1-hemanth.selam@xxxxxxxxx/
net/ipv4/netfilter/arp_tables.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/ipv4/netfilter/arp_tables.c b/net/ipv4/netfilter/arp_tables.c
index a87e07e80d0d..b680bd14d329 100644
--- a/net/ipv4/netfilter/arp_tables.c
+++ b/net/ipv4/netfilter/arp_tables.c
@@ -59,7 +59,7 @@ static inline int arp_devaddr_compare(const struct arpt_devaddr_info *ap,
/*
* Unfortunately, _b and _mask are not aligned to an int (or long int)
* Some arches dont care, unrolling the loop is a win on them.
- * For other arches, we only have a 16bit alignement.
+ * For other arches, we only have a 16bit alignment.
*/
static unsigned long ifname_compare(const char *_a, const char *_b, const char *_mask)
{