Skip to content

Commit

Permalink
Update ipt_NETFLOW.c
Browse files Browse the repository at this point in the history
Fix for 5.15.111
  • Loading branch information
kalamlacki committed May 18, 2023
1 parent 978d8d4 commit ee1886f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipt_NETFLOW.c
Original file line number Diff line number Diff line change
Expand Up @@ -5615,7 +5615,7 @@ static int __init ipt_netflow_init(void)
}
if (hashsize < LOCK_COUNT)
hashsize = LOCK_COUNT;
printk(KERN_INFO "ipt_NETFLOW: hashsize %u (%luK)\n", hashsize,
printk(KERN_INFO "ipt_NETFLOW: hashsize %u (%uK)\n", hashsize,
hashsize * sizeof(struct hlist_head) / 1024);

htable_size = hashsize;
Expand Down

0 comments on commit ee1886f

Please sign in to comment.