From owner-p4-projects Fri Sep 20 19:30:46 2002 Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 17BC137B404; Fri, 20 Sep 2002 19:30:44 -0700 (PDT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9AD737B401 for ; Fri, 20 Sep 2002 19:30:43 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7900743E42 for ; Fri, 20 Sep 2002 19:30:43 -0700 (PDT) (envelope-from peter@freebsd.org) Received: from freefall.freebsd.org (perforce@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id g8L2UhCo090289 for ; Fri, 20 Sep 2002 19:30:43 -0700 (PDT) (envelope-from peter@freebsd.org) Received: (from perforce@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id g8L2UhSL090286 for perforce@freebsd.org; Fri, 20 Sep 2002 19:30:43 -0700 (PDT) Date: Fri, 20 Sep 2002 19:30:43 -0700 (PDT) Message-Id: <200209210230.g8L2UhSL090286@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: perforce set sender to peter@freebsd.org using -f From: Peter Wemm Subject: PERFORCE change 17805 for review To: Perforce Change Reviews Sender: owner-p4-projects@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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 /* 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