Jeff Layton <[email protected]> wrote:

> ...to reduce the extreme indentation. This should introduce no
> behavioral changes.
> 
> Cc: [email protected]
> Signed-off-by: Jeff Layton <[email protected]>

In fact, you could go further.  In the code you have:

> +                             } else {
> +                                     if (!isLargeBuf) {
> ...
> +                                     } else {
> ...
>                                       }
>                               }

That could be merged and some more indentation removed:

                                } else if (!isLargeBuf) {
...
                                } else {
...
                                }

Though I acknowledge you may want to keep it for the logical structure.

Anyway:

Acked-by: David Howells <[email protected]>
--
To unsubscribe from this list: send the line "unsubscribe linux-cifs" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to