diff options
author | Sven Eckelmann <sven@narfation.org> | 2012-05-11 20:09:35 -0400 |
---|---|---|
committer | Antonio Quartulli <ordex@autistici.org> | 2012-06-20 16:15:24 -0400 |
commit | 925a6672fae532ba178b8d35686705b417aada3d (patch) | |
tree | 25e1d6b83170dd63c384290c11bc47b1d38d8557 /net/batman-adv/ring_buffer.c | |
parent | 7d211efc5087bc8870fa3374da88b4bf8159e79b (diff) |
batman-adv: Prefix ring_buffer non-static functions with batadv_
batman-adv can be compiled as part of the kernel instead of an module. In that
case the linker will see all non-static symbols of batman-adv and all other
non-static symbols of the kernel. This could lead to symbol collisions. A
prefix for the batman-adv symbols that defines their private namespace avoids
such a problem.
Reported-by: David Miller <davem@davemloft.net>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'net/batman-adv/ring_buffer.c')
-rw-r--r-- | net/batman-adv/ring_buffer.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/batman-adv/ring_buffer.c b/net/batman-adv/ring_buffer.c index fd63951d118d..db8f5ef83d3e 100644 --- a/net/batman-adv/ring_buffer.c +++ b/net/batman-adv/ring_buffer.c | |||
@@ -22,13 +22,14 @@ | |||
22 | #include "main.h" | 22 | #include "main.h" |
23 | #include "ring_buffer.h" | 23 | #include "ring_buffer.h" |
24 | 24 | ||
25 | void ring_buffer_set(uint8_t lq_recv[], uint8_t *lq_index, uint8_t value) | 25 | void batadv_ring_buffer_set(uint8_t lq_recv[], uint8_t *lq_index, |
26 | uint8_t value) | ||
26 | { | 27 | { |
27 | lq_recv[*lq_index] = value; | 28 | lq_recv[*lq_index] = value; |
28 | *lq_index = (*lq_index + 1) % TQ_GLOBAL_WINDOW_SIZE; | 29 | *lq_index = (*lq_index + 1) % TQ_GLOBAL_WINDOW_SIZE; |
29 | } | 30 | } |
30 | 31 | ||
31 | uint8_t ring_buffer_avg(const uint8_t lq_recv[]) | 32 | uint8_t batadv_ring_buffer_avg(const uint8_t lq_recv[]) |
32 | { | 33 | { |
33 | const uint8_t *ptr; | 34 | const uint8_t *ptr; |
34 | uint16_t count = 0, i = 0, sum = 0; | 35 | uint16_t count = 0, i = 0, sum = 0; |