From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.31, mailfrom: liming.gao@intel.com) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by groups.io with SMTP; Mon, 26 Aug 2019 16:56:34 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Aug 2019 16:56:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,435,1559545200"; d="scan'208";a="185115778" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by orsmga006.jf.intel.com with ESMTP; 26 Aug 2019 16:56:33 -0700 Received: from fmsmsx163.amr.corp.intel.com (10.18.125.72) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 26 Aug 2019 16:56:33 -0700 Received: from shsmsx108.ccr.corp.intel.com (10.239.4.97) by fmsmsx163.amr.corp.intel.com (10.18.125.72) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 26 Aug 2019 16:56:32 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.112]) by SHSMSX108.ccr.corp.intel.com ([169.254.8.163]) with mapi id 14.03.0439.000; Tue, 27 Aug 2019 07:56:31 +0800 From: "Liming Gao" To: "Ni, Ray" , "devel@edk2.groups.io" CC: "Kinney, Michael D" , "afish@apple.com" , "leif.lindholm@linaro.org" , "Laszlo Ersek (lersek@redhat.com)" Subject: Re: [edk2-devel] [PATCH] [edk2-stable201908] MdePkg/BluetoothLeConfig.h: Add type EfiBluetoothSmpPeerAddressList Thread-Topic: [edk2-devel] [PATCH] [edk2-stable201908] MdePkg/BluetoothLeConfig.h: Add type EfiBluetoothSmpPeerAddressList Thread-Index: AQHVXDp+LwMMVcNMj0yudivKwr9C5qcNvMcQgABeTSA= Date: Mon, 26 Aug 2019 23:56:30 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E4DC923@SHSMSX104.ccr.corp.intel.com> References: <15BE8BCCADEA547C.18314@groups.io> <734D49CCEBEEF84792F5B80ED585239D5C29AD17@SHSMSX104.ccr.corp.intel.com> In-Reply-To: <734D49CCEBEEF84792F5B80ED585239D5C29AD17@SHSMSX104.ccr.corp.intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Return-Path: liming.gao@intel.com Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Cc to all Stewards.=20 >-----Original Message----- >From: Ni, Ray >Sent: Tuesday, August 27, 2019 2:20 AM >To: devel@edk2.groups.io; Ni, Ray >Cc: Kinney, Michael D ; Gao, Liming > >Subject: RE: [edk2-devel] [PATCH] [edk2-stable201908] >MdePkg/BluetoothLeConfig.h: Add type EfiBluetoothSmpPeerAddressList > >I understand it's now in code freeze phase. >Just make a try to see whether this very clean/simple header file change = can >be included in the stable tag. >Any platform that uses BLE stack can get benefit from this definition upd= ate. > >> -----Original Message----- >> From: devel@edk2.groups.io On Behalf Of Ni, Ray >> Sent: Monday, August 26, 2019 11:16 AM >> To: devel@edk2.groups.io >> Cc: Kinney, Michael D ; Gao, Liming > >> Subject: [edk2-devel] [PATCH] [edk2-stable201908] >MdePkg/BluetoothLeConfig.h: Add type EfiBluetoothSmpPeerAddressList >> >> To support auto-connection, EFI_BLUETOOTH_LE_SMP_DATA_TYPE needs >to >> add a new data type EfiBluetoothSmpPeerAddressList which associates >> with a list of Bluetooth per address connected before. >> >> This new data type was added in UEFI spec 2.7b. >> >> Signed-off-by: Ray Ni >> Cc: Michael D Kinney >> Cc: Liming Gao >> --- >> MdePkg/Include/Protocol/BluetoothLeConfig.h | 4 +++- >> 1 file changed, 3 insertions(+), 1 deletion(-) >> >> diff --git a/MdePkg/Include/Protocol/BluetoothLeConfig.h >b/MdePkg/Include/Protocol/BluetoothLeConfig.h >> index 8c0f881f85..8726a58b15 100644 >> --- a/MdePkg/Include/Protocol/BluetoothLeConfig.h >> +++ b/MdePkg/Include/Protocol/BluetoothLeConfig.h >> @@ -2,7 +2,7 @@ >> EFI Bluetooth LE Config Protocol as defined in UEFI 2.7. >> This protocol abstracts user interface configuration for BluetoothLe= device. >> >> - Copyright (c) 2017, Intel Corporation. All rights reserved.
>> + Copyright (c) 2017 - 2019, Intel Corporation. All rights reserved. >> SPDX-License-Identifier: BSD-2-Clause-Patent >> >> @par Revision Reference: >> @@ -451,6 +451,8 @@ typedef enum { >> EfiBluetoothSmpLocalCSRK, /* If Key hierarchy not supported */ >> EfiBluetoothSmpLocalSignCounter, >> EfiBluetoothSmpLocalDIV, >> + EfiBluetoothSmpPeerAddressList, >> + EfiBluetoothSmpMax, >> } EFI_BLUETOOTH_LE_SMP_DATA_TYPE; >> >> /** >> -- >> 2.21.0.windows.1 >> >> >>=20