Commit d4e5160d authored by Long Li's avatar Long Li Committed by Steve French

cifs: smbd: Update receive credits before sending and deal with credits roll...

cifs: smbd: Update receive credits before sending and deal with credits roll back on failure before sending

Recevie credits should be updated before sending the packet, not
before a work is scheduled. Also, the value needs roll back if
something fails and cannot send.
Signed-off-by: default avatarLong Li <longli@microsoft.com>
Reported-by: default avatarkbuild test robot <lkp@intel.com>
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
parent 3ffbe78a
...@@ -450,8 +450,6 @@ static void smbd_post_send_credits(struct work_struct *work) ...@@ -450,8 +450,6 @@ static void smbd_post_send_credits(struct work_struct *work)
info->new_credits_offered += ret; info->new_credits_offered += ret;
spin_unlock(&info->lock_new_credits_offered); spin_unlock(&info->lock_new_credits_offered);
atomic_add(ret, &info->receive_credits);
/* Check if we can post new receive and grant credits to peer */ /* Check if we can post new receive and grant credits to peer */
check_and_send_immediate(info); check_and_send_immediate(info);
} }
...@@ -822,6 +820,7 @@ static int smbd_create_header(struct smbd_connection *info, ...@@ -822,6 +820,7 @@ static int smbd_create_header(struct smbd_connection *info,
struct smbd_request *request; struct smbd_request *request;
struct smbd_data_transfer *packet; struct smbd_data_transfer *packet;
int header_length; int header_length;
int new_credits;
int rc; int rc;
/* Wait for send credits. A SMBD packet needs one credit */ /* Wait for send credits. A SMBD packet needs one credit */
...@@ -840,7 +839,7 @@ static int smbd_create_header(struct smbd_connection *info, ...@@ -840,7 +839,7 @@ static int smbd_create_header(struct smbd_connection *info,
request = mempool_alloc(info->request_mempool, GFP_KERNEL); request = mempool_alloc(info->request_mempool, GFP_KERNEL);
if (!request) { if (!request) {
rc = -ENOMEM; rc = -ENOMEM;
goto err; goto err_alloc;
} }
request->info = info; request->info = info;
...@@ -848,8 +847,11 @@ static int smbd_create_header(struct smbd_connection *info, ...@@ -848,8 +847,11 @@ static int smbd_create_header(struct smbd_connection *info,
/* Fill in the packet header */ /* Fill in the packet header */
packet = smbd_request_payload(request); packet = smbd_request_payload(request);
packet->credits_requested = cpu_to_le16(info->send_credit_target); packet->credits_requested = cpu_to_le16(info->send_credit_target);
packet->credits_granted =
cpu_to_le16(manage_credits_prior_sending(info)); new_credits = manage_credits_prior_sending(info);
atomic_add(new_credits, &info->receive_credits);
packet->credits_granted = cpu_to_le16(new_credits);
info->send_immediate = false; info->send_immediate = false;
packet->flags = 0; packet->flags = 0;
...@@ -887,7 +889,7 @@ static int smbd_create_header(struct smbd_connection *info, ...@@ -887,7 +889,7 @@ static int smbd_create_header(struct smbd_connection *info,
if (ib_dma_mapping_error(info->id->device, request->sge[0].addr)) { if (ib_dma_mapping_error(info->id->device, request->sge[0].addr)) {
mempool_free(request, info->request_mempool); mempool_free(request, info->request_mempool);
rc = -EIO; rc = -EIO;
goto err; goto err_dma;
} }
request->sge[0].length = header_length; request->sge[0].length = header_length;
...@@ -896,8 +898,17 @@ static int smbd_create_header(struct smbd_connection *info, ...@@ -896,8 +898,17 @@ static int smbd_create_header(struct smbd_connection *info,
*request_out = request; *request_out = request;
return 0; return 0;
err: err_dma:
/* roll back receive credits */
spin_lock(&info->lock_new_credits_offered);
info->new_credits_offered += new_credits;
spin_unlock(&info->lock_new_credits_offered);
atomic_sub(new_credits, &info->receive_credits);
err_alloc:
/* roll back send credits */
atomic_inc(&info->send_credits); atomic_inc(&info->send_credits);
return rc; return rc;
} }
......
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