diff options
author | Ashish Shah <ashish.n.shah@intel.com> | 2014-08-01 16:27:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-08-02 22:41:14 -0400 |
commit | f19efbb5eff0ed718f8e213d256e3291ed4e43a9 (patch) | |
tree | 98389c0361d7935bbfe52d3fc4edb666a5250afe | |
parent | 53db45cd9ae5f39163054d55051a5a9ad0f5b821 (diff) |
i40e: use correct vf_id offset for virtchnl message
The vf_id needs to be offset by the vf_base_id from hw function capabilities
for the case of multiple PFs.
Change-ID: I20ca8621f98e9cdf98649380b8eeaa35db52677c
Signed-off-by: Ashish Shah <ashish.n.shah@intel.com>
Tested-by: Sibai Li <sibai.li@intel.com>
Signed-off-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c b/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c index cafda0cfc1a9..504bdf5939b5 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c +++ b/drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c | |||
@@ -1005,7 +1005,7 @@ static int i40e_vc_send_msg_to_vf(struct i40e_vf *vf, u32 v_opcode, | |||
1005 | { | 1005 | { |
1006 | struct i40e_pf *pf = vf->pf; | 1006 | struct i40e_pf *pf = vf->pf; |
1007 | struct i40e_hw *hw = &pf->hw; | 1007 | struct i40e_hw *hw = &pf->hw; |
1008 | int true_vf_id = vf->vf_id + hw->func_caps.vf_base_id; | 1008 | int abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id; |
1009 | i40e_status aq_ret; | 1009 | i40e_status aq_ret; |
1010 | 1010 | ||
1011 | /* single place to detect unsuccessful return values */ | 1011 | /* single place to detect unsuccessful return values */ |
@@ -1025,7 +1025,7 @@ static int i40e_vc_send_msg_to_vf(struct i40e_vf *vf, u32 v_opcode, | |||
1025 | vf->num_valid_msgs++; | 1025 | vf->num_valid_msgs++; |
1026 | } | 1026 | } |
1027 | 1027 | ||
1028 | aq_ret = i40e_aq_send_msg_to_vf(hw, true_vf_id, v_opcode, v_retval, | 1028 | aq_ret = i40e_aq_send_msg_to_vf(hw, abs_vf_id, v_opcode, v_retval, |
1029 | msg, msglen, NULL); | 1029 | msg, msglen, NULL); |
1030 | if (aq_ret) { | 1030 | if (aq_ret) { |
1031 | dev_err(&pf->pdev->dev, | 1031 | dev_err(&pf->pdev->dev, |
@@ -1935,15 +1935,17 @@ static void i40e_vc_vf_broadcast(struct i40e_pf *pf, | |||
1935 | { | 1935 | { |
1936 | struct i40e_hw *hw = &pf->hw; | 1936 | struct i40e_hw *hw = &pf->hw; |
1937 | struct i40e_vf *vf = pf->vf; | 1937 | struct i40e_vf *vf = pf->vf; |
1938 | int abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id; | ||
1938 | int i; | 1939 | int i; |
1939 | 1940 | ||
1940 | for (i = 0; i < pf->num_alloc_vfs; i++) { | 1941 | for (i = 0; i < pf->num_alloc_vfs; i++) { |
1941 | /* Ignore return value on purpose - a given VF may fail, but | 1942 | /* Ignore return value on purpose - a given VF may fail, but |
1942 | * we need to keep going and send to all of them | 1943 | * we need to keep going and send to all of them |
1943 | */ | 1944 | */ |
1944 | i40e_aq_send_msg_to_vf(hw, vf->vf_id, v_opcode, v_retval, | 1945 | i40e_aq_send_msg_to_vf(hw, abs_vf_id, v_opcode, v_retval, |
1945 | msg, msglen, NULL); | 1946 | msg, msglen, NULL); |
1946 | vf++; | 1947 | vf++; |
1948 | abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id; | ||
1947 | } | 1949 | } |
1948 | } | 1950 | } |
1949 | 1951 | ||
@@ -1959,6 +1961,7 @@ void i40e_vc_notify_link_state(struct i40e_pf *pf) | |||
1959 | struct i40e_hw *hw = &pf->hw; | 1961 | struct i40e_hw *hw = &pf->hw; |
1960 | struct i40e_vf *vf = pf->vf; | 1962 | struct i40e_vf *vf = pf->vf; |
1961 | struct i40e_link_status *ls = &pf->hw.phy.link_info; | 1963 | struct i40e_link_status *ls = &pf->hw.phy.link_info; |
1964 | int abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id; | ||
1962 | int i; | 1965 | int i; |
1963 | 1966 | ||
1964 | pfe.event = I40E_VIRTCHNL_EVENT_LINK_CHANGE; | 1967 | pfe.event = I40E_VIRTCHNL_EVENT_LINK_CHANGE; |
@@ -1973,10 +1976,11 @@ void i40e_vc_notify_link_state(struct i40e_pf *pf) | |||
1973 | ls->link_info & I40E_AQ_LINK_UP; | 1976 | ls->link_info & I40E_AQ_LINK_UP; |
1974 | pfe.event_data.link_event.link_speed = ls->link_speed; | 1977 | pfe.event_data.link_event.link_speed = ls->link_speed; |
1975 | } | 1978 | } |
1976 | i40e_aq_send_msg_to_vf(hw, vf->vf_id, I40E_VIRTCHNL_OP_EVENT, | 1979 | i40e_aq_send_msg_to_vf(hw, abs_vf_id, I40E_VIRTCHNL_OP_EVENT, |
1977 | 0, (u8 *)&pfe, sizeof(pfe), | 1980 | 0, (u8 *)&pfe, sizeof(pfe), |
1978 | NULL); | 1981 | NULL); |
1979 | vf++; | 1982 | vf++; |
1983 | abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id; | ||
1980 | } | 1984 | } |
1981 | } | 1985 | } |
1982 | 1986 | ||
@@ -2005,10 +2009,11 @@ void i40e_vc_notify_reset(struct i40e_pf *pf) | |||
2005 | void i40e_vc_notify_vf_reset(struct i40e_vf *vf) | 2009 | void i40e_vc_notify_vf_reset(struct i40e_vf *vf) |
2006 | { | 2010 | { |
2007 | struct i40e_virtchnl_pf_event pfe; | 2011 | struct i40e_virtchnl_pf_event pfe; |
2012 | int abs_vf_id = vf->vf_id + vf->pf->hw.func_caps.vf_base_id; | ||
2008 | 2013 | ||
2009 | pfe.event = I40E_VIRTCHNL_EVENT_RESET_IMPENDING; | 2014 | pfe.event = I40E_VIRTCHNL_EVENT_RESET_IMPENDING; |
2010 | pfe.severity = I40E_PF_EVENT_SEVERITY_CERTAIN_DOOM; | 2015 | pfe.severity = I40E_PF_EVENT_SEVERITY_CERTAIN_DOOM; |
2011 | i40e_aq_send_msg_to_vf(&vf->pf->hw, vf->vf_id, I40E_VIRTCHNL_OP_EVENT, | 2016 | i40e_aq_send_msg_to_vf(&vf->pf->hw, abs_vf_id, I40E_VIRTCHNL_OP_EVENT, |
2012 | I40E_SUCCESS, (u8 *)&pfe, | 2017 | I40E_SUCCESS, (u8 *)&pfe, |
2013 | sizeof(struct i40e_virtchnl_pf_event), NULL); | 2018 | sizeof(struct i40e_virtchnl_pf_event), NULL); |
2014 | } | 2019 | } |
@@ -2345,6 +2350,7 @@ int i40e_ndo_set_vf_link_state(struct net_device *netdev, int vf_id, int link) | |||
2345 | struct i40e_virtchnl_pf_event pfe; | 2350 | struct i40e_virtchnl_pf_event pfe; |
2346 | struct i40e_hw *hw = &pf->hw; | 2351 | struct i40e_hw *hw = &pf->hw; |
2347 | struct i40e_vf *vf; | 2352 | struct i40e_vf *vf; |
2353 | int abs_vf_id; | ||
2348 | int ret = 0; | 2354 | int ret = 0; |
2349 | 2355 | ||
2350 | /* validate the request */ | 2356 | /* validate the request */ |
@@ -2355,6 +2361,7 @@ int i40e_ndo_set_vf_link_state(struct net_device *netdev, int vf_id, int link) | |||
2355 | } | 2361 | } |
2356 | 2362 | ||
2357 | vf = &pf->vf[vf_id]; | 2363 | vf = &pf->vf[vf_id]; |
2364 | abs_vf_id = vf->vf_id + hw->func_caps.vf_base_id; | ||
2358 | 2365 | ||
2359 | pfe.event = I40E_VIRTCHNL_EVENT_LINK_CHANGE; | 2366 | pfe.event = I40E_VIRTCHNL_EVENT_LINK_CHANGE; |
2360 | pfe.severity = I40E_PF_EVENT_SEVERITY_INFO; | 2367 | pfe.severity = I40E_PF_EVENT_SEVERITY_INFO; |
@@ -2384,7 +2391,7 @@ int i40e_ndo_set_vf_link_state(struct net_device *netdev, int vf_id, int link) | |||
2384 | goto error_out; | 2391 | goto error_out; |
2385 | } | 2392 | } |
2386 | /* Notify the VF of its new link state */ | 2393 | /* Notify the VF of its new link state */ |
2387 | i40e_aq_send_msg_to_vf(hw, vf->vf_id, I40E_VIRTCHNL_OP_EVENT, | 2394 | i40e_aq_send_msg_to_vf(hw, abs_vf_id, I40E_VIRTCHNL_OP_EVENT, |
2388 | 0, (u8 *)&pfe, sizeof(pfe), NULL); | 2395 | 0, (u8 *)&pfe, sizeof(pfe), NULL); |
2389 | 2396 | ||
2390 | error_out: | 2397 | error_out: |