Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 37eca0d6 authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

Merge branch 'linus' into core/locking



Reason: Pull in the semaphore related changes

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parents 277b1998 3c06806e
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -3554,12 +3554,12 @@ E: cvance@nai.com
D: portions of the Linux Security Module (LSM) framework and security modules

N: Petr Vandrovec
E: vandrove@vc.cvut.cz
E: petr@vandrovec.name
D: Small contributions to ncpfs
D: Matrox framebuffer driver
S: Chudenicka 8
S: 10200 Prague 10, Hostivar
S: Czech Republic
S: 21513 Conradia Ct
S: Cupertino, CA 95014
S: USA

N: Thibaut Varene
E: T-Bone@parisc-linux.org
+0 −1
Original line number Diff line number Diff line
@@ -46,7 +46,6 @@

     <sect1><title>Atomic and pointer manipulation</title>
!Iarch/x86/include/asm/atomic.h
!Iarch/x86/include/asm/unaligned.h
     </sect1>

     <sect1><title>Delaying, scheduling, and timer routines</title>
+0 −1
Original line number Diff line number Diff line
@@ -57,7 +57,6 @@
     </para>

     <sect1><title>String Conversions</title>
!Ilib/vsprintf.c
!Elib/vsprintf.c
     </sect1>
     <sect1><title>String Manipulation</title>
+11 −2
Original line number Diff line number Diff line
@@ -1922,9 +1922,12 @@ machines due to caching.
      <function>mutex_lock()</function>
      </para>
      <para>
       There is a <function>mutex_trylock()</function> which can be
       used inside interrupt context, as it will not sleep.
       There is a <function>mutex_trylock()</function> which does not
       sleep.  Still, it must not be used inside interrupt context since
       its implementation is not safe for that.
       <function>mutex_unlock()</function> will also never sleep.
       It cannot be used in interrupt context either since a mutex
       must be released by the same task that acquired it.
      </para>
     </listitem>
    </itemizedlist>
@@ -1958,6 +1961,12 @@ machines due to caching.
   </sect1>
  </chapter>

  <chapter id="apiref">
   <title>Mutex API reference</title>
!Iinclude/linux/mutex.h
!Ekernel/mutex.c
  </chapter>

  <chapter id="references">
   <title>Further reading</title>

+5 −0
Original line number Diff line number Diff line
@@ -104,4 +104,9 @@
   <title>Block IO</title>
!Iinclude/trace/events/block.h
  </chapter>

  <chapter id="workqueue">
   <title>Workqueue</title>
!Iinclude/trace/events/workqueue.h
  </chapter>
</book>
Loading