15a2072
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
15a2072
From: Peter Jones <pjones@redhat.com>
15a2072
Date: Thu, 7 Apr 2016 10:58:06 -0400
15a2072
Subject: [PATCH] Revert "reopen SNP protocol for exclusive use by grub"
15a2072
15a2072
I *think* this should have been replaced by upstream's
15a2072
49426e9fd2e562c73a4f1206f32eff9e424a1a73, so I'm reverting for now.
15a2072
15a2072
May resolve rhbz#1273974.
15a2072
15a2072
This reverts commit 147daeab22db793978f952b6f0d832919a1b0081.
15a2072
---
15a2072
 grub-core/net/drivers/efi/efinet.c | 39 --------------------------------------
15a2072
 1 file changed, 39 deletions(-)
15a2072
15a2072
diff --git a/grub-core/net/drivers/efi/efinet.c b/grub-core/net/drivers/efi/efinet.c
1f092ca
index d15a799f29a..5388f952ba9 100644
15a2072
--- a/grub-core/net/drivers/efi/efinet.c
15a2072
+++ b/grub-core/net/drivers/efi/efinet.c
1f092ca
@@ -383,45 +383,6 @@ grub_efi_net_config_real (grub_efi_handle_t hnd, char **device,
15a2072
 				    &pxe_mode->dhcp_ack,
15a2072
 				    sizeof (pxe_mode->dhcp_ack),
15a2072
 				    1, device, path);
15a2072
-    net = grub_efi_open_protocol (card->efi_handle, &net_io_guid,
15a2072
-				  GRUB_EFI_OPEN_PROTOCOL_BY_EXCLUSIVE);
15a2072
-    if (net) {
15a2072
-      if (net->mode->state == GRUB_EFI_NETWORK_STOPPED
15a2072
-	  && efi_call_1 (net->start, net) != GRUB_EFI_SUCCESS)
15a2072
-	continue;
15a2072
-
15a2072
-      if (net->mode->state == GRUB_EFI_NETWORK_STOPPED)
15a2072
-	continue;
15a2072
-
15a2072
-      if (net->mode->state == GRUB_EFI_NETWORK_STARTED
15a2072
-	  && efi_call_3 (net->initialize, net, 0, 0) != GRUB_EFI_SUCCESS)
15a2072
-	continue;
15a2072
-
15a2072
-      /* Enable hardware receive filters if driver declares support for it.
15a2072
-	 We need unicast and broadcast and additionaly all nodes and
15a2072
-	 solicited multicast for IPv6. Solicited multicast is per-IPv6
15a2072
-	 address and we currently do not have API to do it so simply
15a2072
-	 try to enable receive of all multicast packets or evertyhing in
15a2072
-	 the worst case (i386 PXE driver always enables promiscuous too).
15a2072
-
15a2072
-	 This does trust firmware to do what it claims to do.
15a2072
-       */
15a2072
-      if (net->mode->receive_filter_mask)
15a2072
-	{
15a2072
-	  grub_uint32_t filters = GRUB_EFI_SIMPLE_NETWORK_RECEIVE_UNICAST   |
15a2072
-				  GRUB_EFI_SIMPLE_NETWORK_RECEIVE_BROADCAST |
15a2072
-				  GRUB_EFI_SIMPLE_NETWORK_RECEIVE_PROMISCUOUS_MULTICAST;
15a2072
-
15a2072
-	  filters &= net->mode->receive_filter_mask;
15a2072
-	  if (!(filters & GRUB_EFI_SIMPLE_NETWORK_RECEIVE_PROMISCUOUS_MULTICAST))
15a2072
-	    filters |= (net->mode->receive_filter_mask &
15a2072
-			GRUB_EFI_SIMPLE_NETWORK_RECEIVE_PROMISCUOUS);
15a2072
-
15a2072
-	  efi_call_6 (net->receive_filters, net, filters, 0, 0, 0, NULL);
15a2072
-	}
15a2072
-
15a2072
-      card->efi_net = net;
15a2072
-    }
15a2072
     return;
15a2072
   }
15a2072
 }