public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Gao, Liming" <liming.gao@intel.com>
To: "Kinney, Michael D" <michael.d.kinney@intel.com>,
	"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [Patch v2 0/3] MdePkg/BaseSynchronizationLib: Add volatile
Date: Fri, 18 Nov 2016 00:55:42 +0000	[thread overview]
Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14B4B582F@shsmsx102.ccr.corp.intel.com> (raw)
In-Reply-To: <1479411282-10996-1-git-send-email-michael.d.kinney@intel.com>

Reviewed-by: Liming Gao <liming.gao@intel.com>

-----Original Message-----
From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of Michael Kinney
Sent: Friday, November 18, 2016 3:35 AM
To: edk2-devel@lists.01.org
Subject: [edk2] [Patch v2 0/3] MdePkg/BaseSynchronizationLib: Add volatile

Updates for V2
==============
* Split out patch that corrects function names in comment blocks
* Change InterlockedCompareExchangePointer() parameter from volatile VOID**
  to VOID * volatile *.
* Remove unnessary typecast in calls to InterlockedCompareExchangePointer()
* Fix missing copyright updates
* Minor formatting changes

Michael Kinney (3):
  MdePkg/Include: Add volatile to SynchronizationLib parameters
  MdePkg/BaseSynchronizationLib: Add volatile Interlocked*() APIs
  MdePkg/BaseSynchronizationLib: Fix function names in function headers

 MdePkg/Include/Library/SynchronizationLib.h              | 14 +++++++-------
 .../Ia32/InterlockedCompareExchange16.asm                |  4 ++--
 .../Ia32/InterlockedCompareExchange16.c                  |  4 ++--
 .../Ia32/InterlockedCompareExchange16.nasm               |  4 ++--
 .../Ia32/InterlockedCompareExchange32.asm                |  4 ++--
 .../Ia32/InterlockedCompareExchange32.c                  |  4 ++--
 .../Ia32/InterlockedCompareExchange32.nasm               |  4 ++--
 .../Ia32/InterlockedCompareExchange64.asm                |  4 ++--
 .../Ia32/InterlockedCompareExchange64.c                  |  4 ++--
 .../Ia32/InterlockedCompareExchange64.nasm               |  4 ++--
 .../BaseSynchronizationLib/Ia32/InterlockedDecrement.asm |  4 ++--
 .../BaseSynchronizationLib/Ia32/InterlockedDecrement.c   |  4 ++--
 .../Ia32/InterlockedDecrement.nasm                       |  4 ++--
 .../BaseSynchronizationLib/Ia32/InterlockedIncrement.asm |  4 ++--
 .../BaseSynchronizationLib/Ia32/InterlockedIncrement.c   |  4 ++--
 .../Ia32/InterlockedIncrement.nasm                       |  4 ++--
 MdePkg/Library/BaseSynchronizationLib/Synchronization.c  | 16 ++++++++--------
 .../Library/BaseSynchronizationLib/SynchronizationGcc.c  | 16 ++++++++--------
 .../Library/BaseSynchronizationLib/SynchronizationMsc.c  | 16 ++++++++--------
 .../X64/InterlockedCompareExchange16.asm                 |  6 +++---
 .../X64/InterlockedCompareExchange16.c                   |  4 ++--
 .../X64/InterlockedCompareExchange16.nasm                |  6 +++---
 .../X64/InterlockedCompareExchange32.asm                 |  6 +++---
 .../X64/InterlockedCompareExchange32.c                   |  4 ++--
 .../X64/InterlockedCompareExchange32.nasm                |  6 +++---
 .../X64/InterlockedCompareExchange64.asm                 |  6 +++---
 .../X64/InterlockedCompareExchange64.c                   |  4 ++--
 .../X64/InterlockedCompareExchange64.nasm                |  6 +++---
 .../BaseSynchronizationLib/X64/InterlockedDecrement.asm  |  6 +++---
 .../BaseSynchronizationLib/X64/InterlockedDecrement.c    |  6 +++---
 .../BaseSynchronizationLib/X64/InterlockedDecrement.nasm |  6 +++---
 .../BaseSynchronizationLib/X64/InterlockedIncrement.asm  |  6 +++---
 .../BaseSynchronizationLib/X64/InterlockedIncrement.c    |  6 +++---
 .../BaseSynchronizationLib/X64/InterlockedIncrement.nasm |  6 +++---
 34 files changed, 103 insertions(+), 103 deletions(-)

-- 
2.6.3.windows.1

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel


      parent reply	other threads:[~2016-11-18  0:55 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-17 19:34 [Patch v2 0/3] MdePkg/BaseSynchronizationLib: Add volatile Michael Kinney
2016-11-17 19:34 ` [Patch v2 1/3] MdePkg/Include: Add volatile to SynchronizationLib parameters Michael Kinney
2016-11-17 19:34 ` [Patch v2 2/3] MdePkg/BaseSynchronizationLib: Add volatile Interlocked*() APIs Michael Kinney
2016-11-17 19:34 ` [Patch v2 3/3] MdePkg/BaseSynchronizationLib: Fix function names in function headers Michael Kinney
2016-11-17 19:48 ` [Patch v2 0/3] MdePkg/BaseSynchronizationLib: Add volatile Laszlo Ersek
2016-11-18  0:55 ` Gao, Liming [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4A89E2EF3DFEDB4C8BFDE51014F606A14B4B582F@shsmsx102.ccr.corp.intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox