aboutsummaryrefslogtreecommitdiffstats
path: root/net/batman-adv
diff options
context:
space:
mode:
authorAntonio Quartulli <ordex@autistici.org>2012-07-01 13:07:31 -0400
committerAntonio Quartulli <ordex@autistici.org>2012-08-23 08:02:45 -0400
commita51fb9b2ac4eac86ff13c30620758b87f4f3f5ce (patch)
treeb6614d8df77d58d9b8871941d06f905f0b463ec9 /net/batman-adv
parentd657e621a0f5584cf269b5b3d733a4cbb2497900 (diff)
batman-adv: fix typos in comments
the word millisecond is misspelled in several comments. This patch fixes it. Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Diffstat (limited to 'net/batman-adv')
-rw-r--r--net/batman-adv/main.h8
-rw-r--r--net/batman-adv/vis.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/net/batman-adv/main.h b/net/batman-adv/main.h
index 5d8fa0757947..4dfeae5e344a 100644
--- a/net/batman-adv/main.h
+++ b/net/batman-adv/main.h
@@ -41,13 +41,13 @@
41 * -> TODO: check influence on BATADV_TQ_LOCAL_WINDOW_SIZE 41 * -> TODO: check influence on BATADV_TQ_LOCAL_WINDOW_SIZE
42 */ 42 */
43#define BATADV_PURGE_TIMEOUT 200000 /* 200 seconds */ 43#define BATADV_PURGE_TIMEOUT 200000 /* 200 seconds */
44#define BATADV_TT_LOCAL_TIMEOUT 3600000 /* in miliseconds */ 44#define BATADV_TT_LOCAL_TIMEOUT 3600000 /* in milliseconds */
45#define BATADV_TT_CLIENT_ROAM_TIMEOUT 600000 /* in miliseconds */ 45#define BATADV_TT_CLIENT_ROAM_TIMEOUT 600000 /* in milliseconds */
46/* sliding packet range of received originator messages in sequence numbers 46/* sliding packet range of received originator messages in sequence numbers
47 * (should be a multiple of our word size) 47 * (should be a multiple of our word size)
48 */ 48 */
49#define BATADV_TQ_LOCAL_WINDOW_SIZE 64 49#define BATADV_TQ_LOCAL_WINDOW_SIZE 64
50/* miliseconds we have to keep pending tt_req */ 50/* milliseconds we have to keep pending tt_req */
51#define BATADV_TT_REQUEST_TIMEOUT 3000 51#define BATADV_TT_REQUEST_TIMEOUT 3000
52 52
53#define BATADV_TQ_GLOBAL_WINDOW_SIZE 5 53#define BATADV_TQ_GLOBAL_WINDOW_SIZE 5
@@ -59,7 +59,7 @@
59#define BATADV_TT_OGM_APPEND_MAX 3 59#define BATADV_TT_OGM_APPEND_MAX 3
60 60
61/* Time in which a client can roam at most ROAMING_MAX_COUNT times in 61/* Time in which a client can roam at most ROAMING_MAX_COUNT times in
62 * miliseconds 62 * milliseconds
63 */ 63 */
64#define BATADV_ROAMING_MAX_TIME 20000 64#define BATADV_ROAMING_MAX_TIME 20000
65#define BATADV_ROAMING_MAX_COUNT 5 65#define BATADV_ROAMING_MAX_COUNT 5
diff --git a/net/batman-adv/vis.h b/net/batman-adv/vis.h
index 84e716ed8963..873282fa86da 100644
--- a/net/batman-adv/vis.h
+++ b/net/batman-adv/vis.h
@@ -20,7 +20,7 @@
20#ifndef _NET_BATMAN_ADV_VIS_H_ 20#ifndef _NET_BATMAN_ADV_VIS_H_
21#define _NET_BATMAN_ADV_VIS_H_ 21#define _NET_BATMAN_ADV_VIS_H_
22 22
23/* timeout of vis packets in miliseconds */ 23/* timeout of vis packets in milliseconds */
24#define BATADV_VIS_TIMEOUT 200000 24#define BATADV_VIS_TIMEOUT 200000
25 25
26int batadv_vis_seq_print_text(struct seq_file *seq, void *offset); 26int batadv_vis_seq_print_text(struct seq_file *seq, void *offset);