i40iw: Enable message packing
Remove the parameter to disable message packing and always enable it. Signed-off-by: Shiraz Saleem <shiraz.saleem@intel.com> Signed-off-by: Henry Orosco <henry.orosco@intel.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:

committed by
Doug Ledford

parent
0fc2dc5889
commit
d62d563424
@@ -429,12 +429,10 @@ static enum i40iw_status_code i40iw_sc_cqp_init(struct i40iw_sc_cqp *cqp,
|
|||||||
/**
|
/**
|
||||||
* i40iw_sc_cqp_create - create cqp during bringup
|
* i40iw_sc_cqp_create - create cqp during bringup
|
||||||
* @cqp: struct for cqp hw
|
* @cqp: struct for cqp hw
|
||||||
* @disable_pfpdus: if pfpdu to be disabled
|
|
||||||
* @maj_err: If error, major err number
|
* @maj_err: If error, major err number
|
||||||
* @min_err: If error, minor err number
|
* @min_err: If error, minor err number
|
||||||
*/
|
*/
|
||||||
static enum i40iw_status_code i40iw_sc_cqp_create(struct i40iw_sc_cqp *cqp,
|
static enum i40iw_status_code i40iw_sc_cqp_create(struct i40iw_sc_cqp *cqp,
|
||||||
bool disable_pfpdus,
|
|
||||||
u16 *maj_err,
|
u16 *maj_err,
|
||||||
u16 *min_err)
|
u16 *min_err)
|
||||||
{
|
{
|
||||||
@@ -453,9 +451,6 @@ static enum i40iw_status_code i40iw_sc_cqp_create(struct i40iw_sc_cqp *cqp,
|
|||||||
temp = LS_64(cqp->hw_sq_size, I40IW_CQPHC_SQSIZE) |
|
temp = LS_64(cqp->hw_sq_size, I40IW_CQPHC_SQSIZE) |
|
||||||
LS_64(cqp->struct_ver, I40IW_CQPHC_SVER);
|
LS_64(cqp->struct_ver, I40IW_CQPHC_SVER);
|
||||||
|
|
||||||
if (disable_pfpdus)
|
|
||||||
temp |= LS_64(1, I40IW_CQPHC_DISABLE_PFPDUS);
|
|
||||||
|
|
||||||
set_64bit_val(cqp->host_ctx, 0, temp);
|
set_64bit_val(cqp->host_ctx, 0, temp);
|
||||||
set_64bit_val(cqp->host_ctx, 8, cqp->sq_pa);
|
set_64bit_val(cqp->host_ctx, 8, cqp->sq_pa);
|
||||||
temp = LS_64(cqp->enabled_vf_count, I40IW_CQPHC_ENABLED_VFS) |
|
temp = LS_64(cqp->enabled_vf_count, I40IW_CQPHC_ENABLED_VFS) |
|
||||||
|
@@ -603,7 +603,7 @@ static enum i40iw_status_code i40iw_create_cqp(struct i40iw_device *iwdev)
|
|||||||
i40iw_pr_err("cqp init status %d\n", status);
|
i40iw_pr_err("cqp init status %d\n", status);
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
status = dev->cqp_ops->cqp_create(dev->cqp, true, &maj_err, &min_err);
|
status = dev->cqp_ops->cqp_create(dev->cqp, &maj_err, &min_err);
|
||||||
if (status) {
|
if (status) {
|
||||||
i40iw_pr_err("cqp create status %d maj_err %d min_err %d\n",
|
i40iw_pr_err("cqp create status %d maj_err %d min_err %d\n",
|
||||||
status, maj_err, min_err);
|
status, maj_err, min_err);
|
||||||
|
@@ -988,7 +988,7 @@ struct i40iw_cqp_query_fpm_values {
|
|||||||
struct i40iw_cqp_ops {
|
struct i40iw_cqp_ops {
|
||||||
enum i40iw_status_code (*cqp_init)(struct i40iw_sc_cqp *,
|
enum i40iw_status_code (*cqp_init)(struct i40iw_sc_cqp *,
|
||||||
struct i40iw_cqp_init_info *);
|
struct i40iw_cqp_init_info *);
|
||||||
enum i40iw_status_code (*cqp_create)(struct i40iw_sc_cqp *, bool, u16 *, u16 *);
|
enum i40iw_status_code (*cqp_create)(struct i40iw_sc_cqp *, u16 *, u16 *);
|
||||||
void (*cqp_post_sq)(struct i40iw_sc_cqp *);
|
void (*cqp_post_sq)(struct i40iw_sc_cqp *);
|
||||||
u64 *(*cqp_get_next_send_wqe)(struct i40iw_sc_cqp *, u64 scratch);
|
u64 *(*cqp_get_next_send_wqe)(struct i40iw_sc_cqp *, u64 scratch);
|
||||||
enum i40iw_status_code (*cqp_destroy)(struct i40iw_sc_cqp *);
|
enum i40iw_status_code (*cqp_destroy)(struct i40iw_sc_cqp *);
|
||||||
|
Reference in New Issue
Block a user