From owner-svn-src-user@freebsd.org Thu Jan 4 00:02:49 2018 Return-Path: Delivered-To: svn-src-user@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AFCF4EB69BD for ; Thu, 4 Jan 2018 00:02:49 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F74D6D6E4; Thu, 4 Jan 2018 00:02:49 +0000 (UTC) (envelope-from jeff@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0402mAX045723; Thu, 4 Jan 2018 00:02:48 GMT (envelope-from jeff@FreeBSD.org) Received: (from jeff@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0402lSJ045718; Thu, 4 Jan 2018 00:02:47 GMT (envelope-from jeff@FreeBSD.org) Message-Id: <201801040002.w0402lSJ045718@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jeff set sender to jeff@FreeBSD.org using -f From: Jeff Roberson Date: Thu, 4 Jan 2018 00:02:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r327534 - in user/jeff/numa/sys: arm/arm ddb kern netpfil/ipfw sys X-SVN-Group: user X-SVN-Commit-Author: jeff X-SVN-Commit-Paths: in user/jeff/numa/sys: arm/arm ddb kern netpfil/ipfw sys X-SVN-Commit-Revision: 327534 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Jan 2018 00:02:49 -0000 Author: jeff Date: Thu Jan 4 00:02:47 2018 New Revision: 327534 URL: https://svnweb.freebsd.org/changeset/base/327534 Log: The inclusion of _vm_domain.h in proc.h created pollution from seq.h that many files now rely on. Fix a small number of these to remove seq.h, lock.h, and _vm_domain.h. Explicitly add systm.h, types.h and machine/cpu.h so the rest still compiles and the pollution is direct. Modified: user/jeff/numa/sys/arm/arm/machdep_ptrace.c user/jeff/numa/sys/ddb/db_run.c user/jeff/numa/sys/kern/subr_kdb.c user/jeff/numa/sys/netpfil/ipfw/dn_sched_fq_codel.c user/jeff/numa/sys/sys/proc.h Modified: user/jeff/numa/sys/arm/arm/machdep_ptrace.c ============================================================================== --- user/jeff/numa/sys/arm/arm/machdep_ptrace.c Wed Jan 3 23:59:29 2018 (r327533) +++ user/jeff/numa/sys/arm/arm/machdep_ptrace.c Thu Jan 4 00:02:47 2018 (r327534) @@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include Modified: user/jeff/numa/sys/ddb/db_run.c ============================================================================== --- user/jeff/numa/sys/ddb/db_run.c Wed Jan 3 23:59:29 2018 (r327533) +++ user/jeff/numa/sys/ddb/db_run.c Thu Jan 4 00:02:47 2018 (r327534) @@ -40,6 +40,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include Modified: user/jeff/numa/sys/kern/subr_kdb.c ============================================================================== --- user/jeff/numa/sys/kern/subr_kdb.c Wed Jan 3 23:59:29 2018 (r327533) +++ user/jeff/numa/sys/kern/subr_kdb.c Thu Jan 4 00:02:47 2018 (r327534) @@ -38,6 +38,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: user/jeff/numa/sys/netpfil/ipfw/dn_sched_fq_codel.c ============================================================================== --- user/jeff/numa/sys/netpfil/ipfw/dn_sched_fq_codel.c Wed Jan 3 23:59:29 2018 (r327533) +++ user/jeff/numa/sys/netpfil/ipfw/dn_sched_fq_codel.c Thu Jan 4 00:02:47 2018 (r327534) @@ -44,6 +44,7 @@ #include /* flow_id */ #include +#include #include #include Modified: user/jeff/numa/sys/sys/proc.h ============================================================================== --- user/jeff/numa/sys/sys/proc.h Wed Jan 3 23:59:29 2018 (r327533) +++ user/jeff/numa/sys/sys/proc.h Thu Jan 4 00:02:47 2018 (r327534) @@ -62,12 +62,17 @@ #include /* For structs itimerval, timeval. */ #else #include +#include #endif #include #include -#include +#include #include + #include /* Machine-dependent proc substruct. */ +#ifdef _KERNEL +#include +#endif /* @@ -181,6 +186,7 @@ struct procdesc; struct racct; struct sbuf; struct sleepqueue; +struct socket; struct syscall_args; struct td_sched; struct thread;