Module Name:    src
Committed By:   christos
Date:           Mon Apr 15 19:24:04 UTC 2013

Modified Files:
        src/sys/compat/linux/common: linux_misc.c

Log Message:
alpha uses standard utimes.


To generate a diff of this commit:
cvs rdiff -u -r1.222 -r1.223 src/sys/compat/linux/common/linux_misc.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/compat/linux/common/linux_misc.c
diff -u src/sys/compat/linux/common/linux_misc.c:1.222 src/sys/compat/linux/common/linux_misc.c:1.223
--- src/sys/compat/linux/common/linux_misc.c:1.222	Tue Apr  9 04:00:20 2013
+++ src/sys/compat/linux/common/linux_misc.c	Mon Apr 15 15:24:04 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: linux_misc.c,v 1.222 2013/04/09 08:00:20 pooka Exp $	*/
+/*	$NetBSD: linux_misc.c,v 1.223 2013/04/15 19:24:04 christos Exp $	*/
 
 /*-
  * Copyright (c) 1995, 1998, 1999, 2008 The NetBSD Foundation, Inc.
@@ -57,7 +57,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_misc.c,v 1.222 2013/04/09 08:00:20 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_misc.c,v 1.223 2013/04/15 19:24:04 christos Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -1379,6 +1379,7 @@ linux_sys_getpriority(struct lwp *l, con
         return 0;
 }
 
+#ifndef __alpha__
 int
 linux_sys_utimes(struct lwp *l, const struct linux_sys_utimes_args *uap, register_t *retval)
 {
@@ -1435,4 +1436,5 @@ linux_sys_lutimes(struct lwp *l, const s
 	return do_sys_utimes(l, NULL, SCARG(uap, path), NOFOLLOW,
 	    tptr, UIO_SYSSPACE);
 }
+#endif /* __alpha__ */
 #endif /* !COMPAT_LINUX32 */

Reply via email to