You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
From aa58a042ec20575143c1a5c813c9552a286aeb0e Mon Sep 17 00:00:00 2001 |
|
From: Chris Leech <cleech@redhat.com> |
|
Date: Mon, 19 Nov 2012 17:09:24 -0800 |
|
Subject: remove the offload boot supported ifdef |
|
|
|
--- |
|
usr/iface.c | 7 +------ |
|
1 file changed, 1 insertion(+), 6 deletions(-) |
|
|
|
diff --git a/usr/iface.c b/usr/iface.c |
|
index c86892e..f5441c0 100644 |
|
--- a/usr/iface.c |
|
+++ b/usr/iface.c |
|
@@ -895,6 +895,7 @@ int iface_setup_from_boot_context(struct iface_rec *iface, |
|
{ |
|
struct iscsi_transport *t = NULL; |
|
uint32_t hostno; |
|
+ int rc; |
|
|
|
if (strlen(context->initiatorname)) |
|
strlcpy(iface->iname, context->initiatorname, |
|
@@ -907,10 +908,7 @@ int iface_setup_from_boot_context(struct iface_rec *iface, |
|
return 0; |
|
} |
|
} else if (strlen(context->iface)) { |
|
-/* this ifdef is only temp until distros and firmwares are updated */ |
|
-#ifdef OFFLOAD_BOOT_SUPPORTED |
|
char transport_name[ISCSI_TRANSPORT_NAME_MAXLEN]; |
|
- int rc; |
|
|
|
memset(transport_name, 0, ISCSI_TRANSPORT_NAME_MAXLEN); |
|
/* make sure offload driver is loaded */ |
|
@@ -936,9 +934,6 @@ int iface_setup_from_boot_context(struct iface_rec *iface, |
|
} |
|
|
|
strlcpy(iface->netdev, context->iface, sizeof(iface->netdev)); |
|
-#else |
|
- return 0; |
|
-#endif |
|
} else |
|
return 0; |
|
|
|
-- |
|
1.7.11.7 |
|
|
|
|