r3018 - in trunk/kernel/source/kernel-source-2.6.11-2.6.11/debian: . patches patches/series

Norbert Tretkowski nobse@costa.debian.org
Wed, 04 May 2005 23:18:13 +0000


Author: nobse
Date: 2005-05-04 23:18:12 +0000 (Wed, 04 May 2005)
New Revision: 3018

Added:
   trunk/kernel/source/kernel-source-2.6.11-2.6.11/debian/patches/alpha-read-trylock.patch
Modified:
   trunk/kernel/source/kernel-source-2.6.11-2.6.11/debian/changelog
   trunk/kernel/source/kernel-source-2.6.11-2.6.11/debian/patches/series/2.6.11-4
Log:
fixed compile problem in include/asm-alpha/spinlock.h


Modified: trunk/kernel/source/kernel-source-2.6.11-2.6.11/debian/changelog
===================================================================
--- trunk/kernel/source/kernel-source-2.6.11-2.6.11/debian/changelog	2005-05-04 08:03:58 UTC (rev 3017)
+++ trunk/kernel/source/kernel-source-2.6.11-2.6.11/debian/changelog	2005-05-04 23:18:12 UTC (rev 3018)
@@ -29,6 +29,9 @@
     o sparc64: use message queue compat syscalls
    (Maximilian Attems)
 
+  * [alpha] Fixed compile problem in include/asm-alpha/spinlock.h
+    (Norbert Tretkowski)
+
  -- Jurij Smakov <jurij@wooyd.org>  Mon, 11 Apr 2005 22:17:01 -0400
 
 kernel-source-2.6.11 (2.6.11-3) unstable; urgency=low

Added: trunk/kernel/source/kernel-source-2.6.11-2.6.11/debian/patches/alpha-read-trylock.patch
===================================================================
--- trunk/kernel/source/kernel-source-2.6.11-2.6.11/debian/patches/alpha-read-trylock.patch	2005-05-04 08:03:58 UTC (rev 3017)
+++ trunk/kernel/source/kernel-source-2.6.11-2.6.11/debian/patches/alpha-read-trylock.patch	2005-05-04 23:18:12 UTC (rev 3018)
@@ -0,0 +1,14 @@
+#! /bin/sh -e 
+
+. $(dirname $0)/DPATCH
+
+@DPATCH@
+--- kernel-source-2.6.11/include/asm-alpha/spinlock.h~    Thu Mar  3 13:25:19 2005
++++ kernel-source-2.6.11/include/asm-alpha/spinlock.h     Thu May  5 01:16:35 2005
+@@ -198,4 +198,6 @@ static inline void _raw_read_unlock(rwlo
+        : "m" (*lock) : "memory");
+ }
+
++#define _raw_read_trylock(lock) generic_raw_read_trylock(lock)
++
+ #endif /* _ALPHA_SPINLOCK_H */

Modified: trunk/kernel/source/kernel-source-2.6.11-2.6.11/debian/patches/series/2.6.11-4
===================================================================
--- trunk/kernel/source/kernel-source-2.6.11-2.6.11/debian/patches/series/2.6.11-4	2005-05-04 08:03:58 UTC (rev 3017)
+++ trunk/kernel/source/kernel-source-2.6.11-2.6.11/debian/patches/series/2.6.11-4	2005-05-04 23:18:12 UTC (rev 3018)
@@ -4,3 +4,4 @@
 + sparc64-sigpoll-2.6.11.patch
 + sparc64-sunsu-init-2.6.11.patch
 + patch-2.6.11.8.patch
++ alpha-read-trylock.patch