From owner-svn-src-all@freebsd.org Fri Jun 5 07:37:53 2020 Return-Path: Delivered-To: svn-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9230C342F60; Fri, 5 Jun 2020 07:37:53 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49dZHj2WRRz4KnH; Fri, 5 Jun 2020 07:37:53 +0000 (UTC) (envelope-from avg@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 51ADFD547; Fri, 5 Jun 2020 07:37:53 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0557bren085770; Fri, 5 Jun 2020 07:37:53 GMT (envelope-from avg@FreeBSD.org) Received: (from avg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0557brnG085769; Fri, 5 Jun 2020 07:37:53 GMT (envelope-from avg@FreeBSD.org) Message-Id: <202006050737.0557brnG085769@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: avg set sender to avg@FreeBSD.org using -f From: Andriy Gapon Date: Fri, 5 Jun 2020 07:37:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r361824 - stable/12/lib/libprocstat X-SVN-Group: stable-12 X-SVN-Commit-Author: avg X-SVN-Commit-Paths: stable/12/lib/libprocstat X-SVN-Commit-Revision: 361824 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Jun 2020 07:37:53 -0000 Author: avg Date: Fri Jun 5 07:37:52 2020 New Revision: 361824 URL: https://svnweb.freebsd.org/changeset/base/361824 Log: fix up r361823, libprocstat zfs support, on powerpc This fixes a build failure: In file included from .../zfs_context.h:104, from .../libprocstat/zfs_defs.c:53: .../vm/vm_page.h:204: error: field 'md' has incomplete type In this branch, on powerpc, struct md_page is visible only if either AIM or BOOKE is defined. This is a direct commit. Modified: stable/12/lib/libprocstat/zfs_defs.c Modified: stable/12/lib/libprocstat/zfs_defs.c ============================================================================== --- stable/12/lib/libprocstat/zfs_defs.c Fri Jun 5 06:34:04 2020 (r361823) +++ stable/12/lib/libprocstat/zfs_defs.c Fri Jun 5 07:37:52 2020 (r361824) @@ -43,6 +43,9 @@ __FBSDID("$FreeBSD$"); #define _OPENSOLARIS_SYS_POLICY_H_ #define _OPENSOLARIS_SYS_VNODE_H_ #define _VNODE_PAGER_ +#ifdef __powerpc__ +#define AIM /* AIM or BOOKE, insignificant. */ +#endif typedef struct vnode vnode_t; typedef struct vattr vattr_t;