linux-um archives
 help / color / mirror / Atom feed
* [uml-devel] [PATCH 1/12] UML - __deprecated makes build unnecessarily noisy
@ 2005-05-06 22:48 Jeff Dike
  0 siblings, 0 replies; only message in thread
From: Jeff Dike @ 2005-05-06 22:48 UTC (permalink / raw)
  To: torvalds, akpm; +Cc: linux-kernel, user-mode-linux-devel, Blaisorblade

Remove the __deprecated from verify_area_skas and verify_area_tt.  Since
verify_area is itself marked __deprecated, and it is the only caller of
these, then they don't need to be marked.  Marking them only makes the
build noisier.

Signed-off-by: Jeff Dike <jdike@addtoit.com>

Index: linux-2.6.11/arch/um/kernel/skas/include/uaccess-skas.h
===================================================================
--- linux-2.6.11.orig/arch/um/kernel/skas/include/uaccess-skas.h	2005-05-06 15:10:02.000000000 -0400
+++ linux-2.6.11/arch/um/kernel/skas/include/uaccess-skas.h	2005-05-06 15:18:46.000000000 -0400
@@ -18,8 +18,8 @@
 	  ((unsigned long) (addr) + (size) <= FIXADDR_USER_END) && \
 	  ((unsigned long) (addr) + (size) >= (unsigned long)(addr))))
 
-static inline int __deprecated verify_area_skas(int type, const void * addr,
-				   unsigned long size)
+static inline int verify_area_skas(int type, const void * addr,
+                                   unsigned long size)
 {
 	return(access_ok_skas(type, addr, size) ? 0 : -EFAULT);
 }
Index: linux-2.6.11/arch/um/kernel/tt/include/uaccess-tt.h
===================================================================
--- linux-2.6.11.orig/arch/um/kernel/tt/include/uaccess-tt.h	2005-05-06 15:10:02.000000000 -0400
+++ linux-2.6.11/arch/um/kernel/tt/include/uaccess-tt.h	2005-05-06 15:19:04.000000000 -0400
@@ -33,8 +33,8 @@
          (((unsigned long) (addr) <= ((unsigned long) (addr) + (size))) && \
           (under_task_size(addr, size) || is_stack(addr, size))))
 
-static inline int __deprecated verify_area_tt(int type, const void * addr,
-				 unsigned long size)
+static inline int verify_area_tt(int type, const void * addr,
+                                 unsigned long size)
 {
 	return(access_ok_tt(type, addr, size) ? 0 : -EFAULT);
 }



-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-05-06 22:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-06 22:48 [uml-devel] [PATCH 1/12] UML - __deprecated makes build unnecessarily noisy Jeff Dike

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox