All of lore.kernel.org
 help / color / mirror / Atom feed
* [B.A.T.M.A.N.] [PATCH 1/4] batman-adv: fix typ0 in sysfs.c
@ 2013-12-07 10:21 Antonio Quartulli
  2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 2/4] batman-adv: fix typ0 in batadv_orig_hardif_seq_print_text() Antonio Quartulli
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Antonio Quartulli @ 2013-12-07 10:21 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

Fix a small typ0 in sysfs.c.
Introduced by 99a6eb50ef5066e125cedb97bc0fcfcdff4f08cc
("batman-adv: deselect current GW on client mode switch off")

Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
---
 sysfs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysfs.c b/sysfs.c
index 2f89a57..037f411 100644
--- a/sysfs.c
+++ b/sysfs.c
@@ -407,7 +407,7 @@ static ssize_t batadv_store_gw_mode(struct kobject *kobj,
 		    curr_gw_mode_str, buff);
 
 	/* Invoking batadv_gw_reselect() is not enough to really de-select the
-	 * current GW. It will only instruct the gateway clientcode to perform
+	 * current GW. It will only instruct the gateway client code to perform
 	 * a re-election the next time that this is needed.
 	 *
 	 * When gw client mode is being switched off the current GW must be
-- 
1.8.5.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [B.A.T.M.A.N.] [PATCH 2/4] batman-adv: fix typ0 in batadv_orig_hardif_seq_print_text()
  2013-12-07 10:21 [B.A.T.M.A.N.] [PATCH 1/4] batman-adv: fix typ0 in sysfs.c Antonio Quartulli
@ 2013-12-07 10:21 ` Antonio Quartulli
  2013-12-11  8:29   ` Marek Lindner
  2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 3/4] batman-adv: fix typ0s in batadv_store_isolation_mark() Antonio Quartulli
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 9+ messages in thread
From: Antonio Quartulli @ 2013-12-07 10:21 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

Introduced by f13f960797fd1969b3c0470cc97435ddfb6aecb4
("batman-adv: add debugfs support to view multiif tables")

Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
---
 originator.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/originator.c b/originator.c
index 4af1c77..2243003 100644
--- a/originator.c
+++ b/originator.c
@@ -958,7 +958,7 @@ int batadv_orig_hardif_seq_print_text(struct seq_file *seq, void *offset)
 	hard_iface = batadv_hardif_get_by_netdev(net_dev);
 
 	if (!hard_iface || !hard_iface->soft_iface) {
-		seq_puts(seq, "Interface not known to to B.A.T.M.A.N.\n");
+		seq_puts(seq, "Interface not known to B.A.T.M.A.N.\n");
 		goto out;
 	}
 
-- 
1.8.5.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [B.A.T.M.A.N.] [PATCH 3/4] batman-adv: fix typ0s in batadv_store_isolation_mark()
  2013-12-07 10:21 [B.A.T.M.A.N.] [PATCH 1/4] batman-adv: fix typ0 in sysfs.c Antonio Quartulli
  2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 2/4] batman-adv: fix typ0 in batadv_orig_hardif_seq_print_text() Antonio Quartulli
@ 2013-12-07 10:21 ` Antonio Quartulli
  2013-12-07 10:23   ` Antonio Quartulli
  2013-12-11  8:30   ` Marek Lindner
  2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 4/4] batman-adv: fix typ0s in batadv_tt_global_is_isolated() Antonio Quartulli
  2013-12-11  8:28 ` [B.A.T.M.A.N.] [PATCH 1/4] batman-adv: fix typ0 in sysfs.c Marek Lindner
  3 siblings, 2 replies; 9+ messages in thread
From: Antonio Quartulli @ 2013-12-07 10:21 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

Introduced by e29249b4483b91d7a590a16e9b5ffe9412ce7fde
("batman-adv: add isolation_mark sysfs attribute")

Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
---
 sysfs.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sysfs.c b/sysfs.c
index 037f411..b6a4403 100644
--- a/sysfs.c
+++ b/sysfs.c
@@ -469,8 +469,8 @@ static ssize_t batadv_show_isolation_mark(struct kobject *kobj,
 }
 
 /**
- * batadv_store_isolation_mark - parse and store the isolation mark/mask entered by
- *  the user
+ * batadv_store_isolation_mark - parse and store the isolation mark/mask entered
+ *  by the user
  * @kobj: kobject representing the private mesh sysfs directory
  * @attr: the batman-adv attribute the user is interacting with
  * @buff: the buffer containing the user data
-- 
1.8.5.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [B.A.T.M.A.N.] [PATCH 4/4] batman-adv: fix typ0s in batadv_tt_global_is_isolated()
  2013-12-07 10:21 [B.A.T.M.A.N.] [PATCH 1/4] batman-adv: fix typ0 in sysfs.c Antonio Quartulli
  2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 2/4] batman-adv: fix typ0 in batadv_orig_hardif_seq_print_text() Antonio Quartulli
  2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 3/4] batman-adv: fix typ0s in batadv_store_isolation_mark() Antonio Quartulli
@ 2013-12-07 10:21 ` Antonio Quartulli
  2013-12-11  8:31   ` Marek Lindner
  2013-12-11  8:28 ` [B.A.T.M.A.N.] [PATCH 1/4] batman-adv: fix typ0 in sysfs.c Marek Lindner
  3 siblings, 1 reply; 9+ messages in thread
From: Antonio Quartulli @ 2013-12-07 10:21 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

Introduced by 6fa38a2c72cc79dd961a6d9ed00d32e1c308b448
("batman-adv: set the isolation mark in the skb if needed")

Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
---
 translation-table.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/translation-table.c b/translation-table.c
index 6fbb6a0..9fee80c 100644
--- a/translation-table.c
+++ b/translation-table.c
@@ -3584,7 +3584,7 @@ int batadv_tt_init(struct batadv_priv *bat_priv)
  * @addr: the mac address of the client
  * @vid: the identifier of the VLAN where this client is connected
  *
- * Return true if the client is marked with the TT_CLIENT_ISOLA flag, flase
+ * Returns true if the client is marked with the TT_CLIENT_ISOLA flag, false
  * otherwise
  */
 bool batadv_tt_global_is_isolated(struct batadv_priv *bat_priv,
-- 
1.8.5.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [B.A.T.M.A.N.] [PATCH 3/4] batman-adv: fix typ0s in batadv_store_isolation_mark()
  2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 3/4] batman-adv: fix typ0s in batadv_store_isolation_mark() Antonio Quartulli
@ 2013-12-07 10:23   ` Antonio Quartulli
  2013-12-11  8:30   ` Marek Lindner
  1 sibling, 0 replies; 9+ messages in thread
From: Antonio Quartulli @ 2013-12-07 10:23 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

On 07/12/13 11:21, Antonio Quartulli wrote:
> Introduced by e29249b4483b91d7a590a16e9b5ffe9412ce7fde 
> ("batman-adv: add isolation_mark sysfs attribute")
> 
> Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>

Actually this is fixing a too long line, not a real typ0.

Cheers,


- -- 
Antonio Quartulli
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.22 (GNU/Linux)

iQIcBAEBCAAGBQJSovcqAAoJEEKTMo6mOh1V9lMP/irZacM+TT5SPygrB8PjxJMx
KHl8IlEJd7SXpZD4i6UU7NftzSOw+bipQGUoBzrqZScBIll41xv/vnJYJJ/e60Fj
/1hngbjzbGlQzrTTEf3clCjnwjvmpq0SjmIfd815XhnDEHTPvcy+TgAlbCg1RjK2
5kYPXa1Zll+ldT9T9nWkua1g/DZ58GPID8HLofswxDYVdf8i3+KR5QLZK7f9s4MC
QGrx3RkI6DekXAWUjzg7Q2m+9Ep+c7LV1KSDbBzHLjzPjOsbuAfqm9J7B3EGaLf1
fdBgQqHIsQWfvGa58xgte3Z79KqxDugyB9Gd1+jZxBJOWCbHeclDIQ1Y3Mos62LK
+xV6GRt9OVPF5L6dhs1SrmZ9ykNlOMAqTx0G2kvogdCxkGdkuyEV+ZaXqm18TuKy
tFLvZ7u8tRz2WlAPutbRGcz6Ek+mbdNoqKoaFHgKEEtwWoU1JmW6zA0UvCh9GB2m
BTRarvZh9egK+zt2ISSKLma7p2TZW1E9N4L5mhxXr6RJo2mEpJP3yAdqqRFo4zDS
uUTkn7c1387dRWTUes6MlHQa0NocTdbZN/83Ij/3kuqqVI6OKYvntKOUB2Q9n7+f
77LUbp1EBSZdFS435DZE0QIkwb/8pRwyiiIufhWEBON+LrRuk2s8NMVFXg1bZX5c
TByXtG13Dv/FETlLH3ik
=UIv7
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [B.A.T.M.A.N.] [PATCH 1/4] batman-adv: fix typ0 in sysfs.c
  2013-12-07 10:21 [B.A.T.M.A.N.] [PATCH 1/4] batman-adv: fix typ0 in sysfs.c Antonio Quartulli
                   ` (2 preceding siblings ...)
  2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 4/4] batman-adv: fix typ0s in batadv_tt_global_is_isolated() Antonio Quartulli
@ 2013-12-11  8:28 ` Marek Lindner
  3 siblings, 0 replies; 9+ messages in thread
From: Marek Lindner @ 2013-12-11  8:28 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

[-- Attachment #1: Type: text/plain, Size: 396 bytes --]

On Saturday 07 December 2013 11:21:21 Antonio Quartulli wrote:
> Fix a small typ0 in sysfs.c.
> Introduced by 99a6eb50ef5066e125cedb97bc0fcfcdff4f08cc
> ("batman-adv: deselect current GW on client mode switch off")
> 
> Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
> ---
>  sysfs.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied in revision 2be81d7.

Thanks,
Marek

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 490 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [B.A.T.M.A.N.] [PATCH 2/4] batman-adv: fix typ0 in batadv_orig_hardif_seq_print_text()
  2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 2/4] batman-adv: fix typ0 in batadv_orig_hardif_seq_print_text() Antonio Quartulli
@ 2013-12-11  8:29   ` Marek Lindner
  0 siblings, 0 replies; 9+ messages in thread
From: Marek Lindner @ 2013-12-11  8:29 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

[-- Attachment #1: Type: text/plain, Size: 367 bytes --]

On Saturday 07 December 2013 11:21:22 Antonio Quartulli wrote:
> Introduced by f13f960797fd1969b3c0470cc97435ddfb6aecb4
> ("batman-adv: add debugfs support to view multiif tables")
> 
> Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
> ---
>  originator.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied in revision ef4d227.

Thanks,
Marek

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 490 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [B.A.T.M.A.N.] [PATCH 3/4] batman-adv: fix typ0s in batadv_store_isolation_mark()
  2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 3/4] batman-adv: fix typ0s in batadv_store_isolation_mark() Antonio Quartulli
  2013-12-07 10:23   ` Antonio Quartulli
@ 2013-12-11  8:30   ` Marek Lindner
  1 sibling, 0 replies; 9+ messages in thread
From: Marek Lindner @ 2013-12-11  8:30 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

[-- Attachment #1: Type: text/plain, Size: 358 bytes --]

On Saturday 07 December 2013 11:21:23 Antonio Quartulli wrote:
> Introduced by e29249b4483b91d7a590a16e9b5ffe9412ce7fde
> ("batman-adv: add isolation_mark sysfs attribute")
> 
> Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
> ---
>  sysfs.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Applied in revision 21dfc1a.

Thanks,
Marek

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 490 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [B.A.T.M.A.N.] [PATCH 4/4] batman-adv: fix typ0s in batadv_tt_global_is_isolated()
  2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 4/4] batman-adv: fix typ0s in batadv_tt_global_is_isolated() Antonio Quartulli
@ 2013-12-11  8:31   ` Marek Lindner
  0 siblings, 0 replies; 9+ messages in thread
From: Marek Lindner @ 2013-12-11  8:31 UTC (permalink / raw)
  To: b.a.t.m.a.n; +Cc: Antonio Quartulli

[-- Attachment #1: Type: text/plain, Size: 375 bytes --]

On Saturday 07 December 2013 11:21:24 Antonio Quartulli wrote:
> Introduced by 6fa38a2c72cc79dd961a6d9ed00d32e1c308b448
> ("batman-adv: set the isolation mark in the skb if needed")
> 
> Signed-off-by: Antonio Quartulli <antonio@meshcoding.com>
> ---
>  translation-table.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied in revision 65f9fec.

Thanks,
Marek

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 490 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-12-11  8:31 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-07 10:21 [B.A.T.M.A.N.] [PATCH 1/4] batman-adv: fix typ0 in sysfs.c Antonio Quartulli
2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 2/4] batman-adv: fix typ0 in batadv_orig_hardif_seq_print_text() Antonio Quartulli
2013-12-11  8:29   ` Marek Lindner
2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 3/4] batman-adv: fix typ0s in batadv_store_isolation_mark() Antonio Quartulli
2013-12-07 10:23   ` Antonio Quartulli
2013-12-11  8:30   ` Marek Lindner
2013-12-07 10:21 ` [B.A.T.M.A.N.] [PATCH 4/4] batman-adv: fix typ0s in batadv_tt_global_is_isolated() Antonio Quartulli
2013-12-11  8:31   ` Marek Lindner
2013-12-11  8:28 ` [B.A.T.M.A.N.] [PATCH 1/4] batman-adv: fix typ0 in sysfs.c Marek Lindner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.