From owner-freebsd-mips@FreeBSD.ORG Mon May 11 18:16:26 2015 Return-Path: Delivered-To: freebsd-mips@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F34E08B0 for ; Mon, 11 May 2015 18:16:26 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 DE2811605 for ; Mon, 11 May 2015 18:16:26 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t4BIGQoO059533 for ; Mon, 11 May 2015 18:16:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-mips@FreeBSD.org Subject: [Bug 197577] [PATCH] devel/nspr: Has no mips/mips64 knowledge Date: Mon, 11 May 2015 18:16:26 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jbeich@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gecko@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 May 2015 18:16:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197577 --- Comment #13 from Jan Beich --- Comment on attachment 156362 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=156362 patch to enable proper support on mips/mips64 >+#elif defined(__mips__) >+#define _PR_SI_ARCHITECTURE "mips" >+#elif defined(__mips64__) >+#define _PR_SI_ARCHITECTURE "mips64" __mips__ is defined for both in gcc and clang which means the first match wins i.e., always 32bit. contrib/gcc/config/mips/freebsd.h contrib/llvm/tools/clang/lib/Basic/Targets.cpp. I wonder if regression-test target would have caught it. >+#elif defined(__mips__) >+ >+#undef IS_LITTLE_ENDIAN >+#define IS_BIG_ENDIAN 1 See upstream reviewer comment. We may need to do smth similar to _linux.cfg. -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-mips@FreeBSD.ORG Mon May 11 18:35:18 2015 Return-Path: Delivered-To: freebsd-mips@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E453D2C for ; Mon, 11 May 2015 18:35:18 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 18B3F187D for ; Mon, 11 May 2015 18:35:18 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t4BIZHQV058656 for ; Mon, 11 May 2015 18:35:17 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-mips@FreeBSD.org Subject: [Bug 197577] [PATCH] devel/nspr: Has no mips/mips64 knowledge Date: Mon, 11 May 2015 18:35:17 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jbeich@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gecko@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 May 2015 18:35:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197577 --- Comment #14 from Jan Beich --- Created attachment 156665 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=156665&action=edit mips64 and mips*el fixup Can you test/review this patch? It tries to follow the style in arm and powerpc checks. -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-mips@FreeBSD.ORG Mon May 11 19:10:49 2015 Return-Path: Delivered-To: freebsd-mips@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C8378BC7 for ; Mon, 11 May 2015 19:10:49 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 B278F1CD3 for ; Mon, 11 May 2015 19:10:49 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t4BJAn0E030257 for ; Mon, 11 May 2015 19:10:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-mips@FreeBSD.org Subject: [Bug 197577] [PATCH] devel/nspr: Has no mips/mips64 knowledge Date: Mon, 11 May 2015 19:10:49 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jbeich@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gecko@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 May 2015 19:10:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197577 Jan Beich changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #156665|0 |1 is obsolete| | --- Comment #15 from Jan Beich --- Created attachment 156666 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=156666&action=edit (followup) fix mips64 and mips*el, v2 *sigh* Clang defines are different: __MIPSEB__ vs. _MIPSEB. -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-mips@FreeBSD.ORG Mon May 11 19:45:58 2015 Return-Path: Delivered-To: freebsd-mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0A5D98D for ; Mon, 11 May 2015 19:45:58 +0000 (UTC) Received: from sv01.alojamento-portugal.com (sv01.alojamento-portugal.com [5.206.231.51]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 34A321159 for ; Mon, 11 May 2015 19:45:58 +0000 (UTC) Received: by sv01.alojamento-portugal.com (Postfix, from userid 10222) id DA2D4AB00D02; Mon, 11 May 2015 20:56:18 +0100 (WEST) To: freebsd-mips@freebsd.org Subject: Security-Account Verifcation =?UTF-8?Q?=E2=9C=94_?= X-PHP-Script: marketingportugal.pt/administrator/components/org_com_contushdvideoshare/images/uploads/i.php for 41.225.235.150 X-PHP-Originating-Script: 10222:i.php(545) : eval()'d code(2) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code From: iTunes.INC Message-Id: <20150511195618.DA2D4AB00D02@sv01.alojamento-portugal.com> Date: Mon, 11 May 2015 20:56:18 +0100 (WEST) MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 May 2015 19:45:58 -0000 [apple_logo_web%402x.png] Dear Customer, Your account has been Suspended, as an error was detected in your informations. The reason for the error is not certain, but for security reasons,  we have suspended your account temporairly. When you're ready complete the following informations to confirm your identity, click the link below to update your account information.  [1]Confirm My Account Case ID: 4557727859 NOTE:  If this is not resolved within 72 hours, we will be forced to susupend your account as it may be used fraudulently. The purpose of this verification is to ensure that your account has not been fraudulently used. Apple Support References 1. http://www.selfmadehiphop.com/administrator/components/com_login From owner-freebsd-mips@FreeBSD.ORG Tue May 12 03:59:02 2015 Return-Path: Delivered-To: freebsd-mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E8435827 for ; Tue, 12 May 2015 03:59:02 +0000 (UTC) Received: from paris.jfzb.net (paris.jfzb.net [107.179.25.55]) by mx1.freebsd.org (Postfix) with ESMTP id A7EDD1D60 for ; Tue, 12 May 2015 03:59:02 +0000 (UTC) To: freebsd-mips@freebsd.org Subject: photos retouching Message-ID: Date: Tue, 12 May 2015 06:00:52 +0200 From: "Joe" Reply-To: kansouedit@sina.com MIME-Version: 1.0 X-Mailer-LID: 5 X-Mailer-RecptId: 6480522 X-Mailer-SID: 346 X-Mailer-Sent-By: 1 Content-Type: text/plain; format=flowed; charset="UTF-8" Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 May 2015 03:59:03 -0000 Hope you are doing well! We provide photo editing: Such as ecommerce photos editing, jewelry photos retouching, beauty and skin image retouching, and wedding photo editing, image cut out and clipping path, masking. Our advantages: Quality is good Turnaround time fast 7/24/365 available Our service is best and price is affordable. You may send us a test photo to judge our quality. Have a good day! Best regards, Joe Email: songedit@tom.com From owner-freebsd-mips@FreeBSD.ORG Tue May 12 21:01:08 2015 Return-Path: Delivered-To: freebsd-mips@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AE54F1A7 for ; Tue, 12 May 2015 21:01:08 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 99601162E for ; Tue, 12 May 2015 21:01:08 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t4CL18Fa001682 for ; Tue, 12 May 2015 21:01:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-mips@FreeBSD.org Subject: [Bug 197577] [PATCH] devel/nspr: Has no mips/mips64 knowledge Date: Tue, 12 May 2015 21:01:08 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gecko@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 May 2015 21:01:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197577 --- Comment #16 from commit-hook@freebsd.org --- A commit references this bug: Author: jbeich Date: Tue May 12 21:00:54 UTC 2015 New revision: 386173 URL: https://svnweb.freebsd.org/changeset/ports/386173 Log: devel/nspr: fix up mips64 and mips*el support This syncs the patch with what landed upstream. PR: 197577 Changes: head/devel/nspr/files/patch-bug1163346 -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-mips@FreeBSD.ORG Tue May 12 21:03:10 2015 Return-Path: Delivered-To: freebsd-mips@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF5042F6 for ; Tue, 12 May 2015 21:03:10 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 9A61E16ED for ; Tue, 12 May 2015 21:03:10 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t4CL3ANZ008649 for ; Tue, 12 May 2015 21:03:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-mips@FreeBSD.org Subject: [Bug 197577] [PATCH] devel/nspr: Has no mips/mips64 knowledge Date: Tue, 12 May 2015 21:03:10 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gecko@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 May 2015 21:03:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197577 --- Comment #17 from commit-hook@freebsd.org --- A commit references this bug: Author: jbeich Date: Tue May 12 21:02:28 UTC 2015 New revision: 386174 URL: https://svnweb.freebsd.org/changeset/ports/386174 Log: devel/nspr: bump PORTREVISION after r386173 to rebuild mips packages PR: 197577 Changes: head/devel/nspr/Makefile -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-mips@FreeBSD.ORG Wed May 13 15:19:22 2015 Return-Path: Delivered-To: freebsd-mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5AF0C3A4 for ; Wed, 13 May 2015 15:19:22 +0000 (UTC) Received: from phabric-backend.isc.freebsd.org (phabric-backend.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:406a:0:50:2]) (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 40B451941 for ; Wed, 13 May 2015 15:19:22 +0000 (UTC) Received: from phabric-backend.isc.freebsd.org (phabric-backend.isc.freebsd.org [127.0.1.5]) by phabric-backend.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id t4DFJMgp061607 for ; Wed, 13 May 2015 15:19:22 GMT (envelope-from daemon-user@phabric-backend.isc.freebsd.org) Received: (from daemon-user@localhost) by phabric-backend.isc.freebsd.org (8.14.9/8.14.9/Submit) id t4DFJMmH061606; Wed, 13 May 2015 15:19:22 GMT (envelope-from daemon-user) Date: Wed, 13 May 2015 15:19:22 +0000 To: freebsd-mips@freebsd.org From: "sson (Stacey Son)" Subject: [Differential] [Updated] D2535: New, experimental PMAP implementation for MIPS64 Message-ID: X-Priority: 3 Thread-Topic: D2535: New, experimental PMAP implementation for MIPS64 X-Herald-Rules: <28> X-Phabricator-Projects: <#mips> X-Phabricator-To: X-Phabricator-Cc: X-Phabricator-Cc: In-Reply-To: References: Thread-Index: MDFkZmEzMDA3ZTc4MDc3NzkxZmUxYzgyNTAwIFVTa3o= Precedence: bulk X-Phabricator-Sent-This-Message: Yes X-Mail-Transport-Agent: MetaMTA X-Auto-Response-Suppress: All X-Phabricator-Mail-Tags: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 May 2015 15:19:22 -0000 sson updated the summary for this revision. REPOSITORY rS FreeBSD src repository REVISION DETAIL https://reviews.freebsd.org/D2535 EMAIL PREFERENCES https://reviews.freebsd.org/settings/panel/emailpreferences/ To: sson Cc: imp, freebsd-mips From owner-freebsd-mips@FreeBSD.ORG Wed May 13 17:00:06 2015 Return-Path: Delivered-To: freebsd-mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1CE12A11 for ; Wed, 13 May 2015 17:00:06 +0000 (UTC) Received: from phabric-backend.isc.freebsd.org (phabric-backend.isc.freebsd.org [IPv6:2001:4f8:3:ffe0:406a:0:50:2]) (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 0255C180E for ; Wed, 13 May 2015 17:00:06 +0000 (UTC) Received: from phabric-backend.isc.freebsd.org (phabric-backend.isc.freebsd.org [127.0.1.5]) by phabric-backend.isc.freebsd.org (8.14.9/8.14.9) with ESMTP id t4DH05Mq015195 for ; Wed, 13 May 2015 17:00:05 GMT (envelope-from daemon-user@phabric-backend.isc.freebsd.org) Received: (from daemon-user@localhost) by phabric-backend.isc.freebsd.org (8.14.9/8.14.9/Submit) id t4DH05M0015194; Wed, 13 May 2015 17:00:05 GMT (envelope-from daemon-user) Date: Wed, 13 May 2015 17:00:05 +0000 To: freebsd-mips@freebsd.org From: "emaste (Ed Maste)" Subject: [Differential] [Changed Subscribers] D2535: New, experimental PMAP implementation for MIPS64 Message-ID: <1030680d066f1384a5121748d992e9f2@localhost.localdomain> X-Priority: 3 Thread-Topic: D2535: New, experimental PMAP implementation for MIPS64 X-Herald-Rules: <28> X-Phabricator-Projects: <#mips> X-Phabricator-To: X-Phabricator-Cc: X-Phabricator-Cc: X-Phabricator-Cc: In-Reply-To: References: Thread-Index: MDFkZmEzMDA3ZTc4MDc3NzkxZmUxYzgyNTAwIFVTgxU= Precedence: bulk X-Phabricator-Sent-This-Message: Yes X-Mail-Transport-Agent: MetaMTA X-Auto-Response-Suppress: All X-Phabricator-Mail-Tags: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="utf-8" X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 May 2015 17:00:06 -0000 emaste added a subscriber: emaste. REPOSITORY rS FreeBSD src repository REVISION DETAIL https://reviews.freebsd.org/D2535 EMAIL PREFERENCES https://reviews.freebsd.org/settings/panel/emailpreferences/ To: sson Cc: emaste, imp, freebsd-mips