From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B49B8C433FE for ; Thu, 17 Nov 2022 07:11:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239095AbiKQHLy (ORCPT ); Thu, 17 Nov 2022 02:11:54 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51396 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229991AbiKQHLt (ORCPT ); Thu, 17 Nov 2022 02:11:49 -0500 Received: from out2.migadu.com (out2.migadu.com [IPv6:2001:41d0:2:aacc::]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 534CF67139 for ; Wed, 16 Nov 2022 23:11:48 -0800 (PST) Subject: Re: [PATCH 1/8] RDMA/rtrs-srv: Refactor rtrs_srv_rdma_cm_handler DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1668669106; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=8Tau9zwmL7IyEw84W6hiJEXrqJg6Mub//kNDvqJwMAI=; b=w92zgS69JwPo0RN3DIQeOZlvByE458IsYvscYSI2y6cMwg2dVCa8XK7uWgGcoFls5jnI3r UUo0rSYvkVPXvYVa95IjHMn3okF7qpift55+XTYXWMy02zXywhPAjjCnGDy7AmbbUK3RND 4+HcIKXlHO+lvI3BWF1itP/cVGxr8w4= To: Jinpu Wang Cc: haris.iqbal@ionos.com, jgg@ziepe.ca, leon@kernel.org, linux-rdma@vger.kernel.org References: <20221116111400.7203-1-guoqing.jiang@linux.dev> <20221116111400.7203-2-guoqing.jiang@linux.dev> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Guoqing Jiang Message-ID: <9c3cf1f5-bd66-7026-9847-1116997a7b9e@linux.dev> Date: Thu, 17 Nov 2022 15:11:36 +0800 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Migadu-Flow: FLOW_OUT Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org On 11/17/22 1:52 PM, Jinpu Wang wrote: > On Wed, Nov 16, 2022 at 12:14 PM Guoqing Jiang wrote: >> The RDMA_CM_EVENT_CONNECT_REQUEST is quite different to other types, >> let's checking it separately at the beginning of routine, then we can >> avoid the identation accordingly. > There are two typos. > s/checking/check > s/identation/indentation. Thanks! Will send a new version to fix all of them. Guoqing