From owner-svn-src-head@freebsd.org Fri May 5 17:22:02 2017 Return-Path: Delivered-To: svn-src-head@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 3BE6FD5FB95; Fri, 5 May 2017 17:22:02 +0000 (UTC) (envelope-from markj@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 0BDF9EBF; Fri, 5 May 2017 17:22:01 +0000 (UTC) (envelope-from markj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v45HM1J6067024; Fri, 5 May 2017 17:22:01 GMT (envelope-from markj@FreeBSD.org) Received: (from markj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v45HM1wg067023; Fri, 5 May 2017 17:22:01 GMT (envelope-from markj@FreeBSD.org) Message-Id: <201705051722.v45HM1wg067023@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: markj set sender to markj@FreeBSD.org using -f From: Mark Johnston Date: Fri, 5 May 2017 17:22:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r317839 - head/sys/compat/linuxkpi/common/src X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 May 2017 17:22:02 -0000 Author: markj Date: Fri May 5 17:22:00 2017 New Revision: 317839 URL: https://svnweb.freebsd.org/changeset/base/317839 Log: Use pmap_invalidate_cache() to implement wbinvd_on_all_cpus(). Suggested by: jhb X-MFC with: r317651 Modified: head/sys/compat/linuxkpi/common/src/linux_compat.c Modified: head/sys/compat/linuxkpi/common/src/linux_compat.c ============================================================================== --- head/sys/compat/linuxkpi/common/src/linux_compat.c Fri May 5 17:01:54 2017 (r317838) +++ head/sys/compat/linuxkpi/common/src/linux_compat.c Fri May 5 17:22:00 2017 (r317839) @@ -1639,18 +1639,12 @@ linux_irq_handler(void *ent) } #if defined(__i386__) || defined(__amd64__) -static void -wbinvd_cb(void *arg __unused) -{ - - wbinvd(); -} - int linux_wbinvd_on_all_cpus(void) { - return (linux_on_each_cpu(wbinvd_cb, NULL)); + pmap_invalidate_cache(); + return (0); } #endif