Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1279178 > unrolled thread

[PATCH] mn10300: Select CONFIG_HAVE_UID16 to fix build failure

Started byGuenter Roeck <linux@roeck-us.net>
First post2015-11-28 18:00 +0100
Last post2015-11-30 16:00 +0100
Articles 5 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] mn10300: Select CONFIG_HAVE_UID16 to fix build failure Guenter Roeck <linux@roeck-us.net> - 2015-11-28 18:00 +0100
    Re: [PATCH] mn10300: Select CONFIG_HAVE_UID16 to fix build failure Arnd Bergmann <arnd@arndb.de> - 2015-11-30 10:20 +0100
    Re: [PATCH] mn10300: Select CONFIG_HAVE_UID16 to fix build failure David Howells <dhowells@redhat.com> - 2015-11-30 14:50 +0100
      Re: [PATCH] mn10300: Select CONFIG_HAVE_UID16 to fix build failure Guenter Roeck <linux@roeck-us.net> - 2015-11-30 15:50 +0100
        Re: [PATCH] mn10300: Select CONFIG_HAVE_UID16 to fix build failure David Howells <dhowells@redhat.com> - 2015-11-30 16:00 +0100

#1279178 — [PATCH] mn10300: Select CONFIG_HAVE_UID16 to fix build failure

FromGuenter Roeck <linux@roeck-us.net>
Date2015-11-28 18:00 +0100
Subject[PATCH] mn10300: Select CONFIG_HAVE_UID16 to fix build failure
Message-ID<qzR0R-2SW-1@gated-at.bofh.it>
mn10300 builds fail with

fs/stat.c: In function 'cp_old_stat':
fs/stat.c:163:2: error: 'old_uid_t' undeclared

ipc/util.c: In function 'ipc64_perm_to_ipc_perm':
ipc/util.c:540:2: error: 'old_uid_t' undeclared

Select CONFIG_HAVE_UID16 and remove local definition of CONFIG_UID16
to fix the problem.

Fixes: fbc416ff8618 ("arm64: fix building without CONFIG_UID16")
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
 arch/mn10300/Kconfig | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/arch/mn10300/Kconfig b/arch/mn10300/Kconfig
index 4434b54e1d87..78ae5552fdb8 100644
--- a/arch/mn10300/Kconfig
+++ b/arch/mn10300/Kconfig
@@ -1,6 +1,7 @@
 config MN10300
 	def_bool y
 	select HAVE_OPROFILE
+	select HAVE_UID16
 	select GENERIC_IRQ_SHOW
 	select ARCH_WANT_IPC_PARSE_VERSION
 	select HAVE_ARCH_TRACEHOOK
@@ -37,9 +38,6 @@ config HIGHMEM
 config NUMA
 	def_bool n
 
-config UID16
-	def_bool y
-
 config RWSEM_GENERIC_SPINLOCK
 	def_bool y
 
-- 
2.1.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/

[toc] | [next] | [standalone]


#1279719

FromArnd Bergmann <arnd@arndb.de>
Date2015-11-30 10:20 +0100
Message-ID<qAsMO-1Go-23@gated-at.bofh.it>
In reply to#1279178
On Saturday 28 November 2015 08:57:57 Guenter Roeck wrote:
> mn10300 builds fail with
> 
> fs/stat.c: In function 'cp_old_stat':
> fs/stat.c:163:2: error: 'old_uid_t' undeclared
> 
> ipc/util.c: In function 'ipc64_perm_to_ipc_perm':
> ipc/util.c:540:2: error: 'old_uid_t' undeclared
> 
> Select CONFIG_HAVE_UID16 and remove local definition of CONFIG_UID16
> to fix the problem.
> 
> Fixes: fbc416ff8618 ("arm64: fix building without CONFIG_UID16")
> Cc: Arnd Bergmann <arnd@arndb.de>
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
> 

Acked-by: Arnd Bergmann <arnd@arndb.de>

sorry about causing this.
--
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/

[toc] | [prev] | [next] | [standalone]


#1279876

FromDavid Howells <dhowells@redhat.com>
Date2015-11-30 14:50 +0100
Message-ID<qAx07-4hY-33@gated-at.bofh.it>
In reply to#1279178
Guenter Roeck <linux@roeck-us.net> wrote:

> mn10300 builds fail with
> 
> fs/stat.c: In function 'cp_old_stat':
> fs/stat.c:163:2: error: 'old_uid_t' undeclared
> 
> ipc/util.c: In function 'ipc64_perm_to_ipc_perm':
> ipc/util.c:540:2: error: 'old_uid_t' undeclared
> 
> Select CONFIG_HAVE_UID16 and remove local definition of CONFIG_UID16
> to fix the problem.
> 
> Fixes: fbc416ff8618 ("arm64: fix building without CONFIG_UID16")
> Cc: Arnd Bergmann <arnd@arndb.de>
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>

Acked-by: David Howells <dhowells@redhat.com>
--
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/

[toc] | [prev] | [next] | [standalone]


#1279949

FromGuenter Roeck <linux@roeck-us.net>
Date2015-11-30 15:50 +0100
Message-ID<qAxWa-4RR-17@gated-at.bofh.it>
In reply to#1279876
On 11/30/2015 05:40 AM, David Howells wrote:
> Guenter Roeck <linux@roeck-us.net> wrote:
>
>> mn10300 builds fail with
>>
>> fs/stat.c: In function 'cp_old_stat':
>> fs/stat.c:163:2: error: 'old_uid_t' undeclared
>>
>> ipc/util.c: In function 'ipc64_perm_to_ipc_perm':
>> ipc/util.c:540:2: error: 'old_uid_t' undeclared
>>
>> Select CONFIG_HAVE_UID16 and remove local definition of CONFIG_UID16
>> to fix the problem.
>>
>> Fixes: fbc416ff8618 ("arm64: fix building without CONFIG_UID16")
>> Cc: Arnd Bergmann <arnd@arndb.de>
>> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
>
> Acked-by: David Howells <dhowells@redhat.com>
>

David,

your Acked-by: seems to suggest that you don't plan to send this
patch to Linus. At the same time, it looks like Koichi Yasutake's
e-mail address is no longer valid.

Do you want me to send it directly ?

Thanks,
Guenter

--
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/

[toc] | [prev] | [next] | [standalone]


#1279957

FromDavid Howells <dhowells@redhat.com>
Date2015-11-30 16:00 +0100
Message-ID<qAy5Q-4Vq-11@gated-at.bofh.it>
In reply to#1279949
Guenter Roeck <linux@roeck-us.net> wrote:

> your Acked-by: seems to suggest that you don't plan to send this
> patch to Linus. At the same time, it looks like Koichi Yasutake's
> e-mail address is no longer valid.
> 
> Do you want me to send it directly ?

Please do.

Thanks,
David
--
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/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web