On Mon, 5 Sep 2005, David Howells wrote:

> | Index: linux-2.6.13/include/asm-ppc64/rwsem.h

> This uses the function wrong name. And:

I really shouldn't make patches like this in the morning on weekends, 
when I'm still sleepy.  Well, here is the trivial fix...

Signed-off-by: Rik van Riel <[EMAIL PROTECTED]>

Index: linux-2.6.13/include/asm-ppc64/rwsem.h
===================================================================
--- linux-2.6.13.orig/include/asm-ppc64/rwsem.h
+++ linux-2.6.13/include/asm-ppc64/rwsem.h
@@ -163,7 +163,7 @@ static inline int rwsem_atomic_update(in
        return atomic_add_return(delta, (atomic_t *)(&sem->count));
 }
 
-static inline int sem_is_read_locked(struct rw_semaphore *sem)
+static inline int rwsem_is_locked(struct rw_semaphore *sem)
 {
        return (sem->count != 0);
 }
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to