From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f171.google.com (mail-pd0-f171.google.com [209.85.192.171]) by kanga.kvack.org (Postfix) with ESMTP id 169296B0031 for ; Wed, 15 Jan 2014 01:58:30 -0500 (EST) Received: by mail-pd0-f171.google.com with SMTP id x10so731890pdj.2 for ; Tue, 14 Jan 2014 22:58:29 -0800 (PST) Received: from blackbird.sr71.net (www.sr71.net. [198.145.64.142]) by mx.google.com with ESMTP id ot3si2761408pac.282.2014.01.14.22.58.26 for ; Tue, 14 Jan 2014 22:58:26 -0800 (PST) Message-ID: <52D63192.3080306@sr71.net> Date: Tue, 14 Jan 2014 22:58:26 -0800 From: Dave Hansen MIME-Version: 1.0 Subject: Re: [RFC][PATCH 1/9] mm: slab/slub: use page->list consistently instead of page->lru References: <20140114180042.C1C33F78@viggo.jf.intel.com> <20140114180044.1E401C47@viggo.jf.intel.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: owner-linux-mm@kvack.org List-ID: To: David Rientjes Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Andrew Morton , Pekka Enberg , Christoph Lameter On 01/14/2014 06:31 PM, David Rientjes wrote: > Did you try with a CONFIG_BLOCK config? > > block/blk-mq.c: In function a??blk_mq_free_rq_mapa??: > block/blk-mq.c:1094:10: error: a??struct pagea?? has no member named a??lista?? > block/blk-mq.c:1094:10: warning: initialization from incompatible pointer type [enabled by default] > block/blk-mq.c:1094:10: error: a??struct pagea?? has no member named a??lista?? > block/blk-mq.c:1095:22: error: a??struct pagea?? has no member named a??lista?? > block/blk-mq.c: In function a??blk_mq_init_rq_mapa??: > block/blk-mq.c:1159:22: error: a??struct pagea?? has no member named a??lista?? As I mentioned in the introduction, these are against linux-next. There's a patch in there at the moment which fixed this. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751010AbaAOG62 (ORCPT ); Wed, 15 Jan 2014 01:58:28 -0500 Received: from www.sr71.net ([198.145.64.142]:57495 "EHLO blackbird.sr71.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750754AbaAOG60 (ORCPT ); Wed, 15 Jan 2014 01:58:26 -0500 Message-ID: <52D63192.3080306@sr71.net> Date: Tue, 14 Jan 2014 22:58:26 -0800 From: Dave Hansen User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: David Rientjes CC: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Andrew Morton , Pekka Enberg , Christoph Lameter Subject: Re: [RFC][PATCH 1/9] mm: slab/slub: use page->list consistently instead of page->lru References: <20140114180042.C1C33F78@viggo.jf.intel.com> <20140114180044.1E401C47@viggo.jf.intel.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 01/14/2014 06:31 PM, David Rientjes wrote: > Did you try with a CONFIG_BLOCK config? > > block/blk-mq.c: In function ‘blk_mq_free_rq_map’: > block/blk-mq.c:1094:10: error: ‘struct page’ has no member named ‘list’ > block/blk-mq.c:1094:10: warning: initialization from incompatible pointer type [enabled by default] > block/blk-mq.c:1094:10: error: ‘struct page’ has no member named ‘list’ > block/blk-mq.c:1095:22: error: ‘struct page’ has no member named ‘list’ > block/blk-mq.c: In function ‘blk_mq_init_rq_map’: > block/blk-mq.c:1159:22: error: ‘struct page’ has no member named ‘list’ As I mentioned in the introduction, these are against linux-next. There's a patch in there at the moment which fixed this.