* [B.A.T.M.A.N.] [PATCH] batman-adv: use the const qualifier in hash functions
@ 2012-12-07 13:35 Antonio Quartulli
2012-12-15 8:24 ` Marek Lindner
0 siblings, 1 reply; 2+ messages in thread
From: Antonio Quartulli @ 2012-12-07 13:35 UTC (permalink / raw)
To: b.a.t.m.a.n; +Cc: Antonio Quartulli
From: Antonio Quartulli <antonio@open-mesh.com>
The data argument in each hash function should carry the
"const" qualifier as it is never modified.
Signed-off-by: Antonio Quartulli <antonio@open-mesh.com>
---
bridge_loop_avoidance.c | 2 +-
hash.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/bridge_loop_avoidance.c b/bridge_loop_avoidance.c
index 724adf0..5e834c1 100644
--- a/bridge_loop_avoidance.c
+++ b/bridge_loop_avoidance.c
@@ -57,7 +57,7 @@ static inline uint32_t batadv_choose_claim(const void *data, uint32_t size)
static inline uint32_t batadv_choose_backbone_gw(const void *data,
uint32_t size)
{
- struct batadv_claim *claim = (struct batadv_claim *)data;
+ const struct batadv_claim *claim = (struct batadv_claim *)data;
uint32_t hash = 0;
hash = batadv_hash_bytes(hash, &claim->addr, sizeof(claim->addr));
diff --git a/hash.h b/hash.h
index e053339..ea02148 100644
--- a/hash.h
+++ b/hash.h
@@ -89,7 +89,7 @@ static inline void batadv_hash_delete(struct batadv_hashtable *hash,
*
* Returns the new hash value.
*/
-static inline uint32_t batadv_hash_bytes(uint32_t hash, void *data,
+static inline uint32_t batadv_hash_bytes(uint32_t hash, const void *data,
uint32_t size)
{
const unsigned char *key = data;
--
1.8.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [B.A.T.M.A.N.] [PATCH] batman-adv: use the const qualifier in hash functions
2012-12-07 13:35 [B.A.T.M.A.N.] [PATCH] batman-adv: use the const qualifier in hash functions Antonio Quartulli
@ 2012-12-15 8:24 ` Marek Lindner
0 siblings, 0 replies; 2+ messages in thread
From: Marek Lindner @ 2012-12-15 8:24 UTC (permalink / raw)
To: b.a.t.m.a.n; +Cc: Antonio Quartulli
On Friday, December 07, 2012 21:35:36 Antonio Quartulli wrote:
> From: Antonio Quartulli <antonio@open-mesh.com>
>
> The data argument in each hash function should carry the
> "const" qualifier as it is never modified.
>
> Signed-off-by: Antonio Quartulli <antonio@open-mesh.com>
> ---
> bridge_loop_avoidance.c | 2 +-
> hash.h | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
Applied in revision 6f9250b.
Thanks,
Marek
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-12-15 8:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-07 13:35 [B.A.T.M.A.N.] [PATCH] batman-adv: use the const qualifier in hash functions Antonio Quartulli
2012-12-15 8:24 ` Marek Lindner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox