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 X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9E1AAC433DF for ; Fri, 16 Oct 2020 07:32:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 369112084C for ; Fri, 16 Oct 2020 07:32:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1602833525; bh=o3S76MaHCzIxa84z66Zm9RAV2KQ2dCgrMx32xNK2AWQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=NBsZo8e3Z3h60mWLYvTzGTAWVzlCUFQTEps0EOR48W0Dzr+DwIdv3J/R8uJMSyH8f bZFXxjAVJZ5kKeGChM9MNGYM6rqRnQ/7m8TjklN1sQ4+T0aELdYN69jvNUQB17dEgj OV+oepkRKdXprC1LYm5eglNeHQO3yN8Mwi+i03FM= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2404574AbgJPHcE (ORCPT ); Fri, 16 Oct 2020 03:32:04 -0400 Received: from mail.kernel.org ([198.145.29.99]:49136 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2394561AbgJPHcE (ORCPT ); Fri, 16 Oct 2020 03:32:04 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 1449720829; Fri, 16 Oct 2020 07:32:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1602833523; bh=o3S76MaHCzIxa84z66Zm9RAV2KQ2dCgrMx32xNK2AWQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=xqTBQwgR0gZhlGik4q/eyVNiJmp4Hzx+fDRzF84t73+XUGP7Ivs4kSljAtxCedlTl WV2pNStfxWJ+TGFELT2fT8vlAXUhfOBpVOFT5kI6TWLvQ4phMmKhLfujQXlKfMA9mw /dzrQNxoQC2fDJ8dyrxefpp8gY9O5JuKj5tyxmOI= Date: Fri, 16 Oct 2020 09:32:34 +0200 From: Greg KH To: Hans-Christian Noren Egtvedt Cc: linux-kernel@vger.kernel.org, Luiz Augusto von Dentz , Marcel Holtmann , stable@vger.kernel.org Subject: Re: [v4.4/bluetooth PATCH 1/3] Bluetooth: Consolidate encryption handling in hci_encrypt_cfm Message-ID: <20201016073234.GB578349@kroah.com> References: <20201015211225.1188104-1-hegtvedt@cisco.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201015211225.1188104-1-hegtvedt@cisco.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Oct 15, 2020 at 11:12:23PM +0200, Hans-Christian Noren Egtvedt wrote: > From: Luiz Augusto von Dentz > > This makes hci_encrypt_cfm calls hci_connect_cfm in case the connection > state is BT_CONFIG so callers don't have to check the state. > > Signed-off-by: Luiz Augusto von Dentz > Signed-off-by: Marcel Holtmann > (cherry picked from commit 3ca44c16b0dcc764b641ee4ac226909f5c421aa3) > Cc: stable@vger.kernel.org # 4.4 > --- > include/net/bluetooth/hci_core.h | 20 ++++++++++++++++++-- > net/bluetooth/hci_event.c | 28 +++------------------------- > 2 files changed, 21 insertions(+), 27 deletions(-) What differs here from the other patch series you sent? Looks the same to me...