From owner-freebsd-mips@freebsd.org Mon May 16 20:31:30 2016 Return-Path: Delivered-To: freebsd-mips@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 3AC1EB3DC36 for ; Mon, 16 May 2016 20:31:30 +0000 (UTC) (envelope-from mizhka@gmail.com) Received: from mail-lb0-x22f.google.com (mail-lb0-x22f.google.com [IPv6:2a00:1450:4010:c04::22f]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A39C711DF for ; Mon, 16 May 2016 20:31:29 +0000 (UTC) (envelope-from mizhka@gmail.com) Received: by mail-lb0-x22f.google.com with SMTP id h1so54293899lbj.3 for ; Mon, 16 May 2016 13:31:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to; bh=niibxiTLL2gfJeJ4CkY9nv8Wi5OVTId2h7THHPQ500Y=; b=XdUzrxas92Wc6CMgSRJk6Lf1+oeWMJKTER2BMQG7yPkbRVMOaWB0oCao/fHOIwNBoG tYmqpBxarI+1XhChL0vr4jJCdbP6PJ7zzLHk/3ysZwY5fBhgbxSN99HDPUju0VrSKR5l wyMK8zFp779IH0lKhX+x55ibv07fUGURr4sUdu3eWGSpnKO0q4Jndy7mVVHUrjQcSSvQ mqV8Dl1oKvXmy/J7q86bgpq+KSIEjD/Vnkd6BOJ0Vr0oLHFbRS8FltXXge6nYKr4hZkA 0x9HBVKTQ8eO4e8QlYuPYiTeHsPaN8ms85TnXTIrQoaMChBXNXHhiInINKZmTm+FAY8v 3hYg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to; bh=niibxiTLL2gfJeJ4CkY9nv8Wi5OVTId2h7THHPQ500Y=; b=KmdOV8rWdl4Iuz5QBTnm6rK22vVTV0IMEsPqC14j7FIpeQUiHW+eTljh1/X4bgFfsv nrKTVfogixRCHrI56KMHLzrR+M0jfq+d/ylI1QUwI7j9ypw7uXRpWF4+ELiHtaRu6jti w3GaRINphuwcztWZM+mIfYm8O6CqewCpkk/Dr4iVPPvUPUq8qX+XdJpzFIte5hCiiV/K flYXJgmwEDKytdE1Sk8OBw/q+yBYB6DgtUVDZM8tlN5MCsygD/iH6xpvDEhc+jcWUObu +49jvCrSmbrbax7AFAkrDE3kCitGt+YpRfz0Dw0HBnDB2JCDr0osVs1ureXEOcxjJ/tU cZCA== X-Gm-Message-State: AOPr4FWPUH0b/p83bIFYXOqIZ/QI24Zora5caleGjPk+2XikFutoBYnxWx1UN/7nYYuvE0pp91SSWpIHZR5HRQ== MIME-Version: 1.0 X-Received: by 10.112.138.10 with SMTP id qm10mr2853657lbb.36.1463430687894; Mon, 16 May 2016 13:31:27 -0700 (PDT) Received: by 10.25.152.83 with HTTP; Mon, 16 May 2016 13:31:27 -0700 (PDT) Date: Mon, 16 May 2016 23:31:27 +0300 Message-ID: Subject: MSI & INTRNG: buildkernel error From: Michael Zhilin To: freebsd-mips@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2016 20:31:30 -0000 Hi, On today -head I get error on buildkernel @mips: subr_intr.c:73:20: error: msi_if.h: No such file or directory. I suppose it's related to recent MSI commits for INTRNG. But how to fix it? Here is full output of error: /repo/freebsd/onion/src/sys/kern/subr_intr.c:73:20: error: msi_if.h: No such file or directory cc1: warnings being treated as errors /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function 'intr_alloc_msi': /repo/freebsd/onion/src/sys/kern/subr_intr.c:1319: warning: implicit declaration of function 'MSI_ALLOC_MSI' /repo/freebsd/onion/src/sys/kern/subr_intr.c:1319: warning: nested extern declaration of 'MSI_ALLOC_MSI' [-Wnested-externs] /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function 'intr_release_msi': /repo/freebsd/onion/src/sys/kern/subr_intr.c:1357: warning: implicit declaration of function 'MSI_RELEASE_MSI' /repo/freebsd/onion/src/sys/kern/subr_intr.c:1357: warning: nested extern declaration of 'MSI_RELEASE_MSI' [-Wnested-externs] /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function 'intr_alloc_msix': /repo/freebsd/onion/src/sys/kern/subr_intr.c:1378: warning: implicit declaration of function 'MSI_ALLOC_MSIX' /repo/freebsd/onion/src/sys/kern/subr_intr.c:1378: warning: nested extern declaration of 'MSI_ALLOC_MSIX' [-Wnested-externs] /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function 'intr_release_msix': /repo/freebsd/onion/src/sys/kern/subr_intr.c:1405: warning: implicit declaration of function 'MSI_RELEASE_MSIX' /repo/freebsd/onion/src/sys/kern/subr_intr.c:1405: warning: nested extern declaration of 'MSI_RELEASE_MSIX' [-Wnested-externs] /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function 'intr_map_msi': /repo/freebsd/onion/src/sys/kern/subr_intr.c:1429: warning: implicit declaration of function 'MSI_MAP_MSI' /repo/freebsd/onion/src/sys/kern/subr_intr.c:1429: warning: nested extern declaration of 'MSI_MAP_MSI' [-Wnested-externs] --- subr_intr.o --- *** [subr_intr.o] Error code 1 bmake[2]: stopped in /repo/freebsd/onion/obj/mipsel/mips.mipsel/repo/freebsd/onion/src/sys/BCM 1 error bmake[2]: stopped in /repo/freebsd/onion/obj/mipsel/mips.mipsel/repo/freebsd/onion/src/sys/BCM --- buildkernel --- *** [buildkernel] Error code 2 bmake[1]: stopped in /repo/freebsd/onion/src 1 error bmake[1]: stopped in /repo/freebsd/onion/src --- buildkernel --- *** [buildkernel] Error code 2 make: stopped in /repo/freebsd/onion/src 1 error make: stopped in /repo/freebsd/onion/src Thank you in advance, Michael From owner-freebsd-mips@freebsd.org Mon May 16 20:41:30 2016 Return-Path: Delivered-To: freebsd-mips@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 89BFFB3E1C3 for ; Mon, 16 May 2016 20:41:30 +0000 (UTC) (envelope-from mizhka@gmail.com) Received: from mail-lb0-x22a.google.com (mail-lb0-x22a.google.com [IPv6:2a00:1450:4010:c04::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F08521A8A for ; Mon, 16 May 2016 20:41:29 +0000 (UTC) (envelope-from mizhka@gmail.com) Received: by mail-lb0-x22a.google.com with SMTP id ww9so46201755lbc.2 for ; Mon, 16 May 2016 13:41:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to; bh=qz6xMqwmapNAnCTrvd1Ieil9mpI6Nv2dxLpaFottUqI=; b=NSHjUik/jnrwMj56uqNaQMy1WiWvQFUnMi/tT1mn4sgUs12eAbLHoBVINhMgNQZqaI YSXxYjXrm4fWwnXHVtfKUI1oqW0YXaQcYL6sshD1NDsnyRbBMq7DB3qFQLTclGSZs56C sjSL9gc+WbQDqdSm5NNWmJDyW1NMnOX/7kvxxEEcIdY96NYJu8JWDBRSlX7nVufeoxcM GpFlR8DIhQfXVDLYh3LaEJlUlxf8ksS0sQ8XJ8+j55TMZX5dSPyDbRoJ3xvS3d4U/mSw qyi00Nxl0ZxYJFZqny6ThhEXJ6baP/QJ2/LV3z6MqhKrAkme5Nk34lalgkaNZuPp4HBd 8jwA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to; bh=qz6xMqwmapNAnCTrvd1Ieil9mpI6Nv2dxLpaFottUqI=; b=GaYmgIDLLUyucVY8roSPHNloIsyAIurJmZK/w06d3mm+y5o1x43TndQtaLDC6kMqWJ 6OSNImdfxQHNKxKik+L/dhFEoqg0ubm3zW3AZa2ce22okj5p+qVZL/yJg5aKntRpFYzd zADfnjVF59JV3vzTFpaTec3SQl+UcXIFa45BBg5snW+iPzgG5ofbCTow/A6P6EvOcxbS 2B+q3kITonum9GteVAKO0Y1h7Ax60y/MUzz7Rln3WiscL05biz1G1EWwNm04GK9wa5WF cB1SDtNQpSMYkhnyv4MX9FcterPY8DVdK7wEMZL6HRONbVw4Uz9L1nDL1CqaU/y9ykD6 YuzA== X-Gm-Message-State: AOPr4FXDm4qW6lAQoXwXZxK3JzCXu7NBjiWhtPMScmkrq5a6JkpsLYE3StiDqyYh7nD1qz+8cTWHIVG92nalpA== MIME-Version: 1.0 X-Received: by 10.112.138.10 with SMTP id qm10mr2872433lbb.36.1463431288264; Mon, 16 May 2016 13:41:28 -0700 (PDT) Received: by 10.25.152.83 with HTTP; Mon, 16 May 2016 13:41:28 -0700 (PDT) In-Reply-To: References: Date: Mon, 16 May 2016 23:41:28 +0300 Message-ID: Subject: Re: MSI & INTRNG: buildkernel error From: Michael Zhilin To: freebsd-mips@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2016 20:41:30 -0000 "kern/msi_if.m optional intrng"@files.xyz fixed issue for me, but may be there will be generic fix :) Best regards, Michael On Mon, May 16, 2016 at 11:31 PM, Michael Zhilin wrote: > Hi, > > On today -head I get error on buildkernel @mips: > subr_intr.c:73:20: error: msi_if.h: No such file or directory. > > I suppose it's related to recent MSI commits for INTRNG. But how to fix it? > > Here is full output of error: > > /repo/freebsd/onion/src/sys/kern/subr_intr.c:73:20: error: msi_if.h: No > such file or directory > cc1: warnings being treated as errors > /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function 'intr_alloc_msi': > /repo/freebsd/onion/src/sys/kern/subr_intr.c:1319: warning: implicit > declaration of function 'MSI_ALLOC_MSI' > /repo/freebsd/onion/src/sys/kern/subr_intr.c:1319: warning: nested extern > declaration of 'MSI_ALLOC_MSI' [-Wnested-externs] > /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function > 'intr_release_msi': > /repo/freebsd/onion/src/sys/kern/subr_intr.c:1357: warning: implicit > declaration of function 'MSI_RELEASE_MSI' > /repo/freebsd/onion/src/sys/kern/subr_intr.c:1357: warning: nested extern > declaration of 'MSI_RELEASE_MSI' [-Wnested-externs] > /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function > 'intr_alloc_msix': > /repo/freebsd/onion/src/sys/kern/subr_intr.c:1378: warning: implicit > declaration of function 'MSI_ALLOC_MSIX' > /repo/freebsd/onion/src/sys/kern/subr_intr.c:1378: warning: nested extern > declaration of 'MSI_ALLOC_MSIX' [-Wnested-externs] > /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function > 'intr_release_msix': > /repo/freebsd/onion/src/sys/kern/subr_intr.c:1405: warning: implicit > declaration of function 'MSI_RELEASE_MSIX' > /repo/freebsd/onion/src/sys/kern/subr_intr.c:1405: warning: nested extern > declaration of 'MSI_RELEASE_MSIX' [-Wnested-externs] > /repo/freebsd/onion/src/sys/kern/subr_intr.c: In function 'intr_map_msi': > /repo/freebsd/onion/src/sys/kern/subr_intr.c:1429: warning: implicit > declaration of function 'MSI_MAP_MSI' > /repo/freebsd/onion/src/sys/kern/subr_intr.c:1429: warning: nested extern > declaration of 'MSI_MAP_MSI' [-Wnested-externs] > --- subr_intr.o --- > *** [subr_intr.o] Error code 1 > > bmake[2]: stopped in > /repo/freebsd/onion/obj/mipsel/mips.mipsel/repo/freebsd/onion/src/sys/BCM > 1 error > > bmake[2]: stopped in > /repo/freebsd/onion/obj/mipsel/mips.mipsel/repo/freebsd/onion/src/sys/BCM > --- buildkernel --- > *** [buildkernel] Error code 2 > > bmake[1]: stopped in /repo/freebsd/onion/src > 1 error > > bmake[1]: stopped in /repo/freebsd/onion/src > --- buildkernel --- > *** [buildkernel] Error code 2 > > make: stopped in /repo/freebsd/onion/src > 1 error > > make: stopped in /repo/freebsd/onion/src > > Thank you in advance, > Michael > From owner-freebsd-mips@freebsd.org Mon May 16 21:58:44 2016 Return-Path: Delivered-To: freebsd-mips@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 D3512B3895E for ; Mon, 16 May 2016 21:58:44 +0000 (UTC) (envelope-from hcooper@widget.xssl.net) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id BDF671A80 for ; Mon, 16 May 2016 21:58:44 +0000 (UTC) (envelope-from hcooper@widget.xssl.net) Received: by mailman.ysv.freebsd.org (Postfix) id B97D7B3895C; Mon, 16 May 2016 21:58:44 +0000 (UTC) Delivered-To: mips@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 9F633B3895B for ; Mon, 16 May 2016 21:58:44 +0000 (UTC) (envelope-from hcooper@widget.xssl.net) Received: from widget.xssl.net (widget.xssl.net [212.113.132.65]) (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 DC0241A7F for ; Mon, 16 May 2016 21:58:43 +0000 (UTC) (envelope-from hcooper@widget.xssl.net) Received: from hcooper by widget.xssl.net with local (Exim 4.87) (envelope-from ) id 1b2PV0-003yNc-BS for mips@freebsd.org; Mon, 16 May 2016 21:52:22 +0100 To: mips@freebsd.org Subject: Notice to appear in Court #0000823024 Date: Mon, 16 May 2016 21:52:22 +0100 From: "District Court" Reply-To: "District Court" Message-ID: X-Priority: 3 MIME-Version: 1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - widget.xssl.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [826 32008] / [47 12] X-AntiAbuse: Sender Address Domain - widget.xssl.net X-Get-Message-Sender-Via: widget.xssl.net: authenticated_id: hcooper/from_h X-Authenticated-Sender: widget.xssl.net: marc.hickman@fetherstonhaugh.com X-Source: X-Source-Args: X-Source-Dir: Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 May 2016 21:58:44 -0000 Notice to Appear, This is to inform you to appear in the Court on the May 23 for your case hearing. Please, prepare all the documents relating to the case and bring them to Court on the specified date. Note: The case will be heard by the judge in your absence if you do not come. You can review complete details of the Court Notice in the attachment. Yours faithfully, Marc Hickman, Clerk of Court. From owner-freebsd-mips@freebsd.org Fri May 20 06:35:18 2016 Return-Path: Delivered-To: freebsd-mips@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 CE6ACB382C9; Fri, 20 May 2016 06:35:18 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-io0-x236.google.com (mail-io0-x236.google.com [IPv6:2607:f8b0:4001:c06::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 958B21230; Fri, 20 May 2016 06:35:18 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: by mail-io0-x236.google.com with SMTP id f8so2957148ioe.3; Thu, 19 May 2016 23:35:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to; bh=QUZu+YFpfXkDCHEBjBDQ7BXJ8gQJ2XgdOGKEW2YYWaM=; b=tzHvXLouwfiWQbiXFE1bQIe8YNI7LxRC+re3PBgyLtVYxSFLcSEqqO4UcAmUNCx8/4 p/oOBwS/Ldpn4uPKAj6p2/Hmn0OXXTlDOCebPAm6DQtOa7qFrd5u2WJt5FVDRzdEWZRa EybtscvolfjOlLsq7YZSQQZTu7quP+g1CmVX+NWTO+1EE7Bh9t89eoXMR2SIGS5ME7oq jGcnUTEu3zGO/FR36Z4dhKgSwy3nJWBdM9XwIJ5fNCZIxWF7IvhLgXu2syH9kUauq5PL oFZmKnpKENwM5DdAv+CK9xP0nLz9xZgdkY85TpVxQedEJv68/At7bEDs+65N1KTRKKq0 HAmw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:date :message-id:subject:from:to; bh=QUZu+YFpfXkDCHEBjBDQ7BXJ8gQJ2XgdOGKEW2YYWaM=; b=gEtG2b3+tKJIpELFnDf7s/FCNI7w58jEhWeNJIUcIMM296oPU40ByHshL3G7XBwufb wPWW7vkvuhNtw4+KzCcHfUnMLaRUQrHcCWAl7mbyINYPYC2tJeQMIVSqLL3Mrg2h600B H79d6BQXwW7s+C1E6Wgv07DCBn5swskuQF7bmJKyyHm0e4tONAAjPWfjBPuos1XCwr/V 4QjqooVnLd2oRAF4dcJExiWxjCF9zsrbdD/CnlVWB/61cdliQv+Bdqu8mN4D1U/CXBFM ZQg86QCwCFPNpvs56hsqExjsn1QzN4YErG1SbH76Oel4MXXabk27e/IXBOCwRYpGmmmv 8d0A== X-Gm-Message-State: AOPr4FViIloKoo5ZaI7hcyEDnp2Dg56PkQkYRO0SlCiYl21TnnkPQj5rIDjr5DHtdzdJoojsccpQ7+IVtR5A0Q== MIME-Version: 1.0 X-Received: by 10.36.83.65 with SMTP id n62mr1335985itb.71.1463726117831; Thu, 19 May 2016 23:35:17 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.36.113.3 with HTTP; Thu, 19 May 2016 23:35:17 -0700 (PDT) In-Reply-To: References: <201604191539.u3JFdkHx048678@repo.freebsd.org> <20160419171243.GA30453@bsdpad.com> <1461097280.1232.34.camel@freebsd.org> Date: Thu, 19 May 2016 23:35:17 -0700 X-Google-Sender-Auth: j4CkV0I6RpGibSIf7DOWY7et3-M Message-ID: Subject: Re: svn commit: r298274 - head/sys/dev/spibus From: Adrian Chadd To: Patrick Kelsey , "freebsd-mips@freebsd.org" , "freebsd-arm@freebsd.org" , Ruslan Bukin Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 May 2016 06:35:18 -0000 I've reviewed the patches from luiz, and these look fine. but indeed, this patchset does set/release the bus each transaction so we can do multiple transactions whilst holding the bus. Which is fine, but it means I have to undo ruslan's removal in the below commit. I'm happy to run through and do each of the spi bus drivers (as there are more now than the two you patched) but it's a bit close to the 11.0-release cycle to go and churn the spibus code. But, if people think it's worth doing it so we can try to get mmcspi into the tree before 11.0-rel is cut, I'm happy to run through and do it. I actually have some AR9331 stuff now that could use mmcspi. :) What do people think? -adrian On 19 April 2016 at 14:19, Patrick Kelsey wrote: > > > On Tue, Apr 19, 2016 at 4:41 PM, Patrick Kelsey wrote: >> >> >> >> >> On Tue, Apr 19, 2016 at 4:38 PM, Adrian Chadd >> wrote: >>> >>> On 19 April 2016 at 13:37, Patrick Kelsey wrote: >>> > >>> > >>> > On Tue, Apr 19, 2016 at 4:21 PM, Ian Lepore wrote: >>> >> >>> >> On Tue, 2016-04-19 at 13:17 -0700, Juli Mallett wrote: >>> >> > Patrick Kelsey offered an mmcspi driver for FreeBSD, but nobody >>> >> > seemed >>> >> > interested. I know of one proprietary branch of FreeBSD using it. >>> >> > You might poke him if you want to know how he dealt with this, and >>> >> > if >>> >> > you want to commit his driver. >>> >> > >>> >> >>> >> Patrick is a committer, maybe he should just commit it. :) >>> > >>> > >>> > What I believe originally held up that driver being committed (by >>> > others - >>> > this was before my commit bit) was that I relied on some out-of-tree >>> > spibus >>> > changes Luiz had made (as I recall, mainly being able to reserve the >>> > SPI bus >>> > for multiple transactions), and getting those into the tree would have >>> > required updating/testing other existing SPI drivers, based on feedback >>> > I >>> > received at the time. All I had was the RB450G that I developed and >>> > tested >>> > the driver with, so I really couldn't address that issue, and then work >>> > took >>> > me in some other direction entirely. Some or all of these spibus >>> > changes >>> > that I relied on might now be in the tree, I'm not sure offhand. I am >>> > sure >>> > though that a huge stack of other things I need to get through has >>> > chronically kept me from updating that driver to current and retesting. >>> > >>> > When I wrote that driver, I put a lot of effort into testing it against >>> > as >>> > many different cards as I could obtain at the time - I believe 30 or so >>> > in >>> > total, all the details are in the code that was posted to the list back >>> > then. I encountered a number of strange/unexpected behaviors in that >>> > set of >>> > cards, and all of that hard-won knowledge is in that driver, including >>> > a >>> > much less complex fix for a shifted-response-data issue than you will >>> > see if >>> > you look at the Linux mmcpsi driver (as I recall, the Linux driver has >>> > code >>> > to arbitrarily bit-shift card response data, and to detect when that >>> > should >>> > be done, but it turns out that can be avoided entirely by inserting >>> > idle >>> > cycles in the right place when sending the command). >>> >>> Well, we should add the SPI bus reservation code and churn stuff as >>> needed. I think that'd be a great addition. >>> >>> Do you have a patchset somewhere? >>> >> >> >> Just going from memory here - there is what I posted to the list, then at >> some point Luiz took a stab at updating it to then-current (I should have a >> copy of those somewhere - not sure where else they went, if anywhere), and >> beyond that, I think there's a harmless but unnecessary conditional in the >> original code that could be removed. >> >> > > For reference, my original patchset and the work-in-progress update Luiz > sent me a few months later are now available at > https://people.freebsd.org/~pkelsey/mmcspi/ > > -Patrick > From owner-freebsd-mips@freebsd.org Fri May 20 11:37:38 2016 Return-Path: Delivered-To: freebsd-mips@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 4E789B43EEA for ; Fri, 20 May 2016 11:37:38 +0000 (UTC) (envelope-from QJM3MB-OFSN45-7C1X8-Z1KMOM-5FB8VV-M-M2-20160520-1bdc0d958833bbdc@gsisportsauth.bounce.ed10.net) Received: from gsisportsauth.outbound.ed10.com (gsisportsauth.outbound.ed10.com [208.94.21.250]) by mx1.freebsd.org (Postfix) with ESMTP id B6E40193F for ; Fri, 20 May 2016 11:37:37 +0000 (UTC) (envelope-from QJM3MB-OFSN45-7C1X8-Z1KMOM-5FB8VV-M-M2-20160520-1bdc0d958833bbdc@gsisportsauth.bounce.ed10.net) DKIM-Signature: v=1; a=rsa-sha1; d=em.sportsauthority.com; s=ED-DKIM-V3; c=relaxed/relaxed; q=dns/txt; i=@em.sportsauthority.com; t=1463744256; h=From; bh=vPsQV9nLBF3PR0c0wDt4YuxzWuw=; b=lHIdhoCuve/il3buD7KrtRDfylUlzatQ7fvci0wmlupG8e4cEzqvHPu/lrZTCDHA sppBwdCIN5pcLz4aUbwoKWg5L4IeGeyqDCXiLNFm9rYqVAtub4ZrEOox601wFko/ lEaie0zj6k8iArtKeG7NQ0f5989JNpGcw7gaweIrV/A=; DomainKey-Signature: q=dns; a=rsa-sha1; c=nofws; s=ED2008-07; d=em.sportsauthority.com; h=Received:Date:Content-Type:Content-Transfer-Encoding:MIME-Version:From:Reply-To:To:Subject:Message-Id:X-Mail-From:X-Match:X-RCPT-To:X-Mailer; b=UK8OVh9BeLbjOL9Eoq1bexrlg6u5bJDHtdj5I2kXeogvB9pubWKrVbNLz2uLjddr A7oucEM26EJaU7QASlO5n9oUolJIqzJ/fmafVoH4QeJhCw6zlE9bbbh/bkgxsIVt Received: from [127.0.0.1] ([127.0.0.1:43436]) by bm1-29.bo3.e-dialog.com (envelope-from ) (ecelerity 2.2.2.45 r(34222M)) with ECSTREAM id BE/E8-04085-007FE375; Fri, 20 May 2016 07:37:36 -0400 Date: Fri, 20 May 2016 07:37:36 -0400 MIME-Version: 1.0 From: "SportsAuthority.com" Reply-To: "SportsAuthority.com" To: freebsd-mips@freebsd.org Subject: Just A Reminder - Your Welcome Gift Of 10% Off Is About To Expire Message-Id: <1185-834-QJM3MB-OFSN45-7C1X8-Z1KMOM-5FB8VV-M-M2-20160520-1bdc0d958833bbdc@e-dialog.com> X-Mail-From: QJM3MB-OFSN45-7C1X8-Z1KMOM-5FB8VV-M-M2-20160520-1bdc0d958833bbdc@gsisportsauth.bounce.ed10.net X-Match: gsisportsauth.bounce.ed10.net X-RCPT-To: freebsd-mips@freebsd.org X-Mailer: EDMAIL R6.00.02 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 May 2016 11:37:38 -0000 If you cannot see the links or images in this email, click the link below= =20 http://link.sportsauthority.com/r/QJM3MB/7C1X8/Z1KMOM/5FB8VV/GYXICC/52/t?a= =3DQJM3MB&b=3DOFSN45&c=3DT2T0OIO&d=3DFMLNIN&e=3D1&f=3D908268811&g=3D5044993= &h=3D915965831&i=3DTSA_WelcomeReminder ---------------------------------------------------------------------------= -- SportsAuthority.com Free Shipping on Orders $49 or More** Plus,Free Shipping on Shoes & Clothes** ---------------------------------------------------------------------------= -- Don't Forget We really appreciate you signing up to receive our emails.=20 Remember to use our special gift the next time you shop. 10% OFF Your Entire Online Purchase*** Enter Code 2034612200004608454 Shop Online >> http://link.sportsauthority.com/r/QJM3MB/7C1X8/Z1KMOM/5FB8VV/3C6V3P/52/t?a= =3DTSA_WelcomeReminder&b=3D2034612200004608454&c=3D908268811&d=3D5044993&e= =3D915965831&f=3DTSA_WelcomeReminder -------OR------- Get $10 OFF Your In-Store Purchase=E2=80=A0 Print Coupon >> http://link.sportsauthority.com/r/QJM3MB/7C1X8/Z1KMOM/5FB8VV/GYXIC2/52/t?a= =3DQJM3MB&b=3D1680U4&c=3DT2T0OIO&d=3DFMLNIN&e=3D1&f=3D908268811&g=3D5044993= &h=3D915965831&i=3DTSA_WelcomeReminder Valid Now-06/03/2016. Exclusions apply. ---------------------------------------------------------------------------= -- 10% Off Your Online Order ***Offer valid online only. Simply click-thru and your 10% off code will au= tomatically be applied to your order. Offer expires 06/03/2016. Discount ap= plied to your order at checkout. Offer valid only while supplies last and n= ot applicable to canceled orders due to out-of-stock merchandise. Discount = does not apply to taxes, shipping and handling charges, gift wrapping or si= milar charges. Discount not applicable with returned merchandise; total dis= count will be deducted from the value of=20 any returned item to which the discount applied. Cannot be combined with an= y other promotional offer nor is this offer valid on previous purchases. En= tire order must be shipped to a single address and customer is responsible = for all shipping costs for returned merchandise. This promotional offer may= be modified or terminated at any time without notice. Click here for a list of online exclusions >> http://link.sportsauthority.com/r/QJM3MB/7C1X8/Z1KMOM/5FB8VV/872MTG/52/t?a= =3DTSA_WelcomeReminder&b=3D2034612200004608454&c=3D908268811&d=3D5044993&e= =3D915965831&f=3DTSA_WelcomeReminder =E2=80=A0Valid through 06/03/2016 MORE EXCLUSIONS MAY APPLY. VISIT SPORTSAUTHORITY.COM/EXCLUSIONS OR SEE STOR= E FOR DETAILS. No cash value. No cash back. No rain checks. Coupon not valid on prior Spor= ts Authority purchases, online Sports Authority purchases, S.A. Elite by Sp= orts Authority purchases, gift cards, licenses, event tickets, store servic= es, leases, rentals or items intended for resale. Offer good on in-stock me= rchandise only. Must present coupon at time of purchase to redeem. Cannot b= e combined with any other offer, Cash Card, coupon or Employee or Friends &= Family discount. Coupon may not be=20 reproduced. One coupon per customer, per purchase. Exclusions include clear= ance items marked with $.97 price endings; BOGO offers; Buy X number of ite= ms, Pay $Y amount offers (i.e. =E2=80=9C2 For=E2=80=9D and =E2=80=9C3 For= =E2=80=9D); Deals of the Week; all Sniagrab and Black Friday Weekend Sale o= ffers; baseball gloves priced $169.99 or more; Coleman grills; official lea= gue game balls; firearms and ammunition; GPS watches; pedometers; activity = trackers; heart-rate monitors; UGG; Under Armour; The North Face; Nike; Bro= oks;=20 select adidas, ASICS & Mizuno footwear; Babolat; select TaylorMade; Titleis= t; Shock Doctor mouthguards; Burton; Volkl; GoPro; Penn Reels. Discount wil= l become invalid after single use. **Free shipping is applied to your order when the retail value of products = in your cart subtotals $49 or more. Shipping savings will be reflected in t= he shopping cart. Offer applies to GROUND shipping only. Priority shipping = will be applied for expedited orders. Items that are oversized or are large= r than load will have normal shipping charges applied. Offer is valid on or= ders shipped to one address within the continental United States. Orders th= at are $49 and over placed now=E2=80=936/20/14 at 11:59PM=20 EST that include qualifying items will receive free shipping. Exclusions ap= ply. This promotion is valid for a limited time and can be modified or term= inated at any time without advance notice. Offer does not apply to gift cer= tificates, gift cards, taxes, or similar charges. Offer cannot be combined = with any other promotional offer and is not valid on previous purchases. Fr= ee shipping is applied to orders containing a combination of shoes, clothin= g, outerwear, and fan gear only. Shipping savings=20 will be reflected in the Shopping Cart. Offer applies to orders with standa= rd ground shipping selected. Priority shipping will be applied for expedite= d orders. Items that are oversized or are larger than load will have normal= shipping charges applied. Offer is valid on orders shipped to one address = within the continental United States. Orders placed now=E2=80=936/20/14 at = 11:59PM EST that include qualifying items will receive free standard shippi= ng. Exclusions apply. This promotion is valid for a=20 limited time and can be modified or terminated at any time without advance = notice. Offer does not apply to gift certificates, gift cards, taxes, or si= milar charges. Offer cannot be combined with any other promotional offer an= d is not valid on previous purchases. Click here for a list of in-store exclusions >> http://link.sportsauthority.com/r/QJM3MB/7C1X8/Z1KMOM/5FB8VV/9MA5H6/52/t?a= =3DTSA_WelcomeReminder&b=3D2034612200004608454&c=3D908268811&d=3D5044993&e= =3D915965831&f=3DTSA_WelcomeReminder Please do not reply to this email, as we are not able to respond to message= s=20 sent to this address. If you no longer wish to receive our email updates, please click here. http= ://link.sportsauthority.com/u/QJM3MB/7C1X8/Z1KMOM/5FB8VV/PR/ZnJlZWJzZC1taXB= zQGZyZWVic2Qub3Jn/ 2. Write us at:=20 SportsAuthority.com Attn: Email Permissions Manager 915 S. Babcock St. Melbourne, FL 32901 3. View our Privacy Policy http://link.sportsauthority.com/r/QJM3MB/7C1X8/Z= 1KMOM/5FB8VV/WH1BQF/52/t?a=3DTSA_WelcomeReminder&b=3D2034612200004608454&c= =3D908268811&d=3D5044993&e=3D915965831&f=3DTSA_WelcomeReminder If you have an online account and wish to update your email address, please= =20 enter your changes in My Account. http://link.sportsauthority.com/r/QJM3MB/= 7C1X8/Z1KMOM/5FB8VV/1OG0FL/52/t?a=3DTSA_WelcomeReminder&b=3D203461220000460= 8454&c=3D908268811&d=3D5044993&e=3D915965831&f=3DTSA_WelcomeReminder [[QJM3MB-OFSN45-7C1X8-Z1KMOM-5FB8VV-M-M2-20160520-1bdc0d958833bbdc]] From owner-freebsd-mips@freebsd.org Fri May 20 16:08:53 2016 Return-Path: Delivered-To: freebsd-mips@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 464F6B44725 for ; Fri, 20 May 2016 16:08:53 +0000 (UTC) (envelope-from VPKTK0-9MAMLU-PS4C4-TR7CTC-P7EJLW-M-M2-20160520-6f73face65d81ddc@gsisportsauth.bounce.ed10.net) Received: from gsisportsauth.outbound.ed10.com (gsisportsauth.outbound.ed10.com [208.94.21.251]) by mx1.freebsd.org (Postfix) with ESMTP id 06D94171E for ; Fri, 20 May 2016 16:08:52 +0000 (UTC) (envelope-from VPKTK0-9MAMLU-PS4C4-TR7CTC-P7EJLW-M-M2-20160520-6f73face65d81ddc@gsisportsauth.bounce.ed10.net) DKIM-Signature: v=1; a=rsa-sha1; d=em.sportsauthority.com; s=ED-DKIM-V3; c=relaxed/relaxed; q=dns/txt; i=@em.sportsauthority.com; t=1463760531; h=From; bh=gi/rj6yJEXIqMEwJm3CVWoubNm4=; b=WnzyfNOrd7a0Yl+pRNuEw7ubkROig+C9542rCHJX91xR0JDZw04feyL0vDtIhcRg Jw4EnxvVh4K5jyFDEznw27s92Refoobmf7Eq5nIFEBjTxyQh1lS8X8ANIo+6QOCY K8Va4vEXIlZeFeuoDLuOmj/LvOBfKU9bNAhottiC+B0=; DomainKey-Signature: q=dns; a=rsa-sha1; c=nofws; s=ED2008-07; d=em.sportsauthority.com; h=Received:Date:Content-Type:Content-Transfer-Encoding:MIME-Version:From:Reply-To:To:Subject:Message-Id:X-Mail-From:X-Match:X-RCPT-To:X-Mailer; b=gJzsZw2HO+Fx9KnoApgFnqqYu0H6dnDkFzIhPgPnKUhPRiVRfNROFUtqTpMbftSh rvOS/Y0UppEi/P4AlPrqVI2ZiuQFgRStynE9Oxa+aNyV4WjC7K1fIaVu3OEkfbP5 Received: from [127.0.0.1] ([127.0.0.1:47702]) by bm1-19.bo3.e-dialog.com (envelope-from ) (ecelerity 2.2.2.45 r(34222M)) with ECSTREAM id D2/8D-09146-3963F375; Fri, 20 May 2016 12:08:51 -0400 Date: Fri, 20 May 2016 12:08:51 -0400 MIME-Version: 1.0 From: "Sports Authority" Reply-To: "Sports Authority" To: freebsd-mips@freebsd.org Subject: Enjoy 25% off entire order. 4 hours only! Message-Id: <17833-549-VPKTK0-9MAMLU-PS4C4-TR7CTC-P7EJLW-M-M2-20160520-6f73face65d81ddc@e-dialog.com> X-Mail-From: VPKTK0-9MAMLU-PS4C4-TR7CTC-P7EJLW-M-M2-20160520-6f73face65d81ddc@gsisportsauth.bounce.ed10.net X-Match: gsisportsauth.bounce.ed10.net X-RCPT-To: freebsd-mips@freebsd.org X-Mailer: EDMAIL R6.00.02 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 May 2016 16:08:53 -0000 Plus, free shipping on orders $39+. Shop Now >> http://link.sportsauthority.com/r/VPKTK0/PS4C4/TR7CTC/P7EJLW/Q3R3XP/1O/t?a=http://www.sportsauthority.com/entry.point?target=z&source=CME_TSA:HTML:TSA_20160520_WK16PROMOFri View Online Version >> http://link.sportsauthority.com/r/VPKTK0/PS4C4/TR7CTC/P7EJLW/3C62WC/1O/t?a=VPKTK0&b=9MAMLU&c=Q6V0GL6&d=XPWZ8Z&e=1&f=914897211&g=5043622&h=815328121&i=TSA_20160520_WK16PROMOFri My Account http://link.sportsauthority.com/r/VPKTK0/PS4C4/TR7CTC/P7EJLW/9MA4E5/1O/t?a=TSA_20160520_WK16PROMOFri&b=914897211&c=5043622&d=815328121&e=TSA_20160520_WK16PROMOFri Help http://link.sportsauthority.com/r/VPKTK0/PS4C4/TR7CTC/P7EJLW/B47X9X/1O/t?a=TSA_20160520_WK16PROMOFri&b=914897211&c=5043622&d=815328121&e=TSA_20160520_WK16PROMOFri ------------------------------------------------- Sports Authority ------------------------------------------------- EMAIL SUBSCRIPTION This email was sent to freebsd-mips@freebsd.org. To update your email preferences or change your email address, visit My Account by clicking here. http://link.sportsauthority.com/r/VPKTK0/PS4C4/TR7CTC/P7EJLW/8725YH/1O/t?a=TSA_20160520_WK16PROMOFri&b=914897211&c=5043622&d=815328121&e=TSA_20160520_WK16PROMOFri. If you would rather not receive email updates from Sports Authority, you can UNSUBSCRIBE at any time by clicking here. http://link.sportsauthority.com/r/VPKTK0/PS4C4/TR7CTC/P7EJLW/8725YB/1O/t?a=XPWZ8Z&b=freebsd-mips@freebsd.org&c=815328121&d=9MAMLU&e=914897211&f=5043622&g=815328121&h=TSA_20160520_WK16PROMOFri Or, write us at SportsAuthority.com, Email Permissions Manager, 915 S Babcock Street, Melbourne, FL 32901. CONTACT US Please do not respond to this email, as we are not able to respond to emails sent to this address. Visit our Online Help by clicking here. http://link.sportsauthority.com/r/VPKTK0/PS4C4/TR7CTC/P7EJLW/6AC7KH/1O/t?a=TSA_20160520_WK16PROMOFri&b=914897211&c=5043622&d=815328121&e=TSA_20160520_WK16PROMOFri Online Customer Service: 1.888.801.9164 In-Store Customer Service: 1.800.360.8721 Click here to view our Privacy Policy. http://link.sportsauthority.com/r/VPKTK0/PS4C4/TR7CTC/P7EJLW/T13TO9/1O/t?a=TSA_20160520_WK16PROMOFri&b=914897211&c=5043622&d=815328121&e=TSA_20160520_WK16PROMOFri [[VPKTK0-9MAMLU-PS4C4-TR7CTC-P7EJLW-M-M2-20160520-6f73face65d81ddc]] From owner-freebsd-mips@freebsd.org Sat May 21 13:59:11 2016 Return-Path: Delivered-To: freebsd-mips@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 18684B45C56 for ; Sat, 21 May 2016 13:59:11 +0000 (UTC) (envelope-from QJM3MB-ULPG7S-AAHVB-FMLNIN-QMQKGW-M-M2-20160521-f5e8d871f1e49368@gsisportsauth.bounce.ed10.net) Received: from gsisportsauth.outbound.ed10.com (gsisportsauth.outbound.ed10.com [208.94.21.250]) by mx1.freebsd.org (Postfix) with ESMTP id A897617CC for ; Sat, 21 May 2016 13:59:10 +0000 (UTC) (envelope-from QJM3MB-ULPG7S-AAHVB-FMLNIN-QMQKGW-M-M2-20160521-f5e8d871f1e49368@gsisportsauth.bounce.ed10.net) DKIM-Signature: v=1; a=rsa-sha1; d=em.sportsauthority.com; s=ED-DKIM-V3; c=relaxed/relaxed; q=dns/txt; i=@em.sportsauthority.com; t=1463839143; h=From; bh=odwT+6CH84K/ZmtzMMC3t8Iurhs=; b=DQGKa5G51Nss7WL6sehXO37t6GS6sWnNdUEYJbygbCEd/G6UcoukVBJW3JKvTB61 44UtgemOxGNW2Tn5sIj7peHIo2v4+fYXwriMBFCkT5vNfnW4jAM9ZeE/uPh94CP3 zGUc8MqkWFLz0jyS6fI9b5Gt5XIlNbRwESTtA2orPsw=; DomainKey-Signature: q=dns; a=rsa-sha1; c=nofws; s=ED2008-07; d=em.sportsauthority.com; h=Received:Date:Content-Type:Content-Transfer-Encoding:MIME-Version:From:Reply-To:To:Subject:Message-Id:X-Mail-From:X-Match:X-RCPT-To:X-Mailer; b=TdGoXH29XTNF1KggZri3Dhe+Zn/ARfl/I6sdaHwOJHc9Oz0WHA/QlqLs8pC6XzPn N7kN0mteJZTAU5bUCtVlJIegMt8+U2ZefFyOC81MLcW8xfevhp1JF8HJw15qVNoW Received: from [127.0.0.1] ([127.0.0.1:56731]) by bm1-14.bo3.e-dialog.com (envelope-from ) (ecelerity 2.2.2.45 r(34222M)) with ECSTREAM id AE/AF-01537-7A960475; Sat, 21 May 2016 09:59:03 -0400 Date: Sat, 21 May 2016 09:59:03 -0400 MIME-Version: 1.0 From: "Sports Authority" Reply-To: "Sports Authority" To: freebsd-mips@freebsd.org Subject: Loyalty update from CEO Message-Id: <19127-820-QJM3MB-ULPG7S-AAHVB-FMLNIN-QMQKGW-M-M2-20160521-f5e8d871f1e49368@e-dialog.com> X-Mail-From: QJM3MB-ULPG7S-AAHVB-FMLNIN-QMQKGW-M-M2-20160521-f5e8d871f1e49368@gsisportsauth.bounce.ed10.net X-Match: gsisportsauth.bounce.ed10.net X-RCPT-To: freebsd-mips@freebsd.org X-Mailer: EDMAIL R6.00.02 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 May 2016 13:59:11 -0000 The League expires on May 25th >> http://link.sportsauthority.com/r/QJM3MB/AAHVB/FMLNIN/QMQKGW/SUNHW2/HI/t?a= ------------------------------------------------- Sports Authority ------------------------------------------------- EMAIL SUBSCRIPTION This email was sent to freebsd-mips@freebsd.org. To update your email preferences or change your email address, visit My Account by clicking here. http://link.sportsauthority.com/r/QJM3MB/AAHVB/FMLNIN/QMQKGW/JQYFQK/HI/t?a=TSA 20160521 LoyRew Letter March. If you would rather not receive email updates from Sports Authority, you can UNSUBSCRIBE at any time by clicking here. http://link.sportsauthority.com/r/QJM3MB/AAHVB/FMLNIN/QMQKGW/RPFHPR/HI/t?a=589DZD&b=freebsd-mips@freebsd.org&c=916292841&d=ULPG7S Or, write us at SportsAuthority.com, Email Permissions Manager, 915 S Babcock Street, Melbourne, FL 32901. CONTACT US Please do not respond to this email, as we are not able to respond to emails sent to this address. Visit our Online Help by clicking here. http://link.sportsauthority.com/r/QJM3MB/AAHVB/FMLNIN/QMQKGW/T13GL3/HI/t?a=TSA 20160521 LoyRew Letter March Online Customer Service: 1.888.801.9164 In-Store Customer Service: 1.800.360.8721 Click here to view our Privacy Policy. http://link.sportsauthority.com/r/QJM3MB/AAHVB/FMLNIN/QMQKGW/Z8HV6B/HI/t?a=TSA 20160521 LoyRew Letter March [[QJM3MB-ULPG7S-AAHVB-FMLNIN-QMQKGW-M-M2-20160521-f5e8d871f1e49368]]