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


Groups > linux.kernel > #1586527 > unrolled thread

[PATCH] uapi: fix linux/llc.h userspace compilation error

Started by"Dmitry V. Levin" <ldv@altlinux.org>
First post2017-02-22 23:50 +0100
Last post2017-02-23 16:50 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] uapi: fix linux/llc.h userspace compilation error "Dmitry V. Levin" <ldv@altlinux.org> - 2017-02-22 23:50 +0100
    Re: [PATCH] uapi: fix linux/llc.h userspace compilation error David Miller <davem@davemloft.net> - 2017-02-23 16:50 +0100

#1586527 — [PATCH] uapi: fix linux/llc.h userspace compilation error

From"Dmitry V. Levin" <ldv@altlinux.org>
Date2017-02-22 23:50 +0100
Subject[PATCH] uapi: fix linux/llc.h userspace compilation error
Message-ID<tdNTr-eQ-1@gated-at.bofh.it>
Include <linux/if.h> to fix the following linux/llc.h userspace
compilation error:

/usr/include/linux/llc.h:26:27: error: 'IFHWADDRLEN' undeclared here (not in a function)
  unsigned char   sllc_mac[IFHWADDRLEN];

Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
---
 include/uapi/linux/llc.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/uapi/linux/llc.h b/include/uapi/linux/llc.h
index 9c987a4..a6c17f6 100644
--- a/include/uapi/linux/llc.h
+++ b/include/uapi/linux/llc.h
@@ -14,6 +14,7 @@
 #define _UAPI__LINUX_LLC_H
 
 #include <linux/socket.h>
+#include <linux/if.h> 		/* For IFHWADDRLEN. */
 
 #define __LLC_SOCK_SIZE__ 16	/* sizeof(sockaddr_llc), word align. */
 struct sockaddr_llc {
-- 
ldv

[toc] | [next] | [standalone]


#1586972

FromDavid Miller <davem@davemloft.net>
Date2017-02-23 16:50 +0100
Message-ID<te3Ox-3bZ-15@gated-at.bofh.it>
In reply to#1586527
From: "Dmitry V. Levin" <ldv@altlinux.org>
Date: Thu, 23 Feb 2017 01:38:26 +0300

> Include <linux/if.h> to fix the following linux/llc.h userspace
> compilation error:
> 
> /usr/include/linux/llc.h:26:27: error: 'IFHWADDRLEN' undeclared here (not in a function)
>   unsigned char   sllc_mac[IFHWADDRLEN];
> 
> Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>

Applied.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web