[PATCH] CIFS: Include <linux/init.h> in dns_resolve.h

Ben Hutchings ben at decadent.org.uk
Thu Aug 5 18:53:02 MDT 2010


fs/cifs/dns_resolve.c fails to build on some architectures:

In file included from fs/cifs/dns_resolve.c:30:
fs/cifs/dns_resolve.h:27: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'cifs_init_dns_resolver'

We need to include <linux/init.h> to ensure that __init is defined.

Signed-off-by: Ben Hutchings <ben at decadent.org.uk>
Cc: stable at kernel.org [after 51c20fc]
---
 fs/cifs/dns_resolve.h |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/fs/cifs/dns_resolve.h b/fs/cifs/dns_resolve.h
index 5d7f291..71c4769 100644
--- a/fs/cifs/dns_resolve.h
+++ b/fs/cifs/dns_resolve.h
@@ -24,6 +24,7 @@
 #define _DNS_RESOLVE_H
 
 #ifdef __KERNEL__
+#include <linux/init.h>
 extern int __init cifs_init_dns_resolver(void);
 extern void cifs_exit_dns_resolver(void);
 extern int dns_resolve_server_name_to_ip(const char *unc, char **ip_addr);
-- 
1.7.1




More information about the samba-technical mailing list