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 9EAA0C04A68 for ; Sat, 30 Jul 2022 13:14:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233597AbiG3NOU (ORCPT ); Sat, 30 Jul 2022 09:14:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43008 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232428AbiG3NOT (ORCPT ); Sat, 30 Jul 2022 09:14:19 -0400 Received: from out2.migadu.com (out2.migadu.com [188.165.223.204]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EFEFC15A0A for ; Sat, 30 Jul 2022 06:14:17 -0700 (PDT) Message-ID: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1659186856; 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=e1xK8vhmXl4uDXCC/17soqHCmSfB6VjOybhXychJnC8=; b=A8/x6tbIM4PibKwAMIvCkb2WWCkI6+BU+uQDu/1wQjpA0ISw+JGEL0alB8LR4EeKbTN7Ai V1FZfdMK+j67UW9HMSAGCnWlylNKtaby/8qVXg9FFYSV+2FpYY2lV1te65FXtIvbusg2lB 3Vk0lUQR2V6IJ6yJ0sX94NhnhRc2hxI= Date: Sat, 30 Jul 2022 21:14:07 +0800 MIME-Version: 1.0 Subject: Re: [PATCHv3 1/1] RDMA/rxe: Fix qp error handler To: Jason Gunthorpe , yanjun.zhu@linux.dev Cc: leon@kernel.org, linux-rdma@vger.kernel.org, syzbot+833061116fa28df97f3b@syzkaller.appspotmail.com References: <20220726045631.183632-1-yanjun.zhu@linux.dev> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Yanjun Zhu In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: linux.dev Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org 在 2022/7/29 0:38, Jason Gunthorpe 写道: > On Tue, Jul 26, 2022 at 12:56:31AM -0400, yanjun.zhu@linux.dev wrote: >> From: Zhu Yanjun >> >> About 7 spin locks in qp creation needs to be initialized. Now these >> spin locks are initialized in the function rxe_qp_init_misc. This >> will avoid the error "initialize spin locks before use". > > Explain the problem completely please, is this triggered in an error > unwind case? I will explain this problem in detail. Zhu Yanjun > >> Reported-by: syzbot+833061116fa28df97f3b@syzkaller.appspotmail.com > > This isn't the right format for reported by > > Jason