Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 20 Sep 2002 19:30:43 -0700 (PDT)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 17805 for review
Message-ID:  <200209210230.g8L2UhSL090286@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=17805

Change 17805 by peter@peter_daintree on 2002/09/20 19:29:59

	get this to a state where it'll likely compile :-)

Affected files ...

.. //depot/projects/hammer/sys/x86_64/x86_64/sys_machdep.c#4 edit

Differences ...

==== //depot/projects/hammer/sys/x86_64/x86_64/sys_machdep.c#4 (text+ko) ====

@@ -59,6 +59,7 @@
 
 #include <vm/vm_kern.h>		/* for kernel_map */
 
+#if 0
 #define MAX_LD 8192
 #define LD_PER_PAGE 512
 #define NEW_MAX_LD(num)  ((num + LD_PER_PAGE) & ~(LD_PER_PAGE-1))
@@ -73,6 +74,7 @@
 #ifdef SMP
 static void set_user_ldt_rv(struct thread *);
 #endif
+#endif
 
 #ifndef _SYS_SYSPROTO_H_
 struct sysarch_args {
@@ -89,10 +91,10 @@
 	int error = 0;
 
 	switch(uap->op) {
+#if 0
 	case I386_GET_LDT:
 		error = i386_get_ldt(td, uap->parms);
 		break;
-
 	case I386_SET_LDT:
 		error = i386_set_ldt(td, uap->parms);
 		break;
@@ -102,6 +104,7 @@
 	case I386_SET_IOPERM:
 		error = i386_set_ioperm(td, uap->parms);
 		break;
+#endif
 	default:
 		error = EOPNOTSUPP;
 		break;
@@ -109,6 +112,7 @@
 	return (error);
 }
 
+#if 0
 int
 i386_extend_pcb(struct thread *td)
 {
@@ -533,3 +537,4 @@
 
 	return(error);
 }
+#endif

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200209210230.g8L2UhSL090286>