aboutsummaryrefslogtreecommitdiffstats
path: root/libc/kernel/common/linux/ncp_mount.h
diff options
context:
space:
mode:
authorBen Cheng <bccheng@google.com>2012-03-07 21:13:49 -0800
committerBen Cheng <bccheng@google.com>2012-03-07 21:13:49 -0800
commit654325de026a2ca5b76b8b40e576c959d8211fdc (patch)
tree1c5dca11f5d9a792f0b4c7d3df8f57958532a091 /libc/kernel/common/linux/ncp_mount.h
parentdb6d20be77d7a176822db4106dc43605e22c7b39 (diff)
downloadandroid_bionic-654325de026a2ca5b76b8b40e576c959d8211fdc.tar.gz
android_bionic-654325de026a2ca5b76b8b40e576c959d8211fdc.tar.bz2
android_bionic-654325de026a2ca5b76b8b40e576c959d8211fdc.zip
Update bionic kernel headers using update_all.py
Change-Id: I9c377436e9bf158e7236b3b7dcebf3e79fa961de
Diffstat (limited to 'libc/kernel/common/linux/ncp_mount.h')
-rw-r--r--libc/kernel/common/linux/ncp_mount.h32
1 files changed, 17 insertions, 15 deletions
diff --git a/libc/kernel/common/linux/ncp_mount.h b/libc/kernel/common/linux/ncp_mount.h
index 204869fcf..76b445d1b 100644
--- a/libc/kernel/common/linux/ncp_mount.h
+++ b/libc/kernel/common/linux/ncp_mount.h
@@ -7,63 +7,65 @@
*** structures, and macros generated from the original header, and thus,
*** contains no copyrightable information.
***
+ *** To edit the content of this header, modify the corresponding
+ *** source file (e.g. under external/kernel-headers/original/) then
+ *** run bionic/libc/kernel/tools/update_all.py
+ ***
+ *** Any manual change here will be lost the next time this script will
+ *** be run. You've been warned!
+ ***
****************************************************************************
****************************************************************************/
#ifndef _LINUX_NCP_MOUNT_H
#define _LINUX_NCP_MOUNT_H
-
#include <linux/types.h>
#include <linux/ncp.h>
-
+/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
#define NCP_MOUNT_VERSION 3
-
#define NCP_MOUNT_SOFT 0x0001
#define NCP_MOUNT_INTR 0x0002
#define NCP_MOUNT_STRONG 0x0004
+/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
#define NCP_MOUNT_NO_OS2 0x0008
#define NCP_MOUNT_NO_NFS 0x0010
#define NCP_MOUNT_EXTRAS 0x0020
#define NCP_MOUNT_SYMLINKS 0x0040
+/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
#define NCP_MOUNT_NFS_EXTRAS 0x0080
-
struct ncp_mount_data {
int version;
unsigned int ncp_fd;
+/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
__kernel_uid_t mounted_uid;
__kernel_pid_t wdog_pid;
-
unsigned char mounted_vol[NCP_VOLNAME_LEN + 1];
unsigned int time_out;
+/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
unsigned int retry_count;
unsigned int flags;
-
__kernel_uid_t uid;
__kernel_gid_t gid;
+/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
__kernel_mode_t file_mode;
__kernel_mode_t dir_mode;
};
-
#define NCP_MOUNT_VERSION_V4 (4)
-
+/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
struct ncp_mount_data_v4 {
int version;
unsigned long flags;
-
unsigned long mounted_uid;
-
+/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
long wdog_pid;
-
unsigned int ncp_fd;
unsigned int time_out;
unsigned int retry_count;
-
+/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
unsigned long uid;
unsigned long gid;
-
unsigned long file_mode;
unsigned long dir_mode;
+/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
};
-
#define NCP_MOUNT_VERSION_V5 (5)
-
#endif