From owner-freebsd-x11@FreeBSD.ORG Sat Nov 19 14:02:45 2011 Return-Path: Delivered-To: freebsd-x11@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F669106566C for ; Sat, 19 Nov 2011 14:02:45 +0000 (UTC) (envelope-from kowalczt@gmail.com) Received: from mail-bw0-f54.google.com (mail-bw0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 0C7D78FC13 for ; Sat, 19 Nov 2011 14:02:44 +0000 (UTC) Received: by bkbzs8 with SMTP id zs8so6190251bkb.13 for ; Sat, 19 Nov 2011 06:02:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:subject:date:user-agent:references:in-reply-to:mime-version :content-type:message-id; bh=5ZWM3Sn68rjSjtEEmeKFENOX9EbAxF7InNOn73n2TJc=; b=nbmMPak/GMTEb1wL+vjO2RoMNIeKs5/CAQiSNP6Y5cYyXLLrjPWLb/AaOd7HoZEaGx cL+EOCeLcRbLAr5/C7JVPMpM1SOBz5vijRqZYabGqQKQMl3PrinPQ9KwI5lepPAg3Zm7 45J5czrW0W1QlD6p8qsrfyAmxDfvdinT0pVSA= Received: by 10.204.157.24 with SMTP id z24mr6385829bkw.8.1321709917670; Sat, 19 Nov 2011 05:38:37 -0800 (PST) Received: from wymiot.localdomain (87-207-35-49.dynamic.chello.pl. [87.207.35.49]) by mx.google.com with ESMTPS id y2sm8749596fag.12.2011.11.19.05.38.35 (version=SSLv3 cipher=OTHER); Sat, 19 Nov 2011 05:38:36 -0800 (PST) From: Tomasz Kowalczyk To: freebsd-x11@freebsd.org Date: Sat, 19 Nov 2011 14:38:18 +0100 User-Agent: KMail/1.13.7 (FreeBSD/9.9-CURRENT; KDE/4.7.3; amd64; ; ) References: <20111119105155.GA1330@wolfman.devio.us> In-Reply-To: <20111119105155.GA1330@wolfman.devio.us> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_KF7xOWECaEc2CVQ" Message-Id: <201111191438.18121.kowalczt@gmail.com> Subject: Re: Intel driver patch 11.0 X-BeenThere: freebsd-x11@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: X11 on FreeBSD -- maintaining and support List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Nov 2011 14:02:45 -0000 --Boundary-00=_KF7xOWECaEc2CVQ Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit On Saturday 19 of November 2011 11:51:55 Nick Ulen wrote: > I tried to apply the patches (all.11.0.patch and all.11.1.patch) on > 9.0-RC1 and 9.0-RC2 , but both failed with the same messages: >... > Also I tried to apply the patch all.12.0.patch on 9.0-PRERELEASE, > everything is the same as described above. > My system is core-i7 2600k . What should I do to fix it ? I think you can try applying this patch (after using all.*.patch). Atleast here its working. --Boundary-00=_KF7xOWECaEc2CVQ Content-Type: text/x-patch; charset="UTF-8"; name="vm_phys.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="vm_phys.patch" --- sys/vm/vm_phys.h.orig 2011-11-14 02:00:40.491995275 +0100 +++ sys/vm/vm_phys.h 2011-11-14 02:12:12.359998471 +0100 @@ -56,6 +56,10 @@ vm_page_t vm_phys_alloc_freelist_pages(int flind, int pool, int order); vm_page_t vm_phys_alloc_pages(int pool, int order); vm_paddr_t vm_phys_bootstrap_alloc(vm_size_t size, unsigned long alignment); +int vm_phys_fictitious_reg_range(vm_paddr_t start, vm_paddr_t end, + vm_memattr_t memattr); +void vm_phys_fictitious_unreg_range(vm_paddr_t start, vm_paddr_t end); +vm_page_t vm_phys_fictitious_to_vm_page(vm_paddr_t pa); void vm_phys_free_pages(vm_page_t m, int order); void vm_phys_init(void); void vm_phys_set_pool(int pool, vm_page_t m, int order); --Boundary-00=_KF7xOWECaEc2CVQ--