Module Name:    src
Committed By:   rin
Date:           Sun Apr  7 02:58:02 UTC 2019

Modified Files:
        src/sys/kern: subr_disklabel.c

Log Message:
Fix previous. We define _KERNEL for rump in opt_rumpkernel.h.

XXX This works because arch's with _RUMP_NATIVEABI=yes and therefore
XXX without _RUMPKERNEL (amd64 and i386) do not have their own
XXX setdisklabel(9). We may need another macro, e.g., _RUMP.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/kern/subr_disklabel.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/kern/subr_disklabel.c
diff -u src/sys/kern/subr_disklabel.c:1.2 src/sys/kern/subr_disklabel.c:1.3
--- src/sys/kern/subr_disklabel.c:1.2	Fri Apr  5 01:10:32 2019
+++ src/sys/kern/subr_disklabel.c	Sun Apr  7 02:58:02 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: subr_disklabel.c,v 1.2 2019/04/05 01:10:32 christos Exp $	*/
+/*	$NetBSD: subr_disklabel.c,v 1.3 2019/04/07 02:58:02 rin Exp $	*/
 
 /*
  * Copyright (c) 1982, 1986, 1988 Regents of the University of California.
@@ -32,13 +32,13 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_disklabel.c,v 1.2 2019/04/05 01:10:32 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_disklabel.c,v 1.3 2019/04/07 02:58:02 rin Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/disklabel.h>
 
-#if !defined(__HAVE_SETDISKLABEL) || !defined(_KERNEL)
+#if !defined(__HAVE_SETDISKLABEL) || defined(_RUMPKERNEL)
 
 #ifdef DEBUG
 #define DPRINTF(a, ...) printf(a, ##__VA_ARGS__)

Reply via email to