* selinux build failure
@ 2003-08-23 4:27 Randy.Dunlap
2003-08-24 14:49 ` James Morris
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Randy.Dunlap @ 2003-08-23 4:27 UTC (permalink / raw)
To: linux-ia64
selinux/hooks.c won't build on ia64.
2.6.0-test3 + ia64 patch or 2.6.0-test4.
security/selinux/hooks.c: In function `selinux_file_fcntl':
security/selinux/hooks.c:2032: error: `F_GETLK64' undeclared (first use in
this function) security/selinux/hooks.c:2033: error: `F_SETLK64' undeclared
(first use in this function) security/selinux/hooks.c:2034: error:
`F_SETLKW64' undeclared (first use in this function)
The __64 versions of these are defined in include/asm-ia64/compat.h. I don't
see a good way to #include asm/compat.h, nor is it available for all
processor architectures.
~Randy
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: selinux build failure
2003-08-23 4:27 selinux build failure Randy.Dunlap
@ 2003-08-24 14:49 ` James Morris
2003-08-24 15:02 ` Christoph Hellwig
2003-08-24 15:25 ` James Morris
2 siblings, 0 replies; 4+ messages in thread
From: James Morris @ 2003-08-24 14:49 UTC (permalink / raw)
To: linux-ia64
On Fri, 22 Aug 2003, Randy.Dunlap wrote:
> selinux/hooks.c won't build on ia64.
> 2.6.0-test3 + ia64 patch or 2.6.0-test4.
>
> security/selinux/hooks.c: In function `selinux_file_fcntl':
> security/selinux/hooks.c:2032: error: `F_GETLK64' undeclared (first use in
> this function) security/selinux/hooks.c:2033: error: `F_SETLK64' undeclared
> (first use in this function) security/selinux/hooks.c:2034: error:
> `F_SETLKW64' undeclared (first use in this function)
>
> The __64 versions of these are defined in include/asm-ia64/compat.h. I don't
> see a good way to #include asm/compat.h, nor is it available for all
> processor architectures.
It is available via <linux/compat.h> if CONFIG_COMPAT is defined.
Does the patch below fix this for you?
- James
--
James Morris
<jmorris@redhat.com>
diff -urN -X dontdiff linux-2.6.0-test4.orig/security/selinux/hooks.c linux-2.6.0-test4.w1/security/selinux/hooks.c
--- linux-2.6.0-test4.orig/security/selinux/hooks.c 2003-08-23 11:53:14.000000000 +1000
+++ linux-2.6.0-test4.w1/security/selinux/hooks.c 2003-08-25 00:31:58.655604472 +1000
@@ -44,6 +44,7 @@
#include <linux/ext2_fs.h>
#include <linux/proc_fs.h>
#include <linux/kd.h>
+#include <linux/compat.h>
#include <net/icmp.h>
#include <net/ip.h> /* for sysctl_local_port_range[] */
#include <net/tcp.h> /* struct or_callable used in sock_rcv_skb */
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: selinux build failure
2003-08-23 4:27 selinux build failure Randy.Dunlap
2003-08-24 14:49 ` James Morris
@ 2003-08-24 15:02 ` Christoph Hellwig
2003-08-24 15:25 ` James Morris
2 siblings, 0 replies; 4+ messages in thread
From: Christoph Hellwig @ 2003-08-24 15:02 UTC (permalink / raw)
To: linux-ia64
On Mon, Aug 25, 2003 at 12:49:52AM +1000, James Morris wrote:
> > see a good way to #include asm/compat.h, nor is it available for all
> > processor architectures.
>
> It is available via <linux/compat.h> if CONFIG_COMPAT is defined.
>
> Does the patch below fix this for you?
Argg, this is b0rked. {asm,linux}/compat.h are for the 32bit compatiblity
code. 64bit arches don't have fcntl64 - see the #if BITS_PER_LONG = 32
around sys_fcntl64 in fcntl.c..
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: selinux build failure
2003-08-23 4:27 selinux build failure Randy.Dunlap
2003-08-24 14:49 ` James Morris
2003-08-24 15:02 ` Christoph Hellwig
@ 2003-08-24 15:25 ` James Morris
2 siblings, 0 replies; 4+ messages in thread
From: James Morris @ 2003-08-24 15:25 UTC (permalink / raw)
To: linux-ia64
On Sun, 24 Aug 2003, Christoph Hellwig wrote:
> Argg, this is b0rked. {asm,linux}/compat.h are for the 32bit compatiblity
> code. 64bit arches don't have fcntl64 - see the #if BITS_PER_LONG = 32
> around sys_fcntl64 in fcntl.c..
Indeed. How about this?
- James
--
James Morris
<jmorris@redhat.com>
diff -urN -X dontdiff linux-2.6.0-test4.orig/security/selinux/hooks.c linux-2.6.0-test4.w1/security/selinux/hooks.c
--- linux-2.6.0-test4.orig/security/selinux/hooks.c 2003-08-23 11:53:14.000000000 +1000
+++ linux-2.6.0-test4.w1/security/selinux/hooks.c 2003-08-25 01:23:11.690432168 +1000
@@ -2057,9 +2057,11 @@
case F_GETLK:
case F_SETLK:
case F_SETLKW:
+#if BITS_PER_LONG = 32
case F_GETLK64:
case F_SETLK64:
case F_SETLKW64:
+#endif
if (!file->f_dentry || !file->f_dentry->d_inode) {
err = -EINVAL;
break;
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2003-08-24 15:25 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-23 4:27 selinux build failure Randy.Dunlap
2003-08-24 14:49 ` James Morris
2003-08-24 15:02 ` Christoph Hellwig
2003-08-24 15:25 ` James Morris
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox