All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <20200325002811.GO19865@paulmck-ThinkPad-P72>

diff --git a/a/content_digest b/N1/content_digest
index 60dc324..1c86f39 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -24,32 +24,7 @@
   Kalle Valo <kvalo@codeaurora.org>
   David S. Miller <davem@davemloft.net>
   linux-wireless@vger.kernel.org
-  netdev@vger.kernel.org
-  Darren Hart <dvhart@infradead.org>
-  Andy Shevchenko <andy@infradead.org>
-  platform-driver-x86@vger.kernel.org
-  Zhang Rui <rui.zhang@intel.com>
-  Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-  linux-pm@vger.kernel.org
-  Len Brown <lenb@kernel.org>
-  linux-acpi@vger.kernel.org
-  kbuild test robot <lkp@intel.com>
-  Nick Hu <nickhu@andestech.com>
-  Greentime Hu <green.hu@gmail.com>
-  Vincent Chen <deanbo422@gmail.com>
-  Guo Ren <guoren@kernel.org>
-  linux-csky@vger.kernel.org
-  Brian Cain <bcain@codeaurora.org>
-  linux-hexagon@vger.kernel.org
-  Tony Luck <tony.luck@intel.com>
-  Fenghua Yu <fenghua.yu@intel.com>
-  linux-ia64@vger.kernel.org
-  Michal Simek <monstr@monstr.eu>
-  Michael Ellerman <mpe@ellerman.id.au>
-  Arnd Bergmann <arnd@arndb.de>
-  Geoff Levand <geoff@infradead.org>
-  linuxppc-dev@lists.ozlabs.org
- " Davidlohr Bueso <dbueso@suse.de>\0"
+ " net\0"
  "\00:1\0"
  "b\0"
  "On Wed, Mar 25, 2020 at 12:13:34AM +0100, Thomas Gleixner wrote:\n"
@@ -262,4 +237,4 @@
  "-CONFIG_PREEMPT_RT and otherwise.\n"
  +PREEMPT_RT and otherwise.
 
-565f04c6b26b40591d0aebc7caffe1e933dd5b68f00c5ab98174ea7969db16ba
+59171bb3f099f2b725b91f7e4eeb6ebd2c6d044ab0c7ae1b7dbe53eed899c68e

diff --git a/a/1.txt b/N2/1.txt
index f818768..f3bb658 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -13,7 +13,7 @@ On Wed, Mar 25, 2020 at 12:13:34AM +0100, Thomas Gleixner wrote:
 > >          state = SLEEPONLOCK
 > >
 > >                                lock wakeup
-> >                                  state = real_state == UNINTERRUPTIBLE
+> >                                  state = real_state = UNINTERRUPTIBLE
 > >
 > > This sequence of events can occur when the task acquires spinlocks
 > > on its way to sleeping, for example, in a call to wait_event().
@@ -31,7 +31,7 @@ On Wed, Mar 25, 2020 at 12:13:34AM +0100, Thomas Gleixner wrote:
 > >                                  real_state = RUNNING
 > >
 > >                                lock wakeup
-> >                                  state = real_state == RUNNING
+> >                                  state = real_state = RUNNING
 > >
 > > Without this real_state subterfuge, the wakeup might be lost.
 > 
@@ -129,8 +129,7 @@ index ca7bf84..8eb52e9 100644
  
 -sempahore
 +semaphore
- =========
- 
+ ==== 
  semaphore is a counting semaphore implementation.
 @@ -103,17 +103,17 @@ Semaphores are often used for both serialization and waiting, but new use
  cases should instead use separate serialization and wait mechanisms, such
@@ -154,7 +153,7 @@ index ca7bf84..8eb52e9 100644
  
 -rw_sempahore
 +rw_semaphore
- ============
+ ======
  
  rw_semaphore is a multiple readers and single writer lock mechanism.
 @@ -125,13 +125,13 @@ rw_semaphore complies by default with the strict owner semantics, but there
diff --git a/a/content_digest b/N2/content_digest
index 60dc324..08583c6 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -2,7 +2,7 @@
  "ref\087r1xhz6qp.fsf@nanos.tec.linutronix.de\0"
  "From\0Paul E. McKenney <paulmck@kernel.org>\0"
  "Subject\0Re: [patch V3 13/20] Documentation: Add lock ordering and nesting documentation\0"
- "Date\0Tue, 24 Mar 2020 17:28:11 -0700\0"
+ "Date\0Wed, 25 Mar 2020 00:28:11 +0000\0"
  "To\0Thomas Gleixner <tglx@linutronix.de>\0"
  "Cc\0LKML <linux-kernel@vger.kernel.org>"
   Peter Zijlstra <peterz@infradead.org>
@@ -67,7 +67,7 @@
  "> >          state = SLEEPONLOCK\n"
  "> >\n"
  "> >                                lock wakeup\n"
- "> >                                  state = real_state == UNINTERRUPTIBLE\n"
+ "> >                                  state = real_state = UNINTERRUPTIBLE\n"
  "> >\n"
  "> > This sequence of events can occur when the task acquires spinlocks\n"
  "> > on its way to sleeping, for example, in a call to wait_event().\n"
@@ -85,7 +85,7 @@
  "> >                                  real_state = RUNNING\n"
  "> >\n"
  "> >                                lock wakeup\n"
- "> >                                  state = real_state == RUNNING\n"
+ "> >                                  state = real_state = RUNNING\n"
  "> >\n"
  "> > Without this real_state subterfuge, the wakeup might be lost.\n"
  "> \n"
@@ -183,8 +183,7 @@
  " \n"
  "-sempahore\n"
  "+semaphore\n"
- " =========\n"
- " \n"
+ " ==== \n"
  " semaphore is a counting semaphore implementation.\n"
  "@@ -103,17 +103,17 @@ Semaphores are often used for both serialization and waiting, but new use\n"
  " cases should instead use separate serialization and wait mechanisms, such\n"
@@ -208,7 +207,7 @@
  " \n"
  "-rw_sempahore\n"
  "+rw_semaphore\n"
- " ============\n"
+ " ======\n"
  " \n"
  " rw_semaphore is a multiple readers and single writer lock mechanism.\n"
  "@@ -125,13 +125,13 @@ rw_semaphore complies by default with the strict owner semantics, but there\n"
@@ -262,4 +261,4 @@
  "-CONFIG_PREEMPT_RT and otherwise.\n"
  +PREEMPT_RT and otherwise.
 
-565f04c6b26b40591d0aebc7caffe1e933dd5b68f00c5ab98174ea7969db16ba
+ed6edb451d23ff1ec01843fbd644d28d141f4408d397b90040a37aeb6838432d

diff --git a/a/content_digest b/N3/content_digest
index 60dc324..841680a 100644
--- a/a/content_digest
+++ b/N3/content_digest
@@ -4,52 +4,51 @@
  "Subject\0Re: [patch V3 13/20] Documentation: Add lock ordering and nesting documentation\0"
  "Date\0Tue, 24 Mar 2020 17:28:11 -0700\0"
  "To\0Thomas Gleixner <tglx@linutronix.de>\0"
- "Cc\0LKML <linux-kernel@vger.kernel.org>"
+ "Cc\0linux-usb@vger.kernel.org"
+  linux-ia64@vger.kernel.org
   Peter Zijlstra <peterz@infradead.org>
-  Ingo Molnar <mingo@kernel.org>
+  linux-pci@vger.kernel.org
   Sebastian Siewior <bigeasy@linutronix.de>
-  Linus Torvalds <torvalds@linux-foundation.org>
-  Joel Fernandes <joel@joelfernandes.org>
   Oleg Nesterov <oleg@redhat.com>
+  Guo Ren <guoren@kernel.org>
+  Joel Fernandes <joel@joelfernandes.org>
+  Vincent Chen <deanbo422@gmail.com>
+  Ingo Molnar <mingo@kernel.org>
   Davidlohr Bueso <dave@stgolabs.net>
+  linux-acpi@vger.kernel.org
+  Brian Cain <bcain@codeaurora.org>
   Jonathan Corbet <corbet@lwn.net>
-  Randy Dunlap <rdunlap@infradead.org>
-  Logan Gunthorpe <logang@deltatee.com>
-  Bjorn Helgaas <bhelgaas@google.com>
-  Kurt Schwemmer <kurt.schwemmer@microsemi.com>
-  linux-pci@vger.kernel.org
-  Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-  Felipe Balbi <balbi@kernel.org>
-  linux-usb@vger.kernel.org
-  Kalle Valo <kvalo@codeaurora.org>
-  David S. Miller <davem@davemloft.net>
-  linux-wireless@vger.kernel.org
-  netdev@vger.kernel.org
+  linux-hexagon@vger.kernel.org
+  Rafael J. Wysocki <rafael.j.wysocki@intel.com>
+  linux-csky@vger.kernel.org
+  Linus Torvalds <torvalds@linux-foundation.org>
   Darren Hart <dvhart@infradead.org>
-  Andy Shevchenko <andy@infradead.org>
-  platform-driver-x86@vger.kernel.org
   Zhang Rui <rui.zhang@intel.com>
-  Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-  linux-pm@vger.kernel.org
   Len Brown <lenb@kernel.org>
-  linux-acpi@vger.kernel.org
-  kbuild test robot <lkp@intel.com>
-  Nick Hu <nickhu@andestech.com>
-  Greentime Hu <green.hu@gmail.com>
-  Vincent Chen <deanbo422@gmail.com>
-  Guo Ren <guoren@kernel.org>
-  linux-csky@vger.kernel.org
-  Brian Cain <bcain@codeaurora.org>
-  linux-hexagon@vger.kernel.org
-  Tony Luck <tony.luck@intel.com>
   Fenghua Yu <fenghua.yu@intel.com>
-  linux-ia64@vger.kernel.org
-  Michal Simek <monstr@monstr.eu>
-  Michael Ellerman <mpe@ellerman.id.au>
   Arnd Bergmann <arnd@arndb.de>
-  Geoff Levand <geoff@infradead.org>
+  linux-pm@vger.kernel.org
   linuxppc-dev@lists.ozlabs.org
- " Davidlohr Bueso <dbueso@suse.de>\0"
+  Greentime Hu <green.hu@gmail.com>
+  Bjorn Helgaas <bhelgaas@google.com>
+  Kurt Schwemmer <kurt.schwemmer@microsemi.com>
+  platform-driver-x86@vger.kernel.org
+  Kalle Valo <kvalo@codeaurora.org>
+  kbuild test robot <lkp@intel.com>
+  Felipe Balbi <balbi@kernel.org>
+  Michal Simek <monstr@monstr.eu>
+  Tony Luck <tony.luck@intel.com>
+  Nick Hu <nickhu@andestech.com>
+  Geoff Levand <geoff@infradead.org>
+  netdev@vger.kernel.org
+  Randy Dunlap <rdunlap@infradead.org>
+  linux-wireless@vger.kernel.org
+  LKML <linux-kernel@vger.kernel.org>
+  Davidlohr Bueso <dbueso@suse.de>
+  Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+  Logan Gunthorpe <logang@deltatee.com>
+  David S. Miller <davem@davemloft.net>
+ " Andy Shevchenko <andy@infradead.org>\0"
  "\00:1\0"
  "b\0"
  "On Wed, Mar 25, 2020 at 12:13:34AM +0100, Thomas Gleixner wrote:\n"
@@ -262,4 +261,4 @@
  "-CONFIG_PREEMPT_RT and otherwise.\n"
  +PREEMPT_RT and otherwise.
 
-565f04c6b26b40591d0aebc7caffe1e933dd5b68f00c5ab98174ea7969db16ba
+867d69b8a2fd416791191ac67b9776b9d79f1484d27c6cfe1ef92c6bac470bd0

diff --git a/a/content_digest b/N4/content_digest
index 60dc324..cbb2063 100644
--- a/a/content_digest
+++ b/N4/content_digest
@@ -23,33 +23,7 @@
   linux-usb@vger.kernel.org
   Kalle Valo <kvalo@codeaurora.org>
   David S. Miller <davem@davemloft.net>
-  linux-wireless@vger.kernel.org
-  netdev@vger.kernel.org
-  Darren Hart <dvhart@infradead.org>
-  Andy Shevchenko <andy@infradead.org>
-  platform-driver-x86@vger.kernel.org
-  Zhang Rui <rui.zhang@intel.com>
-  Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-  linux-pm@vger.kernel.org
-  Len Brown <lenb@kernel.org>
-  linux-acpi@vger.kernel.org
-  kbuild test robot <lkp@intel.com>
-  Nick Hu <nickhu@andestech.com>
-  Greentime Hu <green.hu@gmail.com>
-  Vincent Chen <deanbo422@gmail.com>
-  Guo Ren <guoren@kernel.org>
-  linux-csky@vger.kernel.org
-  Brian Cain <bcain@codeaurora.org>
-  linux-hexagon@vger.kernel.org
-  Tony Luck <tony.luck@intel.com>
-  Fenghua Yu <fenghua.yu@intel.com>
-  linux-ia64@vger.kernel.org
-  Michal Simek <monstr@monstr.eu>
-  Michael Ellerman <mpe@ellerman.id.au>
-  Arnd Bergmann <arnd@arndb.de>
-  Geoff Levand <geoff@infradead.org>
-  linuxppc-dev@lists.ozlabs.org
- " Davidlohr Bueso <dbueso@suse.de>\0"
+ " linux-wireless@vger.kernel.orgnet\0"
  "\00:1\0"
  "b\0"
  "On Wed, Mar 25, 2020 at 12:13:34AM +0100, Thomas Gleixner wrote:\n"
@@ -262,4 +236,4 @@
  "-CONFIG_PREEMPT_RT and otherwise.\n"
  +PREEMPT_RT and otherwise.
 
-565f04c6b26b40591d0aebc7caffe1e933dd5b68f00c5ab98174ea7969db16ba
+1edb26f3f8c999ce1c8553a189523184d978a3be8df3c205a71e9dea49a40bf7

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.