]> git.proxmox.com Git - mirror_spl-debian.git/commitdiff
Add missing headers
authorBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 22 Dec 2010 21:41:57 +0000 (13:41 -0800)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 28 Jan 2011 00:06:09 +0000 (16:06 -0800)
Dependent packages require the following missing headers to
simplify compilation.  The headers are basically just stubbed
out with minimal content required.

include/sys/extdirent.h [new file with mode: 0644]
include/sys/fcntl.h [new file with mode: 0644]
include/sys/idmap.h [new file with mode: 0644]
include/sys/kidmap.h

diff --git a/include/sys/extdirent.h b/include/sys/extdirent.h
new file mode 100644 (file)
index 0000000..d9af310
--- /dev/null
@@ -0,0 +1,29 @@
+/*****************************************************************************\
+ *  Copyright (C) 2010 Lawrence Livermore National Security, LLC.
+ *  Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
+ *  Written by Brian Behlendorf <behlendorf1@llnl.gov>.
+ *  UCRL-CODE-235197
+ *
+ *  This file is part of the SPL, Solaris Porting Layer.
+ *  For details, see <http://github.com/behlendorf/spl/>.
+ *
+ *  The SPL is free software; you can redistribute it and/or modify it
+ *  under the terms of the GNU General Public License as published by the
+ *  Free Software Foundation; either version 2 of the License, or (at your
+ *  option) any later version.
+ *
+ *  The SPL is distributed in the hope that it will be useful, but WITHOUT
+ *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ *  for more details.
+ *
+ *  You should have received a copy of the GNU General Public License along
+ *  with the SPL.  If not, see <http://www.gnu.org/licenses/>.
+\*****************************************************************************/
+
+#ifndef        _SPL_EXTDIRENT_H
+#define        _SPL_EXTDIRENT_H
+
+#define        ED_CASE_CONFLICT        0x10
+
+#endif /* _SPL_EXTDIRENT_H */
diff --git a/include/sys/fcntl.h b/include/sys/fcntl.h
new file mode 100644 (file)
index 0000000..c7bc02a
--- /dev/null
@@ -0,0 +1,39 @@
+/*****************************************************************************\
+ *  Copyright (C) 2010 Lawrence Livermore National Security, LLC.
+ *  Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
+ *  Written by Brian Behlendorf <behlendorf1@llnl.gov>.
+ *  UCRL-CODE-235197
+ *
+ *  This file is part of the SPL, Solaris Porting Layer.
+ *  For details, see <http://github.com/behlendorf/spl/>.
+ *
+ *  The SPL is free software; you can redistribute it and/or modify it
+ *  under the terms of the GNU General Public License as published by the
+ *  Free Software Foundation; either version 2 of the License, or (at your
+ *  option) any later version.
+ *
+ *  The SPL is distributed in the hope that it will be useful, but WITHOUT
+ *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ *  for more details.
+ *
+ *  You should have received a copy of the GNU General Public License along
+ *  with the SPL.  If not, see <http://www.gnu.org/licenses/>.
+\*****************************************************************************/
+
+#ifndef _SPL_FCNTL_H
+#define _SPL_FCNTL_H
+
+#include <asm/fcntl.h>
+
+#define F_FREESP 11
+
+typedef struct flock64 {
+       short   l_type;
+       short   l_whence;
+       loff_t  l_start;
+       loff_t  l_len;
+       pid_t   l_pid;
+} flock64_t;
+
+#endif /* _SPL_FCNTL_H */
diff --git a/include/sys/idmap.h b/include/sys/idmap.h
new file mode 100644 (file)
index 0000000..b3c7c0f
--- /dev/null
@@ -0,0 +1,29 @@
+/*****************************************************************************\
+ *  Copyright (C) 2010 Lawrence Livermore National Security, LLC.
+ *  Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
+ *  Written by Brian Behlendorf <behlendorf1@llnl.gov>.
+ *  UCRL-CODE-235197
+ *
+ *  This file is part of the SPL, Solaris Porting Layer.
+ *  For details, see <http://github.com/behlendorf/spl/>.
+ *
+ *  The SPL is free software; you can redistribute it and/or modify it
+ *  under the terms of the GNU General Public License as published by the
+ *  Free Software Foundation; either version 2 of the License, or (at your
+ *  option) any later version.
+ *
+ *  The SPL is distributed in the hope that it will be useful, but WITHOUT
+ *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ *  for more details.
+ *
+ *  You should have received a copy of the GNU General Public License along
+ *  with the SPL.  If not, see <http://www.gnu.org/licenses/>.
+\*****************************************************************************/
+
+#ifndef _SPL_IDMAP_H
+#define _SPL_IDMAP_H
+
+#define IDMAP_WK_CREATOR_OWNER_UID     2147483648U
+
+#endif /* SPL_IDMAP_H */
index f77656738ce5c21e87aa9a5a0017db33f6386691..ed87b9f7fc89bb3519f1ba24d37a3ef8fa6dac89 100644 (file)
@@ -25,4 +25,6 @@
 #ifndef _SPL_KIDMAP_H
 #define _SPL_KIDMAP_H
 
+#include <sys/idmap.h>
+
 #endif /* SPL_KIDMAP_H */