diff options
author | Daniel Borkmann <dborkman@redhat.com> | 2013-09-03 18:19:39 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-09-04 14:53:20 -0400 |
commit | e3f5b17047dec4acd8957dad053e70d87f18d97e (patch) | |
tree | d7386719180cff0e7ab8c98cc530c5ac7ec7c62a | |
parent | 6c567b78c8a7da26e5e6f5bd458882ad9967233a (diff) |
net: ipv6: mld: get rid of MLDV2_MRC and simplify calculation
Get rid of MLDV2_MRC and use our new macros for mantisse and
exponent to calculate Maximum Response Delay out of the Maximum
Response Code.
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Cc: Hannes Frederic Sowa <hannes@stressinduktion.org>
Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/net/mld.h | 28 | ||||
-rw-r--r-- | net/bridge/br_multicast.c | 3 | ||||
-rw-r--r-- | net/ipv6/mcast.c | 18 |
3 files changed, 23 insertions, 26 deletions
diff --git a/include/net/mld.h b/include/net/mld.h index 2b5421f6a7c2..faa1d161bf24 100644 --- a/include/net/mld.h +++ b/include/net/mld.h | |||
@@ -63,15 +63,6 @@ struct mld2_query { | |||
63 | #define mld2q_mrc mld2q_hdr.icmp6_maxdelay | 63 | #define mld2q_mrc mld2q_hdr.icmp6_maxdelay |
64 | #define mld2q_resv1 mld2q_hdr.icmp6_dataun.un_data16[1] | 64 | #define mld2q_resv1 mld2q_hdr.icmp6_dataun.un_data16[1] |
65 | 65 | ||
66 | /* Max Response Code, TODO: transform this to use the below */ | ||
67 | #define MLDV2_MASK(value, nb) ((nb)>=32 ? (value) : ((1<<(nb))-1) & (value)) | ||
68 | #define MLDV2_EXP(thresh, nbmant, nbexp, value) \ | ||
69 | ((value) < (thresh) ? (value) : \ | ||
70 | ((MLDV2_MASK(value, nbmant) | (1<<(nbmant))) << \ | ||
71 | (MLDV2_MASK((value) >> (nbmant), nbexp) + (nbexp)))) | ||
72 | |||
73 | #define MLDV2_MRC(value) MLDV2_EXP(0x8000, 12, 3, value) | ||
74 | |||
75 | /* RFC3810, 5.1.3. Maximum Response Code: | 66 | /* RFC3810, 5.1.3. Maximum Response Code: |
76 | * | 67 | * |
77 | * If Maximum Response Code >= 32768, Maximum Response Code represents a | 68 | * If Maximum Response Code >= 32768, Maximum Response Code represents a |
@@ -97,4 +88,23 @@ struct mld2_query { | |||
97 | #define MLDV2_QQIC_EXP(value) (((value) >> 4) & 0x07) | 88 | #define MLDV2_QQIC_EXP(value) (((value) >> 4) & 0x07) |
98 | #define MLDV2_QQIC_MAN(value) ((value) & 0x0f) | 89 | #define MLDV2_QQIC_MAN(value) ((value) & 0x0f) |
99 | 90 | ||
91 | static inline unsigned long mldv2_mrc(const struct mld2_query *mlh2) | ||
92 | { | ||
93 | /* RFC3810, 5.1.3. Maximum Response Code */ | ||
94 | unsigned long ret, mc_mrc = ntohs(mlh2->mld2q_mrc); | ||
95 | |||
96 | if (mc_mrc < 32768) { | ||
97 | ret = mc_mrc; | ||
98 | } else { | ||
99 | unsigned long mc_man, mc_exp; | ||
100 | |||
101 | mc_exp = MLDV2_MRC_EXP(mc_mrc); | ||
102 | mc_man = MLDV2_MRC_MAN(mc_mrc); | ||
103 | |||
104 | ret = (mc_man | 0x1000) << (mc_exp + 3); | ||
105 | } | ||
106 | |||
107 | return ret; | ||
108 | } | ||
109 | |||
100 | #endif | 110 | #endif |
diff --git a/net/bridge/br_multicast.c b/net/bridge/br_multicast.c index 08e576ada0b2..4accd0de6e8e 100644 --- a/net/bridge/br_multicast.c +++ b/net/bridge/br_multicast.c | |||
@@ -1203,7 +1203,8 @@ static int br_ip6_multicast_query(struct net_bridge *br, | |||
1203 | mld2q = (struct mld2_query *)icmp6_hdr(skb); | 1203 | mld2q = (struct mld2_query *)icmp6_hdr(skb); |
1204 | if (!mld2q->mld2q_nsrcs) | 1204 | if (!mld2q->mld2q_nsrcs) |
1205 | group = &mld2q->mld2q_mca; | 1205 | group = &mld2q->mld2q_mca; |
1206 | max_delay = mld2q->mld2q_mrc ? MLDV2_MRC(ntohs(mld2q->mld2q_mrc)) : 1; | 1206 | |
1207 | max_delay = max(msecs_to_jiffies(mldv2_mrc(mld2q)), 1UL); | ||
1207 | } | 1208 | } |
1208 | 1209 | ||
1209 | br_multicast_query_received(br, port, !ipv6_addr_any(&ip6h->saddr), | 1210 | br_multicast_query_received(br, port, !ipv6_addr_any(&ip6h->saddr), |
diff --git a/net/ipv6/mcast.c b/net/ipv6/mcast.c index f86e26b7296c..005b22fd6bcb 100644 --- a/net/ipv6/mcast.c +++ b/net/ipv6/mcast.c | |||
@@ -1195,20 +1195,7 @@ static void mld_update_qri(struct inet6_dev *idev, | |||
1195 | * - 5.1.3. Maximum Response Code | 1195 | * - 5.1.3. Maximum Response Code |
1196 | * - 9.3. Query Response Interval | 1196 | * - 9.3. Query Response Interval |
1197 | */ | 1197 | */ |
1198 | unsigned long mc_qri, mc_mrc = ntohs(mlh2->mld2q_mrc); | 1198 | idev->mc_qri = msecs_to_jiffies(mldv2_mrc(mlh2)); |
1199 | |||
1200 | if (mc_mrc < 32768) { | ||
1201 | mc_qri = mc_mrc; | ||
1202 | } else { | ||
1203 | unsigned long mc_man, mc_exp; | ||
1204 | |||
1205 | mc_exp = MLDV2_MRC_EXP(mc_mrc); | ||
1206 | mc_man = MLDV2_MRC_MAN(mc_mrc); | ||
1207 | |||
1208 | mc_qri = (mc_man | 0x1000) << (mc_exp + 3); | ||
1209 | } | ||
1210 | |||
1211 | idev->mc_qri = msecs_to_jiffies(mc_qri); | ||
1212 | } | 1199 | } |
1213 | 1200 | ||
1214 | /* called with rcu_read_lock() */ | 1201 | /* called with rcu_read_lock() */ |
@@ -1277,8 +1264,7 @@ int igmp6_event_query(struct sk_buff *skb) | |||
1277 | 1264 | ||
1278 | mlh2 = (struct mld2_query *)skb_transport_header(skb); | 1265 | mlh2 = (struct mld2_query *)skb_transport_header(skb); |
1279 | 1266 | ||
1280 | max_delay = max(msecs_to_jiffies(MLDV2_MRC(ntohs(mlh2->mld2q_mrc))), 1UL); | 1267 | max_delay = max(msecs_to_jiffies(mldv2_mrc(mlh2)), 1UL); |
1281 | |||
1282 | idev->mc_maxdelay = max_delay; | 1268 | idev->mc_maxdelay = max_delay; |
1283 | 1269 | ||
1284 | mld_update_qrv(idev, mlh2); | 1270 | mld_update_qrv(idev, mlh2); |