Date: Tue, 14 May 2019 15:19:48 +0000 (UTC) From: Mark Johnston <markj@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r347564 - head/sys/amd64/amd64 Message-ID: <201905141519.x4EFJmBj007333@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: markj Date: Tue May 14 15:19:48 2019 New Revision: 347564 URL: https://svnweb.freebsd.org/changeset/base/347564 Log: Fix formatting. MFC after: 3 days Modified: head/sys/amd64/amd64/trap.c Modified: head/sys/amd64/amd64/trap.c ============================================================================== --- head/sys/amd64/amd64/trap.c Tue May 14 10:21:28 2019 (r347563) +++ head/sys/amd64/amd64/trap.c Tue May 14 15:19:48 2019 (r347564) @@ -904,8 +904,8 @@ trap_fatal(frame, eva) code & PGEX_U ? "user" : "supervisor", code & PGEX_W ? "write" : "read", code & PGEX_I ? "instruction" : "data", - code & PGEX_PK ? " prot key" : " ", - code & PGEX_SGX ? " SGX" : " ", + code & PGEX_PK ? " prot key" : "", + code & PGEX_SGX ? " SGX" : "", code & PGEX_RSV ? "reserved bits in PTE" : code & PGEX_P ? "protection violation" : "page not present"); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905141519.x4EFJmBj007333>