Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp269352pxk; Thu, 17 Sep 2020 02:33:20 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyH+WaFyjQkV/bmpHbnEVNoWhgdMaqtifvepUbj64p61E1M59X9kpVKyEJHPIOx98cd3pSE X-Received: by 2002:a05:6402:1a48:: with SMTP id bf8mr31487575edb.298.1600335199927; Thu, 17 Sep 2020 02:33:19 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1600335199; cv=none; d=google.com; s=arc-20160816; b=qlDenVDLYKYgsW31XkY6sH066/kQucNwxigtxxa+jmABf5BR2PbC6B2ZToktMRLWF2 cH/a87AWfMpgkZSpGzsfIuujTTLDjAl9OjSL58jPna3Wpm8ygqioFKIsjO9ycoeICR7n NvtQyVkBdIDSXnwvoW2Dc+M562Kmg5yEaJKE5mnCm/Mk95rSEBZmTpxWrfXKF4WImW7Y Ne/NZ22kpHcgeSBHm4OZ2RXKbrvSd26G7JNsoLir2TMFVLC4myD7qXtJTaVwuCqLtnWa SoKNyro0ewSNuw65nnhip8k9nPf4bKrtiMVQqe6x4XKsqxcOOwrETWr7P+NWik1USIh7 fs7g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=vPFqhEtBeYOIf2xqD0mH6uZrxBakcO93FGZxoRy24S8=; b=NOc4NWxNE3kmopSbXRPWp78tvDVybYFM2mbtlByE+JeqIn9brweOOlQrytsWn8b/Fh dZE/migeYfyVVloaMKlg6ybDmwtGLDh5QGeqIWeUMJmc8jMTzEocKapz7s9VwXJ88gq0 UGNwdX588f73uYDZpJ/fG6oNvXjDeFrrkTEBKKNrCXIwwO65OgsVhjhDTw/QNFdF6vUx QUqHgJU7h+bJmkCS0ODj/GxBcLCxULc+q8aqsVmcNJ1SJqEL0JH4YawP+jC7y9EF69Y4 nviqmN9QyKnZVS0+DGDREf2Q3V85ClXHcxwzxmPl1JevQFJSEZVFryZpb2b1GG7pQS32 cghg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id b3si13142750ejg.126.2020.09.17.02.32.56; Thu, 17 Sep 2020 02:33:19 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726446AbgIQJ3z (ORCPT + 99 others); Thu, 17 Sep 2020 05:29:55 -0400 Received: from szxga05-in.huawei.com ([45.249.212.191]:13229 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726180AbgIQJ3y (ORCPT ); Thu, 17 Sep 2020 05:29:54 -0400 Received: from DGGEMS403-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id 142B0358C863271402AA; Thu, 17 Sep 2020 17:29:50 +0800 (CST) Received: from huawei.com (10.175.113.32) by DGGEMS403-HUB.china.huawei.com (10.3.19.203) with Microsoft SMTP Server id 14.3.487.0; Thu, 17 Sep 2020 17:29:43 +0800 From: Liu Shixin To: Leon Romanovsky CC: Doug Ledford , Jason Gunthorpe , , , Liu Shixin Subject: [PATCH -next v2] RDMA/mlx5: fix type warning of sizeof in __mlx5_ib_alloc_counters() Date: Thu, 17 Sep 2020 17:52:16 +0800 Message-ID: <20200917095216.2381855-1-liushixin2@huawei.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200917090810.GB869610@unreal> References: <20200917090810.GB869610@unreal> MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.175.113.32] X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org sizeof() when applied to a pointer typed expression should give the size of the pointed data, even if the data is a pointer. Signed-off-by: Liu Shixin --- drivers/infiniband/hw/mlx5/counters.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/infiniband/hw/mlx5/counters.c b/drivers/infiniband/hw/mlx5/counters.c index 8d77fea0eb48..6f8a8b558070 100644 --- a/drivers/infiniband/hw/mlx5/counters.c +++ b/drivers/infiniband/hw/mlx5/counters.c @@ -457,7 +457,7 @@ static int __mlx5_ib_alloc_counters(struct mlx5_ib_dev *dev, cnts->num_ext_ppcnt_counters = ARRAY_SIZE(ext_ppcnt_cnts); num_counters += ARRAY_SIZE(ext_ppcnt_cnts); } - cnts->names = kcalloc(num_counters, sizeof(cnts->names), GFP_KERNEL); + cnts->names = kcalloc(num_counters, sizeof(*cnts->names), GFP_KERNEL); if (!cnts->names) return -ENOMEM; -- 2.25.1