public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Wu, Jiaxin" <jiaxin.wu@intel.com>
To: Karunakar P <karunakarp@amiindia.co.in>,
	"Fu, Siyuan" <siyuan.fu@intel.com>,
	"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Cc: "Ye, Ting" <ting.ye@intel.com>
Subject: Re: [Patch] NetworkPkg/IScsiDxe: Display InitiatorInfo in attempt page even DHCP enabled.
Date: Mon, 16 Oct 2017 06:25:05 +0000	[thread overview]
Message-ID: <895558F6EA4E3B41AC93A00D163B72741633E267@SHSMSX103.ccr.corp.intel.com> (raw)
In-Reply-To: <A885E3F3F1F22B44AF7CC779C062228EE068ADE9@VENUS1.in.megatrends.com>

Hi Karunakar,

Thanks the verification, I agree it's another iSCSI bug that exposed by this patch. 

In IScsiGetConfigData() function, The existing attempt will always trigger the DHCP process if Initiator DHCP enabled no matter it associates with the current NIC or not. That's incorrect and unreasonable as you overserved if we display the InitiatorInfo in attempt page.

I will send another separated but series patch to fix this issue.

Thanks,
Jiaxin



> -----Original Message-----
> From: Karunakar P [mailto:karunakarp@amiindia.co.in]
> Sent: Friday, October 13, 2017 7:49 PM
> To: Fu, Siyuan <siyuan.fu@intel.com>; Wu, Jiaxin <jiaxin.wu@intel.com>;
> edk2-devel@lists.01.org
> Cc: Ye, Ting <ting.ye@intel.com>
> Subject: RE: [Patch] NetworkPkg/IScsiDxe: Display InitiatorInfo in attempt
> page even DHCP enabled.
> 
> Hi Jiaxin/Siyuan,
> 
> I've verified Initiator details with this changes.
> 
> I found an issue like Initiator Details are shown for Connection less NIC
> 
> Please find below details for more details
> 
> [Issue details and steps to reproduce]
> 1. SUT have 2 LAN ports
>   MAC  XX:XX:XX:XX:XX:AA  ->       LAN Cable NOT connected to this port, i.e.
> Link Status is Disconnected
>   MAC  XX:XX:XX:XX:XX:BB  ->       LAN Cable Connected to this port,  i.e. Link
> Status is Connected
> 
> 2. I've added two attempts
>    a. Attempt1 added to connection less NIC (MAC  XX:XX:XX:XX:XX:AA  )
>    b. Attempt2 added to connected NIC (MAC  XX:XX:XX:XX:XX:BB  )
> 
> [Observations]
> 1. Initiator IP Address and Subnet Mask displayed for both Attempt1 and
> Attempt2
> 
> Could you please comment on this observation?
> 
> Thanks,
> Karunakar
> 
> -----Original Message-----
> From: Fu, Siyuan [mailto:siyuan.fu@intel.com]
> Sent: Friday, October 13, 2017 11:54 AM
> To: Wu, Jiaxin; edk2-devel@lists.01.org
> Cc: Karunakar P; Ye, Ting
> Subject: RE: [Patch] NetworkPkg/IScsiDxe: Display InitiatorInfo in attempt
> page even DHCP enabled.
> 
> Reviewed-by: Fu Siyuan <siyuan.fu@intel.com>
> 
> -----Original Message-----
> From: Wu, Jiaxin
> Sent: Friday, October 13, 2017 2:01 PM
> To: edk2-devel@lists.01.org
> Cc: Karunakar P <karunakarp@amiindia.co.in>; Ye, Ting <ting.ye@intel.com>;
> Fu, Siyuan <siyuan.fu@intel.com>; Wu, Jiaxin <jiaxin.wu@intel.com>
> Subject: [Patch] NetworkPkg/IScsiDxe: Display InitiatorInfo in attempt page
> even DHCP enabled.
> 
> Cc: Karunakar P <karunakarp@amiindia.co.in>
> Cc: Ye Ting <ting.ye@intel.com>
> Cc: Fu Siyuan <siyuan.fu@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Wu Jiaxin <jiaxin.wu@intel.com>
> ---
>  NetworkPkg/IScsiDxe/IScsiConfigVfr.vfr | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/NetworkPkg/IScsiDxe/IScsiConfigVfr.vfr
> b/NetworkPkg/IScsiDxe/IScsiConfigVfr.vfr
> index d401419..35e8f9a 100644
> --- a/NetworkPkg/IScsiDxe/IScsiConfigVfr.vfr
> +++ b/NetworkPkg/IScsiDxe/IScsiConfigVfr.vfr
> @@ -189,13 +189,14 @@ formset
>              flags  = INTERACTIVE,
>              key    = KEY_DHCP_ENABLE,
>      endcheckbox;
>      endif;
> 
> -    suppressif ideqval ISCSI_CONFIG_IFR_NVDATA.InitiatorInfoFromDhcp ==
> 0x01 OR
> -               ideqval ISCSI_CONFIG_IFR_NVDATA.IpMode == IP_MODE_IP6 OR
> +    suppressif ideqval ISCSI_CONFIG_IFR_NVDATA.IpMode == IP_MODE_IP6
> OR
>                 ideqval ISCSI_CONFIG_IFR_NVDATA.IpMode ==
> IP_MODE_AUTOCONFIG;
> +
> +    grayoutif ideqval ISCSI_CONFIG_IFR_NVDATA.InitiatorInfoFromDhcp ==
> 0x01;
>      string  varid   = ISCSI_CONFIG_IFR_NVDATA.LocalIp,
>              prompt  = STRING_TOKEN(STR_ISCSI_LOCAL_IP_ADDRESS),
>              help    = STRING_TOKEN(STR_ISCSI_IP_ADDRESS_HELP),
>              flags   = INTERACTIVE,
>              key     = KEY_LOCAL_IP,
> @@ -218,10 +219,11 @@ formset
>              flags   = INTERACTIVE,
>              key     = KEY_GATE_WAY,
>              minsize = IP4_MIN_SIZE,
>              maxsize = IP4_MAX_SIZE,
>      endstring;
> +    endif;
> 
>      endif;
> 
>      suppressif ideqval ISCSI_CONFIG_IFR_NVDATA.IpMode ==
> IP_MODE_AUTOCONFIG;
>      subtitle text = STRING_TOKEN(STR_NULL);
> --
> 1.9.5.msysgit.1



      reply	other threads:[~2017-10-16  6:21 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-13  6:01 [Patch] NetworkPkg/IScsiDxe: Display InitiatorInfo in attempt page even DHCP enabled Jiaxin Wu
2017-10-13  6:24 ` Fu, Siyuan
2017-10-13 11:48   ` Karunakar P
2017-10-16  6:25     ` Wu, Jiaxin [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=895558F6EA4E3B41AC93A00D163B72741633E267@SHSMSX103.ccr.corp.intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox