The patch titled
     parisc: use "unsigned long flags" in semaphore code
has been removed from the -mm tree.  Its filename was
     parisc-use-unsigned-long-flags-in-semaphore-code.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: parisc: use "unsigned long flags" in semaphore code
From: Alexey Dobriyan <[EMAIL PROTECTED]>

Just like everyone else.

Signed-off-by: Alexey Dobriyan <[EMAIL PROTECTED]>
Cc: Matthew Wilcox <[EMAIL PROTECTED]>
Cc: Kyle McMartin <[EMAIL PROTECTED]>
Cc: Grant Grundler <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 include/asm-parisc/semaphore.h |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff -puN 
include/asm-parisc/semaphore.h~parisc-use-unsigned-long-flags-in-semaphore-code 
include/asm-parisc/semaphore.h
--- 
a/include/asm-parisc/semaphore.h~parisc-use-unsigned-long-flags-in-semaphore-code
+++ a/include/asm-parisc/semaphore.h
@@ -115,7 +115,8 @@ extern __inline__ int down_interruptible
  */
 extern __inline__ int down_trylock(struct semaphore * sem)
 {
-       int flags, count;
+       unsigned long flags;
+       int count;
 
        spin_lock_irqsave(&sem->sentry, flags);
        count = sem->count - 1;
@@ -131,7 +132,7 @@ extern __inline__ int down_trylock(struc
  */
 extern __inline__ void up(struct semaphore * sem)
 {
-       int flags;
+       unsigned long flags;
        spin_lock_irqsave(&sem->sentry, flags);
        if (sem->count < 0) {
                __up(sem);
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

origin.patch
git-cpufreq.patch
git-gfs2-nmw.patch
git-ieee1394.patch
git-mtd.patch
git-netdev-all.patch
git-net.patch
megaraid-fix-warnings-when-config_proc_fs=n.patch
security-keys-user-kmemdup.patch
paride-rename-pi_register-and-pi_unregister.patch
paride_register-shuffle-return-values.patch
compile-time-check-re-world-writeable-module-params.patch
fs-trivial-vsnprintf-conversion.patch
hpfs-bring-hpfs_error-into-shape.patch
hpfs-fix-printk-format-warnings.patch
drivers-cdrom-trivial-vsnprintf-conversion.patch
drivers-isdn-trivial-vsnprintf-conversion.patch
drivers-video-use-kmemdup.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to