Commit adb1c0d1 authored by Shiraz Saleem's avatar Shiraz Saleem Committed by Jason Gunthorpe

nes: Change accelerated flag to bool

The accelerated flag only utilizes two values: 0 and 1.
Modify accelerated flag in struct nes_cm_node to bool.
Signed-off-by: default avatarShiraz Saleem <shiraz.saleem@intel.com>
Reviewed-by: default avatarYuval Shaia <yuval.shaia@oracle.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent 72c7fe90
...@@ -1365,7 +1365,7 @@ static int mini_cm_del_listen(struct nes_cm_core *cm_core, ...@@ -1365,7 +1365,7 @@ static int mini_cm_del_listen(struct nes_cm_core *cm_core,
static inline int mini_cm_accelerated(struct nes_cm_core *cm_core, static inline int mini_cm_accelerated(struct nes_cm_core *cm_core,
struct nes_cm_node *cm_node) struct nes_cm_node *cm_node)
{ {
cm_node->accelerated = 1; cm_node->accelerated = true;
if (cm_node->accept_pend) { if (cm_node->accept_pend) {
BUG_ON(!cm_node->listener); BUG_ON(!cm_node->listener);
......
...@@ -340,7 +340,7 @@ struct nes_cm_node { ...@@ -340,7 +340,7 @@ struct nes_cm_node {
u16 mpa_frame_size; u16 mpa_frame_size;
struct iw_cm_id *cm_id; struct iw_cm_id *cm_id;
struct list_head list; struct list_head list;
int accelerated; bool accelerated;
struct nes_cm_listener *listener; struct nes_cm_listener *listener;
enum nes_cm_conn_type conn_type; enum nes_cm_conn_type conn_type;
struct nes_vnic *nesvnic; struct nes_vnic *nesvnic;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment