Re: [PATCH 4/5] cifs: refactor mid finding loop in cifs_demultiplex_thread

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



>From this series all but the cifs: remove unneeded variable
initialization in cifs_r... (which doesn't need to go in 2.6.39) look
fine and are merged.

On Tue, Apr 26, 2011 at 7:03 AM, Jeff Layton <jlayton@xxxxxxxxxx> wrote:
> ...to reduce the extreme indentation. This should introduce no
> behavioral changes.
>
> Cc: stable@xxxxxxxxxx
> Signed-off-by: Jeff Layton <jlayton@xxxxxxxxxx>
> ---
>  fs/cifs/connect.c |   92 ++++++++++++++++++++++++++--------------------------
>  1 files changed, 46 insertions(+), 46 deletions(-)
>
> diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
> index a038f29..a2cde4c 100644
> --- a/fs/cifs/connect.c
> +++ b/fs/cifs/connect.c
> @@ -616,59 +616,59 @@ incomplete_rcv:
>                list_for_each_safe(tmp, tmp2, &server->pending_mid_q) {
>                        mid_entry = list_entry(tmp, struct mid_q_entry, qhead);
>
> -                       if ((mid_entry->mid == smb_buffer->Mid) &&
> -                           (mid_entry->midState == MID_REQUEST_SUBMITTED) &&
> -                           (mid_entry->command == smb_buffer->Command)) {
> -                               if (length == 0 &&
> -                                  check2ndT2(smb_buffer, server->maxBuf) > 0) {
> -                                       /* We have a multipart transact2 resp */
> -                                       isMultiRsp = true;
> -                                       if (mid_entry->resp_buf) {
> -                                               /* merge response - fix up 1st*/
> -                                               if (coalesce_t2(smb_buffer,
> +                       if (mid_entry->mid != smb_buffer->Mid ||
> +                           mid_entry->midState != MID_REQUEST_SUBMITTED ||
> +                           mid_entry->command != smb_buffer->Command) {
> +                               mid_entry = NULL;
> +                               continue;
> +                       }
> +
> +                       if (length == 0 &&
> +                           check2ndT2(smb_buffer, server->maxBuf) > 0) {
> +                               /* We have a multipart transact2 resp */
> +                               isMultiRsp = true;
> +                               if (mid_entry->resp_buf) {
> +                                       /* merge response - fix up 1st*/
> +                                       if (coalesce_t2(smb_buffer,
>                                                        mid_entry->resp_buf)) {
> -                                                       mid_entry->multiRsp =
> -                                                                true;
> -                                                       break;
> -                                               } else {
> -                                                       /* all parts received */
> -                                                       mid_entry->multiEnd =
> -                                                                true;
> -                                                       goto multi_t2_fnd;
> -                                               }
> +                                               mid_entry->multiRsp = true;
> +                                               break;
>                                        } else {
> -                                               if (!isLargeBuf) {
> -                                                       cERROR(1, "1st trans2 resp needs bigbuf");
> -                                       /* BB maybe we can fix this up,  switch
> -                                          to already allocated large buffer? */
> -                                               } else {
> -                                                       /* Have first buffer */
> -                                                       mid_entry->resp_buf =
> -                                                                smb_buffer;
> -                                                       mid_entry->largeBuf =
> -                                                                true;
> -                                                       bigbuf = NULL;
> -                                               }
> +                                               /* all parts received */
> +                                               mid_entry->multiEnd = true;
> +                                               goto multi_t2_fnd;
> +                                       }
> +                               } else {
> +                                       if (!isLargeBuf) {
> +                                               /*
> +                                                * FIXME: switch to already
> +                                                *        allocated largebuf?
> +                                                */
> +                                               cERROR(1, "1st trans2 resp "
> +                                                         "needs bigbuf");
> +                                       } else {
> +                                               /* Have first buffer */
> +                                               mid_entry->resp_buf =
> +                                                        smb_buffer;
> +                                               mid_entry->largeBuf = true;
> +                                               bigbuf = NULL;
>                                        }
> -                                       break;
>                                }
> -                               mid_entry->resp_buf = smb_buffer;
> -                               mid_entry->largeBuf = isLargeBuf;
> +                               break;
> +                       }
> +                       mid_entry->resp_buf = smb_buffer;
> +                       mid_entry->largeBuf = isLargeBuf;
>  multi_t2_fnd:
> -                               if (length == 0)
> -                                       mid_entry->midState =
> -                                                       MID_RESPONSE_RECEIVED;
> -                               else
> -                                       mid_entry->midState =
> -                                                       MID_RESPONSE_MALFORMED;
> +                       if (length == 0)
> +                               mid_entry->midState = MID_RESPONSE_RECEIVED;
> +                       else
> +                               mid_entry->midState = MID_RESPONSE_MALFORMED;
>  #ifdef CONFIG_CIFS_STATS2
> -                               mid_entry->when_received = jiffies;
> +                       mid_entry->when_received = jiffies;
>  #endif
> -                               list_del_init(&mid_entry->qhead);
> -                               mid_entry->callback(mid_entry);
> -                               break;
> -                       }
> -                       mid_entry = NULL;
> +                       list_del_init(&mid_entry->qhead);
> +                       mid_entry->callback(mid_entry);
> +                       break;
>                }
>                spin_unlock(&GlobalMid_Lock);
>
> --
> 1.7.4.4
>
>



-- 
Thanks,

Steve
ÿôèº{.nÇ+?·?®?­?+%?Ëÿ±éݶ¥?wÿº{.nÇ+?·¥?{±ýÈ?³ø§¶?¡Ü¨}©?²Æ zÚ&j:+v?¨þø¯ù®w¥þ?à2?Þ?¨è­Ú&¢)ß¡«a¶Úÿÿûàz¿äz¹Þ?ú+?ù???Ý¢jÿ?wèþf



[Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux