From patchwork Mon Dec 11 13:04:23 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Vacek X-Patchwork-Id: 13487201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="G4Gn4NW5" Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CB2FAC3 for ; Mon, 11 Dec 2023 05:04:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1702299877; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=VzAC67twAFkoZWVKcw3UCDQq4Io2ZB3JxaBjcTMtrtA=; b=G4Gn4NW5KCD2vN71r7MNPT1nkgrwBlhWmZOwWEBIiAzYkl+mhM6hhN6w3GTAXwzaDdoFMw YgRkJ56806VdUtVjViI0iUUVNapoqP3brKWCGhi3IFO1kKdkpv+qHBjo46cyG14Wr4dbfH dEaJFhe2hZRwKNKODr8vY3FgTzjDEBk= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-627-N5kNjH8EO7eFxpFD1v3Bcw-1; Mon, 11 Dec 2023 08:04:30 -0500 X-MC-Unique: N5kNjH8EO7eFxpFD1v3Bcw-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.rdu2.redhat.com [10.11.54.7]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 2BF243811F2E; Mon, 11 Dec 2023 13:04:30 +0000 (UTC) Received: from metal.redhat.com (unknown [10.45.224.23]) by smtp.corp.redhat.com (Postfix) with ESMTP id E612C1C060B1; Mon, 11 Dec 2023 13:04:28 +0000 (UTC) From: Daniel Vacek To: Jason Gunthorpe , Leon Romanovsky Cc: linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org, Daniel Vacek Subject: [PATCH 0/2] IB/ipoib fixes Date: Mon, 11 Dec 2023 14:04:23 +0100 Message-ID: <20231211130426.1500427-1-neelx@redhat.com> Precedence: bulk X-Mailing-List: linux-rdma@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.7 The first patch (hopefully) fixes a real issue while the second is an unrelated cleanup. But it shares a context so sending as a series. Daniel Vacek (2): IB/ipoib: Fix mcast list locking IB/ipoib: Clean up redundant netif_addr_lock drivers/infiniband/ulp/ipoib/ipoib_multicast.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) Reported-by: Yuya Fujita