From owner-svn-src-all@freebsd.org Mon Nov 30 18:06:12 2015 Return-Path: Delivered-To: svn-src-all@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 DADCBA3D65B; Mon, 30 Nov 2015 18:06:12 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-io0-x232.google.com (mail-io0-x232.google.com [IPv6:2607:f8b0:4001:c06::232]) (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 A6E621C7B; Mon, 30 Nov 2015 18:06:12 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: by iofh3 with SMTP id h3so183302103iof.3; Mon, 30 Nov 2015 10:06:12 -0800 (PST) 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 :cc:content-type; bh=YiAQIaAgAKErmtMQkK1z2L/+WuSK7DZjRLziXLyx6FY=; b=bn7dOBDIpO4NoNR4Jk2hKwPmONykywvK1k6COKH37hMN+E4WV+WL50HoQraisuZf/H sDc5PNJHrbE8mvuPe+Y2WnZhunOvMOLB4QVMjvUB71C/t7/5ZkKpBho3/focQDNMZokz 9em+RVcEzKkMu3SA0NHnumokBNK/Qw8zNXe0Hy07I+86Twrv22f0tuxaon/sDD73zd2L P1JSTeXp5gTVX/VRv7qdmGRW+a6RSHQxKRXEXW/PNBj22sPJbE3o0ecLmdRtA5ORNpRN XU2npwnZFbB28wFaYRpY5+QBlxgBLtLik5ei3eD5oyclaELRONifRl2hV3AjIt+Yb5Ql RLJA== MIME-Version: 1.0 X-Received: by 10.107.10.199 with SMTP id 68mr57379953iok.75.1448906772113; Mon, 30 Nov 2015 10:06:12 -0800 (PST) Received: by 10.36.217.196 with HTTP; Mon, 30 Nov 2015 10:06:12 -0800 (PST) In-Reply-To: <201511301709.tAUH9P9E089512@repo.freebsd.org> References: <201511301709.tAUH9P9E089512@repo.freebsd.org> Date: Mon, 30 Nov 2015 10:06:12 -0800 Message-ID: Subject: Re: svn commit: r291492 - in head/sys/arm: arm include From: Adrian Chadd To: Michal Meloun Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 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: Mon, 30 Nov 2015 18:06:13 -0000 Hiya! What's the semantics of this? The mips24k/mips74k cores support a kind of write combining but only within a cache line - ie, it buffers writes to the same cache line, then the first non-cacheline access flushes it out. It's for things like accelerated framebuffer writes. Is this similar to what you've just added? -a