Loading net/netfilter/xt_HMARK.c +1 −1 Original line number Diff line number Diff line Loading @@ -109,7 +109,7 @@ hmark_hash(struct hmark_tuple *t, const struct xt_hmark_info *info) hash = jhash_3words(t->src, t->dst, t->uports.v32, info->hashrnd); hash = hash ^ (t->proto & info->proto_mask); return (hash % info->hmodulus) + info->hoffset; return (((u64)hash * info->hmodulus) >> 32) + info->hoffset; } static void Loading Loading
net/netfilter/xt_HMARK.c +1 −1 Original line number Diff line number Diff line Loading @@ -109,7 +109,7 @@ hmark_hash(struct hmark_tuple *t, const struct xt_hmark_info *info) hash = jhash_3words(t->src, t->dst, t->uports.v32, info->hashrnd); hash = hash ^ (t->proto & info->proto_mask); return (hash % info->hmodulus) + info->hoffset; return (((u64)hash * info->hmodulus) >> 32) + info->hoffset; } static void Loading