All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix page-flags build
@ 2015-03-12 22:39 Andi Kleen
  2015-03-12 22:54 ` Andrew Morton
  2015-05-13  6:24 ` [tip:perf/urgent] tools: Fix tools/vm build tip-bot for Andi Kleen
  0 siblings, 2 replies; 5+ messages in thread
From: Andi Kleen @ 2015-03-12 22:39 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, Andi Kleen

From: Andi Kleen <ak@linux.intel.com>

libabikfs.a doesn't exist anymore, so we now need to link with
libapi.a

Signed-off-by: Andi Kleen <ak@linux.intel.com>
---
 tools/vm/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/vm/Makefile b/tools/vm/Makefile
index ac884b6..93aadaf 100644
--- a/tools/vm/Makefile
+++ b/tools/vm/Makefile
@@ -3,7 +3,7 @@
 TARGETS=page-types slabinfo page_owner_sort
 
 LIB_DIR = ../lib/api
-LIBS = $(LIB_DIR)/libapikfs.a
+LIBS = $(LIB_DIR)/libapi.a
 
 CC = $(CROSS_COMPILE)gcc
 CFLAGS = -Wall -Wextra -I../lib/
-- 
1.9.3


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] Fix page-flags build
  2015-03-12 22:39 [PATCH] Fix page-flags build Andi Kleen
@ 2015-03-12 22:54 ` Andrew Morton
  2015-03-12 23:16   ` Andi Kleen
  2015-03-13 10:09   ` Jiri Olsa
  2015-05-13  6:24 ` [tip:perf/urgent] tools: Fix tools/vm build tip-bot for Andi Kleen
  1 sibling, 2 replies; 5+ messages in thread
From: Andrew Morton @ 2015-03-12 22:54 UTC (permalink / raw)
  To: Andi Kleen; +Cc: linux-kernel, Andi Kleen, Jiri Olsa, Arnaldo Carvalho de Melo

On Thu, 12 Mar 2015 15:39:13 -0700 Andi Kleen <andi@firstfloor.org> wrote:

> From: Andi Kleen <ak@linux.intel.com>
> 
> libabikfs.a doesn't exist anymore, so we now need to link with
> libapi.a
> 
> Signed-off-by: Andi Kleen <ak@linux.intel.com>
> ---
>  tools/vm/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/vm/Makefile b/tools/vm/Makefile
> index ac884b6..93aadaf 100644
> --- a/tools/vm/Makefile
> +++ b/tools/vm/Makefile
> @@ -3,7 +3,7 @@
>  TARGETS=page-types slabinfo page_owner_sort
>  
>  LIB_DIR = ../lib/api
> -LIBS = $(LIB_DIR)/libapikfs.a
> +LIBS = $(LIB_DIR)/libapi.a
>  
>  CC = $(CROSS_COMPILE)gcc
>  CFLAGS = -Wall -Wextra -I../lib/

A bit more info would have helped!

This appears to be a fix for 285a8f247b08c2 ("tools lib api: Rename
libapikfs.a to libapi.a"), authored by Jiri, committed by Arnaldo and
presently in linux-next.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Fix page-flags build
  2015-03-12 22:54 ` Andrew Morton
@ 2015-03-12 23:16   ` Andi Kleen
  2015-03-13 10:09   ` Jiri Olsa
  1 sibling, 0 replies; 5+ messages in thread
From: Andi Kleen @ 2015-03-12 23:16 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Andi Kleen, linux-kernel, Jiri Olsa, Arnaldo Carvalho de Melo

> A bit more info would have helped!

It didn't build because libabikfs doesn't exist anymore. Nothing more to say.

> This appears to be a fix for 285a8f247b08c2 ("tools lib api: Rename
> libapikfs.a to libapi.a"), authored by Jiri, committed by Arnaldo and
> presently in linux-next.

Ok. Should get into master then.

-Andi

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] Fix page-flags build
  2015-03-12 22:54 ` Andrew Morton
  2015-03-12 23:16   ` Andi Kleen
@ 2015-03-13 10:09   ` Jiri Olsa
  1 sibling, 0 replies; 5+ messages in thread
From: Jiri Olsa @ 2015-03-13 10:09 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Andi Kleen, linux-kernel, Andi Kleen, Jiri Olsa,
	Arnaldo Carvalho de Melo

On Thu, Mar 12, 2015 at 03:54:39PM -0700, Andrew Morton wrote:
> On Thu, 12 Mar 2015 15:39:13 -0700 Andi Kleen <andi@firstfloor.org> wrote:
> 
> > From: Andi Kleen <ak@linux.intel.com>
> > 
> > libabikfs.a doesn't exist anymore, so we now need to link with
> > libapi.a
> > 
> > Signed-off-by: Andi Kleen <ak@linux.intel.com>
> > ---
> >  tools/vm/Makefile | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/tools/vm/Makefile b/tools/vm/Makefile
> > index ac884b6..93aadaf 100644
> > --- a/tools/vm/Makefile
> > +++ b/tools/vm/Makefile
> > @@ -3,7 +3,7 @@
> >  TARGETS=page-types slabinfo page_owner_sort
> >  
> >  LIB_DIR = ../lib/api
> > -LIBS = $(LIB_DIR)/libapikfs.a
> > +LIBS = $(LIB_DIR)/libapi.a
> >  
> >  CC = $(CROSS_COMPILE)gcc
> >  CFLAGS = -Wall -Wextra -I../lib/
> 
> A bit more info would have helped!
> 
> This appears to be a fix for 285a8f247b08c2 ("tools lib api: Rename
> libapikfs.a to libapi.a"), authored by Jiri, committed by Arnaldo and
> presently in linux-next.

oops, sry I missed this bit..

jirka

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [tip:perf/urgent] tools: Fix tools/vm build
  2015-03-12 22:39 [PATCH] Fix page-flags build Andi Kleen
  2015-03-12 22:54 ` Andrew Morton
@ 2015-05-13  6:24 ` tip-bot for Andi Kleen
  1 sibling, 0 replies; 5+ messages in thread
From: tip-bot for Andi Kleen @ 2015-05-13  6:24 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: tglx, acme, akpm, mingo, linux-kernel, ak, hpa

Commit-ID:  85a9fb47c56aa5e43c54034002232c0585a4b781
Gitweb:     http://git.kernel.org/tip/85a9fb47c56aa5e43c54034002232c0585a4b781
Author:     Andi Kleen <ak@linux.intel.com>
AuthorDate: Thu, 12 Mar 2015 15:39:13 -0700
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Tue, 12 May 2015 18:11:06 -0300

tools: Fix tools/vm build

libabikfs.a doesn't exist anymore, so we now need to link with libapi.a.

Signed-off-by: Andi Kleen <ak@linux.intel.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Link: http://lkml.kernel.org/r/1426199953-15324-1-git-send-email-andi@firstfloor.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/vm/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/vm/Makefile b/tools/vm/Makefile
index ac884b6..93aadaf 100644
--- a/tools/vm/Makefile
+++ b/tools/vm/Makefile
@@ -3,7 +3,7 @@
 TARGETS=page-types slabinfo page_owner_sort
 
 LIB_DIR = ../lib/api
-LIBS = $(LIB_DIR)/libapikfs.a
+LIBS = $(LIB_DIR)/libapi.a
 
 CC = $(CROSS_COMPILE)gcc
 CFLAGS = -Wall -Wextra -I../lib/

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-05-13  6:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-12 22:39 [PATCH] Fix page-flags build Andi Kleen
2015-03-12 22:54 ` Andrew Morton
2015-03-12 23:16   ` Andi Kleen
2015-03-13 10:09   ` Jiri Olsa
2015-05-13  6:24 ` [tip:perf/urgent] tools: Fix tools/vm build tip-bot for Andi Kleen

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.