Re: Grub get and set efi variables

2015-11-17 Thread Ignat Korchagin
Please, see updated patch below. I tried to reuse GRUB hexdump function, so as a result dump will not work with setting vatiables - just dumping to stdout. But it doesn't make sense to assign dump to a variable anyway. diff --git a/grub-core/commands/efi/efivar.c b/grub-core/commands/efi/efivar.c

[PATCH] efinet: filter multicast traffic based on addresses

2015-11-17 Thread Josef Bacik
We have some hardware that claims to support PROMISCUOUS_MULTICAST but doesn't actually work. Instead utilize the multicast filters and specifically enable the multicast traffic we care about. In reality we only care about ipv6 multicast traffic but enable ipv4 multicast as well just in case. Wh

[PATCH] net: reset nb->data per dns record lookup loop

2015-11-17 Thread Josef Bacik
We were resetting nb->data every time we tried a new server, but we need to do it every time we try for a different record, otherwise we don't end up falling back to the A record properly. Thanks, Signed-off-by: Josef Bacik --- grub-core/net/dns.c | 2 +- 1 file changed, 1 insertion(+), 1 delet

Re: [PATCH] net: reset nb->data per dns record lookup loop

2015-11-17 Thread Andrei Borzenkov
17.11.2015 22:07, Josef Bacik пишет: We were resetting nb->data every time we tried a new server, but we need to do it every time we try for a different record, otherwise we don't end up falling back to the A record properly. Thanks, Signed-off-by: Josef Bacik --- grub-core/net/dns.c | 2 +-