Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759502AbZFNMfa (ORCPT ); Sun, 14 Jun 2009 08:35:30 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1759167AbZFNMez (ORCPT ); Sun, 14 Jun 2009 08:34:55 -0400 Received: from mail-ew0-f210.google.com ([209.85.219.210]:49795 "EHLO mail-ew0-f210.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758962AbZFNMex (ORCPT ); Sun, 14 Jun 2009 08:34:53 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=Dt3HnN1JKUlRGAHSny6jra3co/CudyCevfqNsqTpXaQ5jI3/L3+9usWwLjhmj1KmOG ILhBWAONwR2fCKAvGiIkbTZpEvD+ZYKit2kOjYi7480cCfY88R7Kna8gMu8fdLpOmcnK pmXD8uX9enJV11ye0EPwlCaFTbZyGRi22L+6A= Date: Sun, 14 Jun 2009 14:34:52 +0200 From: Frederic Weisbecker To: Wu Zhangjin Cc: linux-kernel@vger.kernel.org, Linux-MIPS , Steven Rostedt , Ralf Baechle , Pekka Enberg , Wu Zhangjin , Ingo Molnar Subject: Re: [PATCH] tracing: fix undeclared 'PAGE_SIZE' in include/linux/trace_seq.h Message-ID: <20090614123451.GA6039@nowhere> References: <1244962350-28702-1-git-send-email-wuzhangjin@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1244962350-28702-1-git-send-email-wuzhangjin@gmail.com> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1367 Lines: 46 On Sun, Jun 14, 2009 at 02:52:30PM +0800, Wu Zhangjin wrote: > From: Wu Zhangjin > > when compiling linux-mips with kmemtrace enabled, there will be an > error: > > include/linux/trace_seq.h:12: error: 'PAGE_SIZE' undeclared here (not in > a function) > > I checked the source code and found trace_seq.h used PAGE_SIZE but not > included the relative header file, so, fix it via adding the header file > > > Acked-by: Pekka Enberg > Signed-off-by: Wu Zhangjin Acked-by: Frederic Weisbecker > --- > include/linux/trace_seq.h | 2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/include/linux/trace_seq.h b/include/linux/trace_seq.h > index c68bccb..c134dd1 100644 > --- a/include/linux/trace_seq.h > +++ b/include/linux/trace_seq.h > @@ -3,6 +3,8 @@ > > #include > > +#include > + > /* > * Trace sequences are used to allow a function to call several other functions > * to create a string of data to use (up to a max of PAGE_SIZE. > -- > 1.6.0.4 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/