[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1309381372.27360.4.camel@vitaliy-Vostro-1400>
Date: Thu, 30 Jun 2011 00:02:52 +0300
From: Vitaliy Ivanov <vitalivanov@...il.com>
To: lkml <linux-kernel@...r.kernel.org>,
Linus Torvalds <torvalds@...ux-foundation.org>
Cc: Peter Oberparleiter <oberpar@...ux.vnet.ibm.com>,
Jeff Dike <jdike@...toit.com>,
Richard Weinberger <richard@....at>,
Andrew Morton <akpm@...ux-foundation.org>,
Vitaliy Ivanov <vitalivanov@...il.com>
Subject: [PATCH] gcov: Disable CONSTRUCTORS for UML
>From df71d030a87910e42045dea517bf955caa72d2a8 Mon Sep 17 00:00:00 2001
From: Vitaliy Ivanov <vitalivanov@...il.com>
Date: Wed, 29 Jun 2011 23:25:32 +0300
Subject: [PATCH] gcov: Disable CONSTRUCTORS for UML
Selecting GCOV for UML causing configuration mismatch:
warning: (GCOV_KERNEL) selects CONSTRUCTORS which has unmet direct dependencies (!UML)
Constructors are not needed for UML.
Signed-off-by: Vitaliy Ivanov <vitalivanov@...il.com>
---
kernel/gcov/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/kernel/gcov/Kconfig b/kernel/gcov/Kconfig
index 5bf924d..a920281 100644
--- a/kernel/gcov/Kconfig
+++ b/kernel/gcov/Kconfig
@@ -3,7 +3,7 @@ menu "GCOV-based kernel profiling"
config GCOV_KERNEL
bool "Enable gcov-based kernel profiling"
depends on DEBUG_FS
- select CONSTRUCTORS
+ select CONSTRUCTORS if !UML
default n
---help---
This option enables gcov-based code profiling (e.g. for code coverage
--
1.7.4.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists