[PATCH]RT-Patch: Fixed sparc's anon_rwsem_is_locked() and page_address_init() define

From: Tkhai Kirill
Date: Tue Sep 07 2010 - 10:28:18 EST


RT-Patch: Fixed sparc's anon_rwsem_is_locked() and page_address_init() define
Signed-off-by: Tkhai Kirill <tkhai@xxxxxxxxx>
---

Fixed compilation errors. Kernel version 2.6.33.7-rt29.

diff -uprN a/arch/sparc/include/asm/rwsem.h b/arch/sparc/include/asm/rwsem.h
--- a/arch/sparc/include/asm/rwsem.h 2010-09-07 17:44:51.727914479 +0400
+++ b/arch/sparc/include/asm/rwsem.h 2010-09-07 17:35:40.423917446 +0400
@@ -75,7 +75,7 @@ static inline void rwsem_atomic_add(int
atomic_add(delta, (atomic_t *)(&sem->count));
}

-static inline int anon_rwsem_is_locked(struct rw_semaphore *sem)
+static inline int anon_rwsem_is_locked(struct rw_anon_semaphore *sem)
{
return (sem->count != 0);
}
diff -uprN a/mm/highmem.c b/mm/highmem.c
--- a/mm/highmem.c 2010-09-07 17:44:58.003917532 +0400
+++ b/mm/highmem.c 2010-09-07 17:39:43.970912094 +0400
@@ -590,7 +590,7 @@ static int __set_page_address(struct pag

#endif /* defined(CONFIG_HIGHMEM) && !defined(WANT_PAGE_VIRTUAL) */

-#if defined(CONFIG_HIGHMEM) || defined(HASHED_PAGE_VIRTUAL)
+#if defined(WANT_PAGE_VIRTUAL) || defined(HASHED_PAGE_VIRTUAL)

void __init page_address_init(void)
{
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/