diff options
Diffstat (limited to 'include/linux')
255 files changed, 6696 insertions, 1981 deletions
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index 71d70d1fbce2..327f60658d94 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild | |||
| @@ -97,6 +97,7 @@ header-y += ioctl.h | |||
| 97 | header-y += ip6_tunnel.h | 97 | header-y += ip6_tunnel.h |
| 98 | header-y += ipmi_msgdefs.h | 98 | header-y += ipmi_msgdefs.h |
| 99 | header-y += ipsec.h | 99 | header-y += ipsec.h |
| 100 | header-y += ip_vs.h | ||
| 100 | header-y += ipx.h | 101 | header-y += ipx.h |
| 101 | header-y += irda.h | 102 | header-y += irda.h |
| 102 | header-y += iso_fs.h | 103 | header-y += iso_fs.h |
| @@ -189,7 +190,6 @@ unifdef-y += connector.h | |||
| 189 | unifdef-y += cuda.h | 190 | unifdef-y += cuda.h |
| 190 | unifdef-y += cyclades.h | 191 | unifdef-y += cyclades.h |
| 191 | unifdef-y += dccp.h | 192 | unifdef-y += dccp.h |
| 192 | unifdef-y += dirent.h | ||
| 193 | unifdef-y += dlm.h | 193 | unifdef-y += dlm.h |
| 194 | unifdef-y += dlm_plock.h | 194 | unifdef-y += dlm_plock.h |
| 195 | unifdef-y += edd.h | 195 | unifdef-y += edd.h |
| @@ -256,7 +256,9 @@ unifdef-y += kd.h | |||
| 256 | unifdef-y += kernelcapi.h | 256 | unifdef-y += kernelcapi.h |
| 257 | unifdef-y += kernel.h | 257 | unifdef-y += kernel.h |
| 258 | unifdef-y += keyboard.h | 258 | unifdef-y += keyboard.h |
| 259 | ifneq ($(wildcard $(srctree)/include/asm-$(SRCARCH)/kvm.h),) | ||
| 259 | unifdef-y += kvm.h | 260 | unifdef-y += kvm.h |
| 261 | endif | ||
| 260 | unifdef-y += llc.h | 262 | unifdef-y += llc.h |
| 261 | unifdef-y += loop.h | 263 | unifdef-y += loop.h |
| 262 | unifdef-y += lp.h | 264 | unifdef-y += lp.h |
| @@ -354,6 +356,7 @@ unifdef-y += virtio_balloon.h | |||
| 354 | unifdef-y += virtio_console.h | 356 | unifdef-y += virtio_console.h |
| 355 | unifdef-y += virtio_pci.h | 357 | unifdef-y += virtio_pci.h |
| 356 | unifdef-y += virtio_ring.h | 358 | unifdef-y += virtio_ring.h |
| 359 | unifdef-y += virtio_rng.h | ||
| 357 | unifdef-y += vt.h | 360 | unifdef-y += vt.h |
| 358 | unifdef-y += wait.h | 361 | unifdef-y += wait.h |
| 359 | unifdef-y += wanrouter.h | 362 | unifdef-y += wanrouter.h |
diff --git a/include/linux/acct.h b/include/linux/acct.h index e8cae54e8d88..882dc7248766 100644 --- a/include/linux/acct.h +++ b/include/linux/acct.h | |||
| @@ -120,17 +120,20 @@ struct acct_v3 | |||
| 120 | struct vfsmount; | 120 | struct vfsmount; |
| 121 | struct super_block; | 121 | struct super_block; |
| 122 | struct pacct_struct; | 122 | struct pacct_struct; |
| 123 | struct pid_namespace; | ||
| 123 | extern void acct_auto_close_mnt(struct vfsmount *m); | 124 | extern void acct_auto_close_mnt(struct vfsmount *m); |
| 124 | extern void acct_auto_close(struct super_block *sb); | 125 | extern void acct_auto_close(struct super_block *sb); |
| 125 | extern void acct_init_pacct(struct pacct_struct *pacct); | 126 | extern void acct_init_pacct(struct pacct_struct *pacct); |
| 126 | extern void acct_collect(long exitcode, int group_dead); | 127 | extern void acct_collect(long exitcode, int group_dead); |
| 127 | extern void acct_process(void); | 128 | extern void acct_process(void); |
| 129 | extern void acct_exit_ns(struct pid_namespace *); | ||
| 128 | #else | 130 | #else |
| 129 | #define acct_auto_close_mnt(x) do { } while (0) | 131 | #define acct_auto_close_mnt(x) do { } while (0) |
| 130 | #define acct_auto_close(x) do { } while (0) | 132 | #define acct_auto_close(x) do { } while (0) |
| 131 | #define acct_init_pacct(x) do { } while (0) | 133 | #define acct_init_pacct(x) do { } while (0) |
| 132 | #define acct_collect(x,y) do { } while (0) | 134 | #define acct_collect(x,y) do { } while (0) |
| 133 | #define acct_process() do { } while (0) | 135 | #define acct_process() do { } while (0) |
| 136 | #define acct_exit_ns(ns) do { } while (0) | ||
| 134 | #endif | 137 | #endif |
| 135 | 138 | ||
| 136 | /* | 139 | /* |
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index a17177639376..702f79dad16a 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h | |||
| @@ -236,6 +236,7 @@ int acpi_check_mem_region(resource_size_t start, resource_size_t n, | |||
| 236 | const char *name); | 236 | const char *name); |
| 237 | 237 | ||
| 238 | #ifdef CONFIG_PM_SLEEP | 238 | #ifdef CONFIG_PM_SLEEP |
| 239 | void __init acpi_no_s4_hw_signature(void); | ||
| 239 | void __init acpi_old_suspend_ordering(void); | 240 | void __init acpi_old_suspend_ordering(void); |
| 240 | #endif /* CONFIG_PM_SLEEP */ | 241 | #endif /* CONFIG_PM_SLEEP */ |
| 241 | #else /* CONFIG_ACPI */ | 242 | #else /* CONFIG_ACPI */ |
diff --git a/include/linux/agp_backend.h b/include/linux/agp_backend.h index 972b12bcfb36..2b8df8b420fd 100644 --- a/include/linux/agp_backend.h +++ b/include/linux/agp_backend.h | |||
| @@ -30,6 +30,8 @@ | |||
| 30 | #ifndef _AGP_BACKEND_H | 30 | #ifndef _AGP_BACKEND_H |
| 31 | #define _AGP_BACKEND_H 1 | 31 | #define _AGP_BACKEND_H 1 |
| 32 | 32 | ||
| 33 | #include <linux/list.h> | ||
| 34 | |||
| 33 | enum chipset_type { | 35 | enum chipset_type { |
| 34 | NOT_SUPPORTED, | 36 | NOT_SUPPORTED, |
| 35 | SUPPORTED, | 37 | SUPPORTED, |
| @@ -78,6 +80,8 @@ struct agp_memory { | |||
| 78 | bool is_bound; | 80 | bool is_bound; |
| 79 | bool is_flushed; | 81 | bool is_flushed; |
| 80 | bool vmalloc_flag; | 82 | bool vmalloc_flag; |
| 83 | /* list of agp_memory mapped to the aperture */ | ||
| 84 | struct list_head mapped_list; | ||
| 81 | }; | 85 | }; |
| 82 | 86 | ||
| 83 | #define AGP_NORMAL_MEMORY 0 | 87 | #define AGP_NORMAL_MEMORY 0 |
| @@ -96,6 +100,7 @@ extern struct agp_memory *agp_allocate_memory(struct agp_bridge_data *, size_t, | |||
| 96 | extern int agp_copy_info(struct agp_bridge_data *, struct agp_kern_info *); | 100 | extern int agp_copy_info(struct agp_bridge_data *, struct agp_kern_info *); |
| 97 | extern int agp_bind_memory(struct agp_memory *, off_t); | 101 | extern int agp_bind_memory(struct agp_memory *, off_t); |
| 98 | extern int agp_unbind_memory(struct agp_memory *); | 102 | extern int agp_unbind_memory(struct agp_memory *); |
| 103 | extern int agp_rebind_memory(void); | ||
| 99 | extern void agp_enable(struct agp_bridge_data *, u32); | 104 | extern void agp_enable(struct agp_bridge_data *, u32); |
| 100 | extern struct agp_bridge_data *agp_backend_acquire(struct pci_dev *); | 105 | extern struct agp_bridge_data *agp_backend_acquire(struct pci_dev *); |
| 101 | extern void agp_backend_release(struct agp_bridge_data *); | 106 | extern void agp_backend_release(struct agp_bridge_data *); |
diff --git a/include/linux/aio.h b/include/linux/aio.h index b51ddd28444e..09b276c35227 100644 --- a/include/linux/aio.h +++ b/include/linux/aio.h | |||
| @@ -7,7 +7,6 @@ | |||
| 7 | #include <linux/uio.h> | 7 | #include <linux/uio.h> |
| 8 | 8 | ||
| 9 | #include <asm/atomic.h> | 9 | #include <asm/atomic.h> |
| 10 | #include <linux/uio.h> | ||
| 11 | 10 | ||
| 12 | #define AIO_MAXSEGS 4 | 11 | #define AIO_MAXSEGS 4 |
| 13 | #define AIO_KIOGRP_NR_ATOMIC 8 | 12 | #define AIO_KIOGRP_NR_ATOMIC 8 |
diff --git a/include/linux/anon_inodes.h b/include/linux/anon_inodes.h index 6129e58ca7c9..e0a0cdc2da43 100644 --- a/include/linux/anon_inodes.h +++ b/include/linux/anon_inodes.h | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | #define _LINUX_ANON_INODES_H | 9 | #define _LINUX_ANON_INODES_H |
| 10 | 10 | ||
| 11 | int anon_inode_getfd(const char *name, const struct file_operations *fops, | 11 | int anon_inode_getfd(const char *name, const struct file_operations *fops, |
| 12 | void *priv); | 12 | void *priv, int flags); |
| 13 | 13 | ||
| 14 | #endif /* _LINUX_ANON_INODES_H */ | 14 | #endif /* _LINUX_ANON_INODES_H */ |
| 15 | 15 | ||
diff --git a/include/linux/async_tx.h b/include/linux/async_tx.h index eb640f0acfac..0f50d4cc4360 100644 --- a/include/linux/async_tx.h +++ b/include/linux/async_tx.h | |||
| @@ -101,21 +101,14 @@ async_tx_find_channel(struct dma_async_tx_descriptor *depend_tx, | |||
| 101 | 101 | ||
| 102 | /** | 102 | /** |
| 103 | * async_tx_sync_epilog - actions to take if an operation is run synchronously | 103 | * async_tx_sync_epilog - actions to take if an operation is run synchronously |
| 104 | * @flags: async_tx flags | ||
| 105 | * @depend_tx: transaction depends on depend_tx | ||
| 106 | * @cb_fn: function to call when the transaction completes | 104 | * @cb_fn: function to call when the transaction completes |
| 107 | * @cb_fn_param: parameter to pass to the callback routine | 105 | * @cb_fn_param: parameter to pass to the callback routine |
| 108 | */ | 106 | */ |
| 109 | static inline void | 107 | static inline void |
| 110 | async_tx_sync_epilog(unsigned long flags, | 108 | async_tx_sync_epilog(dma_async_tx_callback cb_fn, void *cb_fn_param) |
| 111 | struct dma_async_tx_descriptor *depend_tx, | ||
| 112 | dma_async_tx_callback cb_fn, void *cb_fn_param) | ||
| 113 | { | 109 | { |
| 114 | if (cb_fn) | 110 | if (cb_fn) |
| 115 | cb_fn(cb_fn_param); | 111 | cb_fn(cb_fn_param); |
| 116 | |||
| 117 | if (depend_tx && (flags & ASYNC_TX_DEP_ACK)) | ||
| 118 | async_tx_ack(depend_tx); | ||
| 119 | } | 112 | } |
| 120 | 113 | ||
| 121 | void | 114 | void |
| @@ -152,4 +145,6 @@ struct dma_async_tx_descriptor * | |||
| 152 | async_trigger_callback(enum async_tx_flags flags, | 145 | async_trigger_callback(enum async_tx_flags flags, |
| 153 | struct dma_async_tx_descriptor *depend_tx, | 146 | struct dma_async_tx_descriptor *depend_tx, |
| 154 | dma_async_tx_callback cb_fn, void *cb_fn_param); | 147 | dma_async_tx_callback cb_fn, void *cb_fn_param); |
| 148 | |||
| 149 | void async_tx_quiesce(struct dma_async_tx_descriptor **tx); | ||
| 155 | #endif /* _ASYNC_TX_H_ */ | 150 | #endif /* _ASYNC_TX_H_ */ |
diff --git a/include/linux/atmel-pwm-bl.h b/include/linux/atmel-pwm-bl.h new file mode 100644 index 000000000000..0153a47806c2 --- /dev/null +++ b/include/linux/atmel-pwm-bl.h | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2007 Atmel Corporation | ||
| 3 | * | ||
| 4 | * Driver for the AT32AP700X PS/2 controller (PSIF). | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify it | ||
| 7 | * under the terms of the GNU General Public License version 2 as published | ||
| 8 | * by the Free Software Foundation. | ||
| 9 | */ | ||
| 10 | |||
| 11 | #ifndef __INCLUDE_ATMEL_PWM_BL_H | ||
| 12 | #define __INCLUDE_ATMEL_PWM_BL_H | ||
| 13 | |||
| 14 | /** | ||
| 15 | * struct atmel_pwm_bl_platform_data | ||
| 16 | * @pwm_channel: which PWM channel in the PWM module to use. | ||
| 17 | * @pwm_frequency: PWM frequency to generate, the driver will try to be as | ||
| 18 | * close as the prescaler allows. | ||
| 19 | * @pwm_compare_max: value to use in the PWM channel compare register. | ||
| 20 | * @pwm_duty_max: maximum duty cycle value, must be less than or equal to | ||
| 21 | * pwm_compare_max. | ||
| 22 | * @pwm_duty_min: minimum duty cycle value, must be less than pwm_duty_max. | ||
| 23 | * @pwm_active_low: set to one if the low part of the PWM signal increases the | ||
| 24 | * brightness of the backlight. | ||
| 25 | * @gpio_on: GPIO line to control the backlight on/off, set to -1 if not used. | ||
| 26 | * @on_active_low: set to one if the on/off signal is on when GPIO is low. | ||
| 27 | * | ||
| 28 | * This struct must be added to the platform device in the board code. It is | ||
| 29 | * used by the atmel-pwm-bl driver to setup the GPIO to control on/off and the | ||
| 30 | * PWM device. | ||
| 31 | */ | ||
| 32 | struct atmel_pwm_bl_platform_data { | ||
| 33 | unsigned int pwm_channel; | ||
| 34 | unsigned int pwm_frequency; | ||
| 35 | unsigned int pwm_compare_max; | ||
| 36 | unsigned int pwm_duty_max; | ||
| 37 | unsigned int pwm_duty_min; | ||
| 38 | unsigned int pwm_active_low; | ||
| 39 | int gpio_on; | ||
| 40 | unsigned int on_active_low; | ||
| 41 | }; | ||
| 42 | |||
| 43 | #endif /* __INCLUDE_ATMEL_PWM_BL_H */ | ||
diff --git a/include/linux/audit.h b/include/linux/audit.h index 8b82974bdc12..6272a395d43c 100644 --- a/include/linux/audit.h +++ b/include/linux/audit.h | |||
| @@ -286,7 +286,6 @@ | |||
| 286 | #define AUDIT_ARCH_SHEL64 (EM_SH|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) | 286 | #define AUDIT_ARCH_SHEL64 (EM_SH|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) |
| 287 | #define AUDIT_ARCH_SPARC (EM_SPARC) | 287 | #define AUDIT_ARCH_SPARC (EM_SPARC) |
| 288 | #define AUDIT_ARCH_SPARC64 (EM_SPARCV9|__AUDIT_ARCH_64BIT) | 288 | #define AUDIT_ARCH_SPARC64 (EM_SPARCV9|__AUDIT_ARCH_64BIT) |
| 289 | #define AUDIT_ARCH_V850 (EM_V850|__AUDIT_ARCH_LE) | ||
| 290 | #define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) | 289 | #define AUDIT_ARCH_X86_64 (EM_X86_64|__AUDIT_ARCH_64BIT|__AUDIT_ARCH_LE) |
| 291 | 290 | ||
| 292 | #define AUDIT_PERM_EXEC 1 | 291 | #define AUDIT_PERM_EXEC 1 |
diff --git a/include/linux/auto_fs4.h b/include/linux/auto_fs4.h index 31a29541b504..b785c6f8644d 100644 --- a/include/linux/auto_fs4.h +++ b/include/linux/auto_fs4.h | |||
| @@ -98,8 +98,6 @@ union autofs_v5_packet_union { | |||
| 98 | #define AUTOFS_IOC_EXPIRE_INDIRECT AUTOFS_IOC_EXPIRE_MULTI | 98 | #define AUTOFS_IOC_EXPIRE_INDIRECT AUTOFS_IOC_EXPIRE_MULTI |
| 99 | #define AUTOFS_IOC_EXPIRE_DIRECT AUTOFS_IOC_EXPIRE_MULTI | 99 | #define AUTOFS_IOC_EXPIRE_DIRECT AUTOFS_IOC_EXPIRE_MULTI |
| 100 | #define AUTOFS_IOC_PROTOSUBVER _IOR(0x93,0x67,int) | 100 | #define AUTOFS_IOC_PROTOSUBVER _IOR(0x93,0x67,int) |
| 101 | #define AUTOFS_IOC_ASKREGHOST _IOR(0x93,0x68,int) | ||
| 102 | #define AUTOFS_IOC_TOGGLEREGHOST _IOR(0x93,0x69,int) | ||
| 103 | #define AUTOFS_IOC_ASKUMOUNT _IOR(0x93,0x70,int) | 101 | #define AUTOFS_IOC_ASKUMOUNT _IOR(0x93,0x70,int) |
| 104 | 102 | ||
| 105 | 103 | ||
diff --git a/include/linux/auxvec.h b/include/linux/auxvec.h index ad895455ab72..d7afa9dd6635 100644 --- a/include/linux/auxvec.h +++ b/include/linux/auxvec.h | |||
| @@ -26,8 +26,14 @@ | |||
| 26 | 26 | ||
| 27 | #define AT_SECURE 23 /* secure mode boolean */ | 27 | #define AT_SECURE 23 /* secure mode boolean */ |
| 28 | 28 | ||
| 29 | #define AT_BASE_PLATFORM 24 /* string identifying real platform, may | ||
| 30 | * differ from AT_PLATFORM. */ | ||
| 31 | |||
| 32 | #define AT_EXECFN 31 /* filename of program */ | ||
| 33 | |||
| 29 | #ifdef __KERNEL__ | 34 | #ifdef __KERNEL__ |
| 30 | #define AT_VECTOR_SIZE_BASE (14 + 2) /* NEW_AUX_ENT entries in auxiliary table */ | 35 | #define AT_VECTOR_SIZE_BASE 18 /* NEW_AUX_ENT entries in auxiliary table */ |
| 36 | /* number of "#define AT_.*" above, minus {AT_NULL, AT_IGNORE, AT_NOTELF} */ | ||
| 31 | #endif | 37 | #endif |
| 32 | 38 | ||
| 33 | #endif /* _LINUX_AUXVEC_H */ | 39 | #endif /* _LINUX_AUXVEC_H */ |
diff --git a/include/linux/bcd.h b/include/linux/bcd.h index c545308125b0..7ac518e3c152 100644 --- a/include/linux/bcd.h +++ b/include/linux/bcd.h | |||
| @@ -10,8 +10,13 @@ | |||
| 10 | #ifndef _BCD_H | 10 | #ifndef _BCD_H |
| 11 | #define _BCD_H | 11 | #define _BCD_H |
| 12 | 12 | ||
| 13 | #define BCD2BIN(val) (((val) & 0x0f) + ((val)>>4)*10) | 13 | #include <linux/compiler.h> |
| 14 | #define BIN2BCD(val) ((((val)/10)<<4) + (val)%10) | 14 | |
| 15 | unsigned bcd2bin(unsigned char val) __attribute_const__; | ||
| 16 | unsigned char bin2bcd(unsigned val) __attribute_const__; | ||
| 17 | |||
| 18 | #define BCD2BIN(val) bcd2bin(val) | ||
| 19 | #define BIN2BCD(val) bin2bcd(val) | ||
| 15 | 20 | ||
| 16 | /* backwards compat */ | 21 | /* backwards compat */ |
| 17 | #define BCD_TO_BIN(val) ((val)=BCD2BIN(val)) | 22 | #define BCD_TO_BIN(val) ((val)=BCD2BIN(val)) |
diff --git a/include/linux/binfmts.h b/include/linux/binfmts.h index ee0ed48e8348..826f62350805 100644 --- a/include/linux/binfmts.h +++ b/include/linux/binfmts.h | |||
| @@ -38,7 +38,7 @@ struct linux_binprm{ | |||
| 38 | misc_bang:1; | 38 | misc_bang:1; |
| 39 | struct file * file; | 39 | struct file * file; |
| 40 | int e_uid, e_gid; | 40 | int e_uid, e_gid; |
| 41 | kernel_cap_t cap_inheritable, cap_permitted; | 41 | kernel_cap_t cap_post_exec_permitted; |
| 42 | bool cap_effective; | 42 | bool cap_effective; |
| 43 | void *security; | 43 | void *security; |
| 44 | int argc, envc; | 44 | int argc, envc; |
diff --git a/include/linux/bitmap.h b/include/linux/bitmap.h index 1abfe664c444..89781fd48859 100644 --- a/include/linux/bitmap.h +++ b/include/linux/bitmap.h | |||
| @@ -110,6 +110,7 @@ extern int __bitmap_weight(const unsigned long *bitmap, int bits); | |||
| 110 | 110 | ||
| 111 | extern int bitmap_scnprintf(char *buf, unsigned int len, | 111 | extern int bitmap_scnprintf(char *buf, unsigned int len, |
| 112 | const unsigned long *src, int nbits); | 112 | const unsigned long *src, int nbits); |
| 113 | extern int bitmap_scnprintf_len(unsigned int nr_bits); | ||
| 113 | extern int __bitmap_parse(const char *buf, unsigned int buflen, int is_user, | 114 | extern int __bitmap_parse(const char *buf, unsigned int buflen, int is_user, |
| 114 | unsigned long *dst, int nbits); | 115 | unsigned long *dst, int nbits); |
| 115 | extern int bitmap_parse_user(const char __user *ubuf, unsigned int ulen, | 116 | extern int bitmap_parse_user(const char __user *ubuf, unsigned int ulen, |
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 88d68081a0f1..e61f22be4d0e 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h | |||
| @@ -655,6 +655,7 @@ extern struct request *blk_get_request(struct request_queue *, int, gfp_t); | |||
| 655 | extern void blk_insert_request(struct request_queue *, struct request *, int, void *); | 655 | extern void blk_insert_request(struct request_queue *, struct request *, int, void *); |
| 656 | extern void blk_requeue_request(struct request_queue *, struct request *); | 656 | extern void blk_requeue_request(struct request_queue *, struct request *); |
| 657 | extern void blk_plug_device(struct request_queue *); | 657 | extern void blk_plug_device(struct request_queue *); |
| 658 | extern void blk_plug_device_unlocked(struct request_queue *); | ||
| 658 | extern int blk_remove_plug(struct request_queue *); | 659 | extern int blk_remove_plug(struct request_queue *); |
| 659 | extern void blk_recount_segments(struct request_queue *, struct bio *); | 660 | extern void blk_recount_segments(struct request_queue *, struct bio *); |
| 660 | extern int scsi_cmd_ioctl(struct file *, struct request_queue *, | 661 | extern int scsi_cmd_ioctl(struct file *, struct request_queue *, |
diff --git a/include/linux/bootmem.h b/include/linux/bootmem.h index a1d9b79078ea..95837bfb5256 100644 --- a/include/linux/bootmem.h +++ b/include/linux/bootmem.h | |||
| @@ -28,85 +28,85 @@ extern unsigned long saved_max_pfn; | |||
| 28 | * memory pages (including holes) on the node. | 28 | * memory pages (including holes) on the node. |
| 29 | */ | 29 | */ |
| 30 | typedef struct bootmem_data { | 30 | typedef struct bootmem_data { |
| 31 | unsigned long node_boot_start; | 31 | unsigned long node_min_pfn; |
| 32 | unsigned long node_low_pfn; | 32 | unsigned long node_low_pfn; |
| 33 | void *node_bootmem_map; | 33 | void *node_bootmem_map; |
| 34 | unsigned long last_offset; | 34 | unsigned long last_end_off; |
| 35 | unsigned long last_pos; | 35 | unsigned long hint_idx; |
| 36 | unsigned long last_success; /* Previous allocation point. To speed | ||
| 37 | * up searching */ | ||
| 38 | struct list_head list; | 36 | struct list_head list; |
| 39 | } bootmem_data_t; | 37 | } bootmem_data_t; |
| 40 | 38 | ||
| 39 | extern bootmem_data_t bootmem_node_data[]; | ||
| 40 | |||
| 41 | extern unsigned long bootmem_bootmap_pages(unsigned long); | 41 | extern unsigned long bootmem_bootmap_pages(unsigned long); |
| 42 | |||
| 43 | extern unsigned long init_bootmem_node(pg_data_t *pgdat, | ||
| 44 | unsigned long freepfn, | ||
| 45 | unsigned long startpfn, | ||
| 46 | unsigned long endpfn); | ||
| 42 | extern unsigned long init_bootmem(unsigned long addr, unsigned long memend); | 47 | extern unsigned long init_bootmem(unsigned long addr, unsigned long memend); |
| 48 | |||
| 49 | extern unsigned long free_all_bootmem_node(pg_data_t *pgdat); | ||
| 50 | extern unsigned long free_all_bootmem(void); | ||
| 51 | |||
| 52 | extern void free_bootmem_node(pg_data_t *pgdat, | ||
| 53 | unsigned long addr, | ||
| 54 | unsigned long size); | ||
| 43 | extern void free_bootmem(unsigned long addr, unsigned long size); | 55 | extern void free_bootmem(unsigned long addr, unsigned long size); |
| 44 | extern void *__alloc_bootmem(unsigned long size, | 56 | |
| 57 | /* | ||
| 58 | * Flags for reserve_bootmem (also if CONFIG_HAVE_ARCH_BOOTMEM_NODE, | ||
| 59 | * the architecture-specific code should honor this). | ||
| 60 | * | ||
| 61 | * If flags is 0, then the return value is always 0 (success). If | ||
| 62 | * flags contains BOOTMEM_EXCLUSIVE, then -EBUSY is returned if the | ||
| 63 | * memory already was reserved. | ||
| 64 | */ | ||
| 65 | #define BOOTMEM_DEFAULT 0 | ||
| 66 | #define BOOTMEM_EXCLUSIVE (1<<0) | ||
| 67 | |||
| 68 | extern int reserve_bootmem_node(pg_data_t *pgdat, | ||
| 69 | unsigned long physaddr, | ||
| 70 | unsigned long size, | ||
| 71 | int flags); | ||
| 72 | #ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE | ||
| 73 | extern int reserve_bootmem(unsigned long addr, unsigned long size, int flags); | ||
| 74 | #endif | ||
| 75 | |||
| 76 | extern void *__alloc_bootmem_nopanic(unsigned long size, | ||
| 45 | unsigned long align, | 77 | unsigned long align, |
| 46 | unsigned long goal); | 78 | unsigned long goal); |
| 47 | extern void *__alloc_bootmem_nopanic(unsigned long size, | 79 | extern void *__alloc_bootmem(unsigned long size, |
| 48 | unsigned long align, | 80 | unsigned long align, |
| 49 | unsigned long goal); | 81 | unsigned long goal); |
| 50 | extern void *__alloc_bootmem_low(unsigned long size, | 82 | extern void *__alloc_bootmem_low(unsigned long size, |
| 51 | unsigned long align, | 83 | unsigned long align, |
| 52 | unsigned long goal); | 84 | unsigned long goal); |
| 85 | extern void *__alloc_bootmem_node(pg_data_t *pgdat, | ||
| 86 | unsigned long size, | ||
| 87 | unsigned long align, | ||
| 88 | unsigned long goal); | ||
| 89 | extern void *__alloc_bootmem_node_nopanic(pg_data_t *pgdat, | ||
| 90 | unsigned long size, | ||
| 91 | unsigned long align, | ||
| 92 | unsigned long goal); | ||
| 53 | extern void *__alloc_bootmem_low_node(pg_data_t *pgdat, | 93 | extern void *__alloc_bootmem_low_node(pg_data_t *pgdat, |
| 54 | unsigned long size, | 94 | unsigned long size, |
| 55 | unsigned long align, | 95 | unsigned long align, |
| 56 | unsigned long goal); | 96 | unsigned long goal); |
| 57 | extern void *__alloc_bootmem_core(struct bootmem_data *bdata, | ||
| 58 | unsigned long size, | ||
| 59 | unsigned long align, | ||
| 60 | unsigned long goal, | ||
| 61 | unsigned long limit); | ||
| 62 | |||
| 63 | /* | ||
| 64 | * flags for reserve_bootmem (also if CONFIG_HAVE_ARCH_BOOTMEM_NODE, | ||
| 65 | * the architecture-specific code should honor this) | ||
| 66 | */ | ||
| 67 | #define BOOTMEM_DEFAULT 0 | ||
| 68 | #define BOOTMEM_EXCLUSIVE (1<<0) | ||
| 69 | |||
| 70 | #ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE | 97 | #ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE |
| 71 | /* | ||
| 72 | * If flags is 0, then the return value is always 0 (success). If | ||
| 73 | * flags contains BOOTMEM_EXCLUSIVE, then -EBUSY is returned if the | ||
| 74 | * memory already was reserved. | ||
| 75 | */ | ||
| 76 | extern int reserve_bootmem(unsigned long addr, unsigned long size, int flags); | ||
| 77 | #define alloc_bootmem(x) \ | 98 | #define alloc_bootmem(x) \ |
| 78 | __alloc_bootmem(x, SMP_CACHE_BYTES, __pa(MAX_DMA_ADDRESS)) | 99 | __alloc_bootmem(x, SMP_CACHE_BYTES, __pa(MAX_DMA_ADDRESS)) |
| 100 | #define alloc_bootmem_nopanic(x) \ | ||
| 101 | __alloc_bootmem_nopanic(x, SMP_CACHE_BYTES, __pa(MAX_DMA_ADDRESS)) | ||
| 79 | #define alloc_bootmem_low(x) \ | 102 | #define alloc_bootmem_low(x) \ |
| 80 | __alloc_bootmem_low(x, SMP_CACHE_BYTES, 0) | 103 | __alloc_bootmem_low(x, SMP_CACHE_BYTES, 0) |
| 81 | #define alloc_bootmem_pages(x) \ | 104 | #define alloc_bootmem_pages(x) \ |
| 82 | __alloc_bootmem(x, PAGE_SIZE, __pa(MAX_DMA_ADDRESS)) | 105 | __alloc_bootmem(x, PAGE_SIZE, __pa(MAX_DMA_ADDRESS)) |
| 106 | #define alloc_bootmem_pages_nopanic(x) \ | ||
| 107 | __alloc_bootmem_nopanic(x, PAGE_SIZE, __pa(MAX_DMA_ADDRESS)) | ||
| 83 | #define alloc_bootmem_low_pages(x) \ | 108 | #define alloc_bootmem_low_pages(x) \ |
| 84 | __alloc_bootmem_low(x, PAGE_SIZE, 0) | 109 | __alloc_bootmem_low(x, PAGE_SIZE, 0) |
| 85 | #endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */ | ||
| 86 | |||
| 87 | extern int reserve_bootmem_generic(unsigned long addr, unsigned long size, | ||
| 88 | int flags); | ||
| 89 | extern unsigned long free_all_bootmem(void); | ||
| 90 | extern unsigned long free_all_bootmem_node(pg_data_t *pgdat); | ||
| 91 | extern void *__alloc_bootmem_node(pg_data_t *pgdat, | ||
| 92 | unsigned long size, | ||
| 93 | unsigned long align, | ||
| 94 | unsigned long goal); | ||
| 95 | extern unsigned long init_bootmem_node(pg_data_t *pgdat, | ||
| 96 | unsigned long freepfn, | ||
| 97 | unsigned long startpfn, | ||
| 98 | unsigned long endpfn); | ||
| 99 | extern int reserve_bootmem_node(pg_data_t *pgdat, | ||
| 100 | unsigned long physaddr, | ||
| 101 | unsigned long size, | ||
| 102 | int flags); | ||
| 103 | extern void free_bootmem_node(pg_data_t *pgdat, | ||
| 104 | unsigned long addr, | ||
| 105 | unsigned long size); | ||
| 106 | extern void *alloc_bootmem_section(unsigned long size, | ||
| 107 | unsigned long section_nr); | ||
| 108 | |||
| 109 | #ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE | ||
| 110 | #define alloc_bootmem_node(pgdat, x) \ | 110 | #define alloc_bootmem_node(pgdat, x) \ |
| 111 | __alloc_bootmem_node(pgdat, x, SMP_CACHE_BYTES, __pa(MAX_DMA_ADDRESS)) | 111 | __alloc_bootmem_node(pgdat, x, SMP_CACHE_BYTES, __pa(MAX_DMA_ADDRESS)) |
| 112 | #define alloc_bootmem_pages_node(pgdat, x) \ | 112 | #define alloc_bootmem_pages_node(pgdat, x) \ |
| @@ -115,6 +115,12 @@ extern void *alloc_bootmem_section(unsigned long size, | |||
| 115 | __alloc_bootmem_low_node(pgdat, x, PAGE_SIZE, 0) | 115 | __alloc_bootmem_low_node(pgdat, x, PAGE_SIZE, 0) |
| 116 | #endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */ | 116 | #endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */ |
| 117 | 117 | ||
| 118 | extern int reserve_bootmem_generic(unsigned long addr, unsigned long size, | ||
| 119 | int flags); | ||
| 120 | |||
| 121 | extern void *alloc_bootmem_section(unsigned long size, | ||
| 122 | unsigned long section_nr); | ||
| 123 | |||
| 118 | #ifdef CONFIG_HAVE_ARCH_ALLOC_REMAP | 124 | #ifdef CONFIG_HAVE_ARCH_ALLOC_REMAP |
| 119 | extern void *alloc_remap(int nid, unsigned long size); | 125 | extern void *alloc_remap(int nid, unsigned long size); |
| 120 | #else | 126 | #else |
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h index 82aa36c53ea7..eadaab44015f 100644 --- a/include/linux/buffer_head.h +++ b/include/linux/buffer_head.h | |||
| @@ -115,7 +115,6 @@ BUFFER_FNS(Uptodate, uptodate) | |||
| 115 | BUFFER_FNS(Dirty, dirty) | 115 | BUFFER_FNS(Dirty, dirty) |
| 116 | TAS_BUFFER_FNS(Dirty, dirty) | 116 | TAS_BUFFER_FNS(Dirty, dirty) |
| 117 | BUFFER_FNS(Lock, locked) | 117 | BUFFER_FNS(Lock, locked) |
| 118 | TAS_BUFFER_FNS(Lock, locked) | ||
| 119 | BUFFER_FNS(Req, req) | 118 | BUFFER_FNS(Req, req) |
| 120 | TAS_BUFFER_FNS(Req, req) | 119 | TAS_BUFFER_FNS(Req, req) |
| 121 | BUFFER_FNS(Mapped, mapped) | 120 | BUFFER_FNS(Mapped, mapped) |
| @@ -205,6 +204,8 @@ void block_invalidatepage(struct page *page, unsigned long offset); | |||
| 205 | int block_write_full_page(struct page *page, get_block_t *get_block, | 204 | int block_write_full_page(struct page *page, get_block_t *get_block, |
| 206 | struct writeback_control *wbc); | 205 | struct writeback_control *wbc); |
| 207 | int block_read_full_page(struct page*, get_block_t*); | 206 | int block_read_full_page(struct page*, get_block_t*); |
| 207 | int block_is_partially_uptodate(struct page *page, read_descriptor_t *desc, | ||
| 208 | unsigned long from); | ||
| 208 | int block_write_begin(struct file *, struct address_space *, | 209 | int block_write_begin(struct file *, struct address_space *, |
| 209 | loff_t, unsigned, unsigned, | 210 | loff_t, unsigned, unsigned, |
| 210 | struct page **, void **, get_block_t*); | 211 | struct page **, void **, get_block_t*); |
| @@ -319,10 +320,15 @@ static inline void wait_on_buffer(struct buffer_head *bh) | |||
| 319 | __wait_on_buffer(bh); | 320 | __wait_on_buffer(bh); |
| 320 | } | 321 | } |
| 321 | 322 | ||
| 323 | static inline int trylock_buffer(struct buffer_head *bh) | ||
| 324 | { | ||
| 325 | return likely(!test_and_set_bit(BH_Lock, &bh->b_state)); | ||
| 326 | } | ||
| 327 | |||
| 322 | static inline void lock_buffer(struct buffer_head *bh) | 328 | static inline void lock_buffer(struct buffer_head *bh) |
| 323 | { | 329 | { |
| 324 | might_sleep(); | 330 | might_sleep(); |
| 325 | if (test_set_buffer_locked(bh)) | 331 | if (!trylock_buffer(bh)) |
| 326 | __lock_buffer(bh); | 332 | __lock_buffer(bh); |
| 327 | } | 333 | } |
| 328 | 334 | ||
diff --git a/include/linux/byteorder.h b/include/linux/byteorder.h new file mode 100644 index 000000000000..29f002d73d98 --- /dev/null +++ b/include/linux/byteorder.h | |||
| @@ -0,0 +1,372 @@ | |||
| 1 | #ifndef _LINUX_BYTEORDER_H | ||
| 2 | #define _LINUX_BYTEORDER_H | ||
| 3 | |||
| 4 | #include <linux/types.h> | ||
| 5 | #include <linux/swab.h> | ||
| 6 | |||
| 7 | #if defined(__LITTLE_ENDIAN) && defined(__BIG_ENDIAN) | ||
| 8 | # error Fix asm/byteorder.h to define one endianness | ||
| 9 | #endif | ||
| 10 | |||
| 11 | #if !defined(__LITTLE_ENDIAN) && !defined(__BIG_ENDIAN) | ||
| 12 | # error Fix asm/byteorder.h to define arch endianness | ||
| 13 | #endif | ||
| 14 | |||
| 15 | #ifdef __LITTLE_ENDIAN | ||
| 16 | # undef __LITTLE_ENDIAN | ||
| 17 | # define __LITTLE_ENDIAN 1234 | ||
| 18 | #endif | ||
| 19 | |||
| 20 | #ifdef __BIG_ENDIAN | ||
| 21 | # undef __BIG_ENDIAN | ||
| 22 | # define __BIG_ENDIAN 4321 | ||
| 23 | #endif | ||
| 24 | |||
| 25 | #if defined(__LITTLE_ENDIAN) && !defined(__LITTLE_ENDIAN_BITFIELD) | ||
| 26 | # define __LITTLE_ENDIAN_BITFIELD | ||
| 27 | #endif | ||
| 28 | |||
| 29 | #if defined(__BIG_ENDIAN) && !defined(__BIG_ENDIAN_BITFIELD) | ||
| 30 | # define __BIG_ENDIAN_BITFIELD | ||
| 31 | #endif | ||
| 32 | |||
| 33 | #ifdef __LITTLE_ENDIAN | ||
| 34 | # define __le16_to_cpu(x) ((__force __u16)(__le16)(x)) | ||
| 35 | # define __le32_to_cpu(x) ((__force __u32)(__le32)(x)) | ||
| 36 | # define __le64_to_cpu(x) ((__force __u64)(__le64)(x)) | ||
| 37 | # define __cpu_to_le16(x) ((__force __le16)(__u16)(x)) | ||
| 38 | # define __cpu_to_le32(x) ((__force __le32)(__u32)(x)) | ||
| 39 | # define __cpu_to_le64(x) ((__force __le64)(__u64)(x)) | ||
| 40 | |||
| 41 | # define __be16_to_cpu(x) __swab16((__force __u16)(__be16)(x)) | ||
| 42 | # define __be32_to_cpu(x) __swab32((__force __u32)(__be32)(x)) | ||
| 43 | # define __be64_to_cpu(x) __swab64((__force __u64)(__be64)(x)) | ||
| 44 | # define __cpu_to_be16(x) ((__force __be16)__swab16(x)) | ||
| 45 | # define __cpu_to_be32(x) ((__force __be32)__swab32(x)) | ||
| 46 | # define __cpu_to_be64(x) ((__force __be64)__swab64(x)) | ||
| 47 | #endif | ||
| 48 | |||
| 49 | #ifdef __BIG_ENDIAN | ||
| 50 | # define __be16_to_cpu(x) ((__force __u16)(__be16)(x)) | ||
| 51 | # define __be32_to_cpu(x) ((__force __u32)(__be32)(x)) | ||
| 52 | # define __be64_to_cpu(x) ((__force __u64)(__be64)(x)) | ||
| 53 | # define __cpu_to_be16(x) ((__force __be16)(__u16)(x)) | ||
| 54 | # define __cpu_to_be32(x) ((__force __be32)(__u32)(x)) | ||
| 55 | # define __cpu_to_be64(x) ((__force __be64)(__u64)(x)) | ||
| 56 | |||
| 57 | # define __le16_to_cpu(x) __swab16((__force __u16)(__le16)(x)) | ||
| 58 | # define __le32_to_cpu(x) __swab32((__force __u32)(__le32)(x)) | ||
| 59 | # define __le64_to_cpu(x) __swab64((__force __u64)(__le64)(x)) | ||
| 60 | # define __cpu_to_le16(x) ((__force __le16)__swab16(x)) | ||
| 61 | # define __cpu_to_le32(x) ((__force __le32)__swab32(x)) | ||
| 62 | # define __cpu_to_le64(x) ((__force __le64)__swab64(x)) | ||
| 63 | #endif | ||
| 64 | |||
| 65 | /* | ||
| 66 | * These helpers could be phased out over time as the base version | ||
| 67 | * handles constant folding. | ||
| 68 | */ | ||
| 69 | #define __constant_htonl(x) __cpu_to_be32(x) | ||
| 70 | #define __constant_ntohl(x) __be32_to_cpu(x) | ||
| 71 | #define __constant_htons(x) __cpu_to_be16(x) | ||
| 72 | #define __constant_ntohs(x) __be16_to_cpu(x) | ||
| 73 | |||
| 74 | #define __constant_le16_to_cpu(x) __le16_to_cpu(x) | ||
| 75 | #define __constant_le32_to_cpu(x) __le32_to_cpu(x) | ||
| 76 | #define __constant_le64_to_cpu(x) __le64_to_cpu(x) | ||
| 77 | #define __constant_be16_to_cpu(x) __be16_to_cpu(x) | ||
| 78 | #define __constant_be32_to_cpu(x) __be32_to_cpu(x) | ||
| 79 | #define __constant_be64_to_cpu(x) __be64_to_cpu(x) | ||
| 80 | |||
| 81 | #define __constant_cpu_to_le16(x) __cpu_to_le16(x) | ||
| 82 | #define __constant_cpu_to_le32(x) __cpu_to_le32(x) | ||
| 83 | #define __constant_cpu_to_le64(x) __cpu_to_le64(x) | ||
| 84 | #define __constant_cpu_to_be16(x) __cpu_to_be16(x) | ||
| 85 | #define __constant_cpu_to_be32(x) __cpu_to_be32(x) | ||
| 86 | #define __constant_cpu_to_be64(x) __cpu_to_be64(x) | ||
| 87 | |||
| 88 | static inline void __le16_to_cpus(__u16 *p) | ||
| 89 | { | ||
| 90 | #ifdef __BIG_ENDIAN | ||
| 91 | __swab16s(p); | ||
| 92 | #endif | ||
| 93 | } | ||
| 94 | |||
| 95 | static inline void __cpu_to_le16s(__u16 *p) | ||
| 96 | { | ||
| 97 | #ifdef __BIG_ENDIAN | ||
| 98 | __swab16s(p); | ||
| 99 | #endif | ||
| 100 | } | ||
| 101 | |||
| 102 | static inline void __le32_to_cpus(__u32 *p) | ||
| 103 | { | ||
| 104 | #ifdef __BIG_ENDIAN | ||
| 105 | __swab32s(p); | ||
| 106 | #endif | ||
| 107 | } | ||
| 108 | |||
| 109 | static inline void __cpu_to_le32s(__u32 *p) | ||
| 110 | { | ||
| 111 | #ifdef __BIG_ENDIAN | ||
| 112 | __swab32s(p); | ||
| 113 | #endif | ||
| 114 | } | ||
| 115 | |||
| 116 | static inline void __le64_to_cpus(__u64 *p) | ||
| 117 | { | ||
| 118 | #ifdef __BIG_ENDIAN | ||
| 119 | __swab64s(p); | ||
| 120 | #endif | ||
| 121 | } | ||
| 122 | |||
| 123 | static inline void __cpu_to_le64s(__u64 *p) | ||
| 124 | { | ||
| 125 | #ifdef __BIG_ENDIAN | ||
| 126 | __swab64s(p); | ||
| 127 | #endif | ||
| 128 | } | ||
| 129 | |||
| 130 | static inline void __be16_to_cpus(__u16 *p) | ||
| 131 | { | ||
| 132 | #ifdef __LITTLE_ENDIAN | ||
| 133 | __swab16s(p); | ||
| 134 | #endif | ||
| 135 | } | ||
| 136 | |||
| 137 | static inline void __cpu_to_be16s(__u16 *p) | ||
| 138 | { | ||
| 139 | #ifdef __LITTLE_ENDIAN | ||
| 140 | __swab16s(p); | ||
| 141 | #endif | ||
| 142 | } | ||
| 143 | |||
| 144 | static inline void __be32_to_cpus(__u32 *p) | ||
| 145 | { | ||
| 146 | #ifdef __LITTLE_ENDIAN | ||
| 147 | __swab32s(p); | ||
| 148 | #endif | ||
| 149 | } | ||
| 150 | |||
| 151 | static inline void __cpu_to_be32s(__u32 *p) | ||
| 152 | { | ||
| 153 | #ifdef __LITTLE_ENDIAN | ||
| 154 | __swab32s(p); | ||
| 155 | #endif | ||
| 156 | } | ||
| 157 | |||
| 158 | static inline void __be64_to_cpus(__u64 *p) | ||
| 159 | { | ||
| 160 | #ifdef __LITTLE_ENDIAN | ||
| 161 | __swab64s(p); | ||
| 162 | #endif | ||
| 163 | } | ||
| 164 | |||
| 165 | static inline void __cpu_to_be64s(__u64 *p) | ||
| 166 | { | ||
| 167 | #ifdef __LITTLE_ENDIAN | ||
| 168 | __swab64s(p); | ||
| 169 | #endif | ||
| 170 | } | ||
| 171 | |||
| 172 | static inline __u16 __le16_to_cpup(const __le16 *p) | ||
| 173 | { | ||
| 174 | #ifdef __LITTLE_ENDIAN | ||
| 175 | return (__force __u16)*p; | ||
| 176 | #else | ||
| 177 | return __swab16p((__force __u16 *)p); | ||
| 178 | #endif | ||
| 179 | } | ||
| 180 | |||
| 181 | static inline __u32 __le32_to_cpup(const __le32 *p) | ||
| 182 | { | ||
| 183 | #ifdef __LITTLE_ENDIAN | ||
| 184 | return (__force __u32)*p; | ||
| 185 | #else | ||
| 186 | return __swab32p((__force __u32 *)p); | ||
| 187 | #endif | ||
| 188 | } | ||
| 189 | |||
| 190 | static inline __u64 __le64_to_cpup(const __le64 *p) | ||
| 191 | { | ||
| 192 | #ifdef __LITTLE_ENDIAN | ||
| 193 | return (__force __u64)*p; | ||
| 194 | #else | ||
| 195 | return __swab64p((__force __u64 *)p); | ||
| 196 | #endif | ||
| 197 | } | ||
| 198 | |||
| 199 | static inline __le16 __cpu_to_le16p(const __u16 *p) | ||
| 200 | { | ||
| 201 | #ifdef __LITTLE_ENDIAN | ||
| 202 | return (__force __le16)*p; | ||
| 203 | #else | ||
| 204 | return (__force __le16)__swab16p(p); | ||
| 205 | #endif | ||
| 206 | } | ||
| 207 | |||
| 208 | static inline __le32 __cpu_to_le32p(const __u32 *p) | ||
| 209 | { | ||
| 210 | #ifdef __LITTLE_ENDIAN | ||
| 211 | return (__force __le32)*p; | ||
| 212 | #else | ||
| 213 | return (__force __le32)__swab32p(p); | ||
| 214 | #endif | ||
| 215 | } | ||
| 216 | |||
| 217 | static inline __le64 __cpu_to_le64p(const __u64 *p) | ||
| 218 | { | ||
| 219 | #ifdef __LITTLE_ENDIAN | ||
| 220 | return (__force __le64)*p; | ||
| 221 | #else | ||
| 222 | return (__force __le64)__swab64p(p); | ||
| 223 | #endif | ||
| 224 | } | ||
| 225 | |||
| 226 | static inline __u16 __be16_to_cpup(const __be16 *p) | ||
| 227 | { | ||
| 228 | #ifdef __BIG_ENDIAN | ||
| 229 | return (__force __u16)*p; | ||
| 230 | #else | ||
| 231 | return __swab16p((__force __u16 *)p); | ||
| 232 | #endif | ||
| 233 | } | ||
| 234 | |||
| 235 | static inline __u32 __be32_to_cpup(const __be32 *p) | ||
| 236 | { | ||
| 237 | #ifdef __BIG_ENDIAN | ||
| 238 | return (__force __u32)*p; | ||
| 239 | #else | ||
| 240 | return __swab32p((__force __u32 *)p); | ||
| 241 | #endif | ||
| 242 | } | ||
| 243 | |||
| 244 | static inline __u64 __be64_to_cpup(const __be64 *p) | ||
| 245 | { | ||
| 246 | #ifdef __BIG_ENDIAN | ||
| 247 | return (__force __u64)*p; | ||
| 248 | #else | ||
| 249 | return __swab64p((__force __u64 *)p); | ||
| 250 | #endif | ||
| 251 | } | ||
| 252 | |||
| 253 | static inline __be16 __cpu_to_be16p(const __u16 *p) | ||
| 254 | { | ||
| 255 | #ifdef __BIG_ENDIAN | ||
| 256 | return (__force __be16)*p; | ||
| 257 | #else | ||
| 258 | return (__force __be16)__swab16p(p); | ||
| 259 | #endif | ||
| 260 | } | ||
| 261 | |||
| 262 | static inline __be32 __cpu_to_be32p(const __u32 *p) | ||
| 263 | { | ||
| 264 | #ifdef __BIG_ENDIAN | ||
| 265 | return (__force __be32)*p; | ||
| 266 | #else | ||
| 267 | return (__force __be32)__swab32p(p); | ||
| 268 | #endif | ||
| 269 | } | ||
| 270 | |||
| 271 | static inline __be64 __cpu_to_be64p(const __u64 *p) | ||
| 272 | { | ||
| 273 | #ifdef __BIG_ENDIAN | ||
| 274 | return (__force __be64)*p; | ||
| 275 | #else | ||
| 276 | return (__force __be64)__swab64p(p); | ||
| 277 | #endif | ||
| 278 | } | ||
| 279 | |||
| 280 | #ifdef __KERNEL__ | ||
| 281 | |||
| 282 | # define le16_to_cpu __le16_to_cpu | ||
| 283 | # define le32_to_cpu __le32_to_cpu | ||
| 284 | # define le64_to_cpu __le64_to_cpu | ||
| 285 | # define be16_to_cpu __be16_to_cpu | ||
| 286 | # define be32_to_cpu __be32_to_cpu | ||
| 287 | # define be64_to_cpu __be64_to_cpu | ||
| 288 | # define cpu_to_le16 __cpu_to_le16 | ||
| 289 | # define cpu_to_le32 __cpu_to_le32 | ||
| 290 | # define cpu_to_le64 __cpu_to_le64 | ||
| 291 | # define cpu_to_be16 __cpu_to_be16 | ||
| 292 | # define cpu_to_be32 __cpu_to_be32 | ||
| 293 | # define cpu_to_be64 __cpu_to_be64 | ||
| 294 | |||
| 295 | # define le16_to_cpup __le16_to_cpup | ||
| 296 | # define le32_to_cpup __le32_to_cpup | ||
| 297 | # define le64_to_cpup __le64_to_cpup | ||
| 298 | # define be16_to_cpup __be16_to_cpup | ||
| 299 | # define be32_to_cpup __be32_to_cpup | ||
| 300 | # define be64_to_cpup __be64_to_cpup | ||
| 301 | # define cpu_to_le16p __cpu_to_le16p | ||
| 302 | # define cpu_to_le32p __cpu_to_le32p | ||
| 303 | # define cpu_to_le64p __cpu_to_le64p | ||
| 304 | # define cpu_to_be16p __cpu_to_be16p | ||
| 305 | # define cpu_to_be32p __cpu_to_be32p | ||
| 306 | # define cpu_to_be64p __cpu_to_be64p | ||
| 307 | |||
| 308 | # define le16_to_cpus __le16_to_cpus | ||
| 309 | # define le32_to_cpus __le32_to_cpus | ||
| 310 | # define le64_to_cpus __le64_to_cpus | ||
| 311 | # define be16_to_cpus __be16_to_cpus | ||
| 312 | # define be32_to_cpus __be32_to_cpus | ||
| 313 | # define be64_to_cpus __be64_to_cpus | ||
| 314 | # define cpu_to_le16s __cpu_to_le16s | ||
| 315 | # define cpu_to_le32s __cpu_to_le32s | ||
| 316 | # define cpu_to_le64s __cpu_to_le64s | ||
| 317 | # define cpu_to_be16s __cpu_to_be16s | ||
| 318 | # define cpu_to_be32s __cpu_to_be32s | ||
| 319 | # define cpu_to_be64s __cpu_to_be64s | ||
| 320 | |||
| 321 | /* | ||
| 322 | * They have to be macros in order to do the constant folding | ||
| 323 | * correctly - if the argument passed into a inline function | ||
| 324 | * it is no longer constant according to gcc.. | ||
| 325 | */ | ||
| 326 | # undef ntohl | ||
| 327 | # undef ntohs | ||
| 328 | # undef htonl | ||
| 329 | # undef htons | ||
| 330 | |||
| 331 | # define ___htonl(x) __cpu_to_be32(x) | ||
| 332 | # define ___htons(x) __cpu_to_be16(x) | ||
| 333 | # define ___ntohl(x) __be32_to_cpu(x) | ||
| 334 | # define ___ntohs(x) __be16_to_cpu(x) | ||
| 335 | |||
| 336 | # define htonl(x) ___htonl(x) | ||
| 337 | # define ntohl(x) ___ntohl(x) | ||
| 338 | # define htons(x) ___htons(x) | ||
| 339 | # define ntohs(x) ___ntohs(x) | ||
| 340 | |||
| 341 | static inline void le16_add_cpu(__le16 *var, u16 val) | ||
| 342 | { | ||
| 343 | *var = cpu_to_le16(le16_to_cpup(var) + val); | ||
| 344 | } | ||
| 345 | |||
| 346 | static inline void le32_add_cpu(__le32 *var, u32 val) | ||
| 347 | { | ||
| 348 | *var = cpu_to_le32(le32_to_cpup(var) + val); | ||
| 349 | } | ||
| 350 | |||
| 351 | static inline void le64_add_cpu(__le64 *var, u64 val) | ||
| 352 | { | ||
| 353 | *var = cpu_to_le64(le64_to_cpup(var) + val); | ||
| 354 | } | ||
| 355 | |||
| 356 | static inline void be16_add_cpu(__be16 *var, u16 val) | ||
| 357 | { | ||
| 358 | *var = cpu_to_be16(be16_to_cpup(var) + val); | ||
| 359 | } | ||
| 360 | |||
| 361 | static inline void be32_add_cpu(__be32 *var, u32 val) | ||
| 362 | { | ||
| 363 | *var = cpu_to_be32(be32_to_cpup(var) + val); | ||
| 364 | } | ||
| 365 | |||
| 366 | static inline void be64_add_cpu(__be64 *var, u64 val) | ||
| 367 | { | ||
| 368 | *var = cpu_to_be64(be64_to_cpup(var) + val); | ||
| 369 | } | ||
| 370 | |||
| 371 | #endif /* __KERNEL__ */ | ||
| 372 | #endif /* _LINUX_BYTEORDER_H */ | ||
diff --git a/include/linux/byteorder/big_endian.h b/include/linux/byteorder/big_endian.h index 961ed4b48d8e..44f95b92393b 100644 --- a/include/linux/byteorder/big_endian.h +++ b/include/linux/byteorder/big_endian.h | |||
| @@ -94,12 +94,12 @@ static inline __u16 __be16_to_cpup(const __be16 *p) | |||
| 94 | #define __le32_to_cpus(x) __swab32s((x)) | 94 | #define __le32_to_cpus(x) __swab32s((x)) |
| 95 | #define __cpu_to_le16s(x) __swab16s((x)) | 95 | #define __cpu_to_le16s(x) __swab16s((x)) |
| 96 | #define __le16_to_cpus(x) __swab16s((x)) | 96 | #define __le16_to_cpus(x) __swab16s((x)) |
| 97 | #define __cpu_to_be64s(x) do {} while (0) | 97 | #define __cpu_to_be64s(x) do { (void)(x); } while (0) |
| 98 | #define __be64_to_cpus(x) do {} while (0) | 98 | #define __be64_to_cpus(x) do { (void)(x); } while (0) |
| 99 | #define __cpu_to_be32s(x) do {} while (0) | 99 | #define __cpu_to_be32s(x) do { (void)(x); } while (0) |
| 100 | #define __be32_to_cpus(x) do {} while (0) | 100 | #define __be32_to_cpus(x) do { (void)(x); } while (0) |
| 101 | #define __cpu_to_be16s(x) do {} while (0) | 101 | #define __cpu_to_be16s(x) do { (void)(x); } while (0) |
| 102 | #define __be16_to_cpus(x) do {} while (0) | 102 | #define __be16_to_cpus(x) do { (void)(x); } while (0) |
| 103 | 103 | ||
| 104 | #ifdef __KERNEL__ | 104 | #ifdef __KERNEL__ |
| 105 | #include <linux/byteorder/generic.h> | 105 | #include <linux/byteorder/generic.h> |
diff --git a/include/linux/byteorder/little_endian.h b/include/linux/byteorder/little_endian.h index 05dc7c35b3b2..4cc170a31762 100644 --- a/include/linux/byteorder/little_endian.h +++ b/include/linux/byteorder/little_endian.h | |||
| @@ -88,12 +88,12 @@ static inline __u16 __be16_to_cpup(const __be16 *p) | |||
| 88 | { | 88 | { |
| 89 | return __swab16p((__u16 *)p); | 89 | return __swab16p((__u16 *)p); |
| 90 | } | 90 | } |
| 91 | #define __cpu_to_le64s(x) do {} while (0) | 91 | #define __cpu_to_le64s(x) do { (void)(x); } while (0) |
| 92 | #define __le64_to_cpus(x) do {} while (0) | 92 | #define __le64_to_cpus(x) do { (void)(x); } while (0) |
| 93 | #define __cpu_to_le32s(x) do {} while (0) | 93 | #define __cpu_to_le32s(x) do { (void)(x); } while (0) |
| 94 | #define __le32_to_cpus(x) do {} while (0) | 94 | #define __le32_to_cpus(x) do { (void)(x); } while (0) |
| 95 | #define __cpu_to_le16s(x) do {} while (0) | 95 | #define __cpu_to_le16s(x) do { (void)(x); } while (0) |
| 96 | #define __le16_to_cpus(x) do {} while (0) | 96 | #define __le16_to_cpus(x) do { (void)(x); } while (0) |
| 97 | #define __cpu_to_be64s(x) __swab64s((x)) | 97 | #define __cpu_to_be64s(x) __swab64s((x)) |
| 98 | #define __be64_to_cpus(x) __swab64s((x)) | 98 | #define __be64_to_cpus(x) __swab64s((x)) |
| 99 | #define __cpu_to_be32s(x) __swab32s((x)) | 99 | #define __cpu_to_be32s(x) __swab32s((x)) |
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index e155aa78d859..c98dd7cb7076 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h | |||
| @@ -21,11 +21,13 @@ | |||
| 21 | struct cgroupfs_root; | 21 | struct cgroupfs_root; |
| 22 | struct cgroup_subsys; | 22 | struct cgroup_subsys; |
| 23 | struct inode; | 23 | struct inode; |
| 24 | struct cgroup; | ||
| 24 | 25 | ||
| 25 | extern int cgroup_init_early(void); | 26 | extern int cgroup_init_early(void); |
| 26 | extern int cgroup_init(void); | 27 | extern int cgroup_init(void); |
| 27 | extern void cgroup_init_smp(void); | 28 | extern void cgroup_init_smp(void); |
| 28 | extern void cgroup_lock(void); | 29 | extern void cgroup_lock(void); |
| 30 | extern bool cgroup_lock_live_group(struct cgroup *cgrp); | ||
| 29 | extern void cgroup_unlock(void); | 31 | extern void cgroup_unlock(void); |
| 30 | extern void cgroup_fork(struct task_struct *p); | 32 | extern void cgroup_fork(struct task_struct *p); |
| 31 | extern void cgroup_fork_callbacks(struct task_struct *p); | 33 | extern void cgroup_fork_callbacks(struct task_struct *p); |
| @@ -205,50 +207,64 @@ struct cftype { | |||
| 205 | * subsystem, followed by a period */ | 207 | * subsystem, followed by a period */ |
| 206 | char name[MAX_CFTYPE_NAME]; | 208 | char name[MAX_CFTYPE_NAME]; |
| 207 | int private; | 209 | int private; |
| 208 | int (*open) (struct inode *inode, struct file *file); | 210 | |
| 209 | ssize_t (*read) (struct cgroup *cgrp, struct cftype *cft, | 211 | /* |
| 210 | struct file *file, | 212 | * If non-zero, defines the maximum length of string that can |
| 211 | char __user *buf, size_t nbytes, loff_t *ppos); | 213 | * be passed to write_string; defaults to 64 |
| 214 | */ | ||
| 215 | size_t max_write_len; | ||
| 216 | |||
| 217 | int (*open)(struct inode *inode, struct file *file); | ||
| 218 | ssize_t (*read)(struct cgroup *cgrp, struct cftype *cft, | ||
| 219 | struct file *file, | ||
| 220 | char __user *buf, size_t nbytes, loff_t *ppos); | ||
| 212 | /* | 221 | /* |
| 213 | * read_u64() is a shortcut for the common case of returning a | 222 | * read_u64() is a shortcut for the common case of returning a |
| 214 | * single integer. Use it in place of read() | 223 | * single integer. Use it in place of read() |
| 215 | */ | 224 | */ |
| 216 | u64 (*read_u64) (struct cgroup *cgrp, struct cftype *cft); | 225 | u64 (*read_u64)(struct cgroup *cgrp, struct cftype *cft); |
| 217 | /* | 226 | /* |
| 218 | * read_s64() is a signed version of read_u64() | 227 | * read_s64() is a signed version of read_u64() |
| 219 | */ | 228 | */ |
| 220 | s64 (*read_s64) (struct cgroup *cgrp, struct cftype *cft); | 229 | s64 (*read_s64)(struct cgroup *cgrp, struct cftype *cft); |
| 221 | /* | 230 | /* |
| 222 | * read_map() is used for defining a map of key/value | 231 | * read_map() is used for defining a map of key/value |
| 223 | * pairs. It should call cb->fill(cb, key, value) for each | 232 | * pairs. It should call cb->fill(cb, key, value) for each |
| 224 | * entry. The key/value pairs (and their ordering) should not | 233 | * entry. The key/value pairs (and their ordering) should not |
| 225 | * change between reboots. | 234 | * change between reboots. |
| 226 | */ | 235 | */ |
| 227 | int (*read_map) (struct cgroup *cont, struct cftype *cft, | 236 | int (*read_map)(struct cgroup *cont, struct cftype *cft, |
| 228 | struct cgroup_map_cb *cb); | 237 | struct cgroup_map_cb *cb); |
| 229 | /* | 238 | /* |
| 230 | * read_seq_string() is used for outputting a simple sequence | 239 | * read_seq_string() is used for outputting a simple sequence |
| 231 | * using seqfile. | 240 | * using seqfile. |
| 232 | */ | 241 | */ |
| 233 | int (*read_seq_string) (struct cgroup *cont, struct cftype *cft, | 242 | int (*read_seq_string)(struct cgroup *cont, struct cftype *cft, |
| 234 | struct seq_file *m); | 243 | struct seq_file *m); |
| 235 | 244 | ||
| 236 | ssize_t (*write) (struct cgroup *cgrp, struct cftype *cft, | 245 | ssize_t (*write)(struct cgroup *cgrp, struct cftype *cft, |
| 237 | struct file *file, | 246 | struct file *file, |
| 238 | const char __user *buf, size_t nbytes, loff_t *ppos); | 247 | const char __user *buf, size_t nbytes, loff_t *ppos); |
| 239 | 248 | ||
| 240 | /* | 249 | /* |
| 241 | * write_u64() is a shortcut for the common case of accepting | 250 | * write_u64() is a shortcut for the common case of accepting |
| 242 | * a single integer (as parsed by simple_strtoull) from | 251 | * a single integer (as parsed by simple_strtoull) from |
| 243 | * userspace. Use in place of write(); return 0 or error. | 252 | * userspace. Use in place of write(); return 0 or error. |
| 244 | */ | 253 | */ |
| 245 | int (*write_u64) (struct cgroup *cgrp, struct cftype *cft, u64 val); | 254 | int (*write_u64)(struct cgroup *cgrp, struct cftype *cft, u64 val); |
| 246 | /* | 255 | /* |
| 247 | * write_s64() is a signed version of write_u64() | 256 | * write_s64() is a signed version of write_u64() |
| 248 | */ | 257 | */ |
| 249 | int (*write_s64) (struct cgroup *cgrp, struct cftype *cft, s64 val); | 258 | int (*write_s64)(struct cgroup *cgrp, struct cftype *cft, s64 val); |
| 250 | 259 | ||
| 251 | /* | 260 | /* |
| 261 | * write_string() is passed a nul-terminated kernelspace | ||
| 262 | * buffer of maximum length determined by max_write_len. | ||
| 263 | * Returns 0 or -ve error code. | ||
| 264 | */ | ||
| 265 | int (*write_string)(struct cgroup *cgrp, struct cftype *cft, | ||
| 266 | const char *buffer); | ||
| 267 | /* | ||
| 252 | * trigger() callback can be used to get some kick from the | 268 | * trigger() callback can be used to get some kick from the |
| 253 | * userspace, when the actual string written is not important | 269 | * userspace, when the actual string written is not important |
| 254 | * at all. The private field can be used to determine the | 270 | * at all. The private field can be used to determine the |
| @@ -256,7 +272,7 @@ struct cftype { | |||
| 256 | */ | 272 | */ |
| 257 | int (*trigger)(struct cgroup *cgrp, unsigned int event); | 273 | int (*trigger)(struct cgroup *cgrp, unsigned int event); |
| 258 | 274 | ||
| 259 | int (*release) (struct inode *inode, struct file *file); | 275 | int (*release)(struct inode *inode, struct file *file); |
| 260 | }; | 276 | }; |
| 261 | 277 | ||
| 262 | struct cgroup_scanner { | 278 | struct cgroup_scanner { |
| @@ -348,7 +364,8 @@ static inline struct cgroup* task_cgroup(struct task_struct *task, | |||
| 348 | return task_subsys_state(task, subsys_id)->cgroup; | 364 | return task_subsys_state(task, subsys_id)->cgroup; |
| 349 | } | 365 | } |
| 350 | 366 | ||
| 351 | int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *ss); | 367 | int cgroup_clone(struct task_struct *tsk, struct cgroup_subsys *ss, |
| 368 | char *nodename); | ||
| 352 | 369 | ||
| 353 | /* A cgroup_iter should be treated as an opaque object */ | 370 | /* A cgroup_iter should be treated as an opaque object */ |
| 354 | struct cgroup_iter { | 371 | struct cgroup_iter { |
diff --git a/include/linux/coda.h b/include/linux/coda.h index b5cf0780c51a..96c87693800b 100644 --- a/include/linux/coda.h +++ b/include/linux/coda.h | |||
| @@ -199,28 +199,6 @@ typedef u_int32_t vuid_t; | |||
| 199 | typedef u_int32_t vgid_t; | 199 | typedef u_int32_t vgid_t; |
| 200 | #endif /*_VUID_T_ */ | 200 | #endif /*_VUID_T_ */ |
| 201 | 201 | ||
| 202 | #ifdef CONFIG_CODA_FS_OLD_API | ||
| 203 | struct CodaFid { | ||
| 204 | u_int32_t opaque[3]; | ||
| 205 | }; | ||
| 206 | |||
| 207 | static __inline__ ino_t coda_f2i(struct CodaFid *fid) | ||
| 208 | { | ||
| 209 | if ( ! fid ) | ||
| 210 | return 0; | ||
| 211 | if (fid->opaque[1] == 0xfffffffe || fid->opaque[1] == 0xffffffff) | ||
| 212 | return ((fid->opaque[0] << 20) | (fid->opaque[2] & 0xfffff)); | ||
| 213 | else | ||
| 214 | return (fid->opaque[2] + (fid->opaque[1]<<10) + (fid->opaque[0]<<20)); | ||
| 215 | } | ||
| 216 | |||
| 217 | struct coda_cred { | ||
| 218 | vuid_t cr_uid, cr_euid, cr_suid, cr_fsuid; /* Real, efftve, set, fs uid*/ | ||
| 219 | vgid_t cr_groupid, cr_egid, cr_sgid, cr_fsgid; /* same for groups */ | ||
| 220 | }; | ||
| 221 | |||
| 222 | #else /* not defined(CONFIG_CODA_FS_OLD_API) */ | ||
| 223 | |||
| 224 | struct CodaFid { | 202 | struct CodaFid { |
| 225 | u_int32_t opaque[4]; | 203 | u_int32_t opaque[4]; |
| 226 | }; | 204 | }; |
| @@ -228,8 +206,6 @@ struct CodaFid { | |||
| 228 | #define coda_f2i(fid)\ | 206 | #define coda_f2i(fid)\ |
| 229 | (fid ? (fid->opaque[3] ^ (fid->opaque[2]<<10) ^ (fid->opaque[1]<<20) ^ fid->opaque[0]) : 0) | 207 | (fid ? (fid->opaque[3] ^ (fid->opaque[2]<<10) ^ (fid->opaque[1]<<20) ^ fid->opaque[0]) : 0) |
| 230 | 208 | ||
| 231 | #endif | ||
| 232 | |||
| 233 | #ifndef _VENUS_VATTR_T_ | 209 | #ifndef _VENUS_VATTR_T_ |
| 234 | #define _VENUS_VATTR_T_ | 210 | #define _VENUS_VATTR_T_ |
| 235 | /* | 211 | /* |
| @@ -313,15 +289,7 @@ struct coda_statfs { | |||
| 313 | 289 | ||
| 314 | #define CIOC_KERNEL_VERSION _IOWR('c', 10, size_t) | 290 | #define CIOC_KERNEL_VERSION _IOWR('c', 10, size_t) |
| 315 | 291 | ||
| 316 | #if 0 | ||
| 317 | #define CODA_KERNEL_VERSION 0 /* don't care about kernel version number */ | ||
| 318 | #define CODA_KERNEL_VERSION 1 /* The old venus 4.6 compatible interface */ | ||
| 319 | #endif | ||
| 320 | #ifdef CONFIG_CODA_FS_OLD_API | ||
| 321 | #define CODA_KERNEL_VERSION 2 /* venus_lookup got an extra parameter */ | ||
| 322 | #else | ||
| 323 | #define CODA_KERNEL_VERSION 3 /* 128-bit file identifiers */ | 292 | #define CODA_KERNEL_VERSION 3 /* 128-bit file identifiers */ |
| 324 | #endif | ||
| 325 | 293 | ||
| 326 | /* | 294 | /* |
| 327 | * Venus <-> Coda RPC arguments | 295 | * Venus <-> Coda RPC arguments |
| @@ -329,16 +297,9 @@ struct coda_statfs { | |||
| 329 | struct coda_in_hdr { | 297 | struct coda_in_hdr { |
| 330 | u_int32_t opcode; | 298 | u_int32_t opcode; |
| 331 | u_int32_t unique; /* Keep multiple outstanding msgs distinct */ | 299 | u_int32_t unique; /* Keep multiple outstanding msgs distinct */ |
| 332 | #ifdef CONFIG_CODA_FS_OLD_API | ||
| 333 | u_int16_t pid; /* Common to all */ | ||
| 334 | u_int16_t pgid; /* Common to all */ | ||
| 335 | u_int16_t sid; /* Common to all */ | ||
| 336 | struct coda_cred cred; /* Common to all */ | ||
| 337 | #else | ||
| 338 | pid_t pid; | 300 | pid_t pid; |
| 339 | pid_t pgid; | 301 | pid_t pgid; |
| 340 | vuid_t uid; | 302 | vuid_t uid; |
| 341 | #endif | ||
| 342 | }; | 303 | }; |
| 343 | 304 | ||
| 344 | /* Really important that opcode and unique are 1st two fields! */ | 305 | /* Really important that opcode and unique are 1st two fields! */ |
| @@ -613,11 +574,7 @@ struct coda_vget_out { | |||
| 613 | /* CODA_PURGEUSER is a venus->kernel call */ | 574 | /* CODA_PURGEUSER is a venus->kernel call */ |
| 614 | struct coda_purgeuser_out { | 575 | struct coda_purgeuser_out { |
| 615 | struct coda_out_hdr oh; | 576 | struct coda_out_hdr oh; |
| 616 | #ifdef CONFIG_CODA_FS_OLD_API | ||
| 617 | struct coda_cred cred; | ||
| 618 | #else | ||
| 619 | vuid_t uid; | 577 | vuid_t uid; |
| 620 | #endif | ||
| 621 | }; | 578 | }; |
| 622 | 579 | ||
| 623 | /* coda_zapfile: */ | 580 | /* coda_zapfile: */ |
diff --git a/include/linux/coda_linux.h b/include/linux/coda_linux.h index 31b75311e2ca..dcc228aa335a 100644 --- a/include/linux/coda_linux.h +++ b/include/linux/coda_linux.h | |||
| @@ -37,7 +37,7 @@ extern const struct file_operations coda_ioctl_operations; | |||
| 37 | /* operations shared over more than one file */ | 37 | /* operations shared over more than one file */ |
| 38 | int coda_open(struct inode *i, struct file *f); | 38 | int coda_open(struct inode *i, struct file *f); |
| 39 | int coda_release(struct inode *i, struct file *f); | 39 | int coda_release(struct inode *i, struct file *f); |
| 40 | int coda_permission(struct inode *inode, int mask, struct nameidata *nd); | 40 | int coda_permission(struct inode *inode, int mask); |
| 41 | int coda_revalidate_inode(struct dentry *); | 41 | int coda_revalidate_inode(struct dentry *); |
| 42 | int coda_getattr(struct vfsmount *, struct dentry *, struct kstat *); | 42 | int coda_getattr(struct vfsmount *, struct dentry *, struct kstat *); |
| 43 | int coda_setattr(struct dentry *, struct iattr *); | 43 | int coda_setattr(struct dentry *, struct iattr *); |
diff --git a/include/linux/configfs.h b/include/linux/configfs.h index d62c19ff041c..7f627775c947 100644 --- a/include/linux/configfs.h +++ b/include/linux/configfs.h | |||
| @@ -40,6 +40,7 @@ | |||
| 40 | #include <linux/list.h> | 40 | #include <linux/list.h> |
| 41 | #include <linux/kref.h> | 41 | #include <linux/kref.h> |
| 42 | #include <linux/mutex.h> | 42 | #include <linux/mutex.h> |
| 43 | #include <linux/err.h> | ||
| 43 | 44 | ||
| 44 | #include <asm/atomic.h> | 45 | #include <asm/atomic.h> |
| 45 | 46 | ||
| @@ -129,8 +130,25 @@ struct configfs_attribute { | |||
| 129 | /* | 130 | /* |
| 130 | * Users often need to create attribute structures for their configurable | 131 | * Users often need to create attribute structures for their configurable |
| 131 | * attributes, containing a configfs_attribute member and function pointers | 132 | * attributes, containing a configfs_attribute member and function pointers |
| 132 | * for the show() and store() operations on that attribute. They can use | 133 | * for the show() and store() operations on that attribute. If they don't |
| 133 | * this macro (similar to sysfs' __ATTR) to make defining attributes easier. | 134 | * need anything else on the extended attribute structure, they can use |
| 135 | * this macro to define it The argument _item is the name of the | ||
| 136 | * config_item structure. | ||
| 137 | */ | ||
| 138 | #define CONFIGFS_ATTR_STRUCT(_item) \ | ||
| 139 | struct _item##_attribute { \ | ||
| 140 | struct configfs_attribute attr; \ | ||
| 141 | ssize_t (*show)(struct _item *, char *); \ | ||
| 142 | ssize_t (*store)(struct _item *, const char *, size_t); \ | ||
| 143 | } | ||
| 144 | |||
| 145 | /* | ||
| 146 | * With the extended attribute structure, users can use this macro | ||
| 147 | * (similar to sysfs' __ATTR) to make defining attributes easier. | ||
| 148 | * An example: | ||
| 149 | * #define MYITEM_ATTR(_name, _mode, _show, _store) \ | ||
| 150 | * struct myitem_attribute childless_attr_##_name = \ | ||
| 151 | * __CONFIGFS_ATTR(_name, _mode, _show, _store) | ||
| 134 | */ | 152 | */ |
| 135 | #define __CONFIGFS_ATTR(_name, _mode, _show, _store) \ | 153 | #define __CONFIGFS_ATTR(_name, _mode, _show, _store) \ |
| 136 | { \ | 154 | { \ |
| @@ -142,6 +160,52 @@ struct configfs_attribute { | |||
| 142 | .show = _show, \ | 160 | .show = _show, \ |
| 143 | .store = _store, \ | 161 | .store = _store, \ |
| 144 | } | 162 | } |
| 163 | /* Here is a readonly version, only requiring a show() operation */ | ||
| 164 | #define __CONFIGFS_ATTR_RO(_name, _show) \ | ||
| 165 | { \ | ||
| 166 | .attr = { \ | ||
| 167 | .ca_name = __stringify(_name), \ | ||
| 168 | .ca_mode = 0444, \ | ||
| 169 | .ca_owner = THIS_MODULE, \ | ||
| 170 | }, \ | ||
| 171 | .show = _show, \ | ||
| 172 | } | ||
| 173 | |||
| 174 | /* | ||
| 175 | * With these extended attributes, the simple show_attribute() and | ||
| 176 | * store_attribute() operations need to call the show() and store() of the | ||
| 177 | * attributes. This is a common pattern, so we provide a macro to define | ||
| 178 | * them. The argument _item is the name of the config_item structure. | ||
| 179 | * This macro expects the attributes to be named "struct <name>_attribute" | ||
| 180 | * and the function to_<name>() to exist; | ||
| 181 | */ | ||
| 182 | #define CONFIGFS_ATTR_OPS(_item) \ | ||
| 183 | static ssize_t _item##_attr_show(struct config_item *item, \ | ||
| 184 | struct configfs_attribute *attr, \ | ||
| 185 | char *page) \ | ||
| 186 | { \ | ||
| 187 | struct _item *_item = to_##_item(item); \ | ||
| 188 | struct _item##_attribute *_item##_attr = \ | ||
| 189 | container_of(attr, struct _item##_attribute, attr); \ | ||
| 190 | ssize_t ret = 0; \ | ||
| 191 | \ | ||
| 192 | if (_item##_attr->show) \ | ||
| 193 | ret = _item##_attr->show(_item, page); \ | ||
| 194 | return ret; \ | ||
| 195 | } \ | ||
| 196 | static ssize_t _item##_attr_store(struct config_item *item, \ | ||
| 197 | struct configfs_attribute *attr, \ | ||
| 198 | const char *page, size_t count) \ | ||
| 199 | { \ | ||
| 200 | struct _item *_item = to_##_item(item); \ | ||
| 201 | struct _item##_attribute *_item##_attr = \ | ||
| 202 | container_of(attr, struct _item##_attribute, attr); \ | ||
| 203 | ssize_t ret = -EINVAL; \ | ||
| 204 | \ | ||
| 205 | if (_item##_attr->store) \ | ||
| 206 | ret = _item##_attr->store(_item, page, count); \ | ||
| 207 | return ret; \ | ||
| 208 | } | ||
| 145 | 209 | ||
| 146 | /* | 210 | /* |
| 147 | * If allow_link() exists, the item can symlink(2) out to other | 211 | * If allow_link() exists, the item can symlink(2) out to other |
diff --git a/include/linux/connector.h b/include/linux/connector.h index 96a89d3d6727..5c7f9468f753 100644 --- a/include/linux/connector.h +++ b/include/linux/connector.h | |||
| @@ -38,8 +38,9 @@ | |||
| 38 | #define CN_W1_VAL 0x1 | 38 | #define CN_W1_VAL 0x1 |
| 39 | #define CN_IDX_V86D 0x4 | 39 | #define CN_IDX_V86D 0x4 |
| 40 | #define CN_VAL_V86D_UVESAFB 0x1 | 40 | #define CN_VAL_V86D_UVESAFB 0x1 |
| 41 | #define CN_IDX_BB 0x5 /* BlackBoard, from the TSP GPL sampling framework */ | ||
| 41 | 42 | ||
| 42 | #define CN_NETLINK_USERS 5 | 43 | #define CN_NETLINK_USERS 6 |
| 43 | 44 | ||
| 44 | /* | 45 | /* |
| 45 | * Maximum connector's message size. | 46 | * Maximum connector's message size. |
diff --git a/include/linux/consolemap.h b/include/linux/consolemap.h index e2bf7e5db39a..c4811da1338b 100644 --- a/include/linux/consolemap.h +++ b/include/linux/consolemap.h | |||
| @@ -3,6 +3,9 @@ | |||
| 3 | * | 3 | * |
| 4 | * Interface between console.c, selection.c and consolemap.c | 4 | * Interface between console.c, selection.c and consolemap.c |
| 5 | */ | 5 | */ |
| 6 | #ifndef __LINUX_CONSOLEMAP_H__ | ||
| 7 | #define __LINUX_CONSOLEMAP_H__ | ||
| 8 | |||
| 6 | #define LAT1_MAP 0 | 9 | #define LAT1_MAP 0 |
| 7 | #define GRAF_MAP 1 | 10 | #define GRAF_MAP 1 |
| 8 | #define IBMPC_MAP 2 | 11 | #define IBMPC_MAP 2 |
| @@ -10,6 +13,7 @@ | |||
| 10 | 13 | ||
| 11 | #include <linux/types.h> | 14 | #include <linux/types.h> |
| 12 | 15 | ||
| 16 | #ifdef CONFIG_CONSOLE_TRANSLATIONS | ||
| 13 | struct vc_data; | 17 | struct vc_data; |
| 14 | 18 | ||
| 15 | extern u16 inverse_translate(struct vc_data *conp, int glyph, int use_unicode); | 19 | extern u16 inverse_translate(struct vc_data *conp, int glyph, int use_unicode); |
| @@ -18,3 +22,13 @@ extern int conv_uni_to_pc(struct vc_data *conp, long ucs); | |||
| 18 | extern u32 conv_8bit_to_uni(unsigned char c); | 22 | extern u32 conv_8bit_to_uni(unsigned char c); |
| 19 | extern int conv_uni_to_8bit(u32 uni); | 23 | extern int conv_uni_to_8bit(u32 uni); |
| 20 | void console_map_init(void); | 24 | void console_map_init(void); |
| 25 | #else | ||
| 26 | #define inverse_translate(conp, glyph, uni) ((uint16_t)glyph) | ||
| 27 | #define set_translate(m, vc) ((unsigned short *)NULL) | ||
| 28 | #define conv_uni_to_pc(conp, ucs) ((int) (ucs > 0xff ? -1: ucs)) | ||
| 29 | #define conv_8bit_to_uni(c) ((uint32_t)(c)) | ||
| 30 | #define conv_uni_to_8bit(c) ((int) ((c) & 0xff)) | ||
| 31 | #define console_map_init(c) do { ; } while (0) | ||
| 32 | #endif /* CONFIG_CONSOLE_TRANSLATIONS */ | ||
| 33 | |||
| 34 | #endif /* __LINUX_CONSOLEMAP_H__ */ | ||
diff --git a/include/linux/cpu.h b/include/linux/cpu.h index 7464ba3b4333..d7faf8808497 100644 --- a/include/linux/cpu.h +++ b/include/linux/cpu.h | |||
| @@ -69,10 +69,11 @@ static inline void unregister_cpu_notifier(struct notifier_block *nb) | |||
| 69 | #endif | 69 | #endif |
| 70 | 70 | ||
| 71 | int cpu_up(unsigned int cpu); | 71 | int cpu_up(unsigned int cpu); |
| 72 | |||
| 73 | extern void cpu_hotplug_init(void); | 72 | extern void cpu_hotplug_init(void); |
| 73 | extern void cpu_maps_update_begin(void); | ||
| 74 | extern void cpu_maps_update_done(void); | ||
| 74 | 75 | ||
| 75 | #else | 76 | #else /* CONFIG_SMP */ |
| 76 | 77 | ||
| 77 | static inline int register_cpu_notifier(struct notifier_block *nb) | 78 | static inline int register_cpu_notifier(struct notifier_block *nb) |
| 78 | { | 79 | { |
| @@ -87,10 +88,16 @@ static inline void cpu_hotplug_init(void) | |||
| 87 | { | 88 | { |
| 88 | } | 89 | } |
| 89 | 90 | ||
| 91 | static inline void cpu_maps_update_begin(void) | ||
| 92 | { | ||
| 93 | } | ||
| 94 | |||
| 95 | static inline void cpu_maps_update_done(void) | ||
| 96 | { | ||
| 97 | } | ||
| 98 | |||
| 90 | #endif /* CONFIG_SMP */ | 99 | #endif /* CONFIG_SMP */ |
| 91 | extern struct sysdev_class cpu_sysdev_class; | 100 | extern struct sysdev_class cpu_sysdev_class; |
| 92 | extern void cpu_maps_update_begin(void); | ||
| 93 | extern void cpu_maps_update_done(void); | ||
| 94 | 101 | ||
| 95 | #ifdef CONFIG_HOTPLUG_CPU | 102 | #ifdef CONFIG_HOTPLUG_CPU |
| 96 | /* Stop CPUs going up and down. */ | 103 | /* Stop CPUs going up and down. */ |
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h index 2270ca5ec631..6fd5668aa572 100644 --- a/include/linux/cpufreq.h +++ b/include/linux/cpufreq.h | |||
| @@ -106,6 +106,7 @@ struct cpufreq_policy { | |||
| 106 | #define CPUFREQ_ADJUST (0) | 106 | #define CPUFREQ_ADJUST (0) |
| 107 | #define CPUFREQ_INCOMPATIBLE (1) | 107 | #define CPUFREQ_INCOMPATIBLE (1) |
| 108 | #define CPUFREQ_NOTIFY (2) | 108 | #define CPUFREQ_NOTIFY (2) |
| 109 | #define CPUFREQ_START (3) | ||
| 109 | 110 | ||
| 110 | #define CPUFREQ_SHARED_TYPE_NONE (0) /* None */ | 111 | #define CPUFREQ_SHARED_TYPE_NONE (0) /* None */ |
| 111 | #define CPUFREQ_SHARED_TYPE_HW (1) /* HW does needed coordination */ | 112 | #define CPUFREQ_SHARED_TYPE_HW (1) /* HW does needed coordination */ |
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index c24875bd9c5b..d3219d73f8e6 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h | |||
| @@ -17,6 +17,20 @@ | |||
| 17 | * For details of cpus_onto(), see bitmap_onto in lib/bitmap.c. | 17 | * For details of cpus_onto(), see bitmap_onto in lib/bitmap.c. |
| 18 | * For details of cpus_fold(), see bitmap_fold in lib/bitmap.c. | 18 | * For details of cpus_fold(), see bitmap_fold in lib/bitmap.c. |
| 19 | * | 19 | * |
| 20 | * . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . | ||
| 21 | * Note: The alternate operations with the suffix "_nr" are used | ||
| 22 | * to limit the range of the loop to nr_cpu_ids instead of | ||
| 23 | * NR_CPUS when NR_CPUS > 64 for performance reasons. | ||
| 24 | * If NR_CPUS is <= 64 then most assembler bitmask | ||
| 25 | * operators execute faster with a constant range, so | ||
| 26 | * the operator will continue to use NR_CPUS. | ||
| 27 | * | ||
| 28 | * Another consideration is that nr_cpu_ids is initialized | ||
| 29 | * to NR_CPUS and isn't lowered until the possible cpus are | ||
| 30 | * discovered (including any disabled cpus). So early uses | ||
| 31 | * will span the entire range of NR_CPUS. | ||
| 32 | * . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . | ||
| 33 | * | ||
| 20 | * The available cpumask operations are: | 34 | * The available cpumask operations are: |
| 21 | * | 35 | * |
| 22 | * void cpu_set(cpu, mask) turn on bit 'cpu' in mask | 36 | * void cpu_set(cpu, mask) turn on bit 'cpu' in mask |
| @@ -38,18 +52,52 @@ | |||
| 38 | * int cpus_empty(mask) Is mask empty (no bits sets)? | 52 | * int cpus_empty(mask) Is mask empty (no bits sets)? |
| 39 | * int cpus_full(mask) Is mask full (all bits sets)? | 53 | * int cpus_full(mask) Is mask full (all bits sets)? |
| 40 | * int cpus_weight(mask) Hamming weigh - number of set bits | 54 | * int cpus_weight(mask) Hamming weigh - number of set bits |
| 55 | * int cpus_weight_nr(mask) Same using nr_cpu_ids instead of NR_CPUS | ||
| 41 | * | 56 | * |
| 42 | * void cpus_shift_right(dst, src, n) Shift right | 57 | * void cpus_shift_right(dst, src, n) Shift right |
| 43 | * void cpus_shift_left(dst, src, n) Shift left | 58 | * void cpus_shift_left(dst, src, n) Shift left |
| 44 | * | 59 | * |
| 45 | * int first_cpu(mask) Number lowest set bit, or NR_CPUS | 60 | * int first_cpu(mask) Number lowest set bit, or NR_CPUS |
| 46 | * int next_cpu(cpu, mask) Next cpu past 'cpu', or NR_CPUS | 61 | * int next_cpu(cpu, mask) Next cpu past 'cpu', or NR_CPUS |
| 62 | * int next_cpu_nr(cpu, mask) Next cpu past 'cpu', or nr_cpu_ids | ||
| 47 | * | 63 | * |
| 48 | * cpumask_t cpumask_of_cpu(cpu) Return cpumask with bit 'cpu' set | 64 | * cpumask_t cpumask_of_cpu(cpu) Return cpumask with bit 'cpu' set |
| 65 | * (can be used as an lvalue) | ||
| 49 | * CPU_MASK_ALL Initializer - all bits set | 66 | * CPU_MASK_ALL Initializer - all bits set |
| 50 | * CPU_MASK_NONE Initializer - no bits set | 67 | * CPU_MASK_NONE Initializer - no bits set |
| 51 | * unsigned long *cpus_addr(mask) Array of unsigned long's in mask | 68 | * unsigned long *cpus_addr(mask) Array of unsigned long's in mask |
| 52 | * | 69 | * |
| 70 | * CPUMASK_ALLOC kmalloc's a structure that is a composite of many cpumask_t | ||
| 71 | * variables, and CPUMASK_PTR provides pointers to each field. | ||
| 72 | * | ||
| 73 | * The structure should be defined something like this: | ||
| 74 | * struct my_cpumasks { | ||
| 75 | * cpumask_t mask1; | ||
| 76 | * cpumask_t mask2; | ||
| 77 | * }; | ||
| 78 | * | ||
| 79 | * Usage is then: | ||
| 80 | * CPUMASK_ALLOC(my_cpumasks); | ||
| 81 | * CPUMASK_PTR(mask1, my_cpumasks); | ||
| 82 | * CPUMASK_PTR(mask2, my_cpumasks); | ||
| 83 | * | ||
| 84 | * --- DO NOT reference cpumask_t pointers until this check --- | ||
| 85 | * if (my_cpumasks == NULL) | ||
| 86 | * "kmalloc failed"... | ||
| 87 | * | ||
| 88 | * References are now pointers to the cpumask_t variables (*mask1, ...) | ||
| 89 | * | ||
| 90 | *if NR_CPUS > BITS_PER_LONG | ||
| 91 | * CPUMASK_ALLOC(m) Declares and allocates struct m *m = | ||
| 92 | * kmalloc(sizeof(*m), GFP_KERNEL) | ||
| 93 | * CPUMASK_FREE(m) Macro for kfree(m) | ||
| 94 | *else | ||
| 95 | * CPUMASK_ALLOC(m) Declares struct m _m, *m = &_m | ||
| 96 | * CPUMASK_FREE(m) Nop | ||
| 97 | *endif | ||
| 98 | * CPUMASK_PTR(v, m) Declares cpumask_t *v = &(m->v) | ||
| 99 | * ------------------------------------------------------------------------ | ||
| 100 | * | ||
| 53 | * int cpumask_scnprintf(buf, len, mask) Format cpumask for printing | 101 | * int cpumask_scnprintf(buf, len, mask) Format cpumask for printing |
| 54 | * int cpumask_parse_user(ubuf, ulen, mask) Parse ascii string as cpumask | 102 | * int cpumask_parse_user(ubuf, ulen, mask) Parse ascii string as cpumask |
| 55 | * int cpulist_scnprintf(buf, len, mask) Format cpumask as list for printing | 103 | * int cpulist_scnprintf(buf, len, mask) Format cpumask as list for printing |
| @@ -59,7 +107,8 @@ | |||
| 59 | * void cpus_onto(dst, orig, relmap) *dst = orig relative to relmap | 107 | * void cpus_onto(dst, orig, relmap) *dst = orig relative to relmap |
| 60 | * void cpus_fold(dst, orig, sz) dst bits = orig bits mod sz | 108 | * void cpus_fold(dst, orig, sz) dst bits = orig bits mod sz |
| 61 | * | 109 | * |
| 62 | * for_each_cpu_mask(cpu, mask) for-loop cpu over mask | 110 | * for_each_cpu_mask(cpu, mask) for-loop cpu over mask using NR_CPUS |
| 111 | * for_each_cpu_mask_nr(cpu, mask) for-loop cpu over mask using nr_cpu_ids | ||
| 63 | * | 112 | * |
| 64 | * int num_online_cpus() Number of online CPUs | 113 | * int num_online_cpus() Number of online CPUs |
| 65 | * int num_possible_cpus() Number of all possible CPUs | 114 | * int num_possible_cpus() Number of all possible CPUs |
| @@ -216,33 +265,30 @@ static inline void __cpus_shift_left(cpumask_t *dstp, | |||
| 216 | bitmap_shift_left(dstp->bits, srcp->bits, n, nbits); | 265 | bitmap_shift_left(dstp->bits, srcp->bits, n, nbits); |
| 217 | } | 266 | } |
| 218 | 267 | ||
| 219 | #ifdef CONFIG_SMP | 268 | /* |
| 220 | int __first_cpu(const cpumask_t *srcp); | 269 | * Special-case data structure for "single bit set only" constant CPU masks. |
| 221 | #define first_cpu(src) __first_cpu(&(src)) | 270 | * |
| 222 | int __next_cpu(int n, const cpumask_t *srcp); | 271 | * We pre-generate all the 64 (or 32) possible bit positions, with enough |
| 223 | #define next_cpu(n, src) __next_cpu((n), &(src)) | 272 | * padding to the left and the right, and return the constant pointer |
| 224 | #else | 273 | * appropriately offset. |
| 225 | #define first_cpu(src) ({ (void)(src); 0; }) | 274 | */ |
| 226 | #define next_cpu(n, src) ({ (void)(src); 1; }) | 275 | extern const unsigned long |
| 227 | #endif | 276 | cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)]; |
| 277 | |||
| 278 | static inline const cpumask_t *get_cpu_mask(unsigned int cpu) | ||
| 279 | { | ||
| 280 | const unsigned long *p = cpu_bit_bitmap[1 + cpu % BITS_PER_LONG]; | ||
| 281 | p -= cpu / BITS_PER_LONG; | ||
| 282 | return (const cpumask_t *)p; | ||
| 283 | } | ||
| 228 | 284 | ||
| 229 | #ifdef CONFIG_HAVE_CPUMASK_OF_CPU_MAP | 285 | /* |
| 230 | extern cpumask_t *cpumask_of_cpu_map; | 286 | * In cases where we take the address of the cpumask immediately, |
| 231 | #define cpumask_of_cpu(cpu) (cpumask_of_cpu_map[cpu]) | 287 | * gcc optimizes it out (it's a constant) and there's no huge stack |
| 288 | * variable created: | ||
| 289 | */ | ||
| 290 | #define cpumask_of_cpu(cpu) (*get_cpu_mask(cpu)) | ||
| 232 | 291 | ||
| 233 | #else | ||
| 234 | #define cpumask_of_cpu(cpu) \ | ||
| 235 | (*({ \ | ||
| 236 | typeof(_unused_cpumask_arg_) m; \ | ||
| 237 | if (sizeof(m) == sizeof(unsigned long)) { \ | ||
| 238 | m.bits[0] = 1UL<<(cpu); \ | ||
| 239 | } else { \ | ||
| 240 | cpus_clear(m); \ | ||
| 241 | cpu_set((cpu), m); \ | ||
| 242 | } \ | ||
| 243 | &m; \ | ||
| 244 | })) | ||
| 245 | #endif | ||
| 246 | 292 | ||
| 247 | #define CPU_MASK_LAST_WORD BITMAP_LAST_WORD_MASK(NR_CPUS) | 293 | #define CPU_MASK_LAST_WORD BITMAP_LAST_WORD_MASK(NR_CPUS) |
| 248 | 294 | ||
| @@ -281,6 +327,15 @@ extern cpumask_t cpu_mask_all; | |||
| 281 | 327 | ||
| 282 | #define cpus_addr(src) ((src).bits) | 328 | #define cpus_addr(src) ((src).bits) |
| 283 | 329 | ||
| 330 | #if NR_CPUS > BITS_PER_LONG | ||
| 331 | #define CPUMASK_ALLOC(m) struct m *m = kmalloc(sizeof(*m), GFP_KERNEL) | ||
| 332 | #define CPUMASK_FREE(m) kfree(m) | ||
| 333 | #else | ||
| 334 | #define CPUMASK_ALLOC(m) struct m _m, *m = &_m | ||
| 335 | #define CPUMASK_FREE(m) | ||
| 336 | #endif | ||
| 337 | #define CPUMASK_PTR(v, m) cpumask_t *v = &(m->v) | ||
| 338 | |||
| 284 | #define cpumask_scnprintf(buf, len, src) \ | 339 | #define cpumask_scnprintf(buf, len, src) \ |
| 285 | __cpumask_scnprintf((buf), (len), &(src), NR_CPUS) | 340 | __cpumask_scnprintf((buf), (len), &(src), NR_CPUS) |
| 286 | static inline int __cpumask_scnprintf(char *buf, int len, | 341 | static inline int __cpumask_scnprintf(char *buf, int len, |
| @@ -343,29 +398,59 @@ static inline void __cpus_fold(cpumask_t *dstp, const cpumask_t *origp, | |||
| 343 | bitmap_fold(dstp->bits, origp->bits, sz, nbits); | 398 | bitmap_fold(dstp->bits, origp->bits, sz, nbits); |
| 344 | } | 399 | } |
| 345 | 400 | ||
| 346 | #if NR_CPUS > 1 | 401 | #if NR_CPUS == 1 |
| 347 | #define for_each_cpu_mask(cpu, mask) \ | 402 | |
| 348 | for ((cpu) = first_cpu(mask); \ | 403 | #define nr_cpu_ids 1 |
| 349 | (cpu) < NR_CPUS; \ | 404 | #define first_cpu(src) ({ (void)(src); 0; }) |
| 350 | (cpu) = next_cpu((cpu), (mask))) | 405 | #define next_cpu(n, src) ({ (void)(src); 1; }) |
| 351 | #else /* NR_CPUS == 1 */ | 406 | #define any_online_cpu(mask) 0 |
| 352 | #define for_each_cpu_mask(cpu, mask) \ | 407 | #define for_each_cpu_mask(cpu, mask) \ |
| 353 | for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask) | 408 | for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask) |
| 354 | #endif /* NR_CPUS */ | 409 | |
| 410 | #else /* NR_CPUS > 1 */ | ||
| 411 | |||
| 412 | extern int nr_cpu_ids; | ||
| 413 | int __first_cpu(const cpumask_t *srcp); | ||
| 414 | int __next_cpu(int n, const cpumask_t *srcp); | ||
| 415 | int __any_online_cpu(const cpumask_t *mask); | ||
| 416 | |||
| 417 | #define first_cpu(src) __first_cpu(&(src)) | ||
| 418 | #define next_cpu(n, src) __next_cpu((n), &(src)) | ||
| 419 | #define any_online_cpu(mask) __any_online_cpu(&(mask)) | ||
| 420 | #define for_each_cpu_mask(cpu, mask) \ | ||
| 421 | for ((cpu) = -1; \ | ||
| 422 | (cpu) = next_cpu((cpu), (mask)), \ | ||
| 423 | (cpu) < NR_CPUS; ) | ||
| 424 | #endif | ||
| 425 | |||
| 426 | #if NR_CPUS <= 64 | ||
| 355 | 427 | ||
| 356 | #define next_cpu_nr(n, src) next_cpu(n, src) | 428 | #define next_cpu_nr(n, src) next_cpu(n, src) |
| 357 | #define cpus_weight_nr(cpumask) cpus_weight(cpumask) | 429 | #define cpus_weight_nr(cpumask) cpus_weight(cpumask) |
| 358 | #define for_each_cpu_mask_nr(cpu, mask) for_each_cpu_mask(cpu, mask) | 430 | #define for_each_cpu_mask_nr(cpu, mask) for_each_cpu_mask(cpu, mask) |
| 359 | 431 | ||
| 432 | #else /* NR_CPUS > 64 */ | ||
| 433 | |||
| 434 | int __next_cpu_nr(int n, const cpumask_t *srcp); | ||
| 435 | #define next_cpu_nr(n, src) __next_cpu_nr((n), &(src)) | ||
| 436 | #define cpus_weight_nr(cpumask) __cpus_weight(&(cpumask), nr_cpu_ids) | ||
| 437 | #define for_each_cpu_mask_nr(cpu, mask) \ | ||
| 438 | for ((cpu) = -1; \ | ||
| 439 | (cpu) = next_cpu_nr((cpu), (mask)), \ | ||
| 440 | (cpu) < nr_cpu_ids; ) | ||
| 441 | |||
| 442 | #endif /* NR_CPUS > 64 */ | ||
| 443 | |||
| 360 | /* | 444 | /* |
| 361 | * The following particular system cpumasks and operations manage | 445 | * The following particular system cpumasks and operations manage |
| 362 | * possible, present and online cpus. Each of them is a fixed size | 446 | * possible, present, active and online cpus. Each of them is a fixed size |
| 363 | * bitmap of size NR_CPUS. | 447 | * bitmap of size NR_CPUS. |
| 364 | * | 448 | * |
| 365 | * #ifdef CONFIG_HOTPLUG_CPU | 449 | * #ifdef CONFIG_HOTPLUG_CPU |
| 366 | * cpu_possible_map - has bit 'cpu' set iff cpu is populatable | 450 | * cpu_possible_map - has bit 'cpu' set iff cpu is populatable |
| 367 | * cpu_present_map - has bit 'cpu' set iff cpu is populated | 451 | * cpu_present_map - has bit 'cpu' set iff cpu is populated |
| 368 | * cpu_online_map - has bit 'cpu' set iff cpu available to scheduler | 452 | * cpu_online_map - has bit 'cpu' set iff cpu available to scheduler |
| 453 | * cpu_active_map - has bit 'cpu' set iff cpu available to migration | ||
| 369 | * #else | 454 | * #else |
| 370 | * cpu_possible_map - has bit 'cpu' set iff cpu is populated | 455 | * cpu_possible_map - has bit 'cpu' set iff cpu is populated |
| 371 | * cpu_present_map - copy of cpu_possible_map | 456 | * cpu_present_map - copy of cpu_possible_map |
| @@ -416,14 +501,16 @@ static inline void __cpus_fold(cpumask_t *dstp, const cpumask_t *origp, | |||
| 416 | extern cpumask_t cpu_possible_map; | 501 | extern cpumask_t cpu_possible_map; |
| 417 | extern cpumask_t cpu_online_map; | 502 | extern cpumask_t cpu_online_map; |
| 418 | extern cpumask_t cpu_present_map; | 503 | extern cpumask_t cpu_present_map; |
| 504 | extern cpumask_t cpu_active_map; | ||
| 419 | 505 | ||
| 420 | #if NR_CPUS > 1 | 506 | #if NR_CPUS > 1 |
| 421 | #define num_online_cpus() cpus_weight(cpu_online_map) | 507 | #define num_online_cpus() cpus_weight_nr(cpu_online_map) |
| 422 | #define num_possible_cpus() cpus_weight(cpu_possible_map) | 508 | #define num_possible_cpus() cpus_weight_nr(cpu_possible_map) |
| 423 | #define num_present_cpus() cpus_weight(cpu_present_map) | 509 | #define num_present_cpus() cpus_weight_nr(cpu_present_map) |
| 424 | #define cpu_online(cpu) cpu_isset((cpu), cpu_online_map) | 510 | #define cpu_online(cpu) cpu_isset((cpu), cpu_online_map) |
| 425 | #define cpu_possible(cpu) cpu_isset((cpu), cpu_possible_map) | 511 | #define cpu_possible(cpu) cpu_isset((cpu), cpu_possible_map) |
| 426 | #define cpu_present(cpu) cpu_isset((cpu), cpu_present_map) | 512 | #define cpu_present(cpu) cpu_isset((cpu), cpu_present_map) |
| 513 | #define cpu_active(cpu) cpu_isset((cpu), cpu_active_map) | ||
| 427 | #else | 514 | #else |
| 428 | #define num_online_cpus() 1 | 515 | #define num_online_cpus() 1 |
| 429 | #define num_possible_cpus() 1 | 516 | #define num_possible_cpus() 1 |
| @@ -431,21 +518,13 @@ extern cpumask_t cpu_present_map; | |||
| 431 | #define cpu_online(cpu) ((cpu) == 0) | 518 | #define cpu_online(cpu) ((cpu) == 0) |
| 432 | #define cpu_possible(cpu) ((cpu) == 0) | 519 | #define cpu_possible(cpu) ((cpu) == 0) |
| 433 | #define cpu_present(cpu) ((cpu) == 0) | 520 | #define cpu_present(cpu) ((cpu) == 0) |
| 521 | #define cpu_active(cpu) ((cpu) == 0) | ||
| 434 | #endif | 522 | #endif |
| 435 | 523 | ||
| 436 | #define cpu_is_offline(cpu) unlikely(!cpu_online(cpu)) | 524 | #define cpu_is_offline(cpu) unlikely(!cpu_online(cpu)) |
| 437 | 525 | ||
| 438 | #ifdef CONFIG_SMP | 526 | #define for_each_possible_cpu(cpu) for_each_cpu_mask_nr((cpu), cpu_possible_map) |
| 439 | extern int nr_cpu_ids; | 527 | #define for_each_online_cpu(cpu) for_each_cpu_mask_nr((cpu), cpu_online_map) |
| 440 | #define any_online_cpu(mask) __any_online_cpu(&(mask)) | 528 | #define for_each_present_cpu(cpu) for_each_cpu_mask_nr((cpu), cpu_present_map) |
| 441 | int __any_online_cpu(const cpumask_t *mask); | ||
| 442 | #else | ||
| 443 | #define nr_cpu_ids 1 | ||
| 444 | #define any_online_cpu(mask) 0 | ||
| 445 | #endif | ||
| 446 | |||
| 447 | #define for_each_possible_cpu(cpu) for_each_cpu_mask((cpu), cpu_possible_map) | ||
| 448 | #define for_each_online_cpu(cpu) for_each_cpu_mask((cpu), cpu_online_map) | ||
| 449 | #define for_each_present_cpu(cpu) for_each_cpu_mask((cpu), cpu_present_map) | ||
| 450 | 529 | ||
| 451 | #endif /* __LINUX_CPUMASK_H */ | 530 | #endif /* __LINUX_CPUMASK_H */ |
diff --git a/include/linux/cpuset.h b/include/linux/cpuset.h index 038578362b47..e8f450c499b0 100644 --- a/include/linux/cpuset.h +++ b/include/linux/cpuset.h | |||
| @@ -78,6 +78,8 @@ extern void cpuset_track_online_nodes(void); | |||
| 78 | 78 | ||
| 79 | extern int current_cpuset_is_being_rebound(void); | 79 | extern int current_cpuset_is_being_rebound(void); |
| 80 | 80 | ||
| 81 | extern void rebuild_sched_domains(void); | ||
| 82 | |||
| 81 | #else /* !CONFIG_CPUSETS */ | 83 | #else /* !CONFIG_CPUSETS */ |
| 82 | 84 | ||
| 83 | static inline int cpuset_init_early(void) { return 0; } | 85 | static inline int cpuset_init_early(void) { return 0; } |
| @@ -156,6 +158,11 @@ static inline int current_cpuset_is_being_rebound(void) | |||
| 156 | return 0; | 158 | return 0; |
| 157 | } | 159 | } |
| 158 | 160 | ||
| 161 | static inline void rebuild_sched_domains(void) | ||
| 162 | { | ||
| 163 | partition_sched_domains(0, NULL, NULL); | ||
| 164 | } | ||
| 165 | |||
| 159 | #endif /* !CONFIG_CPUSETS */ | 166 | #endif /* !CONFIG_CPUSETS */ |
| 160 | 167 | ||
| 161 | #endif /* _LINUX_CPUSET_H */ | 168 | #endif /* _LINUX_CPUSET_H */ |
diff --git a/include/linux/crash_dump.h b/include/linux/crash_dump.h index 22c7ac5cd80c..025e4f575103 100644 --- a/include/linux/crash_dump.h +++ b/include/linux/crash_dump.h | |||
| @@ -8,7 +8,13 @@ | |||
| 8 | #include <linux/proc_fs.h> | 8 | #include <linux/proc_fs.h> |
| 9 | 9 | ||
| 10 | #define ELFCORE_ADDR_MAX (-1ULL) | 10 | #define ELFCORE_ADDR_MAX (-1ULL) |
| 11 | |||
| 12 | #ifdef CONFIG_PROC_VMCORE | ||
| 11 | extern unsigned long long elfcorehdr_addr; | 13 | extern unsigned long long elfcorehdr_addr; |
| 14 | #else | ||
| 15 | static const unsigned long long elfcorehdr_addr = ELFCORE_ADDR_MAX; | ||
| 16 | #endif | ||
| 17 | |||
| 12 | extern ssize_t copy_oldmem_page(unsigned long, char *, size_t, | 18 | extern ssize_t copy_oldmem_page(unsigned long, char *, size_t, |
| 13 | unsigned long, int); | 19 | unsigned long, int); |
| 14 | extern const struct file_operations proc_vmcore_operations; | 20 | extern const struct file_operations proc_vmcore_operations; |
| @@ -22,5 +28,13 @@ extern struct proc_dir_entry *proc_vmcore; | |||
| 22 | 28 | ||
| 23 | #define vmcore_elf_check_arch(x) (elf_check_arch(x) || vmcore_elf_check_arch_cross(x)) | 29 | #define vmcore_elf_check_arch(x) (elf_check_arch(x) || vmcore_elf_check_arch_cross(x)) |
| 24 | 30 | ||
| 31 | static inline int is_kdump_kernel(void) | ||
| 32 | { | ||
| 33 | return (elfcorehdr_addr != ELFCORE_ADDR_MAX) ? 1 : 0; | ||
| 34 | } | ||
| 35 | #else /* !CONFIG_CRASH_DUMP */ | ||
| 36 | static inline int is_kdump_kernel(void) { return 0; } | ||
| 25 | #endif /* CONFIG_CRASH_DUMP */ | 37 | #endif /* CONFIG_CRASH_DUMP */ |
| 38 | |||
| 39 | extern unsigned long saved_max_pfn; | ||
| 26 | #endif /* LINUX_CRASHDUMP_H */ | 40 | #endif /* LINUX_CRASHDUMP_H */ |
diff --git a/include/linux/dca.h b/include/linux/dca.h index af61cd1f37e9..b00a753eda53 100644 --- a/include/linux/dca.h +++ b/include/linux/dca.h | |||
| @@ -10,6 +10,7 @@ void dca_unregister_notify(struct notifier_block *nb); | |||
| 10 | #define DCA_PROVIDER_REMOVE 0x0002 | 10 | #define DCA_PROVIDER_REMOVE 0x0002 |
| 11 | 11 | ||
| 12 | struct dca_provider { | 12 | struct dca_provider { |
| 13 | struct list_head node; | ||
| 13 | struct dca_ops *ops; | 14 | struct dca_ops *ops; |
| 14 | struct device *cd; | 15 | struct device *cd; |
| 15 | int id; | 16 | int id; |
| @@ -18,7 +19,9 @@ struct dca_provider { | |||
| 18 | struct dca_ops { | 19 | struct dca_ops { |
| 19 | int (*add_requester) (struct dca_provider *, struct device *); | 20 | int (*add_requester) (struct dca_provider *, struct device *); |
| 20 | int (*remove_requester) (struct dca_provider *, struct device *); | 21 | int (*remove_requester) (struct dca_provider *, struct device *); |
| 21 | u8 (*get_tag) (struct dca_provider *, int cpu); | 22 | u8 (*get_tag) (struct dca_provider *, struct device *, |
| 23 | int cpu); | ||
| 24 | int (*dev_managed) (struct dca_provider *, struct device *); | ||
| 22 | }; | 25 | }; |
| 23 | 26 | ||
| 24 | struct dca_provider *alloc_dca_provider(struct dca_ops *ops, int priv_size); | 27 | struct dca_provider *alloc_dca_provider(struct dca_ops *ops, int priv_size); |
| @@ -32,9 +35,11 @@ static inline void *dca_priv(struct dca_provider *dca) | |||
| 32 | } | 35 | } |
| 33 | 36 | ||
| 34 | /* Requester API */ | 37 | /* Requester API */ |
| 38 | #define DCA_GET_TAG_TWO_ARGS | ||
| 35 | int dca_add_requester(struct device *dev); | 39 | int dca_add_requester(struct device *dev); |
| 36 | int dca_remove_requester(struct device *dev); | 40 | int dca_remove_requester(struct device *dev); |
| 37 | u8 dca_get_tag(int cpu); | 41 | u8 dca_get_tag(int cpu); |
| 42 | u8 dca3_get_tag(struct device *dev, int cpu); | ||
| 38 | 43 | ||
| 39 | /* internal stuff */ | 44 | /* internal stuff */ |
| 40 | int __init dca_sysfs_init(void); | 45 | int __init dca_sysfs_init(void); |
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index 98202c672fde..07aa198f19ed 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h | |||
| @@ -230,6 +230,7 @@ extern void d_delete(struct dentry *); | |||
| 230 | extern struct dentry * d_alloc(struct dentry *, const struct qstr *); | 230 | extern struct dentry * d_alloc(struct dentry *, const struct qstr *); |
| 231 | extern struct dentry * d_alloc_anon(struct inode *); | 231 | extern struct dentry * d_alloc_anon(struct inode *); |
| 232 | extern struct dentry * d_splice_alias(struct inode *, struct dentry *); | 232 | extern struct dentry * d_splice_alias(struct inode *, struct dentry *); |
| 233 | extern struct dentry * d_add_ci(struct inode *, struct dentry *, struct qstr *); | ||
| 233 | extern void shrink_dcache_sb(struct super_block *); | 234 | extern void shrink_dcache_sb(struct super_block *); |
| 234 | extern void shrink_dcache_parent(struct dentry *); | 235 | extern void shrink_dcache_parent(struct dentry *); |
| 235 | extern void shrink_dcache_for_umount(struct super_block *); | 236 | extern void shrink_dcache_for_umount(struct super_block *); |
diff --git a/include/linux/debugfs.h b/include/linux/debugfs.h index 32755cdf68db..e1a6c046cea3 100644 --- a/include/linux/debugfs.h +++ b/include/linux/debugfs.h | |||
| @@ -44,6 +44,7 @@ struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent, | |||
| 44 | const char *dest); | 44 | const char *dest); |
| 45 | 45 | ||
| 46 | void debugfs_remove(struct dentry *dentry); | 46 | void debugfs_remove(struct dentry *dentry); |
| 47 | void debugfs_remove_recursive(struct dentry *dentry); | ||
| 47 | 48 | ||
| 48 | struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry, | 49 | struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry, |
| 49 | struct dentry *new_dir, const char *new_name); | 50 | struct dentry *new_dir, const char *new_name); |
| @@ -101,6 +102,9 @@ static inline struct dentry *debugfs_create_symlink(const char *name, | |||
| 101 | static inline void debugfs_remove(struct dentry *dentry) | 102 | static inline void debugfs_remove(struct dentry *dentry) |
| 102 | { } | 103 | { } |
| 103 | 104 | ||
| 105 | static inline void debugfs_remove_recursive(struct dentry *dentry) | ||
| 106 | { } | ||
| 107 | |||
| 104 | static inline struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry, | 108 | static inline struct dentry *debugfs_rename(struct dentry *old_dir, struct dentry *old_dentry, |
| 105 | struct dentry *new_dir, char *new_name) | 109 | struct dentry *new_dir, char *new_name) |
| 106 | { | 110 | { |
diff --git a/include/linux/delayacct.h b/include/linux/delayacct.h index ab94bc083558..f352f06fa063 100644 --- a/include/linux/delayacct.h +++ b/include/linux/delayacct.h | |||
| @@ -39,6 +39,8 @@ extern void __delayacct_blkio_start(void); | |||
| 39 | extern void __delayacct_blkio_end(void); | 39 | extern void __delayacct_blkio_end(void); |
| 40 | extern int __delayacct_add_tsk(struct taskstats *, struct task_struct *); | 40 | extern int __delayacct_add_tsk(struct taskstats *, struct task_struct *); |
| 41 | extern __u64 __delayacct_blkio_ticks(struct task_struct *); | 41 | extern __u64 __delayacct_blkio_ticks(struct task_struct *); |
| 42 | extern void __delayacct_freepages_start(void); | ||
| 43 | extern void __delayacct_freepages_end(void); | ||
| 42 | 44 | ||
| 43 | static inline int delayacct_is_task_waiting_on_io(struct task_struct *p) | 45 | static inline int delayacct_is_task_waiting_on_io(struct task_struct *p) |
| 44 | { | 46 | { |
| @@ -107,6 +109,18 @@ static inline __u64 delayacct_blkio_ticks(struct task_struct *tsk) | |||
| 107 | return 0; | 109 | return 0; |
| 108 | } | 110 | } |
| 109 | 111 | ||
| 112 | static inline void delayacct_freepages_start(void) | ||
| 113 | { | ||
| 114 | if (current->delays) | ||
| 115 | __delayacct_freepages_start(); | ||
| 116 | } | ||
| 117 | |||
| 118 | static inline void delayacct_freepages_end(void) | ||
| 119 | { | ||
| 120 | if (current->delays) | ||
| 121 | __delayacct_freepages_end(); | ||
| 122 | } | ||
| 123 | |||
| 110 | #else | 124 | #else |
| 111 | static inline void delayacct_set_flag(int flag) | 125 | static inline void delayacct_set_flag(int flag) |
| 112 | {} | 126 | {} |
| @@ -129,6 +143,11 @@ static inline __u64 delayacct_blkio_ticks(struct task_struct *tsk) | |||
| 129 | { return 0; } | 143 | { return 0; } |
| 130 | static inline int delayacct_is_task_waiting_on_io(struct task_struct *p) | 144 | static inline int delayacct_is_task_waiting_on_io(struct task_struct *p) |
| 131 | { return 0; } | 145 | { return 0; } |
| 146 | static inline void delayacct_freepages_start(void) | ||
| 147 | {} | ||
| 148 | static inline void delayacct_freepages_end(void) | ||
| 149 | {} | ||
| 150 | |||
| 132 | #endif /* CONFIG_TASK_DELAY_ACCT */ | 151 | #endif /* CONFIG_TASK_DELAY_ACCT */ |
| 133 | 152 | ||
| 134 | #endif | 153 | #endif |
diff --git a/include/linux/device.h b/include/linux/device.h index f71a78d123ae..d24a47f80f9c 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | #include <linux/kobject.h> | 16 | #include <linux/kobject.h> |
| 17 | #include <linux/klist.h> | 17 | #include <linux/klist.h> |
| 18 | #include <linux/list.h> | 18 | #include <linux/list.h> |
| 19 | #include <linux/lockdep.h> | ||
| 19 | #include <linux/compiler.h> | 20 | #include <linux/compiler.h> |
| 20 | #include <linux/types.h> | 21 | #include <linux/types.h> |
| 21 | #include <linux/module.h> | 22 | #include <linux/module.h> |
| @@ -24,17 +25,13 @@ | |||
| 24 | #include <asm/atomic.h> | 25 | #include <asm/atomic.h> |
| 25 | #include <asm/device.h> | 26 | #include <asm/device.h> |
| 26 | 27 | ||
| 27 | #define DEVICE_NAME_SIZE 50 | 28 | #define BUS_ID_SIZE 20 |
| 28 | /* DEVICE_NAME_HALF is really less than half to accommodate slop */ | ||
| 29 | #define DEVICE_NAME_HALF __stringify(20) | ||
| 30 | #define DEVICE_ID_SIZE 32 | ||
| 31 | #define BUS_ID_SIZE KOBJ_NAME_LEN | ||
| 32 | |||
| 33 | 29 | ||
| 34 | struct device; | 30 | struct device; |
| 35 | struct device_driver; | 31 | struct device_driver; |
| 36 | struct driver_private; | 32 | struct driver_private; |
| 37 | struct class; | 33 | struct class; |
| 34 | struct class_private; | ||
| 38 | struct bus_type; | 35 | struct bus_type; |
| 39 | struct bus_type_private; | 36 | struct bus_type_private; |
| 40 | 37 | ||
| @@ -186,13 +183,9 @@ struct class { | |||
| 186 | const char *name; | 183 | const char *name; |
| 187 | struct module *owner; | 184 | struct module *owner; |
| 188 | 185 | ||
| 189 | struct kset subsys; | ||
| 190 | struct list_head devices; | ||
| 191 | struct list_head interfaces; | ||
| 192 | struct kset class_dirs; | ||
| 193 | struct semaphore sem; /* locks children, devices, interfaces */ | ||
| 194 | struct class_attribute *class_attrs; | 186 | struct class_attribute *class_attrs; |
| 195 | struct device_attribute *dev_attrs; | 187 | struct device_attribute *dev_attrs; |
| 188 | struct kobject *dev_kobj; | ||
| 196 | 189 | ||
| 197 | int (*dev_uevent)(struct device *dev, struct kobj_uevent_env *env); | 190 | int (*dev_uevent)(struct device *dev, struct kobj_uevent_env *env); |
| 198 | 191 | ||
| @@ -203,13 +196,28 @@ struct class { | |||
| 203 | int (*resume)(struct device *dev); | 196 | int (*resume)(struct device *dev); |
| 204 | 197 | ||
| 205 | struct pm_ops *pm; | 198 | struct pm_ops *pm; |
| 199 | struct class_private *p; | ||
| 206 | }; | 200 | }; |
| 207 | 201 | ||
| 208 | extern int __must_check class_register(struct class *class); | 202 | extern struct kobject *sysfs_dev_block_kobj; |
| 203 | extern struct kobject *sysfs_dev_char_kobj; | ||
| 204 | extern int __must_check __class_register(struct class *class, | ||
| 205 | struct lock_class_key *key); | ||
| 209 | extern void class_unregister(struct class *class); | 206 | extern void class_unregister(struct class *class); |
| 210 | extern int class_for_each_device(struct class *class, void *data, | 207 | |
| 208 | /* This is a #define to keep the compiler from merging different | ||
| 209 | * instances of the __key variable */ | ||
| 210 | #define class_register(class) \ | ||
| 211 | ({ \ | ||
| 212 | static struct lock_class_key __key; \ | ||
| 213 | __class_register(class, &__key); \ | ||
| 214 | }) | ||
| 215 | |||
| 216 | extern int class_for_each_device(struct class *class, struct device *start, | ||
| 217 | void *data, | ||
| 211 | int (*fn)(struct device *dev, void *data)); | 218 | int (*fn)(struct device *dev, void *data)); |
| 212 | extern struct device *class_find_device(struct class *class, void *data, | 219 | extern struct device *class_find_device(struct class *class, |
| 220 | struct device *start, void *data, | ||
| 213 | int (*match)(struct device *, void *)); | 221 | int (*match)(struct device *, void *)); |
| 214 | 222 | ||
| 215 | struct class_attribute { | 223 | struct class_attribute { |
| @@ -237,9 +245,19 @@ struct class_interface { | |||
| 237 | extern int __must_check class_interface_register(struct class_interface *); | 245 | extern int __must_check class_interface_register(struct class_interface *); |
| 238 | extern void class_interface_unregister(struct class_interface *); | 246 | extern void class_interface_unregister(struct class_interface *); |
| 239 | 247 | ||
| 240 | extern struct class *class_create(struct module *owner, const char *name); | 248 | extern struct class * __must_check __class_create(struct module *owner, |
| 249 | const char *name, | ||
| 250 | struct lock_class_key *key); | ||
| 241 | extern void class_destroy(struct class *cls); | 251 | extern void class_destroy(struct class *cls); |
| 242 | 252 | ||
| 253 | /* This is a #define to keep the compiler from merging different | ||
| 254 | * instances of the __key variable */ | ||
| 255 | #define class_create(owner, name) \ | ||
| 256 | ({ \ | ||
| 257 | static struct lock_class_key __key; \ | ||
| 258 | __class_create(owner, name, &__key); \ | ||
| 259 | }) | ||
| 260 | |||
| 243 | /* | 261 | /* |
| 244 | * The type of device, "struct device" is embedded in. A class | 262 | * The type of device, "struct device" is embedded in. A class |
| 245 | * or bus can contain devices of different types | 263 | * or bus can contain devices of different types |
| @@ -468,14 +486,10 @@ extern struct device *device_create_vargs(struct class *cls, | |||
| 468 | const char *fmt, | 486 | const char *fmt, |
| 469 | va_list vargs); | 487 | va_list vargs); |
| 470 | extern struct device *device_create(struct class *cls, struct device *parent, | 488 | extern struct device *device_create(struct class *cls, struct device *parent, |
| 471 | dev_t devt, const char *fmt, ...) | 489 | dev_t devt, void *drvdata, |
| 472 | __attribute__((format(printf, 4, 5))); | 490 | const char *fmt, ...) |
| 473 | extern struct device *device_create_drvdata(struct class *cls, | ||
| 474 | struct device *parent, | ||
| 475 | dev_t devt, | ||
| 476 | void *drvdata, | ||
| 477 | const char *fmt, ...) | ||
| 478 | __attribute__((format(printf, 5, 6))); | 491 | __attribute__((format(printf, 5, 6))); |
| 492 | #define device_create_drvdata device_create | ||
| 479 | extern void device_destroy(struct class *cls, dev_t devt); | 493 | extern void device_destroy(struct class *cls, dev_t devt); |
| 480 | 494 | ||
| 481 | /* | 495 | /* |
diff --git a/include/linux/dirent.h b/include/linux/dirent.h index 5d6023b87800..f072fb8d10a3 100644 --- a/include/linux/dirent.h +++ b/include/linux/dirent.h | |||
| @@ -1,23 +1,6 @@ | |||
| 1 | #ifndef _LINUX_DIRENT_H | 1 | #ifndef _LINUX_DIRENT_H |
| 2 | #define _LINUX_DIRENT_H | 2 | #define _LINUX_DIRENT_H |
| 3 | 3 | ||
| 4 | struct dirent { | ||
| 5 | long d_ino; | ||
| 6 | __kernel_off_t d_off; | ||
| 7 | unsigned short d_reclen; | ||
| 8 | char d_name[256]; /* We must not include limits.h! */ | ||
| 9 | }; | ||
| 10 | |||
| 11 | struct dirent64 { | ||
| 12 | __u64 d_ino; | ||
| 13 | __s64 d_off; | ||
| 14 | unsigned short d_reclen; | ||
| 15 | unsigned char d_type; | ||
| 16 | char d_name[256]; | ||
| 17 | }; | ||
| 18 | |||
| 19 | #ifdef __KERNEL__ | ||
| 20 | |||
| 21 | struct linux_dirent64 { | 4 | struct linux_dirent64 { |
| 22 | u64 d_ino; | 5 | u64 d_ino; |
| 23 | s64 d_off; | 6 | s64 d_off; |
| @@ -26,7 +9,4 @@ struct linux_dirent64 { | |||
| 26 | char d_name[0]; | 9 | char d_name[0]; |
| 27 | }; | 10 | }; |
| 28 | 11 | ||
| 29 | #endif /* __KERNEL__ */ | ||
| 30 | |||
| 31 | |||
| 32 | #endif | 12 | #endif |
diff --git a/include/linux/dm9000.h b/include/linux/dm9000.h index fc82446b6425..c30879cf93bc 100644 --- a/include/linux/dm9000.h +++ b/include/linux/dm9000.h | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | 27 | ||
| 28 | struct dm9000_plat_data { | 28 | struct dm9000_plat_data { |
| 29 | unsigned int flags; | 29 | unsigned int flags; |
| 30 | unsigned char dev_addr[6]; | ||
| 30 | 31 | ||
| 31 | /* allow replacement IO routines */ | 32 | /* allow replacement IO routines */ |
| 32 | 33 | ||
diff --git a/include/linux/dma-attrs.h b/include/linux/dma-attrs.h index 1677e2bfa00c..71ad34eca6e3 100644 --- a/include/linux/dma-attrs.h +++ b/include/linux/dma-attrs.h | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | */ | 12 | */ |
| 13 | enum dma_attr { | 13 | enum dma_attr { |
| 14 | DMA_ATTR_WRITE_BARRIER, | 14 | DMA_ATTR_WRITE_BARRIER, |
| 15 | DMA_ATTR_WEAK_ORDERING, | ||
| 15 | DMA_ATTR_MAX, | 16 | DMA_ATTR_MAX, |
| 16 | }; | 17 | }; |
| 17 | 18 | ||
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index d08a5c5eb928..adb0b084eb5a 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h | |||
| @@ -89,10 +89,23 @@ enum dma_transaction_type { | |||
| 89 | DMA_MEMSET, | 89 | DMA_MEMSET, |
| 90 | DMA_MEMCPY_CRC32C, | 90 | DMA_MEMCPY_CRC32C, |
| 91 | DMA_INTERRUPT, | 91 | DMA_INTERRUPT, |
| 92 | DMA_SLAVE, | ||
| 92 | }; | 93 | }; |
| 93 | 94 | ||
| 94 | /* last transaction type for creation of the capabilities mask */ | 95 | /* last transaction type for creation of the capabilities mask */ |
| 95 | #define DMA_TX_TYPE_END (DMA_INTERRUPT + 1) | 96 | #define DMA_TX_TYPE_END (DMA_SLAVE + 1) |
| 97 | |||
| 98 | /** | ||
| 99 | * enum dma_slave_width - DMA slave register access width. | ||
| 100 | * @DMA_SLAVE_WIDTH_8BIT: Do 8-bit slave register accesses | ||
| 101 | * @DMA_SLAVE_WIDTH_16BIT: Do 16-bit slave register accesses | ||
| 102 | * @DMA_SLAVE_WIDTH_32BIT: Do 32-bit slave register accesses | ||
| 103 | */ | ||
| 104 | enum dma_slave_width { | ||
| 105 | DMA_SLAVE_WIDTH_8BIT, | ||
| 106 | DMA_SLAVE_WIDTH_16BIT, | ||
| 107 | DMA_SLAVE_WIDTH_32BIT, | ||
| 108 | }; | ||
| 96 | 109 | ||
| 97 | /** | 110 | /** |
| 98 | * enum dma_ctrl_flags - DMA flags to augment operation preparation, | 111 | * enum dma_ctrl_flags - DMA flags to augment operation preparation, |
| @@ -102,10 +115,14 @@ enum dma_transaction_type { | |||
| 102 | * @DMA_CTRL_ACK - the descriptor cannot be reused until the client | 115 | * @DMA_CTRL_ACK - the descriptor cannot be reused until the client |
| 103 | * acknowledges receipt, i.e. has has a chance to establish any | 116 | * acknowledges receipt, i.e. has has a chance to establish any |
| 104 | * dependency chains | 117 | * dependency chains |
| 118 | * @DMA_COMPL_SKIP_SRC_UNMAP - set to disable dma-unmapping the source buffer(s) | ||
| 119 | * @DMA_COMPL_SKIP_DEST_UNMAP - set to disable dma-unmapping the destination(s) | ||
| 105 | */ | 120 | */ |
| 106 | enum dma_ctrl_flags { | 121 | enum dma_ctrl_flags { |
| 107 | DMA_PREP_INTERRUPT = (1 << 0), | 122 | DMA_PREP_INTERRUPT = (1 << 0), |
| 108 | DMA_CTRL_ACK = (1 << 1), | 123 | DMA_CTRL_ACK = (1 << 1), |
| 124 | DMA_COMPL_SKIP_SRC_UNMAP = (1 << 2), | ||
| 125 | DMA_COMPL_SKIP_DEST_UNMAP = (1 << 3), | ||
| 109 | }; | 126 | }; |
| 110 | 127 | ||
| 111 | /** | 128 | /** |
| @@ -115,6 +132,32 @@ enum dma_ctrl_flags { | |||
| 115 | typedef struct { DECLARE_BITMAP(bits, DMA_TX_TYPE_END); } dma_cap_mask_t; | 132 | typedef struct { DECLARE_BITMAP(bits, DMA_TX_TYPE_END); } dma_cap_mask_t; |
| 116 | 133 | ||
| 117 | /** | 134 | /** |
| 135 | * struct dma_slave - Information about a DMA slave | ||
| 136 | * @dev: device acting as DMA slave | ||
| 137 | * @dma_dev: required DMA master device. If non-NULL, the client can not be | ||
| 138 | * bound to other masters than this. | ||
| 139 | * @tx_reg: physical address of data register used for | ||
| 140 | * memory-to-peripheral transfers | ||
| 141 | * @rx_reg: physical address of data register used for | ||
| 142 | * peripheral-to-memory transfers | ||
| 143 | * @reg_width: peripheral register width | ||
| 144 | * | ||
| 145 | * If dma_dev is non-NULL, the client can not be bound to other DMA | ||
| 146 | * masters than the one corresponding to this device. The DMA master | ||
| 147 | * driver may use this to determine if there is controller-specific | ||
| 148 | * data wrapped around this struct. Drivers of platform code that sets | ||
| 149 | * the dma_dev field must therefore make sure to use an appropriate | ||
| 150 | * controller-specific dma slave structure wrapping this struct. | ||
| 151 | */ | ||
| 152 | struct dma_slave { | ||
| 153 | struct device *dev; | ||
| 154 | struct device *dma_dev; | ||
| 155 | dma_addr_t tx_reg; | ||
| 156 | dma_addr_t rx_reg; | ||
| 157 | enum dma_slave_width reg_width; | ||
| 158 | }; | ||
| 159 | |||
| 160 | /** | ||
| 118 | * struct dma_chan_percpu - the per-CPU part of struct dma_chan | 161 | * struct dma_chan_percpu - the per-CPU part of struct dma_chan |
| 119 | * @refcount: local_t used for open-coded "bigref" counting | 162 | * @refcount: local_t used for open-coded "bigref" counting |
| 120 | * @memcpy_count: transaction counter | 163 | * @memcpy_count: transaction counter |
| @@ -139,6 +182,7 @@ struct dma_chan_percpu { | |||
| 139 | * @rcu: the DMA channel's RCU head | 182 | * @rcu: the DMA channel's RCU head |
| 140 | * @device_node: used to add this to the device chan list | 183 | * @device_node: used to add this to the device chan list |
| 141 | * @local: per-cpu pointer to a struct dma_chan_percpu | 184 | * @local: per-cpu pointer to a struct dma_chan_percpu |
| 185 | * @client-count: how many clients are using this channel | ||
| 142 | */ | 186 | */ |
| 143 | struct dma_chan { | 187 | struct dma_chan { |
| 144 | struct dma_device *device; | 188 | struct dma_device *device; |
| @@ -154,6 +198,7 @@ struct dma_chan { | |||
| 154 | 198 | ||
| 155 | struct list_head device_node; | 199 | struct list_head device_node; |
| 156 | struct dma_chan_percpu *local; | 200 | struct dma_chan_percpu *local; |
| 201 | int client_count; | ||
| 157 | }; | 202 | }; |
| 158 | 203 | ||
| 159 | #define to_dma_chan(p) container_of(p, struct dma_chan, dev) | 204 | #define to_dma_chan(p) container_of(p, struct dma_chan, dev) |
| @@ -202,11 +247,14 @@ typedef enum dma_state_client (*dma_event_callback) (struct dma_client *client, | |||
| 202 | * @event_callback: func ptr to call when something happens | 247 | * @event_callback: func ptr to call when something happens |
| 203 | * @cap_mask: only return channels that satisfy the requested capabilities | 248 | * @cap_mask: only return channels that satisfy the requested capabilities |
| 204 | * a value of zero corresponds to any capability | 249 | * a value of zero corresponds to any capability |
| 250 | * @slave: data for preparing slave transfer. Must be non-NULL iff the | ||
| 251 | * DMA_SLAVE capability is requested. | ||
| 205 | * @global_node: list_head for global dma_client_list | 252 | * @global_node: list_head for global dma_client_list |
| 206 | */ | 253 | */ |
| 207 | struct dma_client { | 254 | struct dma_client { |
| 208 | dma_event_callback event_callback; | 255 | dma_event_callback event_callback; |
| 209 | dma_cap_mask_t cap_mask; | 256 | dma_cap_mask_t cap_mask; |
| 257 | struct dma_slave *slave; | ||
| 210 | struct list_head global_node; | 258 | struct list_head global_node; |
| 211 | }; | 259 | }; |
| 212 | 260 | ||
| @@ -263,6 +311,8 @@ struct dma_async_tx_descriptor { | |||
| 263 | * @device_prep_dma_zero_sum: prepares a zero_sum operation | 311 | * @device_prep_dma_zero_sum: prepares a zero_sum operation |
| 264 | * @device_prep_dma_memset: prepares a memset operation | 312 | * @device_prep_dma_memset: prepares a memset operation |
| 265 | * @device_prep_dma_interrupt: prepares an end of chain interrupt operation | 313 | * @device_prep_dma_interrupt: prepares an end of chain interrupt operation |
| 314 | * @device_prep_slave_sg: prepares a slave dma operation | ||
| 315 | * @device_terminate_all: terminate all pending operations | ||
| 266 | * @device_issue_pending: push pending transactions to hardware | 316 | * @device_issue_pending: push pending transactions to hardware |
| 267 | */ | 317 | */ |
| 268 | struct dma_device { | 318 | struct dma_device { |
| @@ -279,7 +329,8 @@ struct dma_device { | |||
| 279 | int dev_id; | 329 | int dev_id; |
| 280 | struct device *dev; | 330 | struct device *dev; |
| 281 | 331 | ||
| 282 | int (*device_alloc_chan_resources)(struct dma_chan *chan); | 332 | int (*device_alloc_chan_resources)(struct dma_chan *chan, |
| 333 | struct dma_client *client); | ||
| 283 | void (*device_free_chan_resources)(struct dma_chan *chan); | 334 | void (*device_free_chan_resources)(struct dma_chan *chan); |
| 284 | 335 | ||
| 285 | struct dma_async_tx_descriptor *(*device_prep_dma_memcpy)( | 336 | struct dma_async_tx_descriptor *(*device_prep_dma_memcpy)( |
| @@ -297,6 +348,12 @@ struct dma_device { | |||
| 297 | struct dma_async_tx_descriptor *(*device_prep_dma_interrupt)( | 348 | struct dma_async_tx_descriptor *(*device_prep_dma_interrupt)( |
| 298 | struct dma_chan *chan, unsigned long flags); | 349 | struct dma_chan *chan, unsigned long flags); |
| 299 | 350 | ||
| 351 | struct dma_async_tx_descriptor *(*device_prep_slave_sg)( | ||
| 352 | struct dma_chan *chan, struct scatterlist *sgl, | ||
| 353 | unsigned int sg_len, enum dma_data_direction direction, | ||
| 354 | unsigned long flags); | ||
| 355 | void (*device_terminate_all)(struct dma_chan *chan); | ||
| 356 | |||
| 300 | enum dma_status (*device_is_tx_complete)(struct dma_chan *chan, | 357 | enum dma_status (*device_is_tx_complete)(struct dma_chan *chan, |
| 301 | dma_cookie_t cookie, dma_cookie_t *last, | 358 | dma_cookie_t cookie, dma_cookie_t *last, |
| 302 | dma_cookie_t *used); | 359 | dma_cookie_t *used); |
| @@ -318,16 +375,14 @@ dma_cookie_t dma_async_memcpy_pg_to_pg(struct dma_chan *chan, | |||
| 318 | void dma_async_tx_descriptor_init(struct dma_async_tx_descriptor *tx, | 375 | void dma_async_tx_descriptor_init(struct dma_async_tx_descriptor *tx, |
| 319 | struct dma_chan *chan); | 376 | struct dma_chan *chan); |
| 320 | 377 | ||
| 321 | static inline void | 378 | static inline void async_tx_ack(struct dma_async_tx_descriptor *tx) |
| 322 | async_tx_ack(struct dma_async_tx_descriptor *tx) | ||
| 323 | { | 379 | { |
| 324 | tx->flags |= DMA_CTRL_ACK; | 380 | tx->flags |= DMA_CTRL_ACK; |
| 325 | } | 381 | } |
| 326 | 382 | ||
| 327 | static inline int | 383 | static inline bool async_tx_test_ack(struct dma_async_tx_descriptor *tx) |
| 328 | async_tx_test_ack(struct dma_async_tx_descriptor *tx) | ||
| 329 | { | 384 | { |
| 330 | return tx->flags & DMA_CTRL_ACK; | 385 | return (tx->flags & DMA_CTRL_ACK) == DMA_CTRL_ACK; |
| 331 | } | 386 | } |
| 332 | 387 | ||
| 333 | #define first_dma_cap(mask) __first_dma_cap(&(mask)) | 388 | #define first_dma_cap(mask) __first_dma_cap(&(mask)) |
diff --git a/include/linux/dw_dmac.h b/include/linux/dw_dmac.h new file mode 100644 index 000000000000..04d217b442bf --- /dev/null +++ b/include/linux/dw_dmac.h | |||
| @@ -0,0 +1,62 @@ | |||
| 1 | /* | ||
| 2 | * Driver for the Synopsys DesignWare DMA Controller (aka DMACA on | ||
| 3 | * AVR32 systems.) | ||
| 4 | * | ||
| 5 | * Copyright (C) 2007 Atmel Corporation | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | */ | ||
| 11 | #ifndef DW_DMAC_H | ||
| 12 | #define DW_DMAC_H | ||
| 13 | |||
| 14 | #include <linux/dmaengine.h> | ||
| 15 | |||
| 16 | /** | ||
| 17 | * struct dw_dma_platform_data - Controller configuration parameters | ||
| 18 | * @nr_channels: Number of channels supported by hardware (max 8) | ||
| 19 | */ | ||
| 20 | struct dw_dma_platform_data { | ||
| 21 | unsigned int nr_channels; | ||
| 22 | }; | ||
| 23 | |||
| 24 | /** | ||
| 25 | * struct dw_dma_slave - Controller-specific information about a slave | ||
| 26 | * @slave: Generic information about the slave | ||
| 27 | * @ctl_lo: Platform-specific initializer for the CTL_LO register | ||
| 28 | * @cfg_hi: Platform-specific initializer for the CFG_HI register | ||
| 29 | * @cfg_lo: Platform-specific initializer for the CFG_LO register | ||
| 30 | */ | ||
| 31 | struct dw_dma_slave { | ||
| 32 | struct dma_slave slave; | ||
| 33 | u32 cfg_hi; | ||
| 34 | u32 cfg_lo; | ||
| 35 | }; | ||
| 36 | |||
| 37 | /* Platform-configurable bits in CFG_HI */ | ||
| 38 | #define DWC_CFGH_FCMODE (1 << 0) | ||
| 39 | #define DWC_CFGH_FIFO_MODE (1 << 1) | ||
| 40 | #define DWC_CFGH_PROTCTL(x) ((x) << 2) | ||
| 41 | #define DWC_CFGH_SRC_PER(x) ((x) << 7) | ||
| 42 | #define DWC_CFGH_DST_PER(x) ((x) << 11) | ||
| 43 | |||
| 44 | /* Platform-configurable bits in CFG_LO */ | ||
| 45 | #define DWC_CFGL_PRIO(x) ((x) << 5) /* priority */ | ||
| 46 | #define DWC_CFGL_LOCK_CH_XFER (0 << 12) /* scope of LOCK_CH */ | ||
| 47 | #define DWC_CFGL_LOCK_CH_BLOCK (1 << 12) | ||
| 48 | #define DWC_CFGL_LOCK_CH_XACT (2 << 12) | ||
| 49 | #define DWC_CFGL_LOCK_BUS_XFER (0 << 14) /* scope of LOCK_BUS */ | ||
| 50 | #define DWC_CFGL_LOCK_BUS_BLOCK (1 << 14) | ||
| 51 | #define DWC_CFGL_LOCK_BUS_XACT (2 << 14) | ||
| 52 | #define DWC_CFGL_LOCK_CH (1 << 15) /* channel lockout */ | ||
| 53 | #define DWC_CFGL_LOCK_BUS (1 << 16) /* busmaster lockout */ | ||
| 54 | #define DWC_CFGL_HS_DST_POL (1 << 18) /* dst handshake active low */ | ||
| 55 | #define DWC_CFGL_HS_SRC_POL (1 << 19) /* src handshake active low */ | ||
| 56 | |||
| 57 | static inline struct dw_dma_slave *to_dw_dma_slave(struct dma_slave *slave) | ||
| 58 | { | ||
| 59 | return container_of(slave, struct dw_dma_slave, slave); | ||
| 60 | } | ||
| 61 | |||
| 62 | #endif /* DW_DMAC_H */ | ||
diff --git a/include/linux/eisa.h b/include/linux/eisa.h index fe806b6f030d..e61c0be2a459 100644 --- a/include/linux/eisa.h +++ b/include/linux/eisa.h | |||
| @@ -40,7 +40,7 @@ struct eisa_device { | |||
| 40 | u64 dma_mask; | 40 | u64 dma_mask; |
| 41 | struct device dev; /* generic device */ | 41 | struct device dev; /* generic device */ |
| 42 | #ifdef CONFIG_EISA_NAMES | 42 | #ifdef CONFIG_EISA_NAMES |
| 43 | char pretty_name[DEVICE_NAME_SIZE]; | 43 | char pretty_name[50]; |
| 44 | #endif | 44 | #endif |
| 45 | }; | 45 | }; |
| 46 | 46 | ||
diff --git a/include/linux/ethtool.h b/include/linux/ethtool.h index 8bb5e87df365..b4b038b89ee6 100644 --- a/include/linux/ethtool.h +++ b/include/linux/ethtool.h | |||
| @@ -27,9 +27,24 @@ struct ethtool_cmd { | |||
| 27 | __u8 autoneg; /* Enable or disable autonegotiation */ | 27 | __u8 autoneg; /* Enable or disable autonegotiation */ |
| 28 | __u32 maxtxpkt; /* Tx pkts before generating tx int */ | 28 | __u32 maxtxpkt; /* Tx pkts before generating tx int */ |
| 29 | __u32 maxrxpkt; /* Rx pkts before generating rx int */ | 29 | __u32 maxrxpkt; /* Rx pkts before generating rx int */ |
| 30 | __u32 reserved[4]; | 30 | __u16 speed_hi; |
| 31 | __u16 reserved2; | ||
| 32 | __u32 reserved[3]; | ||
| 31 | }; | 33 | }; |
| 32 | 34 | ||
| 35 | static inline void ethtool_cmd_speed_set(struct ethtool_cmd *ep, | ||
| 36 | __u32 speed) | ||
| 37 | { | ||
| 38 | |||
| 39 | ep->speed = (__u16)speed; | ||
| 40 | ep->speed_hi = (__u16)(speed >> 16); | ||
| 41 | } | ||
| 42 | |||
| 43 | static inline __u32 ethtool_cmd_speed(struct ethtool_cmd *ep) | ||
| 44 | { | ||
| 45 | return (ep->speed_hi << 16) | ep->speed; | ||
| 46 | } | ||
| 47 | |||
| 33 | #define ETHTOOL_BUSINFO_LEN 32 | 48 | #define ETHTOOL_BUSINFO_LEN 32 |
| 34 | /* these strings are set to whatever the driver author decides... */ | 49 | /* these strings are set to whatever the driver author decides... */ |
| 35 | struct ethtool_drvinfo { | 50 | struct ethtool_drvinfo { |
diff --git a/include/linux/eventfd.h b/include/linux/eventfd.h index a701399b7fed..a667637b54e3 100644 --- a/include/linux/eventfd.h +++ b/include/linux/eventfd.h | |||
| @@ -10,6 +10,13 @@ | |||
| 10 | 10 | ||
| 11 | #ifdef CONFIG_EVENTFD | 11 | #ifdef CONFIG_EVENTFD |
| 12 | 12 | ||
| 13 | /* For O_CLOEXEC and O_NONBLOCK */ | ||
| 14 | #include <linux/fcntl.h> | ||
| 15 | |||
| 16 | /* Flags for eventfd2. */ | ||
| 17 | #define EFD_CLOEXEC O_CLOEXEC | ||
| 18 | #define EFD_NONBLOCK O_NONBLOCK | ||
| 19 | |||
| 13 | struct file *eventfd_fget(int fd); | 20 | struct file *eventfd_fget(int fd); |
| 14 | int eventfd_signal(struct file *file, int n); | 21 | int eventfd_signal(struct file *file, int n); |
| 15 | 22 | ||
diff --git a/include/linux/eventpoll.h b/include/linux/eventpoll.h index cf79853967ff..f1e1d3c47125 100644 --- a/include/linux/eventpoll.h +++ b/include/linux/eventpoll.h | |||
| @@ -14,8 +14,12 @@ | |||
| 14 | #ifndef _LINUX_EVENTPOLL_H | 14 | #ifndef _LINUX_EVENTPOLL_H |
| 15 | #define _LINUX_EVENTPOLL_H | 15 | #define _LINUX_EVENTPOLL_H |
| 16 | 16 | ||
| 17 | /* For O_CLOEXEC */ | ||
| 18 | #include <linux/fcntl.h> | ||
| 17 | #include <linux/types.h> | 19 | #include <linux/types.h> |
| 18 | 20 | ||
| 21 | /* Flags for epoll_create1. */ | ||
| 22 | #define EPOLL_CLOEXEC O_CLOEXEC | ||
| 19 | 23 | ||
| 20 | /* Valid opcodes to issue to sys_epoll_ctl() */ | 24 | /* Valid opcodes to issue to sys_epoll_ctl() */ |
| 21 | #define EPOLL_CTL_ADD 1 | 25 | #define EPOLL_CTL_ADD 1 |
diff --git a/include/linux/ext2_fs.h b/include/linux/ext2_fs.h index 84cec2aa9f1e..2efe7b863cff 100644 --- a/include/linux/ext2_fs.h +++ b/include/linux/ext2_fs.h | |||
| @@ -284,8 +284,8 @@ struct ext2_inode { | |||
| 284 | 284 | ||
| 285 | #ifdef __hurd__ | 285 | #ifdef __hurd__ |
| 286 | #define i_translator osd1.hurd1.h_i_translator | 286 | #define i_translator osd1.hurd1.h_i_translator |
| 287 | #define i_frag osd2.hurd2.h_i_frag; | 287 | #define i_frag osd2.hurd2.h_i_frag |
| 288 | #define i_fsize osd2.hurd2.h_i_fsize; | 288 | #define i_fsize osd2.hurd2.h_i_fsize |
| 289 | #define i_uid_high osd2.hurd2.h_i_uid_high | 289 | #define i_uid_high osd2.hurd2.h_i_uid_high |
| 290 | #define i_gid_high osd2.hurd2.h_i_gid_high | 290 | #define i_gid_high osd2.hurd2.h_i_gid_high |
| 291 | #define i_author osd2.hurd2.h_i_author | 291 | #define i_author osd2.hurd2.h_i_author |
diff --git a/include/linux/ext3_fs.h b/include/linux/ext3_fs.h index 36c540396377..80171ee89a22 100644 --- a/include/linux/ext3_fs.h +++ b/include/linux/ext3_fs.h | |||
| @@ -832,6 +832,7 @@ extern void ext3_discard_reservation (struct inode *); | |||
| 832 | extern void ext3_dirty_inode(struct inode *); | 832 | extern void ext3_dirty_inode(struct inode *); |
| 833 | extern int ext3_change_inode_journal_flag(struct inode *, int); | 833 | extern int ext3_change_inode_journal_flag(struct inode *, int); |
| 834 | extern int ext3_get_inode_loc(struct inode *, struct ext3_iloc *); | 834 | extern int ext3_get_inode_loc(struct inode *, struct ext3_iloc *); |
| 835 | extern int ext3_can_truncate(struct inode *inode); | ||
| 835 | extern void ext3_truncate (struct inode *); | 836 | extern void ext3_truncate (struct inode *); |
| 836 | extern void ext3_set_inode_flags(struct inode *); | 837 | extern void ext3_set_inode_flags(struct inode *); |
| 837 | extern void ext3_get_inode_flags(struct ext3_inode_info *); | 838 | extern void ext3_get_inode_flags(struct ext3_inode_info *); |
diff --git a/include/linux/fb.h b/include/linux/fb.h index 72295b099228..3b8870e32afd 100644 --- a/include/linux/fb.h +++ b/include/linux/fb.h | |||
| @@ -8,7 +8,6 @@ struct dentry; | |||
| 8 | 8 | ||
| 9 | /* Definitions of frame buffers */ | 9 | /* Definitions of frame buffers */ |
| 10 | 10 | ||
| 11 | #define FB_MAJOR 29 | ||
| 12 | #define FB_MAX 32 /* sufficient for now */ | 11 | #define FB_MAX 32 /* sufficient for now */ |
| 13 | 12 | ||
| 14 | /* ioctls | 13 | /* ioctls |
| @@ -120,6 +119,10 @@ struct dentry; | |||
| 120 | #define FB_ACCEL_XGI_VOLARI_V 47 /* XGI Volari V3XT, V5, V8 */ | 119 | #define FB_ACCEL_XGI_VOLARI_V 47 /* XGI Volari V3XT, V5, V8 */ |
| 121 | #define FB_ACCEL_XGI_VOLARI_Z 48 /* XGI Volari Z7 */ | 120 | #define FB_ACCEL_XGI_VOLARI_Z 48 /* XGI Volari Z7 */ |
| 122 | #define FB_ACCEL_OMAP1610 49 /* TI OMAP16xx */ | 121 | #define FB_ACCEL_OMAP1610 49 /* TI OMAP16xx */ |
| 122 | #define FB_ACCEL_TRIDENT_TGUI 50 /* Trident TGUI */ | ||
| 123 | #define FB_ACCEL_TRIDENT_3DIMAGE 51 /* Trident 3DImage */ | ||
| 124 | #define FB_ACCEL_TRIDENT_BLADE3D 52 /* Trident Blade3D */ | ||
| 125 | #define FB_ACCEL_TRIDENT_BLADEXP 53 /* Trident BladeXP */ | ||
| 123 | #define FB_ACCEL_NEOMAGIC_NM2070 90 /* NeoMagic NM2070 */ | 126 | #define FB_ACCEL_NEOMAGIC_NM2070 90 /* NeoMagic NM2070 */ |
| 124 | #define FB_ACCEL_NEOMAGIC_NM2090 91 /* NeoMagic NM2090 */ | 127 | #define FB_ACCEL_NEOMAGIC_NM2090 91 /* NeoMagic NM2090 */ |
| 125 | #define FB_ACCEL_NEOMAGIC_NM2093 92 /* NeoMagic NM2093 */ | 128 | #define FB_ACCEL_NEOMAGIC_NM2093 92 /* NeoMagic NM2093 */ |
diff --git a/include/linux/fd1772.h b/include/linux/fd1772.h deleted file mode 100644 index 871d6e4c677e..000000000000 --- a/include/linux/fd1772.h +++ /dev/null | |||
| @@ -1,80 +0,0 @@ | |||
| 1 | #ifndef _LINUX_FD1772REG_H | ||
| 2 | #define _LINUX_FD1772REG_H | ||
| 3 | |||
| 4 | /* | ||
| 5 | ** WD1772 stuff - originally from the M68K Linux | ||
| 6 | * Modified for Archimedes by Dave Gilbert (gilbertd@cs.man.ac.uk) | ||
| 7 | */ | ||
| 8 | |||
| 9 | /* register codes */ | ||
| 10 | |||
| 11 | #define FDC1772SELREG_STP (0x80) /* command/status register */ | ||
| 12 | #define FDC1772SELREG_TRA (0x82) /* track register */ | ||
| 13 | #define FDC1772SELREG_SEC (0x84) /* sector register */ | ||
| 14 | #define FDC1772SELREG_DTA (0x86) /* data register */ | ||
| 15 | |||
| 16 | /* register names for FDC1772_READ/WRITE macros */ | ||
| 17 | |||
| 18 | #define FDC1772REG_CMD 0 | ||
| 19 | #define FDC1772REG_STATUS 0 | ||
| 20 | #define FDC1772REG_TRACK 2 | ||
| 21 | #define FDC1772REG_SECTOR 4 | ||
| 22 | #define FDC1772REG_DATA 6 | ||
| 23 | |||
| 24 | /* command opcodes */ | ||
| 25 | |||
| 26 | #define FDC1772CMD_RESTORE (0x00) /* - */ | ||
| 27 | #define FDC1772CMD_SEEK (0x10) /* | */ | ||
| 28 | #define FDC1772CMD_STEP (0x20) /* | TYP 1 Commands */ | ||
| 29 | #define FDC1772CMD_STIN (0x40) /* | */ | ||
| 30 | #define FDC1772CMD_STOT (0x60) /* - */ | ||
| 31 | #define FDC1772CMD_RDSEC (0x80) /* - TYP 2 Commands */ | ||
| 32 | #define FDC1772CMD_WRSEC (0xa0) /* - " */ | ||
| 33 | #define FDC1772CMD_RDADR (0xc0) /* - */ | ||
| 34 | #define FDC1772CMD_RDTRA (0xe0) /* | TYP 3 Commands */ | ||
| 35 | #define FDC1772CMD_WRTRA (0xf0) /* - */ | ||
| 36 | #define FDC1772CMD_FORCI (0xd0) /* - TYP 4 Command */ | ||
| 37 | |||
| 38 | /* command modifier bits */ | ||
| 39 | |||
| 40 | #define FDC1772CMDADD_SR6 (0x00) /* step rate settings */ | ||
| 41 | #define FDC1772CMDADD_SR12 (0x01) | ||
| 42 | #define FDC1772CMDADD_SR2 (0x02) | ||
| 43 | #define FDC1772CMDADD_SR3 (0x03) | ||
| 44 | #define FDC1772CMDADD_V (0x04) /* verify */ | ||
| 45 | #define FDC1772CMDADD_H (0x08) /* wait for spin-up */ | ||
| 46 | #define FDC1772CMDADD_U (0x10) /* update track register */ | ||
| 47 | #define FDC1772CMDADD_M (0x10) /* multiple sector access */ | ||
| 48 | #define FDC1772CMDADD_E (0x04) /* head settling flag */ | ||
| 49 | #define FDC1772CMDADD_P (0x02) /* precompensation */ | ||
| 50 | #define FDC1772CMDADD_A0 (0x01) /* DAM flag */ | ||
| 51 | |||
| 52 | /* status register bits */ | ||
| 53 | |||
| 54 | #define FDC1772STAT_MOTORON (0x80) /* motor on */ | ||
| 55 | #define FDC1772STAT_WPROT (0x40) /* write protected (FDC1772CMD_WR*) */ | ||
| 56 | #define FDC1772STAT_SPINUP (0x20) /* motor speed stable (Type I) */ | ||
| 57 | #define FDC1772STAT_DELDAM (0x20) /* sector has deleted DAM (Type II+III) */ | ||
| 58 | #define FDC1772STAT_RECNF (0x10) /* record not found */ | ||
| 59 | #define FDC1772STAT_CRC (0x08) /* CRC error */ | ||
| 60 | #define FDC1772STAT_TR00 (0x04) /* Track 00 flag (Type I) */ | ||
| 61 | #define FDC1772STAT_LOST (0x04) /* Lost Data (Type II+III) */ | ||
| 62 | #define FDC1772STAT_IDX (0x02) /* Index status (Type I) */ | ||
| 63 | #define FDC1772STAT_DRQ (0x02) /* DRQ status (Type II+III) */ | ||
| 64 | #define FDC1772STAT_BUSY (0x01) /* FDC1772 is busy */ | ||
| 65 | |||
| 66 | |||
| 67 | /* PSG Port A Bit Nr 0 .. Side Sel .. 0 -> Side 1 1 -> Side 2 */ | ||
| 68 | #define DSKSIDE (0x01) | ||
| 69 | |||
| 70 | #define DSKDRVNONE (0x06) | ||
| 71 | #define DSKDRV0 (0x02) | ||
| 72 | #define DSKDRV1 (0x04) | ||
| 73 | |||
| 74 | /* step rates */ | ||
| 75 | #define FDC1772STEP_6 0x00 | ||
| 76 | #define FDC1772STEP_12 0x01 | ||
| 77 | #define FDC1772STEP_2 0x02 | ||
| 78 | #define FDC1772STEP_3 0x03 | ||
| 79 | |||
| 80 | #endif | ||
diff --git a/include/linux/file.h b/include/linux/file.h index 27c64bdc68c9..a20259e248a5 100644 --- a/include/linux/file.h +++ b/include/linux/file.h | |||
| @@ -34,8 +34,9 @@ extern struct file *fget(unsigned int fd); | |||
| 34 | extern struct file *fget_light(unsigned int fd, int *fput_needed); | 34 | extern struct file *fget_light(unsigned int fd, int *fput_needed); |
| 35 | extern void set_close_on_exec(unsigned int fd, int flag); | 35 | extern void set_close_on_exec(unsigned int fd, int flag); |
| 36 | extern void put_filp(struct file *); | 36 | extern void put_filp(struct file *); |
| 37 | extern int alloc_fd(unsigned start, unsigned flags); | ||
| 37 | extern int get_unused_fd(void); | 38 | extern int get_unused_fd(void); |
| 38 | extern int get_unused_fd_flags(int flags); | 39 | #define get_unused_fd_flags(flags) alloc_fd(0, (flags)) |
| 39 | extern void put_unused_fd(unsigned int fd); | 40 | extern void put_unused_fd(unsigned int fd); |
| 40 | 41 | ||
| 41 | extern void fd_install(unsigned int fd, struct file *file); | 42 | extern void fd_install(unsigned int fd, struct file *file); |
diff --git a/include/linux/firmware-map.h b/include/linux/firmware-map.h index acbdbcc16051..6e199c8dfacc 100644 --- a/include/linux/firmware-map.h +++ b/include/linux/firmware-map.h | |||
| @@ -24,34 +24,8 @@ | |||
| 24 | */ | 24 | */ |
| 25 | #ifdef CONFIG_FIRMWARE_MEMMAP | 25 | #ifdef CONFIG_FIRMWARE_MEMMAP |
| 26 | 26 | ||
| 27 | /** | ||
| 28 | * Adds a firmware mapping entry. This function uses kmalloc() for memory | ||
| 29 | * allocation. Use firmware_map_add_early() if you want to use the bootmem | ||
| 30 | * allocator. | ||
| 31 | * | ||
| 32 | * That function must be called before late_initcall. | ||
| 33 | * | ||
| 34 | * @start: Start of the memory range. | ||
| 35 | * @end: End of the memory range (inclusive). | ||
| 36 | * @type: Type of the memory range. | ||
| 37 | * | ||
| 38 | * Returns 0 on success, or -ENOMEM if no memory could be allocated. | ||
| 39 | */ | ||
| 40 | int firmware_map_add(resource_size_t start, resource_size_t end, | 27 | int firmware_map_add(resource_size_t start, resource_size_t end, |
| 41 | const char *type); | 28 | const char *type); |
| 42 | |||
| 43 | /** | ||
| 44 | * Adds a firmware mapping entry. This function uses the bootmem allocator | ||
| 45 | * for memory allocation. Use firmware_map_add() if you want to use kmalloc(). | ||
| 46 | * | ||
| 47 | * That function must be called before late_initcall. | ||
| 48 | * | ||
| 49 | * @start: Start of the memory range. | ||
| 50 | * @end: End of the memory range (inclusive). | ||
| 51 | * @type: Type of the memory range. | ||
| 52 | * | ||
| 53 | * Returns 0 on success, or -ENOMEM if no memory could be allocated. | ||
| 54 | */ | ||
| 55 | int firmware_map_add_early(resource_size_t start, resource_size_t end, | 29 | int firmware_map_add_early(resource_size_t start, resource_size_t end, |
| 56 | const char *type); | 30 | const char *type); |
| 57 | 31 | ||
diff --git a/include/linux/fs.h b/include/linux/fs.h index 9c2ac5c0ef5c..580b513668fe 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
| @@ -60,6 +60,8 @@ extern int dir_notify_enable; | |||
| 60 | #define MAY_WRITE 2 | 60 | #define MAY_WRITE 2 |
| 61 | #define MAY_READ 4 | 61 | #define MAY_READ 4 |
| 62 | #define MAY_APPEND 8 | 62 | #define MAY_APPEND 8 |
| 63 | #define MAY_ACCESS 16 | ||
| 64 | #define MAY_OPEN 32 | ||
| 63 | 65 | ||
| 64 | #define FMODE_READ 1 | 66 | #define FMODE_READ 1 |
| 65 | #define FMODE_WRITE 2 | 67 | #define FMODE_WRITE 2 |
| @@ -277,7 +279,7 @@ extern int dir_notify_enable; | |||
| 277 | #include <linux/types.h> | 279 | #include <linux/types.h> |
| 278 | #include <linux/kdev_t.h> | 280 | #include <linux/kdev_t.h> |
| 279 | #include <linux/dcache.h> | 281 | #include <linux/dcache.h> |
| 280 | #include <linux/namei.h> | 282 | #include <linux/path.h> |
| 281 | #include <linux/stat.h> | 283 | #include <linux/stat.h> |
| 282 | #include <linux/cache.h> | 284 | #include <linux/cache.h> |
| 283 | #include <linux/kobject.h> | 285 | #include <linux/kobject.h> |
| @@ -318,22 +320,23 @@ typedef void (dio_iodone_t)(struct kiocb *iocb, loff_t offset, | |||
| 318 | * Attribute flags. These should be or-ed together to figure out what | 320 | * Attribute flags. These should be or-ed together to figure out what |
| 319 | * has been changed! | 321 | * has been changed! |
| 320 | */ | 322 | */ |
| 321 | #define ATTR_MODE 1 | 323 | #define ATTR_MODE (1 << 0) |
| 322 | #define ATTR_UID 2 | 324 | #define ATTR_UID (1 << 1) |
| 323 | #define ATTR_GID 4 | 325 | #define ATTR_GID (1 << 2) |
| 324 | #define ATTR_SIZE 8 | 326 | #define ATTR_SIZE (1 << 3) |
| 325 | #define ATTR_ATIME 16 | 327 | #define ATTR_ATIME (1 << 4) |
| 326 | #define ATTR_MTIME 32 | 328 | #define ATTR_MTIME (1 << 5) |
| 327 | #define ATTR_CTIME 64 | 329 | #define ATTR_CTIME (1 << 6) |
| 328 | #define ATTR_ATIME_SET 128 | 330 | #define ATTR_ATIME_SET (1 << 7) |
| 329 | #define ATTR_MTIME_SET 256 | 331 | #define ATTR_MTIME_SET (1 << 8) |
| 330 | #define ATTR_FORCE 512 /* Not a change, but a change it */ | 332 | #define ATTR_FORCE (1 << 9) /* Not a change, but a change it */ |
| 331 | #define ATTR_ATTR_FLAG 1024 | 333 | #define ATTR_ATTR_FLAG (1 << 10) |
| 332 | #define ATTR_KILL_SUID 2048 | 334 | #define ATTR_KILL_SUID (1 << 11) |
| 333 | #define ATTR_KILL_SGID 4096 | 335 | #define ATTR_KILL_SGID (1 << 12) |
| 334 | #define ATTR_FILE 8192 | 336 | #define ATTR_FILE (1 << 13) |
| 335 | #define ATTR_KILL_PRIV 16384 | 337 | #define ATTR_KILL_PRIV (1 << 14) |
| 336 | #define ATTR_OPEN 32768 /* Truncating from open(O_TRUNC) */ | 338 | #define ATTR_OPEN (1 << 15) /* Truncating from open(O_TRUNC) */ |
| 339 | #define ATTR_TIMES_SET (1 << 16) | ||
| 337 | 340 | ||
| 338 | /* | 341 | /* |
| 339 | * This is the Inode Attributes structure, used for notify_change(). It | 342 | * This is the Inode Attributes structure, used for notify_change(). It |
| @@ -440,6 +443,27 @@ static inline size_t iov_iter_count(struct iov_iter *i) | |||
| 440 | return i->count; | 443 | return i->count; |
| 441 | } | 444 | } |
| 442 | 445 | ||
| 446 | /* | ||
| 447 | * "descriptor" for what we're up to with a read. | ||
| 448 | * This allows us to use the same read code yet | ||
| 449 | * have multiple different users of the data that | ||
| 450 | * we read from a file. | ||
| 451 | * | ||
| 452 | * The simplest case just copies the data to user | ||
| 453 | * mode. | ||
| 454 | */ | ||
| 455 | typedef struct { | ||
| 456 | size_t written; | ||
| 457 | size_t count; | ||
| 458 | union { | ||
| 459 | char __user *buf; | ||
| 460 | void *data; | ||
| 461 | } arg; | ||
| 462 | int error; | ||
| 463 | } read_descriptor_t; | ||
| 464 | |||
| 465 | typedef int (*read_actor_t)(read_descriptor_t *, struct page *, | ||
| 466 | unsigned long, unsigned long); | ||
| 443 | 467 | ||
| 444 | struct address_space_operations { | 468 | struct address_space_operations { |
| 445 | int (*writepage)(struct page *page, struct writeback_control *wbc); | 469 | int (*writepage)(struct page *page, struct writeback_control *wbc); |
| @@ -481,6 +505,8 @@ struct address_space_operations { | |||
| 481 | int (*migratepage) (struct address_space *, | 505 | int (*migratepage) (struct address_space *, |
| 482 | struct page *, struct page *); | 506 | struct page *, struct page *); |
| 483 | int (*launder_page) (struct page *); | 507 | int (*launder_page) (struct page *); |
| 508 | int (*is_partially_uptodate) (struct page *, read_descriptor_t *, | ||
| 509 | unsigned long); | ||
| 484 | }; | 510 | }; |
| 485 | 511 | ||
| 486 | /* | 512 | /* |
| @@ -499,7 +525,7 @@ struct backing_dev_info; | |||
| 499 | struct address_space { | 525 | struct address_space { |
| 500 | struct inode *host; /* owner: inode, block_device */ | 526 | struct inode *host; /* owner: inode, block_device */ |
| 501 | struct radix_tree_root page_tree; /* radix tree of all pages */ | 527 | struct radix_tree_root page_tree; /* radix tree of all pages */ |
| 502 | rwlock_t tree_lock; /* and rwlock protecting it */ | 528 | spinlock_t tree_lock; /* and lock protecting it */ |
| 503 | unsigned int i_mmap_writable;/* count VM_SHARED mappings */ | 529 | unsigned int i_mmap_writable;/* count VM_SHARED mappings */ |
| 504 | struct prio_tree_root i_mmap; /* tree of private and shared mappings */ | 530 | struct prio_tree_root i_mmap; /* tree of private and shared mappings */ |
| 505 | struct list_head i_mmap_nonlinear;/*list VM_NONLINEAR mappings */ | 531 | struct list_head i_mmap_nonlinear;/*list VM_NONLINEAR mappings */ |
| @@ -792,7 +818,7 @@ struct file { | |||
| 792 | #define f_dentry f_path.dentry | 818 | #define f_dentry f_path.dentry |
| 793 | #define f_vfsmnt f_path.mnt | 819 | #define f_vfsmnt f_path.mnt |
| 794 | const struct file_operations *f_op; | 820 | const struct file_operations *f_op; |
| 795 | atomic_t f_count; | 821 | atomic_long_t f_count; |
| 796 | unsigned int f_flags; | 822 | unsigned int f_flags; |
| 797 | mode_t f_mode; | 823 | mode_t f_mode; |
| 798 | loff_t f_pos; | 824 | loff_t f_pos; |
| @@ -821,8 +847,8 @@ extern spinlock_t files_lock; | |||
| 821 | #define file_list_lock() spin_lock(&files_lock); | 847 | #define file_list_lock() spin_lock(&files_lock); |
| 822 | #define file_list_unlock() spin_unlock(&files_lock); | 848 | #define file_list_unlock() spin_unlock(&files_lock); |
| 823 | 849 | ||
| 824 | #define get_file(x) atomic_inc(&(x)->f_count) | 850 | #define get_file(x) atomic_long_inc(&(x)->f_count) |
| 825 | #define file_count(x) atomic_read(&(x)->f_count) | 851 | #define file_count(x) atomic_long_read(&(x)->f_count) |
| 826 | 852 | ||
| 827 | #ifdef CONFIG_DEBUG_WRITECOUNT | 853 | #ifdef CONFIG_DEBUG_WRITECOUNT |
| 828 | static inline void file_take_write(struct file *f) | 854 | static inline void file_take_write(struct file *f) |
| @@ -886,6 +912,12 @@ static inline int file_check_writeable(struct file *filp) | |||
| 886 | #define FL_SLEEP 128 /* A blocking lock */ | 912 | #define FL_SLEEP 128 /* A blocking lock */ |
| 887 | 913 | ||
| 888 | /* | 914 | /* |
| 915 | * Special return value from posix_lock_file() and vfs_lock_file() for | ||
| 916 | * asynchronous locking. | ||
| 917 | */ | ||
| 918 | #define FILE_LOCK_DEFERRED 1 | ||
| 919 | |||
| 920 | /* | ||
| 889 | * The POSIX file lock owner is determined by | 921 | * The POSIX file lock owner is determined by |
| 890 | * the "struct files_struct" in the thread group | 922 | * the "struct files_struct" in the thread group |
| 891 | * (or NULL for no owner - BSD locks). | 923 | * (or NULL for no owner - BSD locks). |
| @@ -1025,6 +1057,7 @@ extern int send_sigurg(struct fown_struct *fown); | |||
| 1025 | extern struct list_head super_blocks; | 1057 | extern struct list_head super_blocks; |
| 1026 | extern spinlock_t sb_lock; | 1058 | extern spinlock_t sb_lock; |
| 1027 | 1059 | ||
| 1060 | #define sb_entry(list) list_entry((list), struct super_block, s_list) | ||
| 1028 | #define S_BIAS (1<<30) | 1061 | #define S_BIAS (1<<30) |
| 1029 | struct super_block { | 1062 | struct super_block { |
| 1030 | struct list_head s_list; /* Keep this first */ | 1063 | struct list_head s_list; /* Keep this first */ |
| @@ -1058,6 +1091,9 @@ struct super_block { | |||
| 1058 | struct list_head s_more_io; /* parked for more writeback */ | 1091 | struct list_head s_more_io; /* parked for more writeback */ |
| 1059 | struct hlist_head s_anon; /* anonymous dentries for (nfs) exporting */ | 1092 | struct hlist_head s_anon; /* anonymous dentries for (nfs) exporting */ |
| 1060 | struct list_head s_files; | 1093 | struct list_head s_files; |
| 1094 | /* s_dentry_lru and s_nr_dentry_unused are protected by dcache_lock */ | ||
| 1095 | struct list_head s_dentry_lru; /* unused dentry lru */ | ||
| 1096 | int s_nr_dentry_unused; /* # of dentry on lru */ | ||
| 1061 | 1097 | ||
| 1062 | struct block_device *s_bdev; | 1098 | struct block_device *s_bdev; |
| 1063 | struct mtd_info *s_mtd; | 1099 | struct mtd_info *s_mtd; |
| @@ -1126,7 +1162,7 @@ extern int vfs_permission(struct nameidata *, int); | |||
| 1126 | extern int vfs_create(struct inode *, struct dentry *, int, struct nameidata *); | 1162 | extern int vfs_create(struct inode *, struct dentry *, int, struct nameidata *); |
| 1127 | extern int vfs_mkdir(struct inode *, struct dentry *, int); | 1163 | extern int vfs_mkdir(struct inode *, struct dentry *, int); |
| 1128 | extern int vfs_mknod(struct inode *, struct dentry *, int, dev_t); | 1164 | extern int vfs_mknod(struct inode *, struct dentry *, int, dev_t); |
| 1129 | extern int vfs_symlink(struct inode *, struct dentry *, const char *, int); | 1165 | extern int vfs_symlink(struct inode *, struct dentry *, const char *); |
| 1130 | extern int vfs_link(struct dentry *, struct inode *, struct dentry *); | 1166 | extern int vfs_link(struct dentry *, struct inode *, struct dentry *); |
| 1131 | extern int vfs_rmdir(struct inode *, struct dentry *); | 1167 | extern int vfs_rmdir(struct inode *, struct dentry *); |
| 1132 | extern int vfs_unlink(struct inode *, struct dentry *); | 1168 | extern int vfs_unlink(struct inode *, struct dentry *); |
| @@ -1185,27 +1221,6 @@ struct block_device_operations { | |||
| 1185 | struct module *owner; | 1221 | struct module *owner; |
| 1186 | }; | 1222 | }; |
| 1187 | 1223 | ||
| 1188 | /* | ||
| 1189 | * "descriptor" for what we're up to with a read. | ||
| 1190 | * This allows us to use the same read code yet | ||
| 1191 | * have multiple different users of the data that | ||
| 1192 | * we read from a file. | ||
| 1193 | * | ||
| 1194 | * The simplest case just copies the data to user | ||
| 1195 | * mode. | ||
| 1196 | */ | ||
| 1197 | typedef struct { | ||
| 1198 | size_t written; | ||
| 1199 | size_t count; | ||
| 1200 | union { | ||
| 1201 | char __user * buf; | ||
| 1202 | void *data; | ||
| 1203 | } arg; | ||
| 1204 | int error; | ||
| 1205 | } read_descriptor_t; | ||
| 1206 | |||
| 1207 | typedef int (*read_actor_t)(read_descriptor_t *, struct page *, unsigned long, unsigned long); | ||
| 1208 | |||
| 1209 | /* These macros are for out of kernel modules to test that | 1224 | /* These macros are for out of kernel modules to test that |
| 1210 | * the kernel supports the unlocked_ioctl and compat_ioctl | 1225 | * the kernel supports the unlocked_ioctl and compat_ioctl |
| 1211 | * fields in struct file_operations. */ | 1226 | * fields in struct file_operations. */ |
| @@ -1262,7 +1277,7 @@ struct inode_operations { | |||
| 1262 | void * (*follow_link) (struct dentry *, struct nameidata *); | 1277 | void * (*follow_link) (struct dentry *, struct nameidata *); |
| 1263 | void (*put_link) (struct dentry *, struct nameidata *, void *); | 1278 | void (*put_link) (struct dentry *, struct nameidata *, void *); |
| 1264 | void (*truncate) (struct inode *); | 1279 | void (*truncate) (struct inode *); |
| 1265 | int (*permission) (struct inode *, int, struct nameidata *); | 1280 | int (*permission) (struct inode *, int); |
| 1266 | int (*setattr) (struct dentry *, struct iattr *); | 1281 | int (*setattr) (struct dentry *, struct iattr *); |
| 1267 | int (*getattr) (struct vfsmount *mnt, struct dentry *, struct kstat *); | 1282 | int (*getattr) (struct vfsmount *mnt, struct dentry *, struct kstat *); |
| 1268 | int (*setxattr) (struct dentry *, const char *,const void *,size_t,int); | 1283 | int (*setxattr) (struct dentry *, const char *,const void *,size_t,int); |
| @@ -1686,9 +1701,9 @@ extern void init_special_inode(struct inode *, umode_t, dev_t); | |||
| 1686 | extern void make_bad_inode(struct inode *); | 1701 | extern void make_bad_inode(struct inode *); |
| 1687 | extern int is_bad_inode(struct inode *); | 1702 | extern int is_bad_inode(struct inode *); |
| 1688 | 1703 | ||
| 1689 | extern const struct file_operations read_fifo_fops; | 1704 | extern const struct file_operations read_pipefifo_fops; |
| 1690 | extern const struct file_operations write_fifo_fops; | 1705 | extern const struct file_operations write_pipefifo_fops; |
| 1691 | extern const struct file_operations rdwr_fifo_fops; | 1706 | extern const struct file_operations rdwr_pipefifo_fops; |
| 1692 | 1707 | ||
| 1693 | extern int fs_may_remount_ro(struct super_block *); | 1708 | extern int fs_may_remount_ro(struct super_block *); |
| 1694 | 1709 | ||
| @@ -1757,7 +1772,7 @@ extern int do_remount_sb(struct super_block *sb, int flags, | |||
| 1757 | extern sector_t bmap(struct inode *, sector_t); | 1772 | extern sector_t bmap(struct inode *, sector_t); |
| 1758 | #endif | 1773 | #endif |
| 1759 | extern int notify_change(struct dentry *, struct iattr *); | 1774 | extern int notify_change(struct dentry *, struct iattr *); |
| 1760 | extern int permission(struct inode *, int, struct nameidata *); | 1775 | extern int inode_permission(struct inode *, int); |
| 1761 | extern int generic_permission(struct inode *, int, | 1776 | extern int generic_permission(struct inode *, int, |
| 1762 | int (*check_acl)(struct inode *, int)); | 1777 | int (*check_acl)(struct inode *, int)); |
| 1763 | 1778 | ||
| @@ -1773,8 +1788,9 @@ static inline void allow_write_access(struct file *file) | |||
| 1773 | atomic_inc(&file->f_path.dentry->d_inode->i_writecount); | 1788 | atomic_inc(&file->f_path.dentry->d_inode->i_writecount); |
| 1774 | } | 1789 | } |
| 1775 | extern int do_pipe(int *); | 1790 | extern int do_pipe(int *); |
| 1776 | extern struct file *create_read_pipe(struct file *f); | 1791 | extern int do_pipe_flags(int *, int); |
| 1777 | extern struct file *create_write_pipe(void); | 1792 | extern struct file *create_read_pipe(struct file *f, int flags); |
| 1793 | extern struct file *create_write_pipe(int flags); | ||
| 1778 | extern void free_write_pipe(struct file *); | 1794 | extern void free_write_pipe(struct file *); |
| 1779 | 1795 | ||
| 1780 | extern struct file *do_filp_open(int dfd, const char *pathname, | 1796 | extern struct file *do_filp_open(int dfd, const char *pathname, |
| @@ -1820,7 +1836,7 @@ extern void clear_inode(struct inode *); | |||
| 1820 | extern void destroy_inode(struct inode *); | 1836 | extern void destroy_inode(struct inode *); |
| 1821 | extern struct inode *new_inode(struct super_block *); | 1837 | extern struct inode *new_inode(struct super_block *); |
| 1822 | extern int should_remove_suid(struct dentry *); | 1838 | extern int should_remove_suid(struct dentry *); |
| 1823 | extern int remove_suid(struct dentry *); | 1839 | extern int file_remove_suid(struct file *); |
| 1824 | 1840 | ||
| 1825 | extern void __insert_inode_hash(struct inode *, unsigned long hashval); | 1841 | extern void __insert_inode_hash(struct inode *, unsigned long hashval); |
| 1826 | extern void remove_inode_hash(struct inode *); | 1842 | extern void remove_inode_hash(struct inode *); |
| @@ -2006,8 +2022,6 @@ extern void simple_release_fs(struct vfsmount **mount, int *count); | |||
| 2006 | 2022 | ||
| 2007 | extern ssize_t simple_read_from_buffer(void __user *to, size_t count, | 2023 | extern ssize_t simple_read_from_buffer(void __user *to, size_t count, |
| 2008 | loff_t *ppos, const void *from, size_t available); | 2024 | loff_t *ppos, const void *from, size_t available); |
| 2009 | extern ssize_t memory_read_from_buffer(void *to, size_t count, loff_t *ppos, | ||
| 2010 | const void *from, size_t available); | ||
| 2011 | 2025 | ||
| 2012 | #ifdef CONFIG_MIGRATION | 2026 | #ifdef CONFIG_MIGRATION |
| 2013 | extern int buffer_migrate_page(struct address_space *, | 2027 | extern int buffer_migrate_page(struct address_space *, |
diff --git a/include/linux/fs_enet_pd.h b/include/linux/fs_enet_pd.h index 9bc045b8c478..8300cab30f9a 100644 --- a/include/linux/fs_enet_pd.h +++ b/include/linux/fs_enet_pd.h | |||
| @@ -103,10 +103,6 @@ struct fs_mii_bb_platform_info { | |||
| 103 | struct fs_mii_bit mdio_dir; | 103 | struct fs_mii_bit mdio_dir; |
| 104 | struct fs_mii_bit mdio_dat; | 104 | struct fs_mii_bit mdio_dat; |
| 105 | struct fs_mii_bit mdc_dat; | 105 | struct fs_mii_bit mdc_dat; |
| 106 | int mdio_port; /* port & bit for MDIO */ | ||
| 107 | int mdio_bit; | ||
| 108 | int mdc_port; /* port & bit for MDC */ | ||
| 109 | int mdc_bit; | ||
| 110 | int delay; /* delay in us */ | 106 | int delay; /* delay in us */ |
| 111 | int irq[32]; /* irqs per phy's */ | 107 | int irq[32]; /* irqs per phy's */ |
| 112 | }; | 108 | }; |
| @@ -135,11 +131,7 @@ struct fs_platform_info { | |||
| 135 | u32 device_flags; | 131 | u32 device_flags; |
| 136 | 132 | ||
| 137 | int phy_addr; /* the phy address (-1 no phy) */ | 133 | int phy_addr; /* the phy address (-1 no phy) */ |
| 138 | #ifdef CONFIG_PPC_CPM_NEW_BINDING | ||
| 139 | char bus_id[16]; | 134 | char bus_id[16]; |
| 140 | #else | ||
| 141 | const char* bus_id; | ||
| 142 | #endif | ||
| 143 | int phy_irq; /* the phy irq (if it exists) */ | 135 | int phy_irq; /* the phy irq (if it exists) */ |
| 144 | 136 | ||
| 145 | const struct fs_mii_bus_info *bus_info; | 137 | const struct fs_mii_bus_info *bus_info; |
diff --git a/include/linux/fs_struct.h b/include/linux/fs_struct.h index 282f54219129..9e5a06e78d02 100644 --- a/include/linux/fs_struct.h +++ b/include/linux/fs_struct.h | |||
| @@ -7,7 +7,7 @@ struct fs_struct { | |||
| 7 | atomic_t count; | 7 | atomic_t count; |
| 8 | rwlock_t lock; | 8 | rwlock_t lock; |
| 9 | int umask; | 9 | int umask; |
| 10 | struct path root, pwd, altroot; | 10 | struct path root, pwd; |
| 11 | }; | 11 | }; |
| 12 | 12 | ||
| 13 | #define INIT_FS { \ | 13 | #define INIT_FS { \ |
| @@ -19,7 +19,6 @@ struct fs_struct { | |||
| 19 | extern struct kmem_cache *fs_cachep; | 19 | extern struct kmem_cache *fs_cachep; |
| 20 | 20 | ||
| 21 | extern void exit_fs(struct task_struct *); | 21 | extern void exit_fs(struct task_struct *); |
| 22 | extern void set_fs_altroot(void); | ||
| 23 | extern void set_fs_root(struct fs_struct *, struct path *); | 22 | extern void set_fs_root(struct fs_struct *, struct path *); |
| 24 | extern void set_fs_pwd(struct fs_struct *, struct path *); | 23 | extern void set_fs_pwd(struct fs_struct *, struct path *); |
| 25 | extern struct fs_struct *copy_fs_struct(struct fs_struct *); | 24 | extern struct fs_struct *copy_fs_struct(struct fs_struct *); |
diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h index c415a496de3a..4e625e0094c8 100644 --- a/include/linux/fsl_devices.h +++ b/include/linux/fsl_devices.h | |||
| @@ -69,6 +69,7 @@ struct gianfar_mdio_data { | |||
| 69 | #define FSL_GIANFAR_DEV_HAS_VLAN 0x00000020 | 69 | #define FSL_GIANFAR_DEV_HAS_VLAN 0x00000020 |
| 70 | #define FSL_GIANFAR_DEV_HAS_EXTENDED_HASH 0x00000040 | 70 | #define FSL_GIANFAR_DEV_HAS_EXTENDED_HASH 0x00000040 |
| 71 | #define FSL_GIANFAR_DEV_HAS_PADDING 0x00000080 | 71 | #define FSL_GIANFAR_DEV_HAS_PADDING 0x00000080 |
| 72 | #define FSL_GIANFAR_DEV_HAS_MAGIC_PACKET 0x00000100 | ||
| 72 | 73 | ||
| 73 | /* Flags in gianfar_platform_data */ | 74 | /* Flags in gianfar_platform_data */ |
| 74 | #define FSL_GIANFAR_BRD_HAS_PHY_INTR 0x00000001 /* set or use a timer */ | 75 | #define FSL_GIANFAR_BRD_HAS_PHY_INTR 0x00000001 /* set or use a timer */ |
| @@ -125,4 +126,10 @@ struct mpc8xx_pcmcia_ops { | |||
| 125 | int(*voltage_set)(int slot, int vcc, int vpp); | 126 | int(*voltage_set)(int slot, int vcc, int vpp); |
| 126 | }; | 127 | }; |
| 127 | 128 | ||
| 129 | /* Returns non-zero if the current suspend operation would | ||
| 130 | * lead to a deep sleep (i.e. power removed from the core, | ||
| 131 | * instead of just the clock). | ||
| 132 | */ | ||
| 133 | int fsl_deep_sleep(void); | ||
| 134 | |||
| 128 | #endif /* _FSL_DEVICE_H_ */ | 135 | #endif /* _FSL_DEVICE_H_ */ |
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index d48282197696..265635dc9908 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h | |||
| @@ -104,11 +104,14 @@ struct fuse_file_lock { | |||
| 104 | 104 | ||
| 105 | /** | 105 | /** |
| 106 | * INIT request/reply flags | 106 | * INIT request/reply flags |
| 107 | * | ||
| 108 | * FUSE_EXPORT_SUPPORT: filesystem handles lookups of "." and ".." | ||
| 107 | */ | 109 | */ |
| 108 | #define FUSE_ASYNC_READ (1 << 0) | 110 | #define FUSE_ASYNC_READ (1 << 0) |
| 109 | #define FUSE_POSIX_LOCKS (1 << 1) | 111 | #define FUSE_POSIX_LOCKS (1 << 1) |
| 110 | #define FUSE_FILE_OPS (1 << 2) | 112 | #define FUSE_FILE_OPS (1 << 2) |
| 111 | #define FUSE_ATOMIC_O_TRUNC (1 << 3) | 113 | #define FUSE_ATOMIC_O_TRUNC (1 << 3) |
| 114 | #define FUSE_EXPORT_SUPPORT (1 << 4) | ||
| 112 | #define FUSE_BIG_WRITES (1 << 5) | 115 | #define FUSE_BIG_WRITES (1 << 5) |
| 113 | 116 | ||
| 114 | /** | 117 | /** |
diff --git a/include/linux/genhd.h b/include/linux/genhd.h index e8787417f65a..118216f1bd3c 100644 --- a/include/linux/genhd.h +++ b/include/linux/genhd.h | |||
| @@ -541,7 +541,7 @@ extern dev_t blk_lookup_devt(const char *name, int part); | |||
| 541 | extern char *disk_name (struct gendisk *hd, int part, char *buf); | 541 | extern char *disk_name (struct gendisk *hd, int part, char *buf); |
| 542 | 542 | ||
| 543 | extern int rescan_partitions(struct gendisk *disk, struct block_device *bdev); | 543 | extern int rescan_partitions(struct gendisk *disk, struct block_device *bdev); |
| 544 | extern void add_partition(struct gendisk *, int, sector_t, sector_t, int); | 544 | extern int __must_check add_partition(struct gendisk *, int, sector_t, sector_t, int); |
| 545 | extern void delete_partition(struct gendisk *, int); | 545 | extern void delete_partition(struct gendisk *, int); |
| 546 | extern void printk_all_partitions(void); | 546 | extern void printk_all_partitions(void); |
| 547 | 547 | ||
diff --git a/include/linux/gfp.h b/include/linux/gfp.h index b414be387180..e8003afeffba 100644 --- a/include/linux/gfp.h +++ b/include/linux/gfp.h | |||
| @@ -173,11 +173,24 @@ static inline void arch_free_page(struct page *page, int order) { } | |||
| 173 | static inline void arch_alloc_page(struct page *page, int order) { } | 173 | static inline void arch_alloc_page(struct page *page, int order) { } |
| 174 | #endif | 174 | #endif |
| 175 | 175 | ||
| 176 | extern struct page *__alloc_pages(gfp_t, unsigned int, struct zonelist *); | 176 | struct page * |
| 177 | __alloc_pages_internal(gfp_t gfp_mask, unsigned int order, | ||
| 178 | struct zonelist *zonelist, nodemask_t *nodemask); | ||
| 179 | |||
| 180 | static inline struct page * | ||
| 181 | __alloc_pages(gfp_t gfp_mask, unsigned int order, | ||
| 182 | struct zonelist *zonelist) | ||
| 183 | { | ||
| 184 | return __alloc_pages_internal(gfp_mask, order, zonelist, NULL); | ||
| 185 | } | ||
| 186 | |||
| 187 | static inline struct page * | ||
| 188 | __alloc_pages_nodemask(gfp_t gfp_mask, unsigned int order, | ||
| 189 | struct zonelist *zonelist, nodemask_t *nodemask) | ||
| 190 | { | ||
| 191 | return __alloc_pages_internal(gfp_mask, order, zonelist, nodemask); | ||
| 192 | } | ||
| 177 | 193 | ||
| 178 | extern struct page * | ||
| 179 | __alloc_pages_nodemask(gfp_t, unsigned int, | ||
| 180 | struct zonelist *, nodemask_t *nodemask); | ||
| 181 | 194 | ||
| 182 | static inline struct page *alloc_pages_node(int nid, gfp_t gfp_mask, | 195 | static inline struct page *alloc_pages_node(int nid, gfp_t gfp_mask, |
| 183 | unsigned int order) | 196 | unsigned int order) |
| @@ -215,6 +228,9 @@ extern struct page *alloc_page_vma(gfp_t gfp_mask, | |||
| 215 | extern unsigned long __get_free_pages(gfp_t gfp_mask, unsigned int order); | 228 | extern unsigned long __get_free_pages(gfp_t gfp_mask, unsigned int order); |
| 216 | extern unsigned long get_zeroed_page(gfp_t gfp_mask); | 229 | extern unsigned long get_zeroed_page(gfp_t gfp_mask); |
| 217 | 230 | ||
| 231 | void *alloc_pages_exact(size_t size, gfp_t gfp_mask); | ||
| 232 | void free_pages_exact(void *virt, size_t size); | ||
| 233 | |||
| 218 | #define __get_free_page(gfp_mask) \ | 234 | #define __get_free_page(gfp_mask) \ |
| 219 | __get_free_pages((gfp_mask),0) | 235 | __get_free_pages((gfp_mask),0) |
| 220 | 236 | ||
diff --git a/include/linux/gpio.h b/include/linux/gpio.h index 98be6c5762b9..730a20b83576 100644 --- a/include/linux/gpio.h +++ b/include/linux/gpio.h | |||
| @@ -79,6 +79,19 @@ static inline void gpio_set_value_cansleep(unsigned gpio, int value) | |||
| 79 | WARN_ON(1); | 79 | WARN_ON(1); |
| 80 | } | 80 | } |
| 81 | 81 | ||
| 82 | static inline int gpio_export(unsigned gpio, bool direction_may_change) | ||
| 83 | { | ||
| 84 | /* GPIO can never have been requested or set as {in,out}put */ | ||
| 85 | WARN_ON(1); | ||
| 86 | return -EINVAL; | ||
| 87 | } | ||
| 88 | |||
| 89 | static inline void gpio_unexport(unsigned gpio) | ||
| 90 | { | ||
| 91 | /* GPIO can never have been exported */ | ||
| 92 | WARN_ON(1); | ||
| 93 | } | ||
| 94 | |||
| 82 | static inline int gpio_to_irq(unsigned gpio) | 95 | static inline int gpio_to_irq(unsigned gpio) |
| 83 | { | 96 | { |
| 84 | /* GPIO can never have been requested or set as input */ | 97 | /* GPIO can never have been requested or set as input */ |
diff --git a/include/linux/harrier_defs.h b/include/linux/harrier_defs.h deleted file mode 100644 index efef11db790f..000000000000 --- a/include/linux/harrier_defs.h +++ /dev/null | |||
| @@ -1,212 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * include/linux/harrier_defs.h | ||
| 3 | * | ||
| 4 | * Definitions for Motorola MCG Harrier North Bridge & Memory controller | ||
| 5 | * | ||
| 6 | * Author: Dale Farnsworth | ||
| 7 | * dale.farnsworth@mvista.com | ||
| 8 | * | ||
| 9 | * Extracted from asm-ppc/harrier.h by: | ||
| 10 | * Randy Vinson | ||
| 11 | * rvinson@mvista.com | ||
| 12 | * | ||
| 13 | * Copyright 2001-2002 MontaVista Software Inc. | ||
| 14 | * | ||
| 15 | * This program is free software; you can redistribute it and/or modify it | ||
| 16 | * under the terms of the GNU General Public License as published by the | ||
| 17 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 18 | * option) any later version. | ||
| 19 | */ | ||
| 20 | |||
| 21 | #ifndef __ASMPPC_HARRIER_DEFS_H | ||
| 22 | #define __ASMPPC_HARRIER_DEFS_H | ||
| 23 | |||
| 24 | #define HARRIER_DEFAULT_XCSR_BASE 0xfeff0000 | ||
| 25 | |||
| 26 | #define HARRIER_VEND_DEV_ID 0x1057480b | ||
| 27 | |||
| 28 | #define HARRIER_VENI_OFF 0x00 | ||
| 29 | |||
| 30 | #define HARRIER_REVI_OFF 0x05 | ||
| 31 | #define HARRIER_UCTL_OFF 0xd0 | ||
| 32 | #define HARRIER_XTAL64_MASK 0x02 | ||
| 33 | |||
| 34 | #define HARRIER_MISC_CSR_OFF 0x1c | ||
| 35 | #define HARRIER_RSTOUT 0x01000000 | ||
| 36 | #define HARRIER_SYSCON 0x08000000 | ||
| 37 | #define HARRIER_EREADY 0x10000000 | ||
| 38 | #define HARRIER_ERDYS 0x20000000 | ||
| 39 | |||
| 40 | /* Function exception registers */ | ||
| 41 | #define HARRIER_FEEN_OFF 0x40 /* enable */ | ||
| 42 | #define HARRIER_FEST_OFF 0x44 /* status */ | ||
| 43 | #define HARRIER_FEMA_OFF 0x48 /* mask */ | ||
| 44 | #define HARRIER_FECL_OFF 0x4c /* clear */ | ||
| 45 | |||
| 46 | #define HARRIER_FE_DMA 0x80 | ||
| 47 | #define HARRIER_FE_MIDB 0x40 | ||
| 48 | #define HARRIER_FE_MIM0 0x20 | ||
| 49 | #define HARRIER_FE_MIM1 0x10 | ||
| 50 | #define HARRIER_FE_MIP 0x08 | ||
| 51 | #define HARRIER_FE_UA0 0x04 | ||
| 52 | #define HARRIER_FE_UA1 0x02 | ||
| 53 | #define HARRIER_FE_ABT 0x01 | ||
| 54 | |||
| 55 | #define HARRIER_SERIAL_0_OFF 0xc0 | ||
| 56 | |||
| 57 | #define HARRIER_MBAR_OFF 0xe0 | ||
| 58 | #define HARRIER_MBAR_MSK 0xfffc0000 | ||
| 59 | #define HARRIER_MPIC_CSR_OFF 0xe4 | ||
| 60 | #define HARRIER_MPIC_OPI_ENABLE 0x40 | ||
| 61 | #define HARRIER_MPIC_IFEVP_OFF 0x10200 | ||
| 62 | #define HARRIER_MPIC_IFEVP_VECT_MSK 0xff | ||
| 63 | #define HARRIER_MPIC_IFEDE_OFF 0x10210 | ||
| 64 | |||
| 65 | /* | ||
| 66 | * Define the Memory Controller register offsets. | ||
| 67 | */ | ||
| 68 | #define HARRIER_SDBA_OFF 0x110 | ||
| 69 | #define HARRIER_SDBB_OFF 0x114 | ||
| 70 | #define HARRIER_SDBC_OFF 0x118 | ||
| 71 | #define HARRIER_SDBD_OFF 0x11c | ||
| 72 | #define HARRIER_SDBE_OFF 0x120 | ||
| 73 | #define HARRIER_SDBF_OFF 0x124 | ||
| 74 | #define HARRIER_SDBG_OFF 0x128 | ||
| 75 | #define HARRIER_SDBH_OFF 0x12c | ||
| 76 | |||
| 77 | #define HARRIER_SDB_ENABLE 0x00000100 | ||
| 78 | #define HARRIER_SDB_SIZE_MASK 0xf | ||
| 79 | #define HARRIER_SDB_SIZE_SHIFT 16 | ||
| 80 | #define HARRIER_SDB_BASE_MASK 0xff | ||
| 81 | #define HARRIER_SDB_BASE_SHIFT 24 | ||
| 82 | |||
| 83 | /* | ||
| 84 | * Define outbound register offsets. | ||
| 85 | */ | ||
| 86 | #define HARRIER_OTAD0_OFF 0x220 | ||
| 87 | #define HARRIER_OTOF0_OFF 0x224 | ||
| 88 | #define HARRIER_OTAD1_OFF 0x228 | ||
| 89 | #define HARRIER_OTOF1_OFF 0x22c | ||
| 90 | #define HARRIER_OTAD2_OFF 0x230 | ||
| 91 | #define HARRIER_OTOF2_OFF 0x234 | ||
| 92 | #define HARRIER_OTAD3_OFF 0x238 | ||
| 93 | #define HARRIER_OTOF3_OFF 0x23c | ||
| 94 | |||
| 95 | #define HARRIER_OTADX_START_MSK 0xffff0000UL | ||
| 96 | #define HARRIER_OTADX_END_MSK 0x0000ffffUL | ||
| 97 | |||
| 98 | #define HARRIER_OTOFX_OFF_MSK 0xffff0000UL | ||
| 99 | #define HARRIER_OTOFX_ENA 0x80UL | ||
| 100 | #define HARRIER_OTOFX_WPE 0x10UL | ||
| 101 | #define HARRIER_OTOFX_SGE 0x08UL | ||
| 102 | #define HARRIER_OTOFX_RAE 0x04UL | ||
| 103 | #define HARRIER_OTOFX_MEM 0x02UL | ||
| 104 | #define HARRIER_OTOFX_IOM 0x01UL | ||
| 105 | |||
| 106 | /* | ||
| 107 | * Define generic message passing register offsets | ||
| 108 | */ | ||
| 109 | /* Mirrored registers (visible from both PowerPC and PCI space) */ | ||
| 110 | #define HARRIER_XCSR_MP_BASE_OFF 0x290 /* base offset in XCSR space */ | ||
| 111 | #define HARRIER_PMEP_MP_BASE_OFF 0x100 /* base offset in PMEM space */ | ||
| 112 | #define HARRIER_MGOM0_OFF 0x00 /* outbound msg 0 */ | ||
| 113 | #define HARRIER_MGOM1_OFF 0x04 /* outbound msg 1 */ | ||
| 114 | #define HARRIER_MGOD_OFF 0x08 /* outbound doorbells */ | ||
| 115 | |||
| 116 | #define HARRIER_MGIM0_OFF 0x10 /* inbound msg 0 */ | ||
| 117 | #define HARRIER_MGIM1_OFF 0x14 /* inbound msg 1 */ | ||
| 118 | #define HARRIER_MGID_OFF 0x18 /* inbound doorbells */ | ||
| 119 | |||
| 120 | /* PowerPC-only registers */ | ||
| 121 | #define HARRIER_MGIDM_OFF 0x20 /* inbound doorbell mask */ | ||
| 122 | |||
| 123 | /* PCI-only registers */ | ||
| 124 | #define HARRIER_PMEP_MGST_OFF 0x20 /* (outbound) interrupt status */ | ||
| 125 | #define HARRIER_PMEP_MGMS_OFF 0x24 /* (outbound) interrupt mask */ | ||
| 126 | #define HARRIER_MG_OMI0 (1<<4) | ||
| 127 | #define HARRIER_MG_OMI1 (1<<5) | ||
| 128 | |||
| 129 | #define HARRIER_PMEP_MGODM_OFF 0x28 /* outbound doorbell mask */ | ||
| 130 | |||
| 131 | /* | ||
| 132 | * Define PCI configuration space register offsets | ||
| 133 | */ | ||
| 134 | #define HARRIER_XCSR_TO_PCFS_OFF 0x300 | ||
| 135 | |||
| 136 | /* | ||
| 137 | * Define message passing attribute register offset | ||
| 138 | */ | ||
| 139 | #define HARRIER_MPAT_OFF 0x44 | ||
| 140 | |||
| 141 | /* | ||
| 142 | * Define inbound attribute register offsets. | ||
| 143 | */ | ||
| 144 | #define HARRIER_ITSZ0_OFF 0x48 | ||
| 145 | #define HARRIER_ITAT0_OFF 0x4c | ||
| 146 | |||
| 147 | #define HARRIER_ITSZ1_OFF 0x50 | ||
| 148 | #define HARRIER_ITAT1_OFF 0x54 | ||
| 149 | |||
| 150 | #define HARRIER_ITSZ2_OFF 0x58 | ||
| 151 | #define HARRIER_ITAT2_OFF 0x5c | ||
| 152 | |||
| 153 | #define HARRIER_ITSZ3_OFF 0x60 | ||
| 154 | #define HARRIER_ITAT3_OFF 0x64 | ||
| 155 | |||
| 156 | /* inbound translation size constants */ | ||
| 157 | #define HARRIER_ITSZ_MSK 0xff | ||
| 158 | #define HARRIER_ITSZ_4KB 0x00 | ||
| 159 | #define HARRIER_ITSZ_8KB 0x01 | ||
| 160 | #define HARRIER_ITSZ_16KB 0x02 | ||
| 161 | #define HARRIER_ITSZ_32KB 0x03 | ||
| 162 | #define HARRIER_ITSZ_64KB 0x04 | ||
| 163 | #define HARRIER_ITSZ_128KB 0x05 | ||
| 164 | #define HARRIER_ITSZ_256KB 0x06 | ||
| 165 | #define HARRIER_ITSZ_512KB 0x07 | ||
| 166 | #define HARRIER_ITSZ_1MB 0x08 | ||
| 167 | #define HARRIER_ITSZ_2MB 0x09 | ||
| 168 | #define HARRIER_ITSZ_4MB 0x0A | ||
| 169 | #define HARRIER_ITSZ_8MB 0x0B | ||
| 170 | #define HARRIER_ITSZ_16MB 0x0C | ||
| 171 | #define HARRIER_ITSZ_32MB 0x0D | ||
| 172 | #define HARRIER_ITSZ_64MB 0x0E | ||
| 173 | #define HARRIER_ITSZ_128MB 0x0F | ||
| 174 | #define HARRIER_ITSZ_256MB 0x10 | ||
| 175 | #define HARRIER_ITSZ_512MB 0x11 | ||
| 176 | #define HARRIER_ITSZ_1GB 0x12 | ||
| 177 | #define HARRIER_ITSZ_2GB 0x13 | ||
| 178 | |||
| 179 | /* inbound translation offset */ | ||
| 180 | #define HARRIER_ITOF_SHIFT 0x10 | ||
| 181 | #define HARRIER_ITOF_MSK 0xffff | ||
| 182 | |||
| 183 | /* inbound translation atttributes */ | ||
| 184 | #define HARRIER_ITAT_PRE (1<<3) | ||
| 185 | #define HARRIER_ITAT_RAE (1<<4) | ||
| 186 | #define HARRIER_ITAT_WPE (1<<5) | ||
| 187 | #define HARRIER_ITAT_MEM (1<<6) | ||
| 188 | #define HARRIER_ITAT_ENA (1<<7) | ||
| 189 | #define HARRIER_ITAT_GBL (1<<16) | ||
| 190 | |||
| 191 | #define HARRIER_LBA_OFF 0x80 | ||
| 192 | #define HARRIER_LBA_MSK (1<<31) | ||
| 193 | |||
| 194 | #define HARRIER_XCSR_SIZE 1024 | ||
| 195 | |||
| 196 | /* macros to calculate message passing register offsets */ | ||
| 197 | #define HARRIER_MP_XCSR(x) ((u32)HARRIER_XCSR_MP_BASE_OFF + (u32)x) | ||
| 198 | |||
| 199 | #define HARRIER_MP_PMEP(x) ((u32)HARRIER_PMEP_MP_BASE_OFF + (u32)x) | ||
| 200 | |||
| 201 | /* | ||
| 202 | * Define PCI configuration space register offsets | ||
| 203 | */ | ||
| 204 | #define HARRIER_MPBAR_OFF PCI_BASE_ADDRESS_0 | ||
| 205 | #define HARRIER_ITBAR0_OFF PCI_BASE_ADDRESS_1 | ||
| 206 | #define HARRIER_ITBAR1_OFF PCI_BASE_ADDRESS_2 | ||
| 207 | #define HARRIER_ITBAR2_OFF PCI_BASE_ADDRESS_3 | ||
| 208 | #define HARRIER_ITBAR3_OFF PCI_BASE_ADDRESS_4 | ||
| 209 | |||
| 210 | #define HARRIER_XCSR_CONFIG(x) ((u32)HARRIER_XCSR_TO_PCFS_OFF + (u32)x) | ||
| 211 | |||
| 212 | #endif /* __ASMPPC_HARRIER_DEFS_H */ | ||
diff --git a/include/linux/hid.h b/include/linux/hid.h index fe56b86f2c67..ac4e678a04ed 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h | |||
| @@ -512,7 +512,7 @@ struct hid_descriptor { | |||
| 512 | 512 | ||
| 513 | /* Applications from HID Usage Tables 4/8/99 Version 1.1 */ | 513 | /* Applications from HID Usage Tables 4/8/99 Version 1.1 */ |
| 514 | /* We ignore a few input applications that are not widely used */ | 514 | /* We ignore a few input applications that are not widely used */ |
| 515 | #define IS_INPUT_APPLICATION(a) (((a >= 0x00010000) && (a <= 0x00010008)) || (a == 0x00010080) || (a == 0x000c0001)) | 515 | #define IS_INPUT_APPLICATION(a) (((a >= 0x00010000) && (a <= 0x00010008)) || (a == 0x00010080) || (a == 0x000c0001) || (a == 0x000d0002)) |
| 516 | 516 | ||
| 517 | /* HID core API */ | 517 | /* HID core API */ |
| 518 | 518 | ||
diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h index a79e80b689d8..32e0ef0f6e1f 100644 --- a/include/linux/hugetlb.h +++ b/include/linux/hugetlb.h | |||
| @@ -8,7 +8,6 @@ | |||
| 8 | #include <linux/mempolicy.h> | 8 | #include <linux/mempolicy.h> |
| 9 | #include <linux/shm.h> | 9 | #include <linux/shm.h> |
| 10 | #include <asm/tlbflush.h> | 10 | #include <asm/tlbflush.h> |
| 11 | #include <asm/hugetlb.h> | ||
| 12 | 11 | ||
| 13 | struct ctl_table; | 12 | struct ctl_table; |
| 14 | 13 | ||
| @@ -17,38 +16,45 @@ static inline int is_vm_hugetlb_page(struct vm_area_struct *vma) | |||
| 17 | return vma->vm_flags & VM_HUGETLB; | 16 | return vma->vm_flags & VM_HUGETLB; |
| 18 | } | 17 | } |
| 19 | 18 | ||
| 19 | void reset_vma_resv_huge_pages(struct vm_area_struct *vma); | ||
| 20 | int hugetlb_sysctl_handler(struct ctl_table *, int, struct file *, void __user *, size_t *, loff_t *); | 20 | int hugetlb_sysctl_handler(struct ctl_table *, int, struct file *, void __user *, size_t *, loff_t *); |
| 21 | int hugetlb_overcommit_handler(struct ctl_table *, int, struct file *, void __user *, size_t *, loff_t *); | 21 | int hugetlb_overcommit_handler(struct ctl_table *, int, struct file *, void __user *, size_t *, loff_t *); |
| 22 | int hugetlb_treat_movable_handler(struct ctl_table *, int, struct file *, void __user *, size_t *, loff_t *); | 22 | int hugetlb_treat_movable_handler(struct ctl_table *, int, struct file *, void __user *, size_t *, loff_t *); |
| 23 | int copy_hugetlb_page_range(struct mm_struct *, struct mm_struct *, struct vm_area_struct *); | 23 | int copy_hugetlb_page_range(struct mm_struct *, struct mm_struct *, struct vm_area_struct *); |
| 24 | int follow_hugetlb_page(struct mm_struct *, struct vm_area_struct *, struct page **, struct vm_area_struct **, unsigned long *, int *, int, int); | 24 | int follow_hugetlb_page(struct mm_struct *, struct vm_area_struct *, struct page **, struct vm_area_struct **, unsigned long *, int *, int, int); |
| 25 | void unmap_hugepage_range(struct vm_area_struct *, unsigned long, unsigned long); | 25 | void unmap_hugepage_range(struct vm_area_struct *, |
| 26 | void __unmap_hugepage_range(struct vm_area_struct *, unsigned long, unsigned long); | 26 | unsigned long, unsigned long, struct page *); |
| 27 | void __unmap_hugepage_range(struct vm_area_struct *, | ||
| 28 | unsigned long, unsigned long, struct page *); | ||
| 27 | int hugetlb_prefault(struct address_space *, struct vm_area_struct *); | 29 | int hugetlb_prefault(struct address_space *, struct vm_area_struct *); |
| 28 | int hugetlb_report_meminfo(char *); | 30 | int hugetlb_report_meminfo(char *); |
| 29 | int hugetlb_report_node_meminfo(int, char *); | 31 | int hugetlb_report_node_meminfo(int, char *); |
| 30 | unsigned long hugetlb_total_pages(void); | 32 | unsigned long hugetlb_total_pages(void); |
| 31 | int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma, | 33 | int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma, |
| 32 | unsigned long address, int write_access); | 34 | unsigned long address, int write_access); |
| 33 | int hugetlb_reserve_pages(struct inode *inode, long from, long to); | 35 | int hugetlb_reserve_pages(struct inode *inode, long from, long to, |
| 36 | struct vm_area_struct *vma); | ||
| 34 | void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed); | 37 | void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed); |
| 35 | 38 | ||
| 36 | extern unsigned long max_huge_pages; | ||
| 37 | extern unsigned long sysctl_overcommit_huge_pages; | ||
| 38 | extern unsigned long hugepages_treat_as_movable; | 39 | extern unsigned long hugepages_treat_as_movable; |
| 39 | extern const unsigned long hugetlb_zero, hugetlb_infinity; | 40 | extern const unsigned long hugetlb_zero, hugetlb_infinity; |
| 40 | extern int sysctl_hugetlb_shm_group; | 41 | extern int sysctl_hugetlb_shm_group; |
| 42 | extern struct list_head huge_boot_pages; | ||
| 41 | 43 | ||
| 42 | /* arch callbacks */ | 44 | /* arch callbacks */ |
| 43 | 45 | ||
| 44 | pte_t *huge_pte_alloc(struct mm_struct *mm, unsigned long addr); | 46 | pte_t *huge_pte_alloc(struct mm_struct *mm, |
| 47 | unsigned long addr, unsigned long sz); | ||
| 45 | pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long addr); | 48 | pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long addr); |
| 46 | int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep); | 49 | int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep); |
| 47 | struct page *follow_huge_addr(struct mm_struct *mm, unsigned long address, | 50 | struct page *follow_huge_addr(struct mm_struct *mm, unsigned long address, |
| 48 | int write); | 51 | int write); |
| 49 | struct page *follow_huge_pmd(struct mm_struct *mm, unsigned long address, | 52 | struct page *follow_huge_pmd(struct mm_struct *mm, unsigned long address, |
| 50 | pmd_t *pmd, int write); | 53 | pmd_t *pmd, int write); |
| 54 | struct page *follow_huge_pud(struct mm_struct *mm, unsigned long address, | ||
| 55 | pud_t *pud, int write); | ||
| 51 | int pmd_huge(pmd_t pmd); | 56 | int pmd_huge(pmd_t pmd); |
| 57 | int pud_huge(pud_t pmd); | ||
| 52 | void hugetlb_change_protection(struct vm_area_struct *vma, | 58 | void hugetlb_change_protection(struct vm_area_struct *vma, |
| 53 | unsigned long address, unsigned long end, pgprot_t newprot); | 59 | unsigned long address, unsigned long end, pgprot_t newprot); |
| 54 | 60 | ||
| @@ -58,6 +64,11 @@ static inline int is_vm_hugetlb_page(struct vm_area_struct *vma) | |||
| 58 | { | 64 | { |
| 59 | return 0; | 65 | return 0; |
| 60 | } | 66 | } |
| 67 | |||
| 68 | static inline void reset_vma_resv_huge_pages(struct vm_area_struct *vma) | ||
| 69 | { | ||
| 70 | } | ||
| 71 | |||
| 61 | static inline unsigned long hugetlb_total_pages(void) | 72 | static inline unsigned long hugetlb_total_pages(void) |
| 62 | { | 73 | { |
| 63 | return 0; | 74 | return 0; |
| @@ -67,12 +78,14 @@ static inline unsigned long hugetlb_total_pages(void) | |||
| 67 | #define follow_huge_addr(mm, addr, write) ERR_PTR(-EINVAL) | 78 | #define follow_huge_addr(mm, addr, write) ERR_PTR(-EINVAL) |
| 68 | #define copy_hugetlb_page_range(src, dst, vma) ({ BUG(); 0; }) | 79 | #define copy_hugetlb_page_range(src, dst, vma) ({ BUG(); 0; }) |
| 69 | #define hugetlb_prefault(mapping, vma) ({ BUG(); 0; }) | 80 | #define hugetlb_prefault(mapping, vma) ({ BUG(); 0; }) |
| 70 | #define unmap_hugepage_range(vma, start, end) BUG() | 81 | #define unmap_hugepage_range(vma, start, end, page) BUG() |
| 71 | #define hugetlb_report_meminfo(buf) 0 | 82 | #define hugetlb_report_meminfo(buf) 0 |
| 72 | #define hugetlb_report_node_meminfo(n, buf) 0 | 83 | #define hugetlb_report_node_meminfo(n, buf) 0 |
| 73 | #define follow_huge_pmd(mm, addr, pmd, write) NULL | 84 | #define follow_huge_pmd(mm, addr, pmd, write) NULL |
| 74 | #define prepare_hugepage_range(addr,len) (-EINVAL) | 85 | #define follow_huge_pud(mm, addr, pud, write) NULL |
| 86 | #define prepare_hugepage_range(file, addr, len) (-EINVAL) | ||
| 75 | #define pmd_huge(x) 0 | 87 | #define pmd_huge(x) 0 |
| 88 | #define pud_huge(x) 0 | ||
| 76 | #define is_hugepage_only_range(mm, addr, len) 0 | 89 | #define is_hugepage_only_range(mm, addr, len) 0 |
| 77 | #define hugetlb_free_pgd_range(tlb, addr, end, floor, ceiling) ({BUG(); 0; }) | 90 | #define hugetlb_free_pgd_range(tlb, addr, end, floor, ceiling) ({BUG(); 0; }) |
| 78 | #define hugetlb_fault(mm, vma, addr, write) ({ BUG(); 0; }) | 91 | #define hugetlb_fault(mm, vma, addr, write) ({ BUG(); 0; }) |
| @@ -93,6 +106,7 @@ struct hugetlbfs_config { | |||
| 93 | umode_t mode; | 106 | umode_t mode; |
| 94 | long nr_blocks; | 107 | long nr_blocks; |
| 95 | long nr_inodes; | 108 | long nr_inodes; |
| 109 | struct hstate *hstate; | ||
| 96 | }; | 110 | }; |
| 97 | 111 | ||
| 98 | struct hugetlbfs_sb_info { | 112 | struct hugetlbfs_sb_info { |
| @@ -101,6 +115,7 @@ struct hugetlbfs_sb_info { | |||
| 101 | long max_inodes; /* inodes allowed */ | 115 | long max_inodes; /* inodes allowed */ |
| 102 | long free_inodes; /* inodes free */ | 116 | long free_inodes; /* inodes free */ |
| 103 | spinlock_t stat_lock; | 117 | spinlock_t stat_lock; |
| 118 | struct hstate *hstate; | ||
| 104 | }; | 119 | }; |
| 105 | 120 | ||
| 106 | 121 | ||
| @@ -125,8 +140,6 @@ struct file *hugetlb_file_setup(const char *name, size_t); | |||
| 125 | int hugetlb_get_quota(struct address_space *mapping, long delta); | 140 | int hugetlb_get_quota(struct address_space *mapping, long delta); |
| 126 | void hugetlb_put_quota(struct address_space *mapping, long delta); | 141 | void hugetlb_put_quota(struct address_space *mapping, long delta); |
| 127 | 142 | ||
| 128 | #define BLOCKS_PER_HUGEPAGE (HPAGE_SIZE / 512) | ||
| 129 | |||
| 130 | static inline int is_file_hugepages(struct file *file) | 143 | static inline int is_file_hugepages(struct file *file) |
| 131 | { | 144 | { |
| 132 | if (file->f_op == &hugetlbfs_file_operations) | 145 | if (file->f_op == &hugetlbfs_file_operations) |
| @@ -155,4 +168,115 @@ unsigned long hugetlb_get_unmapped_area(struct file *file, unsigned long addr, | |||
| 155 | unsigned long flags); | 168 | unsigned long flags); |
| 156 | #endif /* HAVE_ARCH_HUGETLB_UNMAPPED_AREA */ | 169 | #endif /* HAVE_ARCH_HUGETLB_UNMAPPED_AREA */ |
| 157 | 170 | ||
| 171 | #ifdef CONFIG_HUGETLB_PAGE | ||
| 172 | |||
| 173 | #define HSTATE_NAME_LEN 32 | ||
| 174 | /* Defines one hugetlb page size */ | ||
| 175 | struct hstate { | ||
| 176 | int hugetlb_next_nid; | ||
| 177 | unsigned int order; | ||
| 178 | unsigned long mask; | ||
| 179 | unsigned long max_huge_pages; | ||
| 180 | unsigned long nr_huge_pages; | ||
| 181 | unsigned long free_huge_pages; | ||
| 182 | unsigned long resv_huge_pages; | ||
| 183 | unsigned long surplus_huge_pages; | ||
| 184 | unsigned long nr_overcommit_huge_pages; | ||
| 185 | struct list_head hugepage_freelists[MAX_NUMNODES]; | ||
| 186 | unsigned int nr_huge_pages_node[MAX_NUMNODES]; | ||
| 187 | unsigned int free_huge_pages_node[MAX_NUMNODES]; | ||
| 188 | unsigned int surplus_huge_pages_node[MAX_NUMNODES]; | ||
| 189 | char name[HSTATE_NAME_LEN]; | ||
| 190 | }; | ||
| 191 | |||
| 192 | struct huge_bootmem_page { | ||
| 193 | struct list_head list; | ||
| 194 | struct hstate *hstate; | ||
| 195 | }; | ||
| 196 | |||
| 197 | /* arch callback */ | ||
| 198 | int __init alloc_bootmem_huge_page(struct hstate *h); | ||
| 199 | |||
| 200 | void __init hugetlb_add_hstate(unsigned order); | ||
| 201 | struct hstate *size_to_hstate(unsigned long size); | ||
| 202 | |||
| 203 | #ifndef HUGE_MAX_HSTATE | ||
| 204 | #define HUGE_MAX_HSTATE 1 | ||
| 205 | #endif | ||
| 206 | |||
| 207 | extern struct hstate hstates[HUGE_MAX_HSTATE]; | ||
| 208 | extern unsigned int default_hstate_idx; | ||
| 209 | |||
| 210 | #define default_hstate (hstates[default_hstate_idx]) | ||
| 211 | |||
| 212 | static inline struct hstate *hstate_inode(struct inode *i) | ||
| 213 | { | ||
| 214 | struct hugetlbfs_sb_info *hsb; | ||
| 215 | hsb = HUGETLBFS_SB(i->i_sb); | ||
| 216 | return hsb->hstate; | ||
| 217 | } | ||
| 218 | |||
| 219 | static inline struct hstate *hstate_file(struct file *f) | ||
| 220 | { | ||
| 221 | return hstate_inode(f->f_dentry->d_inode); | ||
| 222 | } | ||
| 223 | |||
| 224 | static inline struct hstate *hstate_vma(struct vm_area_struct *vma) | ||
| 225 | { | ||
| 226 | return hstate_file(vma->vm_file); | ||
| 227 | } | ||
| 228 | |||
| 229 | static inline unsigned long huge_page_size(struct hstate *h) | ||
| 230 | { | ||
| 231 | return (unsigned long)PAGE_SIZE << h->order; | ||
| 232 | } | ||
| 233 | |||
| 234 | static inline unsigned long huge_page_mask(struct hstate *h) | ||
| 235 | { | ||
| 236 | return h->mask; | ||
| 237 | } | ||
| 238 | |||
| 239 | static inline unsigned int huge_page_order(struct hstate *h) | ||
| 240 | { | ||
| 241 | return h->order; | ||
| 242 | } | ||
| 243 | |||
| 244 | static inline unsigned huge_page_shift(struct hstate *h) | ||
| 245 | { | ||
| 246 | return h->order + PAGE_SHIFT; | ||
| 247 | } | ||
| 248 | |||
| 249 | static inline unsigned int pages_per_huge_page(struct hstate *h) | ||
| 250 | { | ||
| 251 | return 1 << h->order; | ||
| 252 | } | ||
| 253 | |||
| 254 | static inline unsigned int blocks_per_huge_page(struct hstate *h) | ||
| 255 | { | ||
| 256 | return huge_page_size(h) / 512; | ||
| 257 | } | ||
| 258 | |||
| 259 | #include <asm/hugetlb.h> | ||
| 260 | |||
| 261 | static inline struct hstate *page_hstate(struct page *page) | ||
| 262 | { | ||
| 263 | return size_to_hstate(PAGE_SIZE << compound_order(page)); | ||
| 264 | } | ||
| 265 | |||
| 266 | #else | ||
| 267 | struct hstate {}; | ||
| 268 | #define alloc_bootmem_huge_page(h) NULL | ||
| 269 | #define hstate_file(f) NULL | ||
| 270 | #define hstate_vma(v) NULL | ||
| 271 | #define hstate_inode(i) NULL | ||
| 272 | #define huge_page_size(h) PAGE_SIZE | ||
| 273 | #define huge_page_mask(h) PAGE_MASK | ||
| 274 | #define huge_page_order(h) 0 | ||
| 275 | #define huge_page_shift(h) PAGE_SHIFT | ||
| 276 | static inline unsigned int pages_per_huge_page(struct hstate *h) | ||
| 277 | { | ||
| 278 | return 1; | ||
| 279 | } | ||
| 280 | #endif | ||
| 281 | |||
| 158 | #endif /* _LINUX_HUGETLB_H */ | 282 | #endif /* _LINUX_HUGETLB_H */ |
diff --git a/include/linux/i2c-id.h b/include/linux/i2c-id.h index 4862398e05bf..bf34c5f4c051 100644 --- a/include/linux/i2c-id.h +++ b/include/linux/i2c-id.h | |||
| @@ -39,7 +39,6 @@ | |||
| 39 | #define I2C_DRIVERID_SAA7111A 8 /* video input processor */ | 39 | #define I2C_DRIVERID_SAA7111A 8 /* video input processor */ |
| 40 | #define I2C_DRIVERID_SAA7185B 13 /* video encoder */ | 40 | #define I2C_DRIVERID_SAA7185B 13 /* video encoder */ |
| 41 | #define I2C_DRIVERID_SAA7110 22 /* video decoder */ | 41 | #define I2C_DRIVERID_SAA7110 22 /* video decoder */ |
| 42 | #define I2C_DRIVERID_MGATVO 23 /* Matrox TVOut */ | ||
| 43 | #define I2C_DRIVERID_SAA5249 24 /* SAA5249 and compatibles */ | 42 | #define I2C_DRIVERID_SAA5249 24 /* SAA5249 and compatibles */ |
| 44 | #define I2C_DRIVERID_PCF8583 25 /* real time clock */ | 43 | #define I2C_DRIVERID_PCF8583 25 /* real time clock */ |
| 45 | #define I2C_DRIVERID_SAB3036 26 /* SAB3036 tuner */ | 44 | #define I2C_DRIVERID_SAB3036 26 /* SAB3036 tuner */ |
| @@ -95,7 +94,6 @@ | |||
| 95 | #define I2C_HW_B_BT848 0x010005 /* BT848 video boards */ | 94 | #define I2C_HW_B_BT848 0x010005 /* BT848 video boards */ |
| 96 | #define I2C_HW_B_VIA 0x010007 /* Via vt82c586b */ | 95 | #define I2C_HW_B_VIA 0x010007 /* Via vt82c586b */ |
| 97 | #define I2C_HW_B_HYDRA 0x010008 /* Apple Hydra Mac I/O */ | 96 | #define I2C_HW_B_HYDRA 0x010008 /* Apple Hydra Mac I/O */ |
| 98 | #define I2C_HW_B_G400 0x010009 /* Matrox G400 */ | ||
| 99 | #define I2C_HW_B_I810 0x01000a /* Intel I810 */ | 97 | #define I2C_HW_B_I810 0x01000a /* Intel I810 */ |
| 100 | #define I2C_HW_B_VOO 0x01000b /* 3dfx Voodoo 3 / Banshee */ | 98 | #define I2C_HW_B_VOO 0x01000b /* 3dfx Voodoo 3 / Banshee */ |
| 101 | #define I2C_HW_B_SCX200 0x01000e /* Nat'l Semi SCx200 I2C */ | 99 | #define I2C_HW_B_SCX200 0x01000e /* Nat'l Semi SCx200 I2C */ |
diff --git a/include/linux/i2c-pnx.h b/include/linux/i2c-pnx.h index e6e9c814da61..f13255e06406 100644 --- a/include/linux/i2c-pnx.h +++ b/include/linux/i2c-pnx.h | |||
| @@ -12,7 +12,9 @@ | |||
| 12 | #ifndef __I2C_PNX_H__ | 12 | #ifndef __I2C_PNX_H__ |
| 13 | #define __I2C_PNX_H__ | 13 | #define __I2C_PNX_H__ |
| 14 | 14 | ||
| 15 | #include <asm/arch/i2c.h> | 15 | #include <linux/pm.h> |
| 16 | |||
| 17 | struct platform_device; | ||
| 16 | 18 | ||
| 17 | struct i2c_pnx_mif { | 19 | struct i2c_pnx_mif { |
| 18 | int ret; /* Return value */ | 20 | int ret; /* Return value */ |
diff --git a/include/linux/i2c/max732x.h b/include/linux/i2c/max732x.h new file mode 100644 index 000000000000..e10336631c62 --- /dev/null +++ b/include/linux/i2c/max732x.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | #ifndef __LINUX_I2C_MAX732X_H | ||
| 2 | #define __LINUX_I2C_MAX732X_H | ||
| 3 | |||
| 4 | /* platform data for the MAX732x 8/16-bit I/O expander driver */ | ||
| 5 | |||
| 6 | struct max732x_platform_data { | ||
| 7 | /* number of the first GPIO */ | ||
| 8 | unsigned gpio_base; | ||
| 9 | |||
| 10 | void *context; /* param to setup/teardown */ | ||
| 11 | |||
| 12 | int (*setup)(struct i2c_client *client, | ||
| 13 | unsigned gpio, unsigned ngpio, | ||
| 14 | void *context); | ||
| 15 | int (*teardown)(struct i2c_client *client, | ||
| 16 | unsigned gpio, unsigned ngpio, | ||
| 17 | void *context); | ||
| 18 | }; | ||
| 19 | #endif /* __LINUX_I2C_MAX732X_H */ | ||
diff --git a/include/linux/i2o.h b/include/linux/i2o.h index 7d51cbca49ab..75ae6d8aba4f 100644 --- a/include/linux/i2o.h +++ b/include/linux/i2o.h | |||
| @@ -758,7 +758,7 @@ static inline dma_addr_t i2o_dma_map_single(struct i2o_controller *c, void *ptr, | |||
| 758 | } | 758 | } |
| 759 | 759 | ||
| 760 | dma_addr = dma_map_single(&c->pdev->dev, ptr, size, direction); | 760 | dma_addr = dma_map_single(&c->pdev->dev, ptr, size, direction); |
| 761 | if (!dma_mapping_error(dma_addr)) { | 761 | if (!dma_mapping_error(&c->pdev->dev, dma_addr)) { |
| 762 | #ifdef CONFIG_I2O_EXT_ADAPTEC_DMA64 | 762 | #ifdef CONFIG_I2O_EXT_ADAPTEC_DMA64 |
| 763 | if ((sizeof(dma_addr_t) > 4) && c->pae_support) { | 763 | if ((sizeof(dma_addr_t) > 4) && c->pae_support) { |
| 764 | *mptr++ = cpu_to_le32(0x7C020002); | 764 | *mptr++ = cpu_to_le32(0x7C020002); |
diff --git a/include/linux/ide.h b/include/linux/ide.h index 4726126f5a59..87c12ed96954 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
| @@ -178,6 +178,7 @@ typedef struct hw_regs_s { | |||
| 178 | ide_ack_intr_t *ack_intr; /* acknowledge interrupt */ | 178 | ide_ack_intr_t *ack_intr; /* acknowledge interrupt */ |
| 179 | hwif_chipset_t chipset; | 179 | hwif_chipset_t chipset; |
| 180 | struct device *dev, *parent; | 180 | struct device *dev, *parent; |
| 181 | unsigned long config; | ||
| 181 | } hw_regs_t; | 182 | } hw_regs_t; |
| 182 | 183 | ||
| 183 | void ide_init_port_data(struct hwif_s *, unsigned int); | 184 | void ide_init_port_data(struct hwif_s *, unsigned int); |
| @@ -210,13 +211,16 @@ static inline int __ide_default_irq(unsigned long base) | |||
| 210 | return 0; | 211 | return 0; |
| 211 | } | 212 | } |
| 212 | 213 | ||
| 214 | #if defined(CONFIG_ARM) || defined(CONFIG_FRV) || defined(CONFIG_M68K) || \ | ||
| 215 | defined(CONFIG_MIPS) || defined(CONFIG_MN10300) || defined(CONFIG_PARISC) \ | ||
| 216 | || defined(CONFIG_PPC) || defined(CONFIG_SPARC) || defined(CONFIG_SPARC64) | ||
| 213 | #include <asm/ide.h> | 217 | #include <asm/ide.h> |
| 214 | 218 | #else | |
| 215 | #if !defined(MAX_HWIFS) || defined(CONFIG_EMBEDDED) | 219 | #include <asm-generic/ide_iops.h> |
| 216 | #undef MAX_HWIFS | ||
| 217 | #define MAX_HWIFS CONFIG_IDE_MAX_HWIFS | ||
| 218 | #endif | 220 | #endif |
| 219 | 221 | ||
| 222 | #define MAX_HWIFS 10 | ||
| 223 | |||
| 220 | /* Currently only m68k, apus and m8xx need it */ | 224 | /* Currently only m68k, apus and m8xx need it */ |
| 221 | #ifndef IDE_ARCH_ACK_INTR | 225 | #ifndef IDE_ARCH_ACK_INTR |
| 222 | # define ide_ack_intr(hwif) (1) | 226 | # define ide_ack_intr(hwif) (1) |
| @@ -307,7 +311,65 @@ struct ide_acpi_drive_link; | |||
| 307 | struct ide_acpi_hwif_link; | 311 | struct ide_acpi_hwif_link; |
| 308 | #endif | 312 | #endif |
| 309 | 313 | ||
| 310 | typedef struct ide_drive_s { | 314 | /* ATAPI device flags */ |
| 315 | enum { | ||
| 316 | IDE_AFLAG_DRQ_INTERRUPT = (1 << 0), | ||
| 317 | IDE_AFLAG_MEDIA_CHANGED = (1 << 1), | ||
| 318 | |||
| 319 | /* ide-cd */ | ||
| 320 | /* Drive cannot lock the door. */ | ||
| 321 | IDE_AFLAG_NO_DOORLOCK = (1 << 2), | ||
| 322 | /* Drive cannot eject the disc. */ | ||
| 323 | IDE_AFLAG_NO_EJECT = (1 << 3), | ||
| 324 | /* Drive is a pre ATAPI 1.2 drive. */ | ||
| 325 | IDE_AFLAG_PRE_ATAPI12 = (1 << 4), | ||
| 326 | /* TOC addresses are in BCD. */ | ||
| 327 | IDE_AFLAG_TOCADDR_AS_BCD = (1 << 5), | ||
| 328 | /* TOC track numbers are in BCD. */ | ||
| 329 | IDE_AFLAG_TOCTRACKS_AS_BCD = (1 << 6), | ||
| 330 | /* | ||
| 331 | * Drive does not provide data in multiples of SECTOR_SIZE | ||
| 332 | * when more than one interrupt is needed. | ||
| 333 | */ | ||
| 334 | IDE_AFLAG_LIMIT_NFRAMES = (1 << 7), | ||
| 335 | /* Seeking in progress. */ | ||
| 336 | IDE_AFLAG_SEEKING = (1 << 8), | ||
| 337 | /* Saved TOC information is current. */ | ||
| 338 | IDE_AFLAG_TOC_VALID = (1 << 9), | ||
| 339 | /* We think that the drive door is locked. */ | ||
| 340 | IDE_AFLAG_DOOR_LOCKED = (1 << 10), | ||
| 341 | /* SET_CD_SPEED command is unsupported. */ | ||
| 342 | IDE_AFLAG_NO_SPEED_SELECT = (1 << 11), | ||
| 343 | IDE_AFLAG_VERTOS_300_SSD = (1 << 12), | ||
| 344 | IDE_AFLAG_VERTOS_600_ESD = (1 << 13), | ||
| 345 | IDE_AFLAG_SANYO_3CD = (1 << 14), | ||
| 346 | IDE_AFLAG_FULL_CAPS_PAGE = (1 << 15), | ||
| 347 | IDE_AFLAG_PLAY_AUDIO_OK = (1 << 16), | ||
| 348 | IDE_AFLAG_LE_SPEED_FIELDS = (1 << 17), | ||
| 349 | |||
| 350 | /* ide-floppy */ | ||
| 351 | /* Format in progress */ | ||
| 352 | IDE_AFLAG_FORMAT_IN_PROGRESS = (1 << 18), | ||
| 353 | /* Avoid commands not supported in Clik drive */ | ||
| 354 | IDE_AFLAG_CLIK_DRIVE = (1 << 19), | ||
| 355 | /* Requires BH algorithm for packets */ | ||
| 356 | IDE_AFLAG_ZIP_DRIVE = (1 << 20), | ||
| 357 | |||
| 358 | /* ide-tape */ | ||
| 359 | IDE_AFLAG_IGNORE_DSC = (1 << 21), | ||
| 360 | /* 0 When the tape position is unknown */ | ||
| 361 | IDE_AFLAG_ADDRESS_VALID = (1 << 22), | ||
| 362 | /* Device already opened */ | ||
| 363 | IDE_AFLAG_BUSY = (1 << 23), | ||
| 364 | /* Attempt to auto-detect the current user block size */ | ||
| 365 | IDE_AFLAG_DETECT_BS = (1 << 24), | ||
| 366 | /* Currently on a filemark */ | ||
| 367 | IDE_AFLAG_FILEMARK = (1 << 25), | ||
| 368 | /* 0 = no tape is loaded, so we don't rewind after ejecting */ | ||
| 369 | IDE_AFLAG_MEDIUM_PRESENT = (1 << 26) | ||
| 370 | }; | ||
| 371 | |||
| 372 | struct ide_drive_s { | ||
| 311 | char name[4]; /* drive name, such as "hda" */ | 373 | char name[4]; /* drive name, such as "hda" */ |
| 312 | char driver_req[10]; /* requests specific driver */ | 374 | char driver_req[10]; /* requests specific driver */ |
| 313 | 375 | ||
| @@ -355,7 +417,6 @@ typedef struct ide_drive_s { | |||
| 355 | unsigned nodma : 1; /* disallow DMA */ | 417 | unsigned nodma : 1; /* disallow DMA */ |
| 356 | unsigned remap_0_to_1 : 1; /* 0=noremap, 1=remap 0->1 (for EZDrive) */ | 418 | unsigned remap_0_to_1 : 1; /* 0=noremap, 1=remap 0->1 (for EZDrive) */ |
| 357 | unsigned blocked : 1; /* 1=powermanagment told us not to do anything, so sleep nicely */ | 419 | unsigned blocked : 1; /* 1=powermanagment told us not to do anything, so sleep nicely */ |
| 358 | unsigned vdma : 1; /* 1=doing PIO over DMA 0=doing normal DMA */ | ||
| 359 | unsigned scsi : 1; /* 0=default, 1=ide-scsi emulation */ | 420 | unsigned scsi : 1; /* 0=default, 1=ide-scsi emulation */ |
| 360 | unsigned sleeping : 1; /* 1=sleeping & sleep field valid */ | 421 | unsigned sleeping : 1; /* 1=sleeping & sleep field valid */ |
| 361 | unsigned post_reset : 1; | 422 | unsigned post_reset : 1; |
| @@ -400,7 +461,14 @@ typedef struct ide_drive_s { | |||
| 400 | struct list_head list; | 461 | struct list_head list; |
| 401 | struct device gendev; | 462 | struct device gendev; |
| 402 | struct completion gendev_rel_comp; /* to deal with device release() */ | 463 | struct completion gendev_rel_comp; /* to deal with device release() */ |
| 403 | } ide_drive_t; | 464 | |
| 465 | /* callback for packet commands */ | ||
| 466 | void (*pc_callback)(struct ide_drive_s *); | ||
| 467 | |||
| 468 | unsigned long atapi_flags; | ||
| 469 | }; | ||
| 470 | |||
| 471 | typedef struct ide_drive_s ide_drive_t; | ||
| 404 | 472 | ||
| 405 | #define to_ide_device(dev)container_of(dev, ide_drive_t, gendev) | 473 | #define to_ide_device(dev)container_of(dev, ide_drive_t, gendev) |
| 406 | 474 | ||
| @@ -408,26 +476,55 @@ typedef struct ide_drive_s { | |||
| 408 | ((1<<ide_pci)|(1<<ide_cmd646)|(1<<ide_ali14xx)) | 476 | ((1<<ide_pci)|(1<<ide_cmd646)|(1<<ide_ali14xx)) |
| 409 | #define IDE_CHIPSET_IS_PCI(c) ((IDE_CHIPSET_PCI_MASK >> (c)) & 1) | 477 | #define IDE_CHIPSET_IS_PCI(c) ((IDE_CHIPSET_PCI_MASK >> (c)) & 1) |
| 410 | 478 | ||
| 479 | struct ide_task_s; | ||
| 411 | struct ide_port_info; | 480 | struct ide_port_info; |
| 412 | 481 | ||
| 482 | struct ide_tp_ops { | ||
| 483 | void (*exec_command)(struct hwif_s *, u8); | ||
| 484 | u8 (*read_status)(struct hwif_s *); | ||
| 485 | u8 (*read_altstatus)(struct hwif_s *); | ||
| 486 | u8 (*read_sff_dma_status)(struct hwif_s *); | ||
| 487 | |||
| 488 | void (*set_irq)(struct hwif_s *, int); | ||
| 489 | |||
| 490 | void (*tf_load)(ide_drive_t *, struct ide_task_s *); | ||
| 491 | void (*tf_read)(ide_drive_t *, struct ide_task_s *); | ||
| 492 | |||
| 493 | void (*input_data)(ide_drive_t *, struct request *, void *, | ||
| 494 | unsigned int); | ||
| 495 | void (*output_data)(ide_drive_t *, struct request *, void *, | ||
| 496 | unsigned int); | ||
| 497 | }; | ||
| 498 | |||
| 499 | extern const struct ide_tp_ops default_tp_ops; | ||
| 500 | |||
| 501 | /** | ||
| 502 | * struct ide_port_ops - IDE port operations | ||
| 503 | * | ||
| 504 | * @init_dev: host specific initialization of a device | ||
| 505 | * @set_pio_mode: routine to program host for PIO mode | ||
| 506 | * @set_dma_mode: routine to program host for DMA mode | ||
| 507 | * @selectproc: tweaks hardware to select drive | ||
| 508 | * @reset_poll: chipset polling based on hba specifics | ||
| 509 | * @pre_reset: chipset specific changes to default for device-hba resets | ||
| 510 | * @resetproc: routine to reset controller after a disk reset | ||
| 511 | * @maskproc: special host masking for drive selection | ||
| 512 | * @quirkproc: check host's drive quirk list | ||
| 513 | * | ||
| 514 | * @mdma_filter: filter MDMA modes | ||
| 515 | * @udma_filter: filter UDMA modes | ||
| 516 | * | ||
| 517 | * @cable_detect: detect cable type | ||
| 518 | */ | ||
| 413 | struct ide_port_ops { | 519 | struct ide_port_ops { |
| 414 | /* host specific initialization of a device */ | ||
| 415 | void (*init_dev)(ide_drive_t *); | 520 | void (*init_dev)(ide_drive_t *); |
| 416 | /* routine to program host for PIO mode */ | ||
| 417 | void (*set_pio_mode)(ide_drive_t *, const u8); | 521 | void (*set_pio_mode)(ide_drive_t *, const u8); |
| 418 | /* routine to program host for DMA mode */ | ||
| 419 | void (*set_dma_mode)(ide_drive_t *, const u8); | 522 | void (*set_dma_mode)(ide_drive_t *, const u8); |
| 420 | /* tweaks hardware to select drive */ | ||
| 421 | void (*selectproc)(ide_drive_t *); | 523 | void (*selectproc)(ide_drive_t *); |
| 422 | /* chipset polling based on hba specifics */ | ||
| 423 | int (*reset_poll)(ide_drive_t *); | 524 | int (*reset_poll)(ide_drive_t *); |
| 424 | /* chipset specific changes to default for device-hba resets */ | ||
| 425 | void (*pre_reset)(ide_drive_t *); | 525 | void (*pre_reset)(ide_drive_t *); |
| 426 | /* routine to reset controller after a disk reset */ | ||
| 427 | void (*resetproc)(ide_drive_t *); | 526 | void (*resetproc)(ide_drive_t *); |
| 428 | /* special host masking for drive selection */ | ||
| 429 | void (*maskproc)(ide_drive_t *, int); | 527 | void (*maskproc)(ide_drive_t *, int); |
| 430 | /* check host's drive quirk list */ | ||
| 431 | void (*quirkproc)(ide_drive_t *); | 528 | void (*quirkproc)(ide_drive_t *); |
| 432 | 529 | ||
| 433 | u8 (*mdma_filter)(ide_drive_t *); | 530 | u8 (*mdma_filter)(ide_drive_t *); |
| @@ -447,7 +544,7 @@ struct ide_dma_ops { | |||
| 447 | void (*dma_timeout)(struct ide_drive_s *); | 544 | void (*dma_timeout)(struct ide_drive_s *); |
| 448 | }; | 545 | }; |
| 449 | 546 | ||
| 450 | struct ide_task_s; | 547 | struct ide_host; |
| 451 | 548 | ||
| 452 | typedef struct hwif_s { | 549 | typedef struct hwif_s { |
| 453 | struct hwif_s *next; /* for linked-list in ide_hwgroup_t */ | 550 | struct hwif_s *next; /* for linked-list in ide_hwgroup_t */ |
| @@ -455,6 +552,8 @@ typedef struct hwif_s { | |||
| 455 | struct hwgroup_s *hwgroup; /* actually (ide_hwgroup_t *) */ | 552 | struct hwgroup_s *hwgroup; /* actually (ide_hwgroup_t *) */ |
| 456 | struct proc_dir_entry *proc; /* /proc/ide/ directory entry */ | 553 | struct proc_dir_entry *proc; /* /proc/ide/ directory entry */ |
| 457 | 554 | ||
| 555 | struct ide_host *host; | ||
| 556 | |||
| 458 | char name[6]; /* name of interface, eg. "ide0" */ | 557 | char name[6]; /* name of interface, eg. "ide0" */ |
| 459 | 558 | ||
| 460 | struct ide_io_ports io_ports; | 559 | struct ide_io_ports io_ports; |
| @@ -486,22 +585,12 @@ typedef struct hwif_s { | |||
| 486 | 585 | ||
| 487 | void (*rw_disk)(ide_drive_t *, struct request *); | 586 | void (*rw_disk)(ide_drive_t *, struct request *); |
| 488 | 587 | ||
| 588 | const struct ide_tp_ops *tp_ops; | ||
| 489 | const struct ide_port_ops *port_ops; | 589 | const struct ide_port_ops *port_ops; |
| 490 | const struct ide_dma_ops *dma_ops; | 590 | const struct ide_dma_ops *dma_ops; |
| 491 | 591 | ||
| 492 | void (*tf_load)(ide_drive_t *, struct ide_task_s *); | ||
| 493 | void (*tf_read)(ide_drive_t *, struct ide_task_s *); | ||
| 494 | |||
| 495 | void (*input_data)(ide_drive_t *, struct request *, void *, unsigned); | ||
| 496 | void (*output_data)(ide_drive_t *, struct request *, void *, unsigned); | ||
| 497 | |||
| 498 | void (*ide_dma_clear_irq)(ide_drive_t *drive); | 592 | void (*ide_dma_clear_irq)(ide_drive_t *drive); |
| 499 | 593 | ||
| 500 | void (*OUTB)(u8 addr, unsigned long port); | ||
| 501 | void (*OUTBSYNC)(struct hwif_s *hwif, u8 addr, unsigned long port); | ||
| 502 | |||
| 503 | u8 (*INB)(unsigned long port); | ||
| 504 | |||
| 505 | /* dma physical region descriptor table (cpu view) */ | 594 | /* dma physical region descriptor table (cpu view) */ |
| 506 | unsigned int *dmatable_cpu; | 595 | unsigned int *dmatable_cpu; |
| 507 | /* dma physical region descriptor table (dma view) */ | 596 | /* dma physical region descriptor table (dma view) */ |
| @@ -524,8 +613,6 @@ typedef struct hwif_s { | |||
| 524 | int irq; /* our irq number */ | 613 | int irq; /* our irq number */ |
| 525 | 614 | ||
| 526 | unsigned long dma_base; /* base addr for dma ports */ | 615 | unsigned long dma_base; /* base addr for dma ports */ |
| 527 | unsigned long dma_command; /* dma command register */ | ||
| 528 | unsigned long dma_status; /* dma status register */ | ||
| 529 | 616 | ||
| 530 | unsigned long config_data; /* for use by chipset-specific code */ | 617 | unsigned long config_data; /* for use by chipset-specific code */ |
| 531 | unsigned long select_data; /* for use by chipset-specific code */ | 618 | unsigned long select_data; /* for use by chipset-specific code */ |
| @@ -552,6 +639,14 @@ typedef struct hwif_s { | |||
| 552 | #endif | 639 | #endif |
| 553 | } ____cacheline_internodealigned_in_smp ide_hwif_t; | 640 | } ____cacheline_internodealigned_in_smp ide_hwif_t; |
| 554 | 641 | ||
| 642 | struct ide_host { | ||
| 643 | ide_hwif_t *ports[MAX_HWIFS]; | ||
| 644 | unsigned int n_ports; | ||
| 645 | struct device *dev[2]; | ||
| 646 | unsigned long host_flags; | ||
| 647 | void *host_priv; | ||
| 648 | }; | ||
| 649 | |||
| 555 | /* | 650 | /* |
| 556 | * internal ide interrupt handler type | 651 | * internal ide interrupt handler type |
| 557 | */ | 652 | */ |
| @@ -611,8 +706,6 @@ enum { | |||
| 611 | PC_FLAG_WRITING = (1 << 6), | 706 | PC_FLAG_WRITING = (1 << 6), |
| 612 | /* command timed out */ | 707 | /* command timed out */ |
| 613 | PC_FLAG_TIMEDOUT = (1 << 7), | 708 | PC_FLAG_TIMEDOUT = (1 << 7), |
| 614 | PC_FLAG_ZIP_DRIVE = (1 << 8), | ||
| 615 | PC_FLAG_DRQ_INTERRUPT = (1 << 9), | ||
| 616 | }; | 709 | }; |
| 617 | 710 | ||
| 618 | struct ide_atapi_pc { | 711 | struct ide_atapi_pc { |
| @@ -646,8 +739,6 @@ struct ide_atapi_pc { | |||
| 646 | */ | 739 | */ |
| 647 | u8 pc_buf[256]; | 740 | u8 pc_buf[256]; |
| 648 | 741 | ||
| 649 | void (*callback)(ide_drive_t *); | ||
| 650 | |||
| 651 | /* idetape only */ | 742 | /* idetape only */ |
| 652 | struct idetape_bh *bh; | 743 | struct idetape_bh *bh; |
| 653 | char *b_data; | 744 | char *b_data; |
| @@ -802,18 +893,14 @@ struct ide_driver_s { | |||
| 802 | 893 | ||
| 803 | #define to_ide_driver(drv) container_of(drv, ide_driver_t, gen_driver) | 894 | #define to_ide_driver(drv) container_of(drv, ide_driver_t, gen_driver) |
| 804 | 895 | ||
| 896 | int ide_device_get(ide_drive_t *); | ||
| 897 | void ide_device_put(ide_drive_t *); | ||
| 898 | |||
| 805 | int generic_ide_ioctl(ide_drive_t *, struct file *, struct block_device *, unsigned, unsigned long); | 899 | int generic_ide_ioctl(ide_drive_t *, struct file *, struct block_device *, unsigned, unsigned long); |
| 806 | 900 | ||
| 807 | extern int ide_vlb_clk; | 901 | extern int ide_vlb_clk; |
| 808 | extern int ide_pci_clk; | 902 | extern int ide_pci_clk; |
| 809 | 903 | ||
| 810 | ide_hwif_t *ide_find_port_slot(const struct ide_port_info *); | ||
| 811 | |||
| 812 | static inline ide_hwif_t *ide_find_port(void) | ||
| 813 | { | ||
| 814 | return ide_find_port_slot(NULL); | ||
| 815 | } | ||
| 816 | |||
| 817 | extern int ide_end_request (ide_drive_t *drive, int uptodate, int nrsecs); | 904 | extern int ide_end_request (ide_drive_t *drive, int uptodate, int nrsecs); |
| 818 | int ide_end_dequeued_request(ide_drive_t *drive, struct request *rq, | 905 | int ide_end_dequeued_request(ide_drive_t *drive, struct request *rq, |
| 819 | int uptodate, int nr_sectors); | 906 | int uptodate, int nr_sectors); |
| @@ -884,6 +971,7 @@ enum { | |||
| 884 | IDE_TFLAG_IN_HOB = IDE_TFLAG_IN_HOB_FEATURE | | 971 | IDE_TFLAG_IN_HOB = IDE_TFLAG_IN_HOB_FEATURE | |
| 885 | IDE_TFLAG_IN_HOB_NSECT | | 972 | IDE_TFLAG_IN_HOB_NSECT | |
| 886 | IDE_TFLAG_IN_HOB_LBA, | 973 | IDE_TFLAG_IN_HOB_LBA, |
| 974 | IDE_TFLAG_IN_FEATURE = (1 << 1), | ||
| 887 | IDE_TFLAG_IN_NSECT = (1 << 25), | 975 | IDE_TFLAG_IN_NSECT = (1 << 25), |
| 888 | IDE_TFLAG_IN_LBAL = (1 << 26), | 976 | IDE_TFLAG_IN_LBAL = (1 << 26), |
| 889 | IDE_TFLAG_IN_LBAM = (1 << 27), | 977 | IDE_TFLAG_IN_LBAM = (1 << 27), |
| @@ -948,9 +1036,25 @@ typedef struct ide_task_s { | |||
| 948 | 1036 | ||
| 949 | void ide_tf_dump(const char *, struct ide_taskfile *); | 1037 | void ide_tf_dump(const char *, struct ide_taskfile *); |
| 950 | 1038 | ||
| 1039 | void ide_exec_command(ide_hwif_t *, u8); | ||
| 1040 | u8 ide_read_status(ide_hwif_t *); | ||
| 1041 | u8 ide_read_altstatus(ide_hwif_t *); | ||
| 1042 | u8 ide_read_sff_dma_status(ide_hwif_t *); | ||
| 1043 | |||
| 1044 | void ide_set_irq(ide_hwif_t *, int); | ||
| 1045 | |||
| 1046 | void ide_tf_load(ide_drive_t *, ide_task_t *); | ||
| 1047 | void ide_tf_read(ide_drive_t *, ide_task_t *); | ||
| 1048 | |||
| 1049 | void ide_input_data(ide_drive_t *, struct request *, void *, unsigned int); | ||
| 1050 | void ide_output_data(ide_drive_t *, struct request *, void *, unsigned int); | ||
| 1051 | |||
| 951 | extern void SELECT_DRIVE(ide_drive_t *); | 1052 | extern void SELECT_DRIVE(ide_drive_t *); |
| 952 | void SELECT_MASK(ide_drive_t *, int); | 1053 | void SELECT_MASK(ide_drive_t *, int); |
| 953 | 1054 | ||
| 1055 | u8 ide_read_error(ide_drive_t *); | ||
| 1056 | void ide_read_bcount_and_ireason(ide_drive_t *, u16 *, u8 *); | ||
| 1057 | |||
| 954 | extern int drive_is_ready(ide_drive_t *); | 1058 | extern int drive_is_ready(ide_drive_t *); |
| 955 | 1059 | ||
| 956 | void ide_pktcmd_tf_load(ide_drive_t *, u32, u16, u8); | 1060 | void ide_pktcmd_tf_load(ide_drive_t *, u32, u16, u8); |
| @@ -1000,12 +1104,15 @@ extern int __ide_pci_register_driver(struct pci_driver *driver, struct module *o | |||
| 1000 | #define ide_pci_register_driver(d) pci_register_driver(d) | 1104 | #define ide_pci_register_driver(d) pci_register_driver(d) |
| 1001 | #endif | 1105 | #endif |
| 1002 | 1106 | ||
| 1003 | void ide_pci_setup_ports(struct pci_dev *, const struct ide_port_info *, int, u8 *); | 1107 | void ide_pci_setup_ports(struct pci_dev *, const struct ide_port_info *, int, |
| 1108 | hw_regs_t *, hw_regs_t **); | ||
| 1004 | void ide_setup_pci_noise(struct pci_dev *, const struct ide_port_info *); | 1109 | void ide_setup_pci_noise(struct pci_dev *, const struct ide_port_info *); |
| 1005 | 1110 | ||
| 1006 | #ifdef CONFIG_BLK_DEV_IDEDMA_PCI | 1111 | #ifdef CONFIG_BLK_DEV_IDEDMA_PCI |
| 1007 | int ide_pci_set_master(struct pci_dev *, const char *); | 1112 | int ide_pci_set_master(struct pci_dev *, const char *); |
| 1008 | unsigned long ide_pci_dma_base(ide_hwif_t *, const struct ide_port_info *); | 1113 | unsigned long ide_pci_dma_base(ide_hwif_t *, const struct ide_port_info *); |
| 1114 | extern const struct ide_dma_ops sff_dma_ops; | ||
| 1115 | int ide_pci_check_simplex(ide_hwif_t *, const struct ide_port_info *); | ||
| 1009 | int ide_hwif_setup_dma(ide_hwif_t *, const struct ide_port_info *); | 1116 | int ide_hwif_setup_dma(ide_hwif_t *, const struct ide_port_info *); |
| 1010 | #else | 1117 | #else |
| 1011 | static inline int ide_hwif_setup_dma(ide_hwif_t *hwif, | 1118 | static inline int ide_hwif_setup_dma(ide_hwif_t *hwif, |
| @@ -1015,10 +1122,6 @@ static inline int ide_hwif_setup_dma(ide_hwif_t *hwif, | |||
| 1015 | } | 1122 | } |
| 1016 | #endif | 1123 | #endif |
| 1017 | 1124 | ||
| 1018 | extern void default_hwif_iops(ide_hwif_t *); | ||
| 1019 | extern void default_hwif_mmiops(ide_hwif_t *); | ||
| 1020 | extern void default_hwif_transport(ide_hwif_t *); | ||
| 1021 | |||
| 1022 | typedef struct ide_pci_enablebit_s { | 1125 | typedef struct ide_pci_enablebit_s { |
| 1023 | u8 reg; /* byte pci reg holding the enable-bit */ | 1126 | u8 reg; /* byte pci reg holding the enable-bit */ |
| 1024 | u8 mask; /* mask to isolate the enable-bit */ | 1127 | u8 mask; /* mask to isolate the enable-bit */ |
| @@ -1081,7 +1184,6 @@ enum { | |||
| 1081 | IDE_HFLAG_IO_32BIT = (1 << 24), | 1184 | IDE_HFLAG_IO_32BIT = (1 << 24), |
| 1082 | /* unmask IRQs */ | 1185 | /* unmask IRQs */ |
| 1083 | IDE_HFLAG_UNMASK_IRQS = (1 << 25), | 1186 | IDE_HFLAG_UNMASK_IRQS = (1 << 25), |
| 1084 | IDE_HFLAG_ABUSE_SET_DMA_MODE = (1 << 26), | ||
| 1085 | /* serialize ports if DMA is possible (for sl82c105) */ | 1187 | /* serialize ports if DMA is possible (for sl82c105) */ |
| 1086 | IDE_HFLAG_SERIALIZE_DMA = (1 << 27), | 1188 | IDE_HFLAG_SERIALIZE_DMA = (1 << 27), |
| 1087 | /* force host out of "simplex" mode */ | 1189 | /* force host out of "simplex" mode */ |
| @@ -1092,8 +1194,6 @@ enum { | |||
| 1092 | IDE_HFLAG_NO_IO_32BIT = (1 << 30), | 1194 | IDE_HFLAG_NO_IO_32BIT = (1 << 30), |
| 1093 | /* never unmask IRQs */ | 1195 | /* never unmask IRQs */ |
| 1094 | IDE_HFLAG_NO_UNMASK_IRQS = (1 << 31), | 1196 | IDE_HFLAG_NO_UNMASK_IRQS = (1 << 31), |
| 1095 | /* host uses VDMA (disabled for now) */ | ||
| 1096 | IDE_HFLAG_VDMA = 0, | ||
| 1097 | }; | 1197 | }; |
| 1098 | 1198 | ||
| 1099 | #ifdef CONFIG_BLK_DEV_OFFBOARD | 1199 | #ifdef CONFIG_BLK_DEV_OFFBOARD |
| @@ -1104,12 +1204,13 @@ enum { | |||
| 1104 | 1204 | ||
| 1105 | struct ide_port_info { | 1205 | struct ide_port_info { |
| 1106 | char *name; | 1206 | char *name; |
| 1107 | unsigned int (*init_chipset)(struct pci_dev *, const char *); | 1207 | unsigned int (*init_chipset)(struct pci_dev *); |
| 1108 | void (*init_iops)(ide_hwif_t *); | 1208 | void (*init_iops)(ide_hwif_t *); |
| 1109 | void (*init_hwif)(ide_hwif_t *); | 1209 | void (*init_hwif)(ide_hwif_t *); |
| 1110 | int (*init_dma)(ide_hwif_t *, | 1210 | int (*init_dma)(ide_hwif_t *, |
| 1111 | const struct ide_port_info *); | 1211 | const struct ide_port_info *); |
| 1112 | 1212 | ||
| 1213 | const struct ide_tp_ops *tp_ops; | ||
| 1113 | const struct ide_port_ops *port_ops; | 1214 | const struct ide_port_ops *port_ops; |
| 1114 | const struct ide_dma_ops *dma_ops; | 1215 | const struct ide_dma_ops *dma_ops; |
| 1115 | 1216 | ||
| @@ -1122,8 +1223,10 @@ struct ide_port_info { | |||
| 1122 | u8 udma_mask; | 1223 | u8 udma_mask; |
| 1123 | }; | 1224 | }; |
| 1124 | 1225 | ||
| 1125 | int ide_setup_pci_device(struct pci_dev *, const struct ide_port_info *); | 1226 | int ide_pci_init_one(struct pci_dev *, const struct ide_port_info *, void *); |
| 1126 | int ide_setup_pci_devices(struct pci_dev *, struct pci_dev *, const struct ide_port_info *); | 1227 | int ide_pci_init_two(struct pci_dev *, struct pci_dev *, |
| 1228 | const struct ide_port_info *, void *); | ||
| 1229 | void ide_pci_remove(struct pci_dev *); | ||
| 1127 | 1230 | ||
| 1128 | void ide_map_sg(ide_drive_t *, struct request *); | 1231 | void ide_map_sg(ide_drive_t *, struct request *); |
| 1129 | void ide_init_sg_cmd(ide_drive_t *, struct request *); | 1232 | void ide_init_sg_cmd(ide_drive_t *, struct request *); |
| @@ -1163,7 +1266,6 @@ void ide_destroy_dmatable(ide_drive_t *); | |||
| 1163 | extern int ide_build_dmatable(ide_drive_t *, struct request *); | 1266 | extern int ide_build_dmatable(ide_drive_t *, struct request *); |
| 1164 | int ide_allocate_dma_engine(ide_hwif_t *); | 1267 | int ide_allocate_dma_engine(ide_hwif_t *); |
| 1165 | void ide_release_dma_engine(ide_hwif_t *); | 1268 | void ide_release_dma_engine(ide_hwif_t *); |
| 1166 | void ide_setup_dma(ide_hwif_t *, unsigned long); | ||
| 1167 | 1269 | ||
| 1168 | void ide_dma_host_set(ide_drive_t *, int); | 1270 | void ide_dma_host_set(ide_drive_t *, int); |
| 1169 | extern int ide_dma_setup(ide_drive_t *); | 1271 | extern int ide_dma_setup(ide_drive_t *); |
| @@ -1217,8 +1319,14 @@ void ide_undecoded_slave(ide_drive_t *); | |||
| 1217 | 1319 | ||
| 1218 | void ide_port_apply_params(ide_hwif_t *); | 1320 | void ide_port_apply_params(ide_hwif_t *); |
| 1219 | 1321 | ||
| 1220 | int ide_device_add_all(u8 *idx, const struct ide_port_info *); | 1322 | struct ide_host *ide_host_alloc_all(const struct ide_port_info *, hw_regs_t **); |
| 1221 | int ide_device_add(u8 idx[4], const struct ide_port_info *); | 1323 | struct ide_host *ide_host_alloc(const struct ide_port_info *, hw_regs_t **); |
| 1324 | void ide_host_free(struct ide_host *); | ||
| 1325 | int ide_host_register(struct ide_host *, const struct ide_port_info *, | ||
| 1326 | hw_regs_t **); | ||
| 1327 | int ide_host_add(const struct ide_port_info *, hw_regs_t **, | ||
| 1328 | struct ide_host **); | ||
| 1329 | void ide_host_remove(struct ide_host *); | ||
| 1222 | int ide_legacy_device_add(const struct ide_port_info *, unsigned long); | 1330 | int ide_legacy_device_add(const struct ide_port_info *, unsigned long); |
| 1223 | void ide_port_unregister_devices(ide_hwif_t *); | 1331 | void ide_port_unregister_devices(ide_hwif_t *); |
| 1224 | void ide_port_scan(ide_hwif_t *); | 1332 | void ide_port_scan(ide_hwif_t *); |
| @@ -1350,33 +1458,4 @@ static inline ide_drive_t *ide_get_paired_drive(ide_drive_t *drive) | |||
| 1350 | 1458 | ||
| 1351 | return &hwif->drives[(drive->dn ^ 1) & 1]; | 1459 | return &hwif->drives[(drive->dn ^ 1) & 1]; |
| 1352 | } | 1460 | } |
| 1353 | |||
| 1354 | static inline void ide_set_irq(ide_drive_t *drive, int on) | ||
| 1355 | { | ||
| 1356 | ide_hwif_t *hwif = drive->hwif; | ||
| 1357 | |||
| 1358 | hwif->OUTBSYNC(hwif, ATA_DEVCTL_OBS | (on ? 0 : 2), | ||
| 1359 | hwif->io_ports.ctl_addr); | ||
| 1360 | } | ||
| 1361 | |||
| 1362 | static inline u8 ide_read_status(ide_drive_t *drive) | ||
| 1363 | { | ||
| 1364 | ide_hwif_t *hwif = drive->hwif; | ||
| 1365 | |||
| 1366 | return hwif->INB(hwif->io_ports.status_addr); | ||
| 1367 | } | ||
| 1368 | |||
| 1369 | static inline u8 ide_read_altstatus(ide_drive_t *drive) | ||
| 1370 | { | ||
| 1371 | ide_hwif_t *hwif = drive->hwif; | ||
| 1372 | |||
| 1373 | return hwif->INB(hwif->io_ports.ctl_addr); | ||
| 1374 | } | ||
| 1375 | |||
| 1376 | static inline u8 ide_read_error(ide_drive_t *drive) | ||
| 1377 | { | ||
| 1378 | ide_hwif_t *hwif = drive->hwif; | ||
| 1379 | |||
| 1380 | return hwif->INB(hwif->io_ports.error_addr); | ||
| 1381 | } | ||
| 1382 | #endif /* _IDE_H */ | 1461 | #endif /* _IDE_H */ |
diff --git a/include/linux/idr.h b/include/linux/idr.h index 9a2d762124de..fa035f96f2a3 100644 --- a/include/linux/idr.h +++ b/include/linux/idr.h | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | #include <linux/types.h> | 15 | #include <linux/types.h> |
| 16 | #include <linux/bitops.h> | 16 | #include <linux/bitops.h> |
| 17 | #include <linux/init.h> | 17 | #include <linux/init.h> |
| 18 | #include <linux/rcupdate.h> | ||
| 18 | 19 | ||
| 19 | #if BITS_PER_LONG == 32 | 20 | #if BITS_PER_LONG == 32 |
| 20 | # define IDR_BITS 5 | 21 | # define IDR_BITS 5 |
| @@ -51,6 +52,7 @@ struct idr_layer { | |||
| 51 | unsigned long bitmap; /* A zero bit means "space here" */ | 52 | unsigned long bitmap; /* A zero bit means "space here" */ |
| 52 | struct idr_layer *ary[1<<IDR_BITS]; | 53 | struct idr_layer *ary[1<<IDR_BITS]; |
| 53 | int count; /* When zero, we can release it */ | 54 | int count; /* When zero, we can release it */ |
| 55 | struct rcu_head rcu_head; | ||
| 54 | }; | 56 | }; |
| 55 | 57 | ||
| 56 | struct idr { | 58 | struct idr { |
| @@ -71,6 +73,28 @@ struct idr { | |||
| 71 | } | 73 | } |
| 72 | #define DEFINE_IDR(name) struct idr name = IDR_INIT(name) | 74 | #define DEFINE_IDR(name) struct idr name = IDR_INIT(name) |
| 73 | 75 | ||
| 76 | /* Actions to be taken after a call to _idr_sub_alloc */ | ||
| 77 | #define IDR_NEED_TO_GROW -2 | ||
| 78 | #define IDR_NOMORE_SPACE -3 | ||
| 79 | |||
| 80 | #define _idr_rc_to_errno(rc) ((rc) == -1 ? -EAGAIN : -ENOSPC) | ||
| 81 | |||
| 82 | /** | ||
| 83 | * idr synchronization (stolen from radix-tree.h) | ||
| 84 | * | ||
| 85 | * idr_find() is able to be called locklessly, using RCU. The caller must | ||
| 86 | * ensure calls to this function are made within rcu_read_lock() regions. | ||
| 87 | * Other readers (lock-free or otherwise) and modifications may be running | ||
| 88 | * concurrently. | ||
| 89 | * | ||
| 90 | * It is still required that the caller manage the synchronization and | ||
| 91 | * lifetimes of the items. So if RCU lock-free lookups are used, typically | ||
| 92 | * this would mean that the items have their own locks, or are amenable to | ||
| 93 | * lock-free access; and that the items are freed by RCU (or only freed after | ||
| 94 | * having been deleted from the idr tree *and* a synchronize_rcu() grace | ||
| 95 | * period). | ||
| 96 | */ | ||
| 97 | |||
| 74 | /* | 98 | /* |
| 75 | * This is what we export. | 99 | * This is what we export. |
| 76 | */ | 100 | */ |
diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index a1630ba0b87c..7f4df7c7659d 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h | |||
| @@ -506,6 +506,19 @@ struct ieee80211_channel_sw_ie { | |||
| 506 | u8 count; | 506 | u8 count; |
| 507 | } __attribute__ ((packed)); | 507 | } __attribute__ ((packed)); |
| 508 | 508 | ||
| 509 | /** | ||
| 510 | * struct ieee80211_tim | ||
| 511 | * | ||
| 512 | * This structure refers to "Traffic Indication Map information element" | ||
| 513 | */ | ||
| 514 | struct ieee80211_tim_ie { | ||
| 515 | u8 dtim_count; | ||
| 516 | u8 dtim_period; | ||
| 517 | u8 bitmap_ctrl; | ||
| 518 | /* variable size: 1 - 251 bytes */ | ||
| 519 | u8 virtual_map[0]; | ||
| 520 | } __attribute__ ((packed)); | ||
| 521 | |||
| 509 | struct ieee80211_mgmt { | 522 | struct ieee80211_mgmt { |
| 510 | __le16 frame_control; | 523 | __le16 frame_control; |
| 511 | __le16 duration; | 524 | __le16 duration; |
diff --git a/include/linux/ihex.h b/include/linux/ihex.h index 2baace2788a7..31d8629e75a1 100644 --- a/include/linux/ihex.h +++ b/include/linux/ihex.h | |||
| @@ -18,7 +18,7 @@ struct ihex_binrec { | |||
| 18 | __be32 addr; | 18 | __be32 addr; |
| 19 | __be16 len; | 19 | __be16 len; |
| 20 | uint8_t data[0]; | 20 | uint8_t data[0]; |
| 21 | } __attribute__((aligned(4))); | 21 | } __attribute__((packed)); |
| 22 | 22 | ||
| 23 | /* Find the next record, taking into account the 4-byte alignment */ | 23 | /* Find the next record, taking into account the 4-byte alignment */ |
| 24 | static inline const struct ihex_binrec * | 24 | static inline const struct ihex_binrec * |
diff --git a/include/linux/init.h b/include/linux/init.h index 21d658cdfa27..93538b696e3d 100644 --- a/include/linux/init.h +++ b/include/linux/init.h | |||
| @@ -139,6 +139,7 @@ extern initcall_t __con_initcall_start[], __con_initcall_end[]; | |||
| 139 | extern initcall_t __security_initcall_start[], __security_initcall_end[]; | 139 | extern initcall_t __security_initcall_start[], __security_initcall_end[]; |
| 140 | 140 | ||
| 141 | /* Defined in init/main.c */ | 141 | /* Defined in init/main.c */ |
| 142 | extern int do_one_initcall(initcall_t fn); | ||
| 142 | extern char __initdata boot_command_line[]; | 143 | extern char __initdata boot_command_line[]; |
| 143 | extern char *saved_command_line; | 144 | extern char *saved_command_line; |
| 144 | extern unsigned int reset_devices; | 145 | extern unsigned int reset_devices; |
| @@ -170,6 +171,13 @@ extern void (*late_time_init)(void); | |||
| 170 | __attribute__((__section__(".initcall" level ".init"))) = fn | 171 | __attribute__((__section__(".initcall" level ".init"))) = fn |
| 171 | 172 | ||
| 172 | /* | 173 | /* |
| 174 | * Early initcalls run before initializing SMP. | ||
| 175 | * | ||
| 176 | * Only for built-in code, not modules. | ||
| 177 | */ | ||
| 178 | #define early_initcall(fn) __define_initcall("early",fn,early) | ||
| 179 | |||
| 180 | /* | ||
| 173 | * A "pure" initcall has no dependencies on anything else, and purely | 181 | * A "pure" initcall has no dependencies on anything else, and purely |
| 174 | * initializes variables that couldn't be statically initialized. | 182 | * initializes variables that couldn't be statically initialized. |
| 175 | * | 183 | * |
| @@ -275,13 +283,7 @@ void __init parse_early_param(void); | |||
| 275 | 283 | ||
| 276 | #define security_initcall(fn) module_init(fn) | 284 | #define security_initcall(fn) module_init(fn) |
| 277 | 285 | ||
| 278 | /* These macros create a dummy inline: gcc 2.9x does not count alias | 286 | /* Each module must use one module_init(). */ |
| 279 | as usage, hence the `unused function' warning when __init functions | ||
| 280 | are declared static. We use the dummy __*_module_inline functions | ||
| 281 | both to kill the warning and check the type of the init/cleanup | ||
| 282 | function. */ | ||
| 283 | |||
| 284 | /* Each module must use one module_init(), or one no_module_init */ | ||
| 285 | #define module_init(initfn) \ | 287 | #define module_init(initfn) \ |
| 286 | static inline initcall_t __inittest(void) \ | 288 | static inline initcall_t __inittest(void) \ |
| 287 | { return initfn; } \ | 289 | { return initfn; } \ |
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index 93c45acf249a..021d8e720c79 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h | |||
| @@ -122,7 +122,7 @@ extern struct group_info init_groups; | |||
| 122 | .state = 0, \ | 122 | .state = 0, \ |
| 123 | .stack = &init_thread_info, \ | 123 | .stack = &init_thread_info, \ |
| 124 | .usage = ATOMIC_INIT(2), \ | 124 | .usage = ATOMIC_INIT(2), \ |
| 125 | .flags = 0, \ | 125 | .flags = PF_KTHREAD, \ |
| 126 | .lock_depth = -1, \ | 126 | .lock_depth = -1, \ |
| 127 | .prio = MAX_PRIO-20, \ | 127 | .prio = MAX_PRIO-20, \ |
| 128 | .static_prio = MAX_PRIO-20, \ | 128 | .static_prio = MAX_PRIO-20, \ |
diff --git a/include/linux/inotify.h b/include/linux/inotify.h index 742b917e7d1b..bd578578a8b9 100644 --- a/include/linux/inotify.h +++ b/include/linux/inotify.h | |||
| @@ -7,6 +7,8 @@ | |||
| 7 | #ifndef _LINUX_INOTIFY_H | 7 | #ifndef _LINUX_INOTIFY_H |
| 8 | #define _LINUX_INOTIFY_H | 8 | #define _LINUX_INOTIFY_H |
| 9 | 9 | ||
| 10 | /* For O_CLOEXEC and O_NONBLOCK */ | ||
| 11 | #include <linux/fcntl.h> | ||
| 10 | #include <linux/types.h> | 12 | #include <linux/types.h> |
| 11 | 13 | ||
| 12 | /* | 14 | /* |
| @@ -63,6 +65,10 @@ struct inotify_event { | |||
| 63 | IN_MOVED_TO | IN_DELETE | IN_CREATE | IN_DELETE_SELF | \ | 65 | IN_MOVED_TO | IN_DELETE | IN_CREATE | IN_DELETE_SELF | \ |
| 64 | IN_MOVE_SELF) | 66 | IN_MOVE_SELF) |
| 65 | 67 | ||
| 68 | /* Flags for sys_inotify_init1. */ | ||
| 69 | #define IN_CLOEXEC O_CLOEXEC | ||
| 70 | #define IN_NONBLOCK O_NONBLOCK | ||
| 71 | |||
| 66 | #ifdef __KERNEL__ | 72 | #ifdef __KERNEL__ |
| 67 | 73 | ||
| 68 | #include <linux/dcache.h> | 74 | #include <linux/dcache.h> |
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 62aa4f895abe..58ff4e74b2f3 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
| @@ -223,35 +223,6 @@ static inline int disable_irq_wake(unsigned int irq) | |||
| 223 | #define or_softirq_pending(x) (local_softirq_pending() |= (x)) | 223 | #define or_softirq_pending(x) (local_softirq_pending() |= (x)) |
| 224 | #endif | 224 | #endif |
| 225 | 225 | ||
| 226 | /* | ||
| 227 | * Temporary defines for UP kernels, until all code gets fixed. | ||
| 228 | */ | ||
| 229 | #ifndef CONFIG_SMP | ||
| 230 | static inline void __deprecated cli(void) | ||
| 231 | { | ||
| 232 | local_irq_disable(); | ||
| 233 | } | ||
| 234 | static inline void __deprecated sti(void) | ||
| 235 | { | ||
| 236 | local_irq_enable(); | ||
| 237 | } | ||
| 238 | static inline void __deprecated save_flags(unsigned long *x) | ||
| 239 | { | ||
| 240 | local_save_flags(*x); | ||
| 241 | } | ||
| 242 | #define save_flags(x) save_flags(&x) | ||
| 243 | static inline void __deprecated restore_flags(unsigned long x) | ||
| 244 | { | ||
| 245 | local_irq_restore(x); | ||
| 246 | } | ||
| 247 | |||
| 248 | static inline void __deprecated save_and_cli(unsigned long *x) | ||
| 249 | { | ||
| 250 | local_irq_save(*x); | ||
| 251 | } | ||
| 252 | #define save_and_cli(x) save_and_cli(&x) | ||
| 253 | #endif /* CONFIG_SMP */ | ||
| 254 | |||
| 255 | /* Some architectures might implement lazy enabling/disabling of | 226 | /* Some architectures might implement lazy enabling/disabling of |
| 256 | * interrupts. In some cases, such as stop_machine, we might want | 227 | * interrupts. In some cases, such as stop_machine, we might want |
| 257 | * to ensure that after a local_irq_disable(), interrupts have | 228 | * to ensure that after a local_irq_disable(), interrupts have |
diff --git a/include/linux/ioport.h b/include/linux/ioport.h index 2cd07cc29687..22d2115458c6 100644 --- a/include/linux/ioport.h +++ b/include/linux/ioport.h | |||
| @@ -118,6 +118,10 @@ extern int allocate_resource(struct resource *root, struct resource *new, | |||
| 118 | int adjust_resource(struct resource *res, resource_size_t start, | 118 | int adjust_resource(struct resource *res, resource_size_t start, |
| 119 | resource_size_t size); | 119 | resource_size_t size); |
| 120 | resource_size_t resource_alignment(struct resource *res); | 120 | resource_size_t resource_alignment(struct resource *res); |
| 121 | static inline resource_size_t resource_size(struct resource *res) | ||
| 122 | { | ||
| 123 | return res->end - res->start + 1; | ||
| 124 | } | ||
| 121 | 125 | ||
| 122 | /* Convenience shorthand with allocation */ | 126 | /* Convenience shorthand with allocation */ |
| 123 | #define request_region(start,n,name) __request_region(&ioport_resource, (start), (n), (name)) | 127 | #define request_region(start,n,name) __request_region(&ioport_resource, (start), (n), (name)) |
diff --git a/include/linux/ip_vs.h b/include/linux/ip_vs.h new file mode 100644 index 000000000000..ec6eb49af2d8 --- /dev/null +++ b/include/linux/ip_vs.h | |||
| @@ -0,0 +1,245 @@ | |||
| 1 | /* | ||
| 2 | * IP Virtual Server | ||
| 3 | * data structure and functionality definitions | ||
| 4 | */ | ||
| 5 | |||
| 6 | #ifndef _IP_VS_H | ||
| 7 | #define _IP_VS_H | ||
| 8 | |||
| 9 | #include <linux/types.h> /* For __beXX types in userland */ | ||
| 10 | |||
| 11 | #define IP_VS_VERSION_CODE 0x010201 | ||
| 12 | #define NVERSION(version) \ | ||
| 13 | (version >> 16) & 0xFF, \ | ||
| 14 | (version >> 8) & 0xFF, \ | ||
| 15 | version & 0xFF | ||
| 16 | |||
| 17 | /* | ||
| 18 | * Virtual Service Flags | ||
| 19 | */ | ||
| 20 | #define IP_VS_SVC_F_PERSISTENT 0x0001 /* persistent port */ | ||
| 21 | #define IP_VS_SVC_F_HASHED 0x0002 /* hashed entry */ | ||
| 22 | |||
| 23 | /* | ||
| 24 | * Destination Server Flags | ||
| 25 | */ | ||
| 26 | #define IP_VS_DEST_F_AVAILABLE 0x0001 /* server is available */ | ||
| 27 | #define IP_VS_DEST_F_OVERLOAD 0x0002 /* server is overloaded */ | ||
| 28 | |||
| 29 | /* | ||
| 30 | * IPVS sync daemon states | ||
| 31 | */ | ||
| 32 | #define IP_VS_STATE_NONE 0x0000 /* daemon is stopped */ | ||
| 33 | #define IP_VS_STATE_MASTER 0x0001 /* started as master */ | ||
| 34 | #define IP_VS_STATE_BACKUP 0x0002 /* started as backup */ | ||
| 35 | |||
| 36 | /* | ||
| 37 | * IPVS socket options | ||
| 38 | */ | ||
| 39 | #define IP_VS_BASE_CTL (64+1024+64) /* base */ | ||
| 40 | |||
| 41 | #define IP_VS_SO_SET_NONE IP_VS_BASE_CTL /* just peek */ | ||
| 42 | #define IP_VS_SO_SET_INSERT (IP_VS_BASE_CTL+1) | ||
| 43 | #define IP_VS_SO_SET_ADD (IP_VS_BASE_CTL+2) | ||
| 44 | #define IP_VS_SO_SET_EDIT (IP_VS_BASE_CTL+3) | ||
| 45 | #define IP_VS_SO_SET_DEL (IP_VS_BASE_CTL+4) | ||
| 46 | #define IP_VS_SO_SET_FLUSH (IP_VS_BASE_CTL+5) | ||
| 47 | #define IP_VS_SO_SET_LIST (IP_VS_BASE_CTL+6) | ||
| 48 | #define IP_VS_SO_SET_ADDDEST (IP_VS_BASE_CTL+7) | ||
| 49 | #define IP_VS_SO_SET_DELDEST (IP_VS_BASE_CTL+8) | ||
| 50 | #define IP_VS_SO_SET_EDITDEST (IP_VS_BASE_CTL+9) | ||
| 51 | #define IP_VS_SO_SET_TIMEOUT (IP_VS_BASE_CTL+10) | ||
| 52 | #define IP_VS_SO_SET_STARTDAEMON (IP_VS_BASE_CTL+11) | ||
| 53 | #define IP_VS_SO_SET_STOPDAEMON (IP_VS_BASE_CTL+12) | ||
| 54 | #define IP_VS_SO_SET_RESTORE (IP_VS_BASE_CTL+13) | ||
| 55 | #define IP_VS_SO_SET_SAVE (IP_VS_BASE_CTL+14) | ||
| 56 | #define IP_VS_SO_SET_ZERO (IP_VS_BASE_CTL+15) | ||
| 57 | #define IP_VS_SO_SET_MAX IP_VS_SO_SET_ZERO | ||
| 58 | |||
| 59 | #define IP_VS_SO_GET_VERSION IP_VS_BASE_CTL | ||
| 60 | #define IP_VS_SO_GET_INFO (IP_VS_BASE_CTL+1) | ||
| 61 | #define IP_VS_SO_GET_SERVICES (IP_VS_BASE_CTL+2) | ||
| 62 | #define IP_VS_SO_GET_SERVICE (IP_VS_BASE_CTL+3) | ||
| 63 | #define IP_VS_SO_GET_DESTS (IP_VS_BASE_CTL+4) | ||
| 64 | #define IP_VS_SO_GET_DEST (IP_VS_BASE_CTL+5) /* not used now */ | ||
| 65 | #define IP_VS_SO_GET_TIMEOUT (IP_VS_BASE_CTL+6) | ||
| 66 | #define IP_VS_SO_GET_DAEMON (IP_VS_BASE_CTL+7) | ||
| 67 | #define IP_VS_SO_GET_MAX IP_VS_SO_GET_DAEMON | ||
| 68 | |||
| 69 | |||
| 70 | /* | ||
| 71 | * IPVS Connection Flags | ||
| 72 | */ | ||
| 73 | #define IP_VS_CONN_F_FWD_MASK 0x0007 /* mask for the fwd methods */ | ||
| 74 | #define IP_VS_CONN_F_MASQ 0x0000 /* masquerading/NAT */ | ||
| 75 | #define IP_VS_CONN_F_LOCALNODE 0x0001 /* local node */ | ||
| 76 | #define IP_VS_CONN_F_TUNNEL 0x0002 /* tunneling */ | ||
| 77 | #define IP_VS_CONN_F_DROUTE 0x0003 /* direct routing */ | ||
| 78 | #define IP_VS_CONN_F_BYPASS 0x0004 /* cache bypass */ | ||
| 79 | #define IP_VS_CONN_F_SYNC 0x0020 /* entry created by sync */ | ||
| 80 | #define IP_VS_CONN_F_HASHED 0x0040 /* hashed entry */ | ||
| 81 | #define IP_VS_CONN_F_NOOUTPUT 0x0080 /* no output packets */ | ||
| 82 | #define IP_VS_CONN_F_INACTIVE 0x0100 /* not established */ | ||
| 83 | #define IP_VS_CONN_F_OUT_SEQ 0x0200 /* must do output seq adjust */ | ||
| 84 | #define IP_VS_CONN_F_IN_SEQ 0x0400 /* must do input seq adjust */ | ||
| 85 | #define IP_VS_CONN_F_SEQ_MASK 0x0600 /* in/out sequence mask */ | ||
| 86 | #define IP_VS_CONN_F_NO_CPORT 0x0800 /* no client port set yet */ | ||
| 87 | #define IP_VS_CONN_F_TEMPLATE 0x1000 /* template, not connection */ | ||
| 88 | |||
| 89 | #define IP_VS_SCHEDNAME_MAXLEN 16 | ||
| 90 | #define IP_VS_IFNAME_MAXLEN 16 | ||
| 91 | |||
| 92 | |||
| 93 | /* | ||
| 94 | * The struct ip_vs_service_user and struct ip_vs_dest_user are | ||
| 95 | * used to set IPVS rules through setsockopt. | ||
| 96 | */ | ||
| 97 | struct ip_vs_service_user { | ||
| 98 | /* virtual service addresses */ | ||
| 99 | u_int16_t protocol; | ||
| 100 | __be32 addr; /* virtual ip address */ | ||
| 101 | __be16 port; | ||
| 102 | u_int32_t fwmark; /* firwall mark of service */ | ||
| 103 | |||
| 104 | /* virtual service options */ | ||
| 105 | char sched_name[IP_VS_SCHEDNAME_MAXLEN]; | ||
| 106 | unsigned flags; /* virtual service flags */ | ||
| 107 | unsigned timeout; /* persistent timeout in sec */ | ||
| 108 | __be32 netmask; /* persistent netmask */ | ||
| 109 | }; | ||
| 110 | |||
| 111 | |||
| 112 | struct ip_vs_dest_user { | ||
| 113 | /* destination server address */ | ||
| 114 | __be32 addr; | ||
| 115 | __be16 port; | ||
| 116 | |||
| 117 | /* real server options */ | ||
| 118 | unsigned conn_flags; /* connection flags */ | ||
| 119 | int weight; /* destination weight */ | ||
| 120 | |||
| 121 | /* thresholds for active connections */ | ||
| 122 | u_int32_t u_threshold; /* upper threshold */ | ||
| 123 | u_int32_t l_threshold; /* lower threshold */ | ||
| 124 | }; | ||
| 125 | |||
| 126 | |||
| 127 | /* | ||
| 128 | * IPVS statistics object (for user space) | ||
| 129 | */ | ||
| 130 | struct ip_vs_stats_user | ||
| 131 | { | ||
| 132 | __u32 conns; /* connections scheduled */ | ||
| 133 | __u32 inpkts; /* incoming packets */ | ||
| 134 | __u32 outpkts; /* outgoing packets */ | ||
| 135 | __u64 inbytes; /* incoming bytes */ | ||
| 136 | __u64 outbytes; /* outgoing bytes */ | ||
| 137 | |||
| 138 | __u32 cps; /* current connection rate */ | ||
| 139 | __u32 inpps; /* current in packet rate */ | ||
| 140 | __u32 outpps; /* current out packet rate */ | ||
| 141 | __u32 inbps; /* current in byte rate */ | ||
| 142 | __u32 outbps; /* current out byte rate */ | ||
| 143 | }; | ||
| 144 | |||
| 145 | |||
| 146 | /* The argument to IP_VS_SO_GET_INFO */ | ||
| 147 | struct ip_vs_getinfo { | ||
| 148 | /* version number */ | ||
| 149 | unsigned int version; | ||
| 150 | |||
| 151 | /* size of connection hash table */ | ||
| 152 | unsigned int size; | ||
| 153 | |||
| 154 | /* number of virtual services */ | ||
| 155 | unsigned int num_services; | ||
| 156 | }; | ||
| 157 | |||
| 158 | |||
| 159 | /* The argument to IP_VS_SO_GET_SERVICE */ | ||
| 160 | struct ip_vs_service_entry { | ||
| 161 | /* which service: user fills in these */ | ||
| 162 | u_int16_t protocol; | ||
| 163 | __be32 addr; /* virtual address */ | ||
| 164 | __be16 port; | ||
| 165 | u_int32_t fwmark; /* firwall mark of service */ | ||
| 166 | |||
| 167 | /* service options */ | ||
| 168 | char sched_name[IP_VS_SCHEDNAME_MAXLEN]; | ||
| 169 | unsigned flags; /* virtual service flags */ | ||
| 170 | unsigned timeout; /* persistent timeout */ | ||
| 171 | __be32 netmask; /* persistent netmask */ | ||
| 172 | |||
| 173 | /* number of real servers */ | ||
| 174 | unsigned int num_dests; | ||
| 175 | |||
| 176 | /* statistics */ | ||
| 177 | struct ip_vs_stats_user stats; | ||
| 178 | }; | ||
| 179 | |||
| 180 | |||
| 181 | struct ip_vs_dest_entry { | ||
| 182 | __be32 addr; /* destination address */ | ||
| 183 | __be16 port; | ||
| 184 | unsigned conn_flags; /* connection flags */ | ||
| 185 | int weight; /* destination weight */ | ||
| 186 | |||
| 187 | u_int32_t u_threshold; /* upper threshold */ | ||
| 188 | u_int32_t l_threshold; /* lower threshold */ | ||
| 189 | |||
| 190 | u_int32_t activeconns; /* active connections */ | ||
| 191 | u_int32_t inactconns; /* inactive connections */ | ||
| 192 | u_int32_t persistconns; /* persistent connections */ | ||
| 193 | |||
| 194 | /* statistics */ | ||
| 195 | struct ip_vs_stats_user stats; | ||
| 196 | }; | ||
| 197 | |||
| 198 | |||
| 199 | /* The argument to IP_VS_SO_GET_DESTS */ | ||
| 200 | struct ip_vs_get_dests { | ||
| 201 | /* which service: user fills in these */ | ||
| 202 | u_int16_t protocol; | ||
| 203 | __be32 addr; /* virtual address */ | ||
| 204 | __be16 port; | ||
| 205 | u_int32_t fwmark; /* firwall mark of service */ | ||
| 206 | |||
| 207 | /* number of real servers */ | ||
| 208 | unsigned int num_dests; | ||
| 209 | |||
| 210 | /* the real servers */ | ||
| 211 | struct ip_vs_dest_entry entrytable[0]; | ||
| 212 | }; | ||
| 213 | |||
| 214 | |||
| 215 | /* The argument to IP_VS_SO_GET_SERVICES */ | ||
| 216 | struct ip_vs_get_services { | ||
| 217 | /* number of virtual services */ | ||
| 218 | unsigned int num_services; | ||
| 219 | |||
| 220 | /* service table */ | ||
| 221 | struct ip_vs_service_entry entrytable[0]; | ||
| 222 | }; | ||
| 223 | |||
| 224 | |||
| 225 | /* The argument to IP_VS_SO_GET_TIMEOUT */ | ||
| 226 | struct ip_vs_timeout_user { | ||
| 227 | int tcp_timeout; | ||
| 228 | int tcp_fin_timeout; | ||
| 229 | int udp_timeout; | ||
| 230 | }; | ||
| 231 | |||
| 232 | |||
| 233 | /* The argument to IP_VS_SO_GET_DAEMON */ | ||
| 234 | struct ip_vs_daemon_user { | ||
| 235 | /* sync daemon state (master/backup) */ | ||
| 236 | int state; | ||
| 237 | |||
| 238 | /* multicast interface name */ | ||
| 239 | char mcast_ifn[IP_VS_IFNAME_MAXLEN]; | ||
| 240 | |||
| 241 | /* SyncID we belong to */ | ||
| 242 | int syncid; | ||
| 243 | }; | ||
| 244 | |||
| 245 | #endif /* _IP_VS_H */ | ||
diff --git a/include/linux/ipc_namespace.h b/include/linux/ipc_namespace.h index ea6c18a8b0d4..ea330f9e7100 100644 --- a/include/linux/ipc_namespace.h +++ b/include/linux/ipc_namespace.h | |||
| @@ -36,6 +36,7 @@ struct ipc_namespace { | |||
| 36 | int msg_ctlmni; | 36 | int msg_ctlmni; |
| 37 | atomic_t msg_bytes; | 37 | atomic_t msg_bytes; |
| 38 | atomic_t msg_hdrs; | 38 | atomic_t msg_hdrs; |
| 39 | int auto_msgmni; | ||
| 39 | 40 | ||
| 40 | size_t shm_ctlmax; | 41 | size_t shm_ctlmax; |
| 41 | size_t shm_ctlall; | 42 | size_t shm_ctlall; |
| @@ -53,7 +54,7 @@ extern atomic_t nr_ipc_ns; | |||
| 53 | 54 | ||
| 54 | extern int register_ipcns_notifier(struct ipc_namespace *); | 55 | extern int register_ipcns_notifier(struct ipc_namespace *); |
| 55 | extern int cond_register_ipcns_notifier(struct ipc_namespace *); | 56 | extern int cond_register_ipcns_notifier(struct ipc_namespace *); |
| 56 | extern int unregister_ipcns_notifier(struct ipc_namespace *); | 57 | extern void unregister_ipcns_notifier(struct ipc_namespace *); |
| 57 | extern int ipcns_notify(unsigned long); | 58 | extern int ipcns_notify(unsigned long); |
| 58 | 59 | ||
| 59 | #else /* CONFIG_SYSVIPC */ | 60 | #else /* CONFIG_SYSVIPC */ |
diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h index 391ad0843a46..641e026eee8f 100644 --- a/include/linux/ipv6.h +++ b/include/linux/ipv6.h | |||
| @@ -123,6 +123,7 @@ struct ipv6hdr { | |||
| 123 | struct in6_addr daddr; | 123 | struct in6_addr daddr; |
| 124 | }; | 124 | }; |
| 125 | 125 | ||
| 126 | #ifdef __KERNEL__ | ||
| 126 | /* | 127 | /* |
| 127 | * This structure contains configuration options per IPv6 link. | 128 | * This structure contains configuration options per IPv6 link. |
| 128 | */ | 129 | */ |
| @@ -167,6 +168,7 @@ struct ipv6_devconf { | |||
| 167 | __s32 accept_dad; | 168 | __s32 accept_dad; |
| 168 | void *sysctl; | 169 | void *sysctl; |
| 169 | }; | 170 | }; |
| 171 | #endif | ||
| 170 | 172 | ||
| 171 | /* index values for the variables in ipv6_devconf */ | 173 | /* index values for the variables in ipv6_devconf */ |
| 172 | enum { | 174 | enum { |
diff --git a/include/linux/irqflags.h b/include/linux/irqflags.h index 2b1c2e58566e..74bde13224c9 100644 --- a/include/linux/irqflags.h +++ b/include/linux/irqflags.h | |||
| @@ -11,6 +11,8 @@ | |||
| 11 | #ifndef _LINUX_TRACE_IRQFLAGS_H | 11 | #ifndef _LINUX_TRACE_IRQFLAGS_H |
| 12 | #define _LINUX_TRACE_IRQFLAGS_H | 12 | #define _LINUX_TRACE_IRQFLAGS_H |
| 13 | 13 | ||
| 14 | #include <linux/typecheck.h> | ||
| 15 | |||
| 14 | #ifdef CONFIG_TRACE_IRQFLAGS | 16 | #ifdef CONFIG_TRACE_IRQFLAGS |
| 15 | extern void trace_softirqs_on(unsigned long ip); | 17 | extern void trace_softirqs_on(unsigned long ip); |
| 16 | extern void trace_softirqs_off(unsigned long ip); | 18 | extern void trace_softirqs_off(unsigned long ip); |
| @@ -58,18 +60,24 @@ | |||
| 58 | do { trace_hardirqs_on(); raw_local_irq_enable(); } while (0) | 60 | do { trace_hardirqs_on(); raw_local_irq_enable(); } while (0) |
| 59 | #define local_irq_disable() \ | 61 | #define local_irq_disable() \ |
| 60 | do { raw_local_irq_disable(); trace_hardirqs_off(); } while (0) | 62 | do { raw_local_irq_disable(); trace_hardirqs_off(); } while (0) |
| 61 | #define local_irq_save(flags) \ | 63 | #define local_irq_save(flags) \ |
| 62 | do { raw_local_irq_save(flags); trace_hardirqs_off(); } while (0) | 64 | do { \ |
| 65 | typecheck(unsigned long, flags); \ | ||
| 66 | raw_local_irq_save(flags); \ | ||
| 67 | trace_hardirqs_off(); \ | ||
| 68 | } while (0) | ||
| 63 | 69 | ||
| 64 | #define local_irq_restore(flags) \ | 70 | |
| 65 | do { \ | 71 | #define local_irq_restore(flags) \ |
| 66 | if (raw_irqs_disabled_flags(flags)) { \ | 72 | do { \ |
| 67 | raw_local_irq_restore(flags); \ | 73 | typecheck(unsigned long, flags); \ |
| 68 | trace_hardirqs_off(); \ | 74 | if (raw_irqs_disabled_flags(flags)) { \ |
| 69 | } else { \ | 75 | raw_local_irq_restore(flags); \ |
| 70 | trace_hardirqs_on(); \ | 76 | trace_hardirqs_off(); \ |
| 71 | raw_local_irq_restore(flags); \ | 77 | } else { \ |
| 72 | } \ | 78 | trace_hardirqs_on(); \ |
| 79 | raw_local_irq_restore(flags); \ | ||
| 80 | } \ | ||
| 73 | } while (0) | 81 | } while (0) |
| 74 | #else /* !CONFIG_TRACE_IRQFLAGS_SUPPORT */ | 82 | #else /* !CONFIG_TRACE_IRQFLAGS_SUPPORT */ |
| 75 | /* | 83 | /* |
| @@ -78,8 +86,16 @@ | |||
| 78 | */ | 86 | */ |
| 79 | # define raw_local_irq_disable() local_irq_disable() | 87 | # define raw_local_irq_disable() local_irq_disable() |
| 80 | # define raw_local_irq_enable() local_irq_enable() | 88 | # define raw_local_irq_enable() local_irq_enable() |
| 81 | # define raw_local_irq_save(flags) local_irq_save(flags) | 89 | # define raw_local_irq_save(flags) \ |
| 82 | # define raw_local_irq_restore(flags) local_irq_restore(flags) | 90 | do { \ |
| 91 | typecheck(unsigned long, flags); \ | ||
| 92 | local_irq_save(flags); \ | ||
| 93 | } while (0) | ||
| 94 | # define raw_local_irq_restore(flags) \ | ||
| 95 | do { \ | ||
| 96 | typecheck(unsigned long, flags); \ | ||
| 97 | local_irq_restore(flags); \ | ||
| 98 | } while (0) | ||
| 83 | #endif /* CONFIG_TRACE_IRQFLAGS_SUPPORT */ | 99 | #endif /* CONFIG_TRACE_IRQFLAGS_SUPPORT */ |
| 84 | 100 | ||
| 85 | #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT | 101 | #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT |
| @@ -89,7 +105,11 @@ | |||
| 89 | raw_safe_halt(); \ | 105 | raw_safe_halt(); \ |
| 90 | } while (0) | 106 | } while (0) |
| 91 | 107 | ||
| 92 | #define local_save_flags(flags) raw_local_save_flags(flags) | 108 | #define local_save_flags(flags) \ |
| 109 | do { \ | ||
| 110 | typecheck(unsigned long, flags); \ | ||
| 111 | raw_local_save_flags(flags); \ | ||
| 112 | } while (0) | ||
| 93 | 113 | ||
| 94 | #define irqs_disabled() \ | 114 | #define irqs_disabled() \ |
| 95 | ({ \ | 115 | ({ \ |
| @@ -99,7 +119,11 @@ | |||
| 99 | raw_irqs_disabled_flags(_flags); \ | 119 | raw_irqs_disabled_flags(_flags); \ |
| 100 | }) | 120 | }) |
| 101 | 121 | ||
| 102 | #define irqs_disabled_flags(flags) raw_irqs_disabled_flags(flags) | 122 | #define irqs_disabled_flags(flags) \ |
| 123 | ({ \ | ||
| 124 | typecheck(unsigned long, flags); \ | ||
| 125 | raw_irqs_disabled_flags(flags); \ | ||
| 126 | }) | ||
| 103 | #endif /* CONFIG_X86 */ | 127 | #endif /* CONFIG_X86 */ |
| 104 | 128 | ||
| 105 | #endif | 129 | #endif |
diff --git a/include/linux/jffs2.h b/include/linux/jffs2.h index 6b563cae23df..da720bc3eb15 100644 --- a/include/linux/jffs2.h +++ b/include/linux/jffs2.h | |||
| @@ -7,9 +7,6 @@ | |||
| 7 | * | 7 | * |
| 8 | * For licensing information, see the file 'LICENCE' in the | 8 | * For licensing information, see the file 'LICENCE' in the |
| 9 | * jffs2 directory. | 9 | * jffs2 directory. |
| 10 | * | ||
| 11 | * $Id: jffs2.h,v 1.38 2005/09/26 11:37:23 havasi Exp $ | ||
| 12 | * | ||
| 13 | */ | 10 | */ |
| 14 | 11 | ||
| 15 | #ifndef __LINUX_JFFS2_H__ | 12 | #ifndef __LINUX_JFFS2_H__ |
diff --git a/include/linux/kallsyms.h b/include/linux/kallsyms.h index 00c1801099fa..b96144887444 100644 --- a/include/linux/kallsyms.h +++ b/include/linux/kallsyms.h | |||
| @@ -6,6 +6,7 @@ | |||
| 6 | #define _LINUX_KALLSYMS_H | 6 | #define _LINUX_KALLSYMS_H |
| 7 | 7 | ||
| 8 | #include <linux/errno.h> | 8 | #include <linux/errno.h> |
| 9 | #include <linux/kernel.h> | ||
| 9 | #include <linux/stddef.h> | 10 | #include <linux/stddef.h> |
| 10 | 11 | ||
| 11 | #define KSYM_NAME_LEN 128 | 12 | #define KSYM_NAME_LEN 128 |
| @@ -105,18 +106,9 @@ static inline void print_fn_descriptor_symbol(const char *fmt, void *addr) | |||
| 105 | print_symbol(fmt, (unsigned long)addr); | 106 | print_symbol(fmt, (unsigned long)addr); |
| 106 | } | 107 | } |
| 107 | 108 | ||
| 108 | #ifndef CONFIG_64BIT | 109 | static inline void print_ip_sym(unsigned long ip) |
| 109 | #define print_ip_sym(ip) \ | 110 | { |
| 110 | do { \ | 111 | printk("[<%p>] %pS\n", (void *) ip, (void *) ip); |
| 111 | printk("[<%08lx>]", ip); \ | 112 | } |
| 112 | print_symbol(" %s\n", ip); \ | ||
| 113 | } while(0) | ||
| 114 | #else | ||
| 115 | #define print_ip_sym(ip) \ | ||
| 116 | do { \ | ||
| 117 | printk("[<%016lx>]", ip); \ | ||
| 118 | print_symbol(" %s\n", ip); \ | ||
| 119 | } while(0) | ||
| 120 | #endif | ||
| 121 | 113 | ||
| 122 | #endif /*_LINUX_KALLSYMS_H*/ | 114 | #endif /*_LINUX_KALLSYMS_H*/ |
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index f9cd7a513f9c..2651f805ba6d 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
| @@ -14,6 +14,8 @@ | |||
| 14 | #include <linux/compiler.h> | 14 | #include <linux/compiler.h> |
| 15 | #include <linux/bitops.h> | 15 | #include <linux/bitops.h> |
| 16 | #include <linux/log2.h> | 16 | #include <linux/log2.h> |
| 17 | #include <linux/typecheck.h> | ||
| 18 | #include <linux/ratelimit.h> | ||
| 17 | #include <asm/byteorder.h> | 19 | #include <asm/byteorder.h> |
| 18 | #include <asm/bug.h> | 20 | #include <asm/bug.h> |
| 19 | 21 | ||
| @@ -73,6 +75,12 @@ extern const char linux_proc_banner[]; | |||
| 73 | */ | 75 | */ |
| 74 | #define upper_32_bits(n) ((u32)(((n) >> 16) >> 16)) | 76 | #define upper_32_bits(n) ((u32)(((n) >> 16) >> 16)) |
| 75 | 77 | ||
| 78 | /** | ||
| 79 | * lower_32_bits - return bits 0-31 of a number | ||
| 80 | * @n: the number we're accessing | ||
| 81 | */ | ||
| 82 | #define lower_32_bits(n) ((u32)(n)) | ||
| 83 | |||
| 76 | #define KERN_EMERG "<0>" /* system is unusable */ | 84 | #define KERN_EMERG "<0>" /* system is unusable */ |
| 77 | #define KERN_ALERT "<1>" /* action must be taken immediately */ | 85 | #define KERN_ALERT "<1>" /* action must be taken immediately */ |
| 78 | #define KERN_CRIT "<2>" /* critical conditions */ | 86 | #define KERN_CRIT "<2>" /* critical conditions */ |
| @@ -100,6 +108,13 @@ struct completion; | |||
| 100 | struct pt_regs; | 108 | struct pt_regs; |
| 101 | struct user; | 109 | struct user; |
| 102 | 110 | ||
| 111 | #ifdef CONFIG_PREEMPT_VOLUNTARY | ||
| 112 | extern int _cond_resched(void); | ||
| 113 | # define might_resched() _cond_resched() | ||
| 114 | #else | ||
| 115 | # define might_resched() do { } while (0) | ||
| 116 | #endif | ||
| 117 | |||
| 103 | /** | 118 | /** |
| 104 | * might_sleep - annotation for functions that can sleep | 119 | * might_sleep - annotation for functions that can sleep |
| 105 | * | 120 | * |
| @@ -110,13 +125,6 @@ struct user; | |||
| 110 | * be bitten later when the calling function happens to sleep when it is not | 125 | * be bitten later when the calling function happens to sleep when it is not |
| 111 | * supposed to. | 126 | * supposed to. |
| 112 | */ | 127 | */ |
| 113 | #ifdef CONFIG_PREEMPT_VOLUNTARY | ||
| 114 | extern int _cond_resched(void); | ||
| 115 | # define might_resched() _cond_resched() | ||
| 116 | #else | ||
| 117 | # define might_resched() do { } while (0) | ||
| 118 | #endif | ||
| 119 | |||
| 120 | #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP | 128 | #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP |
| 121 | void __might_sleep(char *file, int line); | 129 | void __might_sleep(char *file, int line); |
| 122 | # define might_sleep() \ | 130 | # define might_sleep() \ |
| @@ -188,11 +196,8 @@ asmlinkage int vprintk(const char *fmt, va_list args) | |||
| 188 | asmlinkage int printk(const char * fmt, ...) | 196 | asmlinkage int printk(const char * fmt, ...) |
| 189 | __attribute__ ((format (printf, 1, 2))) __cold; | 197 | __attribute__ ((format (printf, 1, 2))) __cold; |
| 190 | 198 | ||
| 191 | extern int printk_ratelimit_jiffies; | 199 | extern struct ratelimit_state printk_ratelimit_state; |
| 192 | extern int printk_ratelimit_burst; | ||
| 193 | extern int printk_ratelimit(void); | 200 | extern int printk_ratelimit(void); |
| 194 | extern int __ratelimit(int ratelimit_jiffies, int ratelimit_burst); | ||
| 195 | extern int __printk_ratelimit(int ratelimit_jiffies, int ratelimit_burst); | ||
| 196 | extern bool printk_timed_ratelimit(unsigned long *caller_jiffies, | 201 | extern bool printk_timed_ratelimit(unsigned long *caller_jiffies, |
| 197 | unsigned int interval_msec); | 202 | unsigned int interval_msec); |
| 198 | #else | 203 | #else |
| @@ -203,8 +208,6 @@ static inline int printk(const char *s, ...) | |||
| 203 | __attribute__ ((format (printf, 1, 2))); | 208 | __attribute__ ((format (printf, 1, 2))); |
| 204 | static inline int __cold printk(const char *s, ...) { return 0; } | 209 | static inline int __cold printk(const char *s, ...) { return 0; } |
| 205 | static inline int printk_ratelimit(void) { return 0; } | 210 | static inline int printk_ratelimit(void) { return 0; } |
| 206 | static inline int __printk_ratelimit(int ratelimit_jiffies, \ | ||
| 207 | int ratelimit_burst) { return 0; } | ||
| 208 | static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies, \ | 211 | static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies, \ |
| 209 | unsigned int interval_msec) \ | 212 | unsigned int interval_msec) \ |
| 210 | { return false; } | 213 | { return false; } |
| @@ -441,26 +444,6 @@ static inline char *pack_hex_byte(char *buf, u8 byte) | |||
| 441 | const typeof( ((type *)0)->member ) *__mptr = (ptr); \ | 444 | const typeof( ((type *)0)->member ) *__mptr = (ptr); \ |
| 442 | (type *)( (char *)__mptr - offsetof(type,member) );}) | 445 | (type *)( (char *)__mptr - offsetof(type,member) );}) |
| 443 | 446 | ||
| 444 | /* | ||
| 445 | * Check at compile time that something is of a particular type. | ||
| 446 | * Always evaluates to 1 so you may use it easily in comparisons. | ||
| 447 | */ | ||
| 448 | #define typecheck(type,x) \ | ||
| 449 | ({ type __dummy; \ | ||
| 450 | typeof(x) __dummy2; \ | ||
| 451 | (void)(&__dummy == &__dummy2); \ | ||
| 452 | 1; \ | ||
| 453 | }) | ||
| 454 | |||
| 455 | /* | ||
| 456 | * Check at compile time that 'function' is a certain type, or is a pointer | ||
| 457 | * to that type (needs to use typedef for the function type.) | ||
| 458 | */ | ||
| 459 | #define typecheck_fn(type,function) \ | ||
| 460 | ({ typeof(type) __tmp = function; \ | ||
| 461 | (void)__tmp; \ | ||
| 462 | }) | ||
| 463 | |||
| 464 | struct sysinfo; | 447 | struct sysinfo; |
| 465 | extern int do_sysinfo(struct sysinfo *info); | 448 | extern int do_sysinfo(struct sysinfo *info); |
| 466 | 449 | ||
diff --git a/include/linux/kexec.h b/include/linux/kexec.h index 3265968cd2cd..32110cede64f 100644 --- a/include/linux/kexec.h +++ b/include/linux/kexec.h | |||
| @@ -83,6 +83,7 @@ struct kimage { | |||
| 83 | 83 | ||
| 84 | unsigned long start; | 84 | unsigned long start; |
| 85 | struct page *control_code_page; | 85 | struct page *control_code_page; |
| 86 | struct page *swap_page; | ||
| 86 | 87 | ||
| 87 | unsigned long nr_segments; | 88 | unsigned long nr_segments; |
| 88 | struct kexec_segment segment[KEXEC_SEGMENT_MAX]; | 89 | struct kexec_segment segment[KEXEC_SEGMENT_MAX]; |
| @@ -98,18 +99,20 @@ struct kimage { | |||
| 98 | unsigned int type : 1; | 99 | unsigned int type : 1; |
| 99 | #define KEXEC_TYPE_DEFAULT 0 | 100 | #define KEXEC_TYPE_DEFAULT 0 |
| 100 | #define KEXEC_TYPE_CRASH 1 | 101 | #define KEXEC_TYPE_CRASH 1 |
| 102 | unsigned int preserve_context : 1; | ||
| 101 | }; | 103 | }; |
| 102 | 104 | ||
| 103 | 105 | ||
| 104 | 106 | ||
| 105 | /* kexec interface functions */ | 107 | /* kexec interface functions */ |
| 106 | extern NORET_TYPE void machine_kexec(struct kimage *image) ATTRIB_NORET; | 108 | extern void machine_kexec(struct kimage *image); |
| 107 | extern int machine_kexec_prepare(struct kimage *image); | 109 | extern int machine_kexec_prepare(struct kimage *image); |
| 108 | extern void machine_kexec_cleanup(struct kimage *image); | 110 | extern void machine_kexec_cleanup(struct kimage *image); |
| 109 | extern asmlinkage long sys_kexec_load(unsigned long entry, | 111 | extern asmlinkage long sys_kexec_load(unsigned long entry, |
| 110 | unsigned long nr_segments, | 112 | unsigned long nr_segments, |
| 111 | struct kexec_segment __user *segments, | 113 | struct kexec_segment __user *segments, |
| 112 | unsigned long flags); | 114 | unsigned long flags); |
| 115 | extern int kernel_kexec(void); | ||
| 113 | #ifdef CONFIG_COMPAT | 116 | #ifdef CONFIG_COMPAT |
| 114 | extern asmlinkage long compat_sys_kexec_load(unsigned long entry, | 117 | extern asmlinkage long compat_sys_kexec_load(unsigned long entry, |
| 115 | unsigned long nr_segments, | 118 | unsigned long nr_segments, |
| @@ -127,8 +130,8 @@ void vmcoreinfo_append_str(const char *fmt, ...) | |||
| 127 | __attribute__ ((format (printf, 1, 2))); | 130 | __attribute__ ((format (printf, 1, 2))); |
| 128 | unsigned long paddr_vmcoreinfo_note(void); | 131 | unsigned long paddr_vmcoreinfo_note(void); |
| 129 | 132 | ||
| 130 | #define VMCOREINFO_OSRELEASE(name) \ | 133 | #define VMCOREINFO_OSRELEASE(value) \ |
| 131 | vmcoreinfo_append_str("OSRELEASE=%s\n", #name) | 134 | vmcoreinfo_append_str("OSRELEASE=%s\n", value) |
| 132 | #define VMCOREINFO_PAGESIZE(value) \ | 135 | #define VMCOREINFO_PAGESIZE(value) \ |
| 133 | vmcoreinfo_append_str("PAGESIZE=%ld\n", value) | 136 | vmcoreinfo_append_str("PAGESIZE=%ld\n", value) |
| 134 | #define VMCOREINFO_SYMBOL(name) \ | 137 | #define VMCOREINFO_SYMBOL(name) \ |
| @@ -156,8 +159,9 @@ extern struct kimage *kexec_crash_image; | |||
| 156 | #define kexec_flush_icache_page(page) | 159 | #define kexec_flush_icache_page(page) |
| 157 | #endif | 160 | #endif |
| 158 | 161 | ||
| 159 | #define KEXEC_ON_CRASH 0x00000001 | 162 | #define KEXEC_ON_CRASH 0x00000001 |
| 160 | #define KEXEC_ARCH_MASK 0xffff0000 | 163 | #define KEXEC_PRESERVE_CONTEXT 0x00000002 |
| 164 | #define KEXEC_ARCH_MASK 0xffff0000 | ||
| 161 | 165 | ||
| 162 | /* These values match the ELF architecture values. | 166 | /* These values match the ELF architecture values. |
| 163 | * Unless there is a good reason that should continue to be the case. | 167 | * Unless there is a good reason that should continue to be the case. |
| @@ -174,7 +178,12 @@ extern struct kimage *kexec_crash_image; | |||
| 174 | #define KEXEC_ARCH_MIPS_LE (10 << 16) | 178 | #define KEXEC_ARCH_MIPS_LE (10 << 16) |
| 175 | #define KEXEC_ARCH_MIPS ( 8 << 16) | 179 | #define KEXEC_ARCH_MIPS ( 8 << 16) |
| 176 | 180 | ||
| 177 | #define KEXEC_FLAGS (KEXEC_ON_CRASH) /* List of defined/legal kexec flags */ | 181 | /* List of defined/legal kexec flags */ |
| 182 | #ifndef CONFIG_KEXEC_JUMP | ||
| 183 | #define KEXEC_FLAGS KEXEC_ON_CRASH | ||
| 184 | #else | ||
| 185 | #define KEXEC_FLAGS (KEXEC_ON_CRASH | KEXEC_PRESERVE_CONTEXT) | ||
| 186 | #endif | ||
| 178 | 187 | ||
| 179 | #define VMCOREINFO_BYTES (4096) | 188 | #define VMCOREINFO_BYTES (4096) |
| 180 | #define VMCOREINFO_NOTE_NAME "VMCOREINFO" | 189 | #define VMCOREINFO_NOTE_NAME "VMCOREINFO" |
diff --git a/include/linux/kmod.h b/include/linux/kmod.h index 5dc13848891b..a1a91577813c 100644 --- a/include/linux/kmod.h +++ b/include/linux/kmod.h | |||
| @@ -19,29 +19,31 @@ | |||
| 19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 20 | */ | 20 | */ |
| 21 | 21 | ||
| 22 | #include <linux/gfp.h> | ||
| 22 | #include <linux/stddef.h> | 23 | #include <linux/stddef.h> |
| 23 | #include <linux/errno.h> | 24 | #include <linux/errno.h> |
| 24 | #include <linux/compiler.h> | 25 | #include <linux/compiler.h> |
| 25 | 26 | ||
| 26 | #define KMOD_PATH_LEN 256 | 27 | #define KMOD_PATH_LEN 256 |
| 27 | 28 | ||
| 28 | #ifdef CONFIG_KMOD | 29 | #ifdef CONFIG_MODULES |
| 29 | /* modprobe exit status on success, -ve on error. Return value | 30 | /* modprobe exit status on success, -ve on error. Return value |
| 30 | * usually useless though. */ | 31 | * usually useless though. */ |
| 31 | extern int request_module(const char * name, ...) __attribute__ ((format (printf, 1, 2))); | 32 | extern int request_module(const char * name, ...) __attribute__ ((format (printf, 1, 2))); |
| 33 | #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x))) | ||
| 32 | #else | 34 | #else |
| 33 | static inline int request_module(const char * name, ...) { return -ENOSYS; } | 35 | static inline int request_module(const char * name, ...) { return -ENOSYS; } |
| 36 | #define try_then_request_module(x, mod...) (x) | ||
| 34 | #endif | 37 | #endif |
| 35 | 38 | ||
| 36 | #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x))) | ||
| 37 | 39 | ||
| 38 | struct key; | 40 | struct key; |
| 39 | struct file; | 41 | struct file; |
| 40 | struct subprocess_info; | 42 | struct subprocess_info; |
| 41 | 43 | ||
| 42 | /* Allocate a subprocess_info structure */ | 44 | /* Allocate a subprocess_info structure */ |
| 43 | struct subprocess_info *call_usermodehelper_setup(char *path, | 45 | struct subprocess_info *call_usermodehelper_setup(char *path, char **argv, |
| 44 | char **argv, char **envp); | 46 | char **envp, gfp_t gfp_mask); |
| 45 | 47 | ||
| 46 | /* Set various pieces of state into the subprocess_info structure */ | 48 | /* Set various pieces of state into the subprocess_info structure */ |
| 47 | void call_usermodehelper_setkeys(struct subprocess_info *info, | 49 | void call_usermodehelper_setkeys(struct subprocess_info *info, |
| @@ -68,8 +70,9 @@ static inline int | |||
| 68 | call_usermodehelper(char *path, char **argv, char **envp, enum umh_wait wait) | 70 | call_usermodehelper(char *path, char **argv, char **envp, enum umh_wait wait) |
| 69 | { | 71 | { |
| 70 | struct subprocess_info *info; | 72 | struct subprocess_info *info; |
| 73 | gfp_t gfp_mask = (wait == UMH_NO_WAIT) ? GFP_ATOMIC : GFP_KERNEL; | ||
| 71 | 74 | ||
| 72 | info = call_usermodehelper_setup(path, argv, envp); | 75 | info = call_usermodehelper_setup(path, argv, envp, gfp_mask); |
| 73 | if (info == NULL) | 76 | if (info == NULL) |
| 74 | return -ENOMEM; | 77 | return -ENOMEM; |
| 75 | return call_usermodehelper_exec(info, wait); | 78 | return call_usermodehelper_exec(info, wait); |
| @@ -80,8 +83,9 @@ call_usermodehelper_keys(char *path, char **argv, char **envp, | |||
| 80 | struct key *session_keyring, enum umh_wait wait) | 83 | struct key *session_keyring, enum umh_wait wait) |
| 81 | { | 84 | { |
| 82 | struct subprocess_info *info; | 85 | struct subprocess_info *info; |
| 86 | gfp_t gfp_mask = (wait == UMH_NO_WAIT) ? GFP_ATOMIC : GFP_KERNEL; | ||
| 83 | 87 | ||
| 84 | info = call_usermodehelper_setup(path, argv, envp); | 88 | info = call_usermodehelper_setup(path, argv, envp, gfp_mask); |
| 85 | if (info == NULL) | 89 | if (info == NULL) |
| 86 | return -ENOMEM; | 90 | return -ENOMEM; |
| 87 | 91 | ||
diff --git a/include/linux/kobject.h b/include/linux/kobject.h index 39e709f88aa0..5437ac0276e2 100644 --- a/include/linux/kobject.h +++ b/include/linux/kobject.h | |||
| @@ -26,7 +26,6 @@ | |||
| 26 | #include <linux/wait.h> | 26 | #include <linux/wait.h> |
| 27 | #include <asm/atomic.h> | 27 | #include <asm/atomic.h> |
| 28 | 28 | ||
| 29 | #define KOBJ_NAME_LEN 20 | ||
| 30 | #define UEVENT_HELPER_PATH_LEN 256 | 29 | #define UEVENT_HELPER_PATH_LEN 256 |
| 31 | #define UEVENT_NUM_ENVP 32 /* number of env pointers */ | 30 | #define UEVENT_NUM_ENVP 32 /* number of env pointers */ |
| 32 | #define UEVENT_BUFFER_SIZE 2048 /* buffer for the variables */ | 31 | #define UEVENT_BUFFER_SIZE 2048 /* buffer for the variables */ |
| @@ -59,12 +58,12 @@ enum kobject_action { | |||
| 59 | 58 | ||
| 60 | struct kobject { | 59 | struct kobject { |
| 61 | const char *name; | 60 | const char *name; |
| 62 | struct kref kref; | ||
| 63 | struct list_head entry; | 61 | struct list_head entry; |
| 64 | struct kobject *parent; | 62 | struct kobject *parent; |
| 65 | struct kset *kset; | 63 | struct kset *kset; |
| 66 | struct kobj_type *ktype; | 64 | struct kobj_type *ktype; |
| 67 | struct sysfs_dirent *sd; | 65 | struct sysfs_dirent *sd; |
| 66 | struct kref kref; | ||
| 68 | unsigned int state_initialized:1; | 67 | unsigned int state_initialized:1; |
| 69 | unsigned int state_in_sysfs:1; | 68 | unsigned int state_in_sysfs:1; |
| 70 | unsigned int state_add_uevent_sent:1; | 69 | unsigned int state_add_uevent_sent:1; |
| @@ -187,6 +186,8 @@ extern struct kobject *kset_find_obj(struct kset *, const char *); | |||
| 187 | 186 | ||
| 188 | /* The global /sys/kernel/ kobject for people to chain off of */ | 187 | /* The global /sys/kernel/ kobject for people to chain off of */ |
| 189 | extern struct kobject *kernel_kobj; | 188 | extern struct kobject *kernel_kobj; |
| 189 | /* The global /sys/kernel/mm/ kobject for people to chain off of */ | ||
| 190 | extern struct kobject *mm_kobj; | ||
| 190 | /* The global /sys/hypervisor/ kobject for people to chain off of */ | 191 | /* The global /sys/hypervisor/ kobject for people to chain off of */ |
| 191 | extern struct kobject *hypervisor_kobj; | 192 | extern struct kobject *hypervisor_kobj; |
| 192 | /* The global /sys/power/ kobject for people to chain off of */ | 193 | /* The global /sys/power/ kobject for people to chain off of */ |
diff --git a/include/linux/kprobes.h b/include/linux/kprobes.h index 04a3556bdea6..0be7795655fa 100644 --- a/include/linux/kprobes.h +++ b/include/linux/kprobes.h | |||
| @@ -157,11 +157,10 @@ struct kretprobe { | |||
| 157 | int nmissed; | 157 | int nmissed; |
| 158 | size_t data_size; | 158 | size_t data_size; |
| 159 | struct hlist_head free_instances; | 159 | struct hlist_head free_instances; |
| 160 | struct hlist_head used_instances; | 160 | spinlock_t lock; |
| 161 | }; | 161 | }; |
| 162 | 162 | ||
| 163 | struct kretprobe_instance { | 163 | struct kretprobe_instance { |
| 164 | struct hlist_node uflist; /* either on free list or used list */ | ||
| 165 | struct hlist_node hlist; | 164 | struct hlist_node hlist; |
| 166 | struct kretprobe *rp; | 165 | struct kretprobe *rp; |
| 167 | kprobe_opcode_t *ret_addr; | 166 | kprobe_opcode_t *ret_addr; |
| @@ -201,7 +200,6 @@ static inline int init_test_probes(void) | |||
| 201 | } | 200 | } |
| 202 | #endif /* CONFIG_KPROBES_SANITY_TEST */ | 201 | #endif /* CONFIG_KPROBES_SANITY_TEST */ |
| 203 | 202 | ||
| 204 | extern spinlock_t kretprobe_lock; | ||
| 205 | extern struct mutex kprobe_mutex; | 203 | extern struct mutex kprobe_mutex; |
| 206 | extern int arch_prepare_kprobe(struct kprobe *p); | 204 | extern int arch_prepare_kprobe(struct kprobe *p); |
| 207 | extern void arch_arm_kprobe(struct kprobe *p); | 205 | extern void arch_arm_kprobe(struct kprobe *p); |
| @@ -214,6 +212,9 @@ extern void kprobes_inc_nmissed_count(struct kprobe *p); | |||
| 214 | 212 | ||
| 215 | /* Get the kprobe at this addr (if any) - called with preemption disabled */ | 213 | /* Get the kprobe at this addr (if any) - called with preemption disabled */ |
| 216 | struct kprobe *get_kprobe(void *addr); | 214 | struct kprobe *get_kprobe(void *addr); |
| 215 | void kretprobe_hash_lock(struct task_struct *tsk, | ||
| 216 | struct hlist_head **head, unsigned long *flags); | ||
| 217 | void kretprobe_hash_unlock(struct task_struct *tsk, unsigned long *flags); | ||
| 217 | struct hlist_head * kretprobe_inst_table_head(struct task_struct *tsk); | 218 | struct hlist_head * kretprobe_inst_table_head(struct task_struct *tsk); |
| 218 | 219 | ||
| 219 | /* kprobe_running() will just return the current_kprobe on this CPU */ | 220 | /* kprobe_running() will just return the current_kprobe on this CPU */ |
diff --git a/include/linux/kthread.h b/include/linux/kthread.h index 00dd957e245b..aabc8a13ba71 100644 --- a/include/linux/kthread.h +++ b/include/linux/kthread.h | |||
| @@ -6,7 +6,8 @@ | |||
| 6 | 6 | ||
| 7 | struct task_struct *kthread_create(int (*threadfn)(void *data), | 7 | struct task_struct *kthread_create(int (*threadfn)(void *data), |
| 8 | void *data, | 8 | void *data, |
| 9 | const char namefmt[], ...); | 9 | const char namefmt[], ...) |
| 10 | __attribute__((format(printf, 3, 4))); | ||
| 10 | 11 | ||
| 11 | /** | 12 | /** |
| 12 | * kthread_run - create and wake a thread. | 13 | * kthread_run - create and wake a thread. |
diff --git a/include/linux/kvm.h b/include/linux/kvm.h index 0ea064cbfbc8..69511f74f912 100644 --- a/include/linux/kvm.h +++ b/include/linux/kvm.h | |||
| @@ -371,6 +371,7 @@ struct kvm_trace_rec { | |||
| 371 | #define KVM_CAP_PV_MMU 13 | 371 | #define KVM_CAP_PV_MMU 13 |
| 372 | #define KVM_CAP_MP_STATE 14 | 372 | #define KVM_CAP_MP_STATE 14 |
| 373 | #define KVM_CAP_COALESCED_MMIO 15 | 373 | #define KVM_CAP_COALESCED_MMIO 15 |
| 374 | #define KVM_CAP_SYNC_MMU 16 /* Changes to host mmap are reflected in guest */ | ||
| 374 | 375 | ||
| 375 | /* | 376 | /* |
| 376 | * ioctls for VM fds | 377 | * ioctls for VM fds |
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h index 07d68a8ae8e9..8525afc53107 100644 --- a/include/linux/kvm_host.h +++ b/include/linux/kvm_host.h | |||
| @@ -121,6 +121,12 @@ struct kvm { | |||
| 121 | struct kvm_coalesced_mmio_dev *coalesced_mmio_dev; | 121 | struct kvm_coalesced_mmio_dev *coalesced_mmio_dev; |
| 122 | struct kvm_coalesced_mmio_ring *coalesced_mmio_ring; | 122 | struct kvm_coalesced_mmio_ring *coalesced_mmio_ring; |
| 123 | #endif | 123 | #endif |
| 124 | |||
| 125 | #ifdef KVM_ARCH_WANT_MMU_NOTIFIER | ||
| 126 | struct mmu_notifier mmu_notifier; | ||
| 127 | unsigned long mmu_notifier_seq; | ||
| 128 | long mmu_notifier_count; | ||
| 129 | #endif | ||
| 124 | }; | 130 | }; |
| 125 | 131 | ||
| 126 | /* The guest did something we don't support. */ | 132 | /* The guest did something we don't support. */ |
| @@ -332,4 +338,22 @@ int kvm_trace_ioctl(unsigned int ioctl, unsigned long arg) | |||
| 332 | #define kvm_trace_cleanup() ((void)0) | 338 | #define kvm_trace_cleanup() ((void)0) |
| 333 | #endif | 339 | #endif |
| 334 | 340 | ||
| 341 | #ifdef KVM_ARCH_WANT_MMU_NOTIFIER | ||
| 342 | static inline int mmu_notifier_retry(struct kvm_vcpu *vcpu, unsigned long mmu_seq) | ||
| 343 | { | ||
| 344 | if (unlikely(vcpu->kvm->mmu_notifier_count)) | ||
| 345 | return 1; | ||
| 346 | /* | ||
| 347 | * Both reads happen under the mmu_lock and both values are | ||
| 348 | * modified under mmu_lock, so there's no need of smb_rmb() | ||
| 349 | * here in between, otherwise mmu_notifier_count should be | ||
| 350 | * read before mmu_notifier_seq, see | ||
| 351 | * mmu_notifier_invalidate_range_end write side. | ||
| 352 | */ | ||
| 353 | if (vcpu->kvm->mmu_notifier_seq != mmu_seq) | ||
| 354 | return 1; | ||
| 355 | return 0; | ||
| 356 | } | ||
| 357 | #endif | ||
| 358 | |||
| 335 | #endif | 359 | #endif |
diff --git a/include/linux/lcd.h b/include/linux/lcd.h index 1d379787f2e7..173febac6656 100644 --- a/include/linux/lcd.h +++ b/include/linux/lcd.h | |||
| @@ -47,7 +47,7 @@ struct lcd_ops { | |||
| 47 | int (*set_contrast)(struct lcd_device *, int contrast); | 47 | int (*set_contrast)(struct lcd_device *, int contrast); |
| 48 | /* Check if given framebuffer device is the one LCD is bound to; | 48 | /* Check if given framebuffer device is the one LCD is bound to; |
| 49 | return 0 if not, !=0 if it is. If NULL, lcd always matches the fb. */ | 49 | return 0 if not, !=0 if it is. If NULL, lcd always matches the fb. */ |
| 50 | int (*check_fb)(struct fb_info *); | 50 | int (*check_fb)(struct lcd_device *, struct fb_info *); |
| 51 | }; | 51 | }; |
| 52 | 52 | ||
| 53 | struct lcd_device { | 53 | struct lcd_device { |
diff --git a/include/linux/leds-pca9532.h b/include/linux/leds-pca9532.h new file mode 100644 index 000000000000..81b4207deb95 --- /dev/null +++ b/include/linux/leds-pca9532.h | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | /* | ||
| 2 | * pca9532.h - platform data structure for pca9532 led controller | ||
| 3 | * | ||
| 4 | * Copyright (C) 2008 Riku Voipio <riku.voipio@movial.fi> | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; version 2 of the License. | ||
| 9 | * | ||
| 10 | * Datasheet: http://www.nxp.com/acrobat/datasheets/PCA9532_3.pdf | ||
| 11 | * | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef __LINUX_PCA9532_H | ||
| 15 | #define __LINUX_PCA9532_H | ||
| 16 | |||
| 17 | #include <linux/leds.h> | ||
| 18 | |||
| 19 | enum pca9532_state { | ||
| 20 | PCA9532_OFF = 0x0, | ||
| 21 | PCA9532_ON = 0x1, | ||
| 22 | PCA9532_PWM0 = 0x2, | ||
| 23 | PCA9532_PWM1 = 0x3 | ||
| 24 | }; | ||
| 25 | |||
| 26 | enum pca9532_type { PCA9532_TYPE_NONE, PCA9532_TYPE_LED, | ||
| 27 | PCA9532_TYPE_N2100_BEEP }; | ||
| 28 | |||
| 29 | struct pca9532_led { | ||
| 30 | u8 id; | ||
| 31 | struct i2c_client *client; | ||
| 32 | char *name; | ||
| 33 | struct led_classdev ldev; | ||
| 34 | enum pca9532_type type; | ||
| 35 | enum pca9532_state state; | ||
| 36 | }; | ||
| 37 | |||
| 38 | struct pca9532_platform_data { | ||
| 39 | struct pca9532_led leds[16]; | ||
| 40 | u8 pwm[2]; | ||
| 41 | u8 psc[2]; | ||
| 42 | }; | ||
| 43 | |||
| 44 | #endif /* __LINUX_PCA9532_H */ | ||
| 45 | |||
diff --git a/include/linux/leds.h b/include/linux/leds.h index 519df72e939d..d41ccb56146a 100644 --- a/include/linux/leds.h +++ b/include/linux/leds.h | |||
| @@ -48,7 +48,7 @@ struct led_classdev { | |||
| 48 | 48 | ||
| 49 | struct device *dev; | 49 | struct device *dev; |
| 50 | struct list_head node; /* LED Device list */ | 50 | struct list_head node; /* LED Device list */ |
| 51 | char *default_trigger; /* Trigger to use */ | 51 | const char *default_trigger; /* Trigger to use */ |
| 52 | 52 | ||
| 53 | #ifdef CONFIG_LEDS_TRIGGERS | 53 | #ifdef CONFIG_LEDS_TRIGGERS |
| 54 | /* Protects the trigger data below */ | 54 | /* Protects the trigger data below */ |
| @@ -118,6 +118,20 @@ extern void ledtrig_ide_activity(void); | |||
| 118 | #define ledtrig_ide_activity() do {} while(0) | 118 | #define ledtrig_ide_activity() do {} while(0) |
| 119 | #endif | 119 | #endif |
| 120 | 120 | ||
| 121 | /* | ||
| 122 | * Generic LED platform data for describing LED names and default triggers. | ||
| 123 | */ | ||
| 124 | struct led_info { | ||
| 125 | const char *name; | ||
| 126 | char *default_trigger; | ||
| 127 | int flags; | ||
| 128 | }; | ||
| 129 | |||
| 130 | struct led_platform_data { | ||
| 131 | int num_leds; | ||
| 132 | struct led_info *leds; | ||
| 133 | }; | ||
| 134 | |||
| 121 | /* For the leds-gpio driver */ | 135 | /* For the leds-gpio driver */ |
| 122 | struct gpio_led { | 136 | struct gpio_led { |
| 123 | const char *name; | 137 | const char *name; |
diff --git a/include/linux/libata.h b/include/linux/libata.h index 5b247b8a6b3b..06b80337303b 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
| @@ -60,9 +60,9 @@ | |||
| 60 | 60 | ||
| 61 | /* note: prints function name for you */ | 61 | /* note: prints function name for you */ |
| 62 | #ifdef ATA_DEBUG | 62 | #ifdef ATA_DEBUG |
| 63 | #define DPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args) | 63 | #define DPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __func__, ## args) |
| 64 | #ifdef ATA_VERBOSE_DEBUG | 64 | #ifdef ATA_VERBOSE_DEBUG |
| 65 | #define VPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args) | 65 | #define VPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __func__, ## args) |
| 66 | #else | 66 | #else |
| 67 | #define VPRINTK(fmt, args...) | 67 | #define VPRINTK(fmt, args...) |
| 68 | #endif /* ATA_VERBOSE_DEBUG */ | 68 | #endif /* ATA_VERBOSE_DEBUG */ |
| @@ -71,7 +71,7 @@ | |||
| 71 | #define VPRINTK(fmt, args...) | 71 | #define VPRINTK(fmt, args...) |
| 72 | #endif /* ATA_DEBUG */ | 72 | #endif /* ATA_DEBUG */ |
| 73 | 73 | ||
| 74 | #define BPRINTK(fmt, args...) if (ap->flags & ATA_FLAG_DEBUGMSG) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args) | 74 | #define BPRINTK(fmt, args...) if (ap->flags & ATA_FLAG_DEBUGMSG) printk(KERN_ERR "%s: " fmt, __func__, ## args) |
| 75 | 75 | ||
| 76 | /* NEW: debug levels */ | 76 | /* NEW: debug levels */ |
| 77 | #define HAVE_LIBATA_MSG 1 | 77 | #define HAVE_LIBATA_MSG 1 |
| @@ -750,6 +750,7 @@ struct ata_port_operations { | |||
| 750 | void (*set_piomode)(struct ata_port *ap, struct ata_device *dev); | 750 | void (*set_piomode)(struct ata_port *ap, struct ata_device *dev); |
| 751 | void (*set_dmamode)(struct ata_port *ap, struct ata_device *dev); | 751 | void (*set_dmamode)(struct ata_port *ap, struct ata_device *dev); |
| 752 | int (*set_mode)(struct ata_link *link, struct ata_device **r_failed_dev); | 752 | int (*set_mode)(struct ata_link *link, struct ata_device **r_failed_dev); |
| 753 | unsigned int (*read_id)(struct ata_device *dev, struct ata_taskfile *tf, u16 *id); | ||
| 753 | 754 | ||
| 754 | void (*dev_config)(struct ata_device *dev); | 755 | void (*dev_config)(struct ata_device *dev); |
| 755 | 756 | ||
| @@ -951,6 +952,8 @@ extern void ata_id_string(const u16 *id, unsigned char *s, | |||
| 951 | unsigned int ofs, unsigned int len); | 952 | unsigned int ofs, unsigned int len); |
| 952 | extern void ata_id_c_string(const u16 *id, unsigned char *s, | 953 | extern void ata_id_c_string(const u16 *id, unsigned char *s, |
| 953 | unsigned int ofs, unsigned int len); | 954 | unsigned int ofs, unsigned int len); |
| 955 | extern unsigned int ata_do_dev_read_id(struct ata_device *dev, | ||
| 956 | struct ata_taskfile *tf, u16 *id); | ||
| 954 | extern void ata_qc_complete(struct ata_queued_cmd *qc); | 957 | extern void ata_qc_complete(struct ata_queued_cmd *qc); |
| 955 | extern int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active); | 958 | extern int ata_qc_complete_multiple(struct ata_port *ap, u32 qc_active); |
| 956 | extern void ata_scsi_simulate(struct ata_device *dev, struct scsi_cmnd *cmd, | 959 | extern void ata_scsi_simulate(struct ata_device *dev, struct scsi_cmnd *cmd, |
diff --git a/include/linux/list.h b/include/linux/list.h index 139ec41d9c2e..db35ef02e745 100644 --- a/include/linux/list.h +++ b/include/linux/list.h | |||
| @@ -61,14 +61,10 @@ extern void __list_add(struct list_head *new, | |||
| 61 | * Insert a new entry after the specified head. | 61 | * Insert a new entry after the specified head. |
| 62 | * This is good for implementing stacks. | 62 | * This is good for implementing stacks. |
| 63 | */ | 63 | */ |
| 64 | #ifndef CONFIG_DEBUG_LIST | ||
| 65 | static inline void list_add(struct list_head *new, struct list_head *head) | 64 | static inline void list_add(struct list_head *new, struct list_head *head) |
| 66 | { | 65 | { |
| 67 | __list_add(new, head, head->next); | 66 | __list_add(new, head, head->next); |
| 68 | } | 67 | } |
| 69 | #else | ||
| 70 | extern void list_add(struct list_head *new, struct list_head *head); | ||
| 71 | #endif | ||
| 72 | 68 | ||
| 73 | 69 | ||
| 74 | /** | 70 | /** |
| @@ -218,22 +214,62 @@ static inline int list_is_singular(const struct list_head *head) | |||
| 218 | return !list_empty(head) && (head->next == head->prev); | 214 | return !list_empty(head) && (head->next == head->prev); |
| 219 | } | 215 | } |
| 220 | 216 | ||
| 217 | static inline void __list_cut_position(struct list_head *list, | ||
| 218 | struct list_head *head, struct list_head *entry) | ||
| 219 | { | ||
| 220 | struct list_head *new_first = entry->next; | ||
| 221 | list->next = head->next; | ||
| 222 | list->next->prev = list; | ||
| 223 | list->prev = entry; | ||
| 224 | entry->next = list; | ||
| 225 | head->next = new_first; | ||
| 226 | new_first->prev = head; | ||
| 227 | } | ||
| 228 | |||
| 229 | /** | ||
| 230 | * list_cut_position - cut a list into two | ||
| 231 | * @list: a new list to add all removed entries | ||
| 232 | * @head: a list with entries | ||
| 233 | * @entry: an entry within head, could be the head itself | ||
| 234 | * and if so we won't cut the list | ||
| 235 | * | ||
| 236 | * This helper moves the initial part of @head, up to and | ||
| 237 | * including @entry, from @head to @list. You should | ||
| 238 | * pass on @entry an element you know is on @head. @list | ||
| 239 | * should be an empty list or a list you do not care about | ||
| 240 | * losing its data. | ||
| 241 | * | ||
| 242 | */ | ||
| 243 | static inline void list_cut_position(struct list_head *list, | ||
| 244 | struct list_head *head, struct list_head *entry) | ||
| 245 | { | ||
| 246 | if (list_empty(head)) | ||
| 247 | return; | ||
| 248 | if (list_is_singular(head) && | ||
| 249 | (head->next != entry && head != entry)) | ||
| 250 | return; | ||
| 251 | if (entry == head) | ||
| 252 | INIT_LIST_HEAD(list); | ||
| 253 | else | ||
| 254 | __list_cut_position(list, head, entry); | ||
| 255 | } | ||
| 256 | |||
| 221 | static inline void __list_splice(const struct list_head *list, | 257 | static inline void __list_splice(const struct list_head *list, |
| 222 | struct list_head *head) | 258 | struct list_head *prev, |
| 259 | struct list_head *next) | ||
| 223 | { | 260 | { |
| 224 | struct list_head *first = list->next; | 261 | struct list_head *first = list->next; |
| 225 | struct list_head *last = list->prev; | 262 | struct list_head *last = list->prev; |
| 226 | struct list_head *at = head->next; | ||
| 227 | 263 | ||
| 228 | first->prev = head; | 264 | first->prev = prev; |
| 229 | head->next = first; | 265 | prev->next = first; |
| 230 | 266 | ||
| 231 | last->next = at; | 267 | last->next = next; |
| 232 | at->prev = last; | 268 | next->prev = last; |
| 233 | } | 269 | } |
| 234 | 270 | ||
| 235 | /** | 271 | /** |
| 236 | * list_splice - join two lists | 272 | * list_splice - join two lists, this is designed for stacks |
| 237 | * @list: the new list to add. | 273 | * @list: the new list to add. |
| 238 | * @head: the place to add it in the first list. | 274 | * @head: the place to add it in the first list. |
| 239 | */ | 275 | */ |
| @@ -241,7 +277,19 @@ static inline void list_splice(const struct list_head *list, | |||
| 241 | struct list_head *head) | 277 | struct list_head *head) |
| 242 | { | 278 | { |
| 243 | if (!list_empty(list)) | 279 | if (!list_empty(list)) |
| 244 | __list_splice(list, head); | 280 | __list_splice(list, head, head->next); |
| 281 | } | ||
| 282 | |||
| 283 | /** | ||
| 284 | * list_splice_tail - join two lists, each list being a queue | ||
| 285 | * @list: the new list to add. | ||
| 286 | * @head: the place to add it in the first list. | ||
| 287 | */ | ||
| 288 | static inline void list_splice_tail(struct list_head *list, | ||
| 289 | struct list_head *head) | ||
| 290 | { | ||
| 291 | if (!list_empty(list)) | ||
| 292 | __list_splice(list, head->prev, head); | ||
| 245 | } | 293 | } |
| 246 | 294 | ||
| 247 | /** | 295 | /** |
| @@ -255,7 +303,24 @@ static inline void list_splice_init(struct list_head *list, | |||
| 255 | struct list_head *head) | 303 | struct list_head *head) |
| 256 | { | 304 | { |
| 257 | if (!list_empty(list)) { | 305 | if (!list_empty(list)) { |
| 258 | __list_splice(list, head); | 306 | __list_splice(list, head, head->next); |
| 307 | INIT_LIST_HEAD(list); | ||
| 308 | } | ||
| 309 | } | ||
| 310 | |||
| 311 | /** | ||
| 312 | * list_splice_tail_init - join two lists and reinitialise the emptied list | ||
| 313 | * @list: the new list to add. | ||
| 314 | * @head: the place to add it in the first list. | ||
| 315 | * | ||
| 316 | * Each of the lists is a queue. | ||
| 317 | * The list at @list is reinitialised | ||
| 318 | */ | ||
| 319 | static inline void list_splice_tail_init(struct list_head *list, | ||
| 320 | struct list_head *head) | ||
| 321 | { | ||
| 322 | if (!list_empty(list)) { | ||
| 323 | __list_splice(list, head->prev, head); | ||
| 259 | INIT_LIST_HEAD(list); | 324 | INIT_LIST_HEAD(list); |
| 260 | } | 325 | } |
| 261 | } | 326 | } |
diff --git a/include/linux/lockdep.h b/include/linux/lockdep.h index 2486eb4edbf1..331e5f1c2d8e 100644 --- a/include/linux/lockdep.h +++ b/include/linux/lockdep.h | |||
| @@ -89,6 +89,7 @@ struct lock_class { | |||
| 89 | 89 | ||
| 90 | struct lockdep_subclass_key *key; | 90 | struct lockdep_subclass_key *key; |
| 91 | unsigned int subclass; | 91 | unsigned int subclass; |
| 92 | unsigned int dep_gen_id; | ||
| 92 | 93 | ||
| 93 | /* | 94 | /* |
| 94 | * IRQ/softirq usage tracking bits: | 95 | * IRQ/softirq usage tracking bits: |
| @@ -189,6 +190,14 @@ struct lock_chain { | |||
| 189 | u64 chain_key; | 190 | u64 chain_key; |
| 190 | }; | 191 | }; |
| 191 | 192 | ||
| 193 | #define MAX_LOCKDEP_KEYS_BITS 13 | ||
| 194 | /* | ||
| 195 | * Subtract one because we offset hlock->class_idx by 1 in order | ||
| 196 | * to make 0 mean no class. This avoids overflowing the class_idx | ||
| 197 | * bitfield and hitting the BUG in hlock_class(). | ||
| 198 | */ | ||
| 199 | #define MAX_LOCKDEP_KEYS ((1UL << MAX_LOCKDEP_KEYS_BITS) - 1) | ||
| 200 | |||
| 192 | struct held_lock { | 201 | struct held_lock { |
| 193 | /* | 202 | /* |
| 194 | * One-way hash of the dependency chain up to this point. We | 203 | * One-way hash of the dependency chain up to this point. We |
| @@ -205,14 +214,14 @@ struct held_lock { | |||
| 205 | * with zero), here we store the previous hash value: | 214 | * with zero), here we store the previous hash value: |
| 206 | */ | 215 | */ |
| 207 | u64 prev_chain_key; | 216 | u64 prev_chain_key; |
| 208 | struct lock_class *class; | ||
| 209 | unsigned long acquire_ip; | 217 | unsigned long acquire_ip; |
| 210 | struct lockdep_map *instance; | 218 | struct lockdep_map *instance; |
| 211 | 219 | struct lockdep_map *nest_lock; | |
| 212 | #ifdef CONFIG_LOCK_STAT | 220 | #ifdef CONFIG_LOCK_STAT |
| 213 | u64 waittime_stamp; | 221 | u64 waittime_stamp; |
| 214 | u64 holdtime_stamp; | 222 | u64 holdtime_stamp; |
| 215 | #endif | 223 | #endif |
| 224 | unsigned int class_idx:MAX_LOCKDEP_KEYS_BITS; | ||
| 216 | /* | 225 | /* |
| 217 | * The lock-stack is unified in that the lock chains of interrupt | 226 | * The lock-stack is unified in that the lock chains of interrupt |
| 218 | * contexts nest ontop of process context chains, but we 'separate' | 227 | * contexts nest ontop of process context chains, but we 'separate' |
| @@ -226,11 +235,11 @@ struct held_lock { | |||
| 226 | * The following field is used to detect when we cross into an | 235 | * The following field is used to detect when we cross into an |
| 227 | * interrupt context: | 236 | * interrupt context: |
| 228 | */ | 237 | */ |
| 229 | int irq_context; | 238 | unsigned int irq_context:2; /* bit 0 - soft, bit 1 - hard */ |
| 230 | int trylock; | 239 | unsigned int trylock:1; |
| 231 | int read; | 240 | unsigned int read:2; /* see lock_acquire() comment */ |
| 232 | int check; | 241 | unsigned int check:2; /* see lock_acquire() comment */ |
| 233 | int hardirqs_off; | 242 | unsigned int hardirqs_off:1; |
| 234 | }; | 243 | }; |
| 235 | 244 | ||
| 236 | /* | 245 | /* |
| @@ -294,11 +303,15 @@ extern void lockdep_init_map(struct lockdep_map *lock, const char *name, | |||
| 294 | * 2: full validation | 303 | * 2: full validation |
| 295 | */ | 304 | */ |
| 296 | extern void lock_acquire(struct lockdep_map *lock, unsigned int subclass, | 305 | extern void lock_acquire(struct lockdep_map *lock, unsigned int subclass, |
| 297 | int trylock, int read, int check, unsigned long ip); | 306 | int trylock, int read, int check, |
| 307 | struct lockdep_map *nest_lock, unsigned long ip); | ||
| 298 | 308 | ||
| 299 | extern void lock_release(struct lockdep_map *lock, int nested, | 309 | extern void lock_release(struct lockdep_map *lock, int nested, |
| 300 | unsigned long ip); | 310 | unsigned long ip); |
| 301 | 311 | ||
| 312 | extern void lock_set_subclass(struct lockdep_map *lock, unsigned int subclass, | ||
| 313 | unsigned long ip); | ||
| 314 | |||
| 302 | # define INIT_LOCKDEP .lockdep_recursion = 0, | 315 | # define INIT_LOCKDEP .lockdep_recursion = 0, |
| 303 | 316 | ||
| 304 | #define lockdep_depth(tsk) (debug_locks ? (tsk)->lockdep_depth : 0) | 317 | #define lockdep_depth(tsk) (debug_locks ? (tsk)->lockdep_depth : 0) |
| @@ -313,8 +326,9 @@ static inline void lockdep_on(void) | |||
| 313 | { | 326 | { |
| 314 | } | 327 | } |
| 315 | 328 | ||
| 316 | # define lock_acquire(l, s, t, r, c, i) do { } while (0) | 329 | # define lock_acquire(l, s, t, r, c, n, i) do { } while (0) |
| 317 | # define lock_release(l, n, i) do { } while (0) | 330 | # define lock_release(l, n, i) do { } while (0) |
| 331 | # define lock_set_subclass(l, s, i) do { } while (0) | ||
| 318 | # define lockdep_init() do { } while (0) | 332 | # define lockdep_init() do { } while (0) |
| 319 | # define lockdep_info() do { } while (0) | 333 | # define lockdep_info() do { } while (0) |
| 320 | # define lockdep_init_map(lock, name, key, sub) do { (void)(key); } while (0) | 334 | # define lockdep_init_map(lock, name, key, sub) do { (void)(key); } while (0) |
| @@ -400,9 +414,11 @@ static inline void print_irqtrace_events(struct task_struct *curr) | |||
| 400 | 414 | ||
| 401 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 415 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 402 | # ifdef CONFIG_PROVE_LOCKING | 416 | # ifdef CONFIG_PROVE_LOCKING |
| 403 | # define spin_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 2, i) | 417 | # define spin_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 2, NULL, i) |
| 418 | # define spin_acquire_nest(l, s, t, n, i) lock_acquire(l, s, t, 0, 2, n, i) | ||
| 404 | # else | 419 | # else |
| 405 | # define spin_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 1, i) | 420 | # define spin_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 1, NULL, i) |
| 421 | # define spin_acquire_nest(l, s, t, n, i) lock_acquire(l, s, t, 0, 1, NULL, i) | ||
| 406 | # endif | 422 | # endif |
| 407 | # define spin_release(l, n, i) lock_release(l, n, i) | 423 | # define spin_release(l, n, i) lock_release(l, n, i) |
| 408 | #else | 424 | #else |
| @@ -412,11 +428,11 @@ static inline void print_irqtrace_events(struct task_struct *curr) | |||
| 412 | 428 | ||
| 413 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 429 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 414 | # ifdef CONFIG_PROVE_LOCKING | 430 | # ifdef CONFIG_PROVE_LOCKING |
| 415 | # define rwlock_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 2, i) | 431 | # define rwlock_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 2, NULL, i) |
| 416 | # define rwlock_acquire_read(l, s, t, i) lock_acquire(l, s, t, 2, 2, i) | 432 | # define rwlock_acquire_read(l, s, t, i) lock_acquire(l, s, t, 2, 2, NULL, i) |
| 417 | # else | 433 | # else |
| 418 | # define rwlock_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 1, i) | 434 | # define rwlock_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 1, NULL, i) |
| 419 | # define rwlock_acquire_read(l, s, t, i) lock_acquire(l, s, t, 2, 1, i) | 435 | # define rwlock_acquire_read(l, s, t, i) lock_acquire(l, s, t, 2, 1, NULL, i) |
| 420 | # endif | 436 | # endif |
| 421 | # define rwlock_release(l, n, i) lock_release(l, n, i) | 437 | # define rwlock_release(l, n, i) lock_release(l, n, i) |
| 422 | #else | 438 | #else |
| @@ -427,9 +443,9 @@ static inline void print_irqtrace_events(struct task_struct *curr) | |||
| 427 | 443 | ||
| 428 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 444 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 429 | # ifdef CONFIG_PROVE_LOCKING | 445 | # ifdef CONFIG_PROVE_LOCKING |
| 430 | # define mutex_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 2, i) | 446 | # define mutex_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 2, NULL, i) |
| 431 | # else | 447 | # else |
| 432 | # define mutex_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 1, i) | 448 | # define mutex_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 1, NULL, i) |
| 433 | # endif | 449 | # endif |
| 434 | # define mutex_release(l, n, i) lock_release(l, n, i) | 450 | # define mutex_release(l, n, i) lock_release(l, n, i) |
| 435 | #else | 451 | #else |
| @@ -439,11 +455,11 @@ static inline void print_irqtrace_events(struct task_struct *curr) | |||
| 439 | 455 | ||
| 440 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 456 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 441 | # ifdef CONFIG_PROVE_LOCKING | 457 | # ifdef CONFIG_PROVE_LOCKING |
| 442 | # define rwsem_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 2, i) | 458 | # define rwsem_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 2, NULL, i) |
| 443 | # define rwsem_acquire_read(l, s, t, i) lock_acquire(l, s, t, 1, 2, i) | 459 | # define rwsem_acquire_read(l, s, t, i) lock_acquire(l, s, t, 1, 2, NULL, i) |
| 444 | # else | 460 | # else |
| 445 | # define rwsem_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 1, i) | 461 | # define rwsem_acquire(l, s, t, i) lock_acquire(l, s, t, 0, 1, NULL, i) |
| 446 | # define rwsem_acquire_read(l, s, t, i) lock_acquire(l, s, t, 1, 1, i) | 462 | # define rwsem_acquire_read(l, s, t, i) lock_acquire(l, s, t, 1, 1, NULL, i) |
| 447 | # endif | 463 | # endif |
| 448 | # define rwsem_release(l, n, i) lock_release(l, n, i) | 464 | # define rwsem_release(l, n, i) lock_release(l, n, i) |
| 449 | #else | 465 | #else |
| @@ -452,4 +468,16 @@ static inline void print_irqtrace_events(struct task_struct *curr) | |||
| 452 | # define rwsem_release(l, n, i) do { } while (0) | 468 | # define rwsem_release(l, n, i) do { } while (0) |
| 453 | #endif | 469 | #endif |
| 454 | 470 | ||
| 471 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | ||
| 472 | # ifdef CONFIG_PROVE_LOCKING | ||
| 473 | # define lock_map_acquire(l) lock_acquire(l, 0, 0, 0, 2, NULL, _THIS_IP_) | ||
| 474 | # else | ||
| 475 | # define lock_map_acquire(l) lock_acquire(l, 0, 0, 0, 1, NULL, _THIS_IP_) | ||
| 476 | # endif | ||
| 477 | # define lock_map_release(l) lock_release(l, 1, _THIS_IP_) | ||
| 478 | #else | ||
| 479 | # define lock_map_acquire(l) do { } while (0) | ||
| 480 | # define lock_map_release(l) do { } while (0) | ||
| 481 | #endif | ||
| 482 | |||
| 455 | #endif /* __LINUX_LOCKDEP_H */ | 483 | #endif /* __LINUX_LOCKDEP_H */ |
diff --git a/include/linux/mISDNdsp.h b/include/linux/mISDNdsp.h new file mode 100644 index 000000000000..6b71d2dce508 --- /dev/null +++ b/include/linux/mISDNdsp.h | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | #ifndef __mISDNdsp_H__ | ||
| 2 | #define __mISDNdsp_H__ | ||
| 3 | |||
| 4 | struct mISDN_dsp_element_arg { | ||
| 5 | char *name; | ||
| 6 | char *def; | ||
| 7 | char *desc; | ||
| 8 | }; | ||
| 9 | |||
| 10 | struct mISDN_dsp_element { | ||
| 11 | char *name; | ||
| 12 | void *(*new)(const char *arg); | ||
| 13 | void (*free)(void *p); | ||
| 14 | void (*process_tx)(void *p, unsigned char *data, int len); | ||
| 15 | void (*process_rx)(void *p, unsigned char *data, int len); | ||
| 16 | int num_args; | ||
| 17 | struct mISDN_dsp_element_arg | ||
| 18 | *args; | ||
| 19 | }; | ||
| 20 | |||
| 21 | extern int mISDN_dsp_element_register(struct mISDN_dsp_element *elem); | ||
| 22 | extern void mISDN_dsp_element_unregister(struct mISDN_dsp_element *elem); | ||
| 23 | |||
| 24 | struct dsp_features { | ||
| 25 | int hfc_id; /* unique id to identify the chip (or -1) */ | ||
| 26 | int hfc_dtmf; /* set if HFCmulti card supports dtmf */ | ||
| 27 | int hfc_loops; /* set if card supports tone loops */ | ||
| 28 | int hfc_echocanhw; /* set if card supports echocancelation*/ | ||
| 29 | int pcm_id; /* unique id to identify the pcm bus (or -1) */ | ||
| 30 | int pcm_slots; /* number of slots on the pcm bus */ | ||
| 31 | int pcm_banks; /* number of IO banks of pcm bus */ | ||
| 32 | int unclocked; /* data is not clocked (has jitter/loss) */ | ||
| 33 | int unordered; /* data is unordered (packets have index) */ | ||
| 34 | }; | ||
| 35 | |||
| 36 | #endif | ||
| 37 | |||
diff --git a/include/linux/mISDNhw.h b/include/linux/mISDNhw.h new file mode 100644 index 000000000000..e794dfb87504 --- /dev/null +++ b/include/linux/mISDNhw.h | |||
| @@ -0,0 +1,193 @@ | |||
| 1 | /* | ||
| 2 | * | ||
| 3 | * Author Karsten Keil <kkeil@novell.com> | ||
| 4 | * | ||
| 5 | * Basic declarations for the mISDN HW channels | ||
| 6 | * | ||
| 7 | * Copyright 2008 by Karsten Keil <kkeil@novell.com> | ||
| 8 | * | ||
| 9 | * This program is free software; you can redistribute it and/or modify | ||
| 10 | * it under the terms of the GNU General Public License version 2 as | ||
| 11 | * published by the Free Software Foundation. | ||
| 12 | * | ||
| 13 | * This program is distributed in the hope that it will be useful, | ||
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 16 | * GNU General Public License for more details. | ||
| 17 | * | ||
| 18 | */ | ||
| 19 | |||
| 20 | #ifndef MISDNHW_H | ||
| 21 | #define MISDNHW_H | ||
| 22 | #include <linux/mISDNif.h> | ||
| 23 | #include <linux/timer.h> | ||
| 24 | |||
| 25 | /* | ||
| 26 | * HW DEBUG 0xHHHHGGGG | ||
| 27 | * H - hardware driver specific bits | ||
| 28 | * G - for all drivers | ||
| 29 | */ | ||
| 30 | |||
| 31 | #define DEBUG_HW 0x00000001 | ||
| 32 | #define DEBUG_HW_OPEN 0x00000002 | ||
| 33 | #define DEBUG_HW_DCHANNEL 0x00000100 | ||
| 34 | #define DEBUG_HW_DFIFO 0x00000200 | ||
| 35 | #define DEBUG_HW_BCHANNEL 0x00001000 | ||
| 36 | #define DEBUG_HW_BFIFO 0x00002000 | ||
| 37 | |||
| 38 | #define MAX_DFRAME_LEN_L1 300 | ||
| 39 | #define MAX_MON_FRAME 32 | ||
| 40 | #define MAX_LOG_SPACE 2048 | ||
| 41 | #define MISDN_COPY_SIZE 32 | ||
| 42 | |||
| 43 | /* channel->Flags bit field */ | ||
| 44 | #define FLG_TX_BUSY 0 /* tx_buf in use */ | ||
| 45 | #define FLG_TX_NEXT 1 /* next_skb in use */ | ||
| 46 | #define FLG_L1_BUSY 2 /* L1 is permanent busy */ | ||
| 47 | #define FLG_L2_ACTIVATED 3 /* activated from L2 */ | ||
| 48 | #define FLG_OPEN 5 /* channel is in use */ | ||
| 49 | #define FLG_ACTIVE 6 /* channel is activated */ | ||
| 50 | #define FLG_BUSY_TIMER 7 | ||
| 51 | /* channel type */ | ||
| 52 | #define FLG_DCHANNEL 8 /* channel is D-channel */ | ||
| 53 | #define FLG_BCHANNEL 9 /* channel is B-channel */ | ||
| 54 | #define FLG_ECHANNEL 10 /* channel is E-channel */ | ||
| 55 | #define FLG_TRANSPARENT 12 /* channel use transparent data */ | ||
| 56 | #define FLG_HDLC 13 /* channel use hdlc data */ | ||
| 57 | #define FLG_L2DATA 14 /* channel use L2 DATA primitivs */ | ||
| 58 | #define FLG_ORIGIN 15 /* channel is on origin site */ | ||
| 59 | /* channel specific stuff */ | ||
| 60 | /* arcofi specific */ | ||
| 61 | #define FLG_ARCOFI_TIMER 16 | ||
| 62 | #define FLG_ARCOFI_ERROR 17 | ||
| 63 | /* isar specific */ | ||
| 64 | #define FLG_INITIALIZED 16 | ||
| 65 | #define FLG_DLEETX 17 | ||
| 66 | #define FLG_LASTDLE 18 | ||
| 67 | #define FLG_FIRST 19 | ||
| 68 | #define FLG_LASTDATA 20 | ||
| 69 | #define FLG_NMD_DATA 21 | ||
| 70 | #define FLG_FTI_RUN 22 | ||
| 71 | #define FLG_LL_OK 23 | ||
| 72 | #define FLG_LL_CONN 24 | ||
| 73 | #define FLG_DTMFSEND 25 | ||
| 74 | |||
| 75 | /* workq events */ | ||
| 76 | #define FLG_RECVQUEUE 30 | ||
| 77 | #define FLG_PHCHANGE 31 | ||
| 78 | |||
| 79 | #define schedule_event(s, ev) do { \ | ||
| 80 | test_and_set_bit(ev, &((s)->Flags)); \ | ||
| 81 | schedule_work(&((s)->workq)); \ | ||
| 82 | } while (0) | ||
| 83 | |||
| 84 | struct dchannel { | ||
| 85 | struct mISDNdevice dev; | ||
| 86 | u_long Flags; | ||
| 87 | struct work_struct workq; | ||
| 88 | void (*phfunc) (struct dchannel *); | ||
| 89 | u_int state; | ||
| 90 | void *l1; | ||
| 91 | /* HW access */ | ||
| 92 | u_char (*read_reg) (void *, u_char); | ||
| 93 | void (*write_reg) (void *, u_char, u_char); | ||
| 94 | void (*read_fifo) (void *, u_char *, int); | ||
| 95 | void (*write_fifo) (void *, u_char *, int); | ||
| 96 | void *hw; | ||
| 97 | int slot; /* multiport card channel slot */ | ||
| 98 | struct timer_list timer; | ||
| 99 | /* receive data */ | ||
| 100 | struct sk_buff *rx_skb; | ||
| 101 | int maxlen; | ||
| 102 | /* send data */ | ||
| 103 | struct sk_buff_head squeue; | ||
| 104 | struct sk_buff_head rqueue; | ||
| 105 | struct sk_buff *tx_skb; | ||
| 106 | int tx_idx; | ||
| 107 | int debug; | ||
| 108 | /* statistics */ | ||
| 109 | int err_crc; | ||
| 110 | int err_tx; | ||
| 111 | int err_rx; | ||
| 112 | }; | ||
| 113 | |||
| 114 | typedef int (dchannel_l1callback)(struct dchannel *, u_int); | ||
| 115 | extern int create_l1(struct dchannel *, dchannel_l1callback *); | ||
| 116 | |||
| 117 | /* private L1 commands */ | ||
| 118 | #define INFO0 0x8002 | ||
| 119 | #define INFO1 0x8102 | ||
| 120 | #define INFO2 0x8202 | ||
| 121 | #define INFO3_P8 0x8302 | ||
| 122 | #define INFO3_P10 0x8402 | ||
| 123 | #define INFO4_P8 0x8502 | ||
| 124 | #define INFO4_P10 0x8602 | ||
| 125 | #define LOSTFRAMING 0x8702 | ||
| 126 | #define ANYSIGNAL 0x8802 | ||
| 127 | #define HW_POWERDOWN 0x8902 | ||
| 128 | #define HW_RESET_REQ 0x8a02 | ||
| 129 | #define HW_POWERUP_REQ 0x8b02 | ||
| 130 | #define HW_DEACT_REQ 0x8c02 | ||
| 131 | #define HW_ACTIVATE_REQ 0x8e02 | ||
| 132 | #define HW_D_NOBLOCKED 0x8f02 | ||
| 133 | #define HW_RESET_IND 0x9002 | ||
| 134 | #define HW_POWERUP_IND 0x9102 | ||
| 135 | #define HW_DEACT_IND 0x9202 | ||
| 136 | #define HW_ACTIVATE_IND 0x9302 | ||
| 137 | #define HW_DEACT_CNF 0x9402 | ||
| 138 | #define HW_TESTLOOP 0x9502 | ||
| 139 | #define HW_TESTRX_RAW 0x9602 | ||
| 140 | #define HW_TESTRX_HDLC 0x9702 | ||
| 141 | #define HW_TESTRX_OFF 0x9802 | ||
| 142 | |||
| 143 | struct layer1; | ||
| 144 | extern int l1_event(struct layer1 *, u_int); | ||
| 145 | |||
| 146 | |||
| 147 | struct bchannel { | ||
| 148 | struct mISDNchannel ch; | ||
| 149 | int nr; | ||
| 150 | u_long Flags; | ||
| 151 | struct work_struct workq; | ||
| 152 | u_int state; | ||
| 153 | /* HW access */ | ||
| 154 | u_char (*read_reg) (void *, u_char); | ||
| 155 | void (*write_reg) (void *, u_char, u_char); | ||
| 156 | void (*read_fifo) (void *, u_char *, int); | ||
| 157 | void (*write_fifo) (void *, u_char *, int); | ||
| 158 | void *hw; | ||
| 159 | int slot; /* multiport card channel slot */ | ||
| 160 | struct timer_list timer; | ||
| 161 | /* receive data */ | ||
| 162 | struct sk_buff *rx_skb; | ||
| 163 | int maxlen; | ||
| 164 | /* send data */ | ||
| 165 | struct sk_buff *next_skb; | ||
| 166 | struct sk_buff *tx_skb; | ||
| 167 | struct sk_buff_head rqueue; | ||
| 168 | int rcount; | ||
| 169 | int tx_idx; | ||
| 170 | int debug; | ||
| 171 | /* statistics */ | ||
| 172 | int err_crc; | ||
| 173 | int err_tx; | ||
| 174 | int err_rx; | ||
| 175 | }; | ||
| 176 | |||
| 177 | extern int mISDN_initdchannel(struct dchannel *, int, void *); | ||
| 178 | extern int mISDN_initbchannel(struct bchannel *, int); | ||
| 179 | extern int mISDN_freedchannel(struct dchannel *); | ||
| 180 | extern int mISDN_freebchannel(struct bchannel *); | ||
| 181 | extern void queue_ch_frame(struct mISDNchannel *, u_int, | ||
| 182 | int, struct sk_buff *); | ||
| 183 | extern int dchannel_senddata(struct dchannel *, struct sk_buff *); | ||
| 184 | extern int bchannel_senddata(struct bchannel *, struct sk_buff *); | ||
| 185 | extern void recv_Dchannel(struct dchannel *); | ||
| 186 | extern void recv_Bchannel(struct bchannel *); | ||
| 187 | extern void recv_Dchannel_skb(struct dchannel *, struct sk_buff *); | ||
| 188 | extern void recv_Bchannel_skb(struct bchannel *, struct sk_buff *); | ||
| 189 | extern void confirm_Bsend(struct bchannel *bch); | ||
| 190 | extern int get_next_bframe(struct bchannel *); | ||
| 191 | extern int get_next_dframe(struct dchannel *); | ||
| 192 | |||
| 193 | #endif | ||
diff --git a/include/linux/mISDNif.h b/include/linux/mISDNif.h new file mode 100644 index 000000000000..8f2d60da04e7 --- /dev/null +++ b/include/linux/mISDNif.h | |||
| @@ -0,0 +1,509 @@ | |||
| 1 | /* | ||
| 2 | * | ||
| 3 | * Author Karsten Keil <kkeil@novell.com> | ||
| 4 | * | ||
| 5 | * Copyright 2008 by Karsten Keil <kkeil@novell.com> | ||
| 6 | * | ||
| 7 | * This code is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE | ||
| 9 | * version 2.1 as published by the Free Software Foundation. | ||
| 10 | * | ||
| 11 | * This code is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | * GNU LESSER GENERAL PUBLIC LICENSE for more details. | ||
| 15 | * | ||
| 16 | */ | ||
| 17 | |||
| 18 | #ifndef mISDNIF_H | ||
| 19 | #define mISDNIF_H | ||
| 20 | |||
| 21 | #include <stdarg.h> | ||
| 22 | #include <linux/types.h> | ||
| 23 | #include <linux/errno.h> | ||
| 24 | #include <linux/socket.h> | ||
| 25 | |||
| 26 | /* | ||
| 27 | * ABI Version 32 bit | ||
| 28 | * | ||
| 29 | * <8 bit> Major version | ||
| 30 | * - changed if any interface become backwards incompatible | ||
| 31 | * | ||
| 32 | * <8 bit> Minor version | ||
| 33 | * - changed if any interface is extended but backwards compatible | ||
| 34 | * | ||
| 35 | * <16 bit> Release number | ||
| 36 | * - should be incremented on every checkin | ||
| 37 | */ | ||
| 38 | #define MISDN_MAJOR_VERSION 1 | ||
| 39 | #define MISDN_MINOR_VERSION 0 | ||
| 40 | #define MISDN_RELEASE 19 | ||
| 41 | |||
| 42 | /* primitives for information exchange | ||
| 43 | * generell format | ||
| 44 | * <16 bit 0 > | ||
| 45 | * <8 bit command> | ||
| 46 | * BIT 8 = 1 LAYER private | ||
| 47 | * BIT 7 = 1 answer | ||
| 48 | * BIT 6 = 1 DATA | ||
| 49 | * <8 bit target layer mask> | ||
| 50 | * | ||
| 51 | * Layer = 00 is reserved for general commands | ||
| 52 | Layer = 01 L2 -> HW | ||
| 53 | Layer = 02 HW -> L2 | ||
| 54 | Layer = 04 L3 -> L2 | ||
| 55 | Layer = 08 L2 -> L3 | ||
| 56 | * Layer = FF is reserved for broadcast commands | ||
| 57 | */ | ||
| 58 | |||
| 59 | #define MISDN_CMDMASK 0xff00 | ||
| 60 | #define MISDN_LAYERMASK 0x00ff | ||
| 61 | |||
| 62 | /* generell commands */ | ||
| 63 | #define OPEN_CHANNEL 0x0100 | ||
| 64 | #define CLOSE_CHANNEL 0x0200 | ||
| 65 | #define CONTROL_CHANNEL 0x0300 | ||
| 66 | #define CHECK_DATA 0x0400 | ||
| 67 | |||
| 68 | /* layer 2 -> layer 1 */ | ||
| 69 | #define PH_ACTIVATE_REQ 0x0101 | ||
| 70 | #define PH_DEACTIVATE_REQ 0x0201 | ||
| 71 | #define PH_DATA_REQ 0x2001 | ||
| 72 | #define MPH_ACTIVATE_REQ 0x0501 | ||
| 73 | #define MPH_DEACTIVATE_REQ 0x0601 | ||
| 74 | #define MPH_INFORMATION_REQ 0x0701 | ||
| 75 | #define PH_CONTROL_REQ 0x0801 | ||
| 76 | |||
| 77 | /* layer 1 -> layer 2 */ | ||
| 78 | #define PH_ACTIVATE_IND 0x0102 | ||
| 79 | #define PH_ACTIVATE_CNF 0x4102 | ||
| 80 | #define PH_DEACTIVATE_IND 0x0202 | ||
| 81 | #define PH_DEACTIVATE_CNF 0x4202 | ||
| 82 | #define PH_DATA_IND 0x2002 | ||
| 83 | #define MPH_ACTIVATE_IND 0x0502 | ||
| 84 | #define MPH_DEACTIVATE_IND 0x0602 | ||
| 85 | #define MPH_INFORMATION_IND 0x0702 | ||
| 86 | #define PH_DATA_CNF 0x6002 | ||
| 87 | #define PH_CONTROL_IND 0x0802 | ||
| 88 | #define PH_CONTROL_CNF 0x4802 | ||
| 89 | |||
| 90 | /* layer 3 -> layer 2 */ | ||
| 91 | #define DL_ESTABLISH_REQ 0x1004 | ||
| 92 | #define DL_RELEASE_REQ 0x1104 | ||
| 93 | #define DL_DATA_REQ 0x3004 | ||
| 94 | #define DL_UNITDATA_REQ 0x3104 | ||
| 95 | #define DL_INFORMATION_REQ 0x0004 | ||
| 96 | |||
| 97 | /* layer 2 -> layer 3 */ | ||
| 98 | #define DL_ESTABLISH_IND 0x1008 | ||
| 99 | #define DL_ESTABLISH_CNF 0x5008 | ||
| 100 | #define DL_RELEASE_IND 0x1108 | ||
| 101 | #define DL_RELEASE_CNF 0x5108 | ||
| 102 | #define DL_DATA_IND 0x3008 | ||
| 103 | #define DL_UNITDATA_IND 0x3108 | ||
| 104 | #define DL_INFORMATION_IND 0x0008 | ||
| 105 | |||
| 106 | /* intern layer 2 managment */ | ||
| 107 | #define MDL_ASSIGN_REQ 0x1804 | ||
| 108 | #define MDL_ASSIGN_IND 0x1904 | ||
| 109 | #define MDL_REMOVE_REQ 0x1A04 | ||
| 110 | #define MDL_REMOVE_IND 0x1B04 | ||
| 111 | #define MDL_STATUS_UP_IND 0x1C04 | ||
| 112 | #define MDL_STATUS_DOWN_IND 0x1D04 | ||
| 113 | #define MDL_STATUS_UI_IND 0x1E04 | ||
| 114 | #define MDL_ERROR_IND 0x1F04 | ||
| 115 | #define MDL_ERROR_RSP 0x5F04 | ||
| 116 | |||
| 117 | /* DL_INFORMATION_IND types */ | ||
| 118 | #define DL_INFO_L2_CONNECT 0x0001 | ||
| 119 | #define DL_INFO_L2_REMOVED 0x0002 | ||
| 120 | |||
| 121 | /* PH_CONTROL types */ | ||
| 122 | /* TOUCH TONE IS 0x20XX XX "0"..."9", "A","B","C","D","*","#" */ | ||
| 123 | #define DTMF_TONE_VAL 0x2000 | ||
| 124 | #define DTMF_TONE_MASK 0x007F | ||
| 125 | #define DTMF_TONE_START 0x2100 | ||
| 126 | #define DTMF_TONE_STOP 0x2200 | ||
| 127 | #define DTMF_HFC_COEF 0x4000 | ||
| 128 | #define DSP_CONF_JOIN 0x2403 | ||
| 129 | #define DSP_CONF_SPLIT 0x2404 | ||
| 130 | #define DSP_RECEIVE_OFF 0x2405 | ||
| 131 | #define DSP_RECEIVE_ON 0x2406 | ||
| 132 | #define DSP_ECHO_ON 0x2407 | ||
| 133 | #define DSP_ECHO_OFF 0x2408 | ||
| 134 | #define DSP_MIX_ON 0x2409 | ||
| 135 | #define DSP_MIX_OFF 0x240a | ||
| 136 | #define DSP_DELAY 0x240b | ||
| 137 | #define DSP_JITTER 0x240c | ||
| 138 | #define DSP_TXDATA_ON 0x240d | ||
| 139 | #define DSP_TXDATA_OFF 0x240e | ||
| 140 | #define DSP_TX_DEJITTER 0x240f | ||
| 141 | #define DSP_TX_DEJ_OFF 0x2410 | ||
| 142 | #define DSP_TONE_PATT_ON 0x2411 | ||
| 143 | #define DSP_TONE_PATT_OFF 0x2412 | ||
| 144 | #define DSP_VOL_CHANGE_TX 0x2413 | ||
| 145 | #define DSP_VOL_CHANGE_RX 0x2414 | ||
| 146 | #define DSP_BF_ENABLE_KEY 0x2415 | ||
| 147 | #define DSP_BF_DISABLE 0x2416 | ||
| 148 | #define DSP_BF_ACCEPT 0x2416 | ||
| 149 | #define DSP_BF_REJECT 0x2417 | ||
| 150 | #define DSP_PIPELINE_CFG 0x2418 | ||
| 151 | #define HFC_VOL_CHANGE_TX 0x2601 | ||
| 152 | #define HFC_VOL_CHANGE_RX 0x2602 | ||
| 153 | #define HFC_SPL_LOOP_ON 0x2603 | ||
| 154 | #define HFC_SPL_LOOP_OFF 0x2604 | ||
| 155 | |||
| 156 | /* DSP_TONE_PATT_ON parameter */ | ||
| 157 | #define TONE_OFF 0x0000 | ||
| 158 | #define TONE_GERMAN_DIALTONE 0x0001 | ||
| 159 | #define TONE_GERMAN_OLDDIALTONE 0x0002 | ||
| 160 | #define TONE_AMERICAN_DIALTONE 0x0003 | ||
| 161 | #define TONE_GERMAN_DIALPBX 0x0004 | ||
| 162 | #define TONE_GERMAN_OLDDIALPBX 0x0005 | ||
| 163 | #define TONE_AMERICAN_DIALPBX 0x0006 | ||
| 164 | #define TONE_GERMAN_RINGING 0x0007 | ||
| 165 | #define TONE_GERMAN_OLDRINGING 0x0008 | ||
| 166 | #define TONE_AMERICAN_RINGPBX 0x000b | ||
| 167 | #define TONE_GERMAN_RINGPBX 0x000c | ||
| 168 | #define TONE_GERMAN_OLDRINGPBX 0x000d | ||
| 169 | #define TONE_AMERICAN_RINGING 0x000e | ||
| 170 | #define TONE_GERMAN_BUSY 0x000f | ||
| 171 | #define TONE_GERMAN_OLDBUSY 0x0010 | ||
| 172 | #define TONE_AMERICAN_BUSY 0x0011 | ||
| 173 | #define TONE_GERMAN_HANGUP 0x0012 | ||
| 174 | #define TONE_GERMAN_OLDHANGUP 0x0013 | ||
| 175 | #define TONE_AMERICAN_HANGUP 0x0014 | ||
| 176 | #define TONE_SPECIAL_INFO 0x0015 | ||
| 177 | #define TONE_GERMAN_GASSENBESETZT 0x0016 | ||
| 178 | #define TONE_GERMAN_AUFSCHALTTON 0x0016 | ||
| 179 | |||
| 180 | /* MPH_INFORMATION_IND */ | ||
| 181 | #define L1_SIGNAL_LOS_OFF 0x0010 | ||
| 182 | #define L1_SIGNAL_LOS_ON 0x0011 | ||
| 183 | #define L1_SIGNAL_AIS_OFF 0x0012 | ||
| 184 | #define L1_SIGNAL_AIS_ON 0x0013 | ||
| 185 | #define L1_SIGNAL_RDI_OFF 0x0014 | ||
| 186 | #define L1_SIGNAL_RDI_ON 0x0015 | ||
| 187 | #define L1_SIGNAL_SLIP_RX 0x0020 | ||
| 188 | #define L1_SIGNAL_SLIP_TX 0x0021 | ||
| 189 | |||
| 190 | /* | ||
| 191 | * protocol ids | ||
| 192 | * D channel 1-31 | ||
| 193 | * B channel 33 - 63 | ||
| 194 | */ | ||
| 195 | |||
| 196 | #define ISDN_P_NONE 0 | ||
| 197 | #define ISDN_P_BASE 0 | ||
| 198 | #define ISDN_P_TE_S0 0x01 | ||
| 199 | #define ISDN_P_NT_S0 0x02 | ||
| 200 | #define ISDN_P_TE_E1 0x03 | ||
| 201 | #define ISDN_P_NT_E1 0x04 | ||
| 202 | #define ISDN_P_LAPD_TE 0x10 | ||
| 203 | #define ISDN_P_LAPD_NT 0x11 | ||
| 204 | |||
| 205 | #define ISDN_P_B_MASK 0x1f | ||
| 206 | #define ISDN_P_B_START 0x20 | ||
| 207 | |||
| 208 | #define ISDN_P_B_RAW 0x21 | ||
| 209 | #define ISDN_P_B_HDLC 0x22 | ||
| 210 | #define ISDN_P_B_X75SLP 0x23 | ||
| 211 | #define ISDN_P_B_L2DTMF 0x24 | ||
| 212 | #define ISDN_P_B_L2DSP 0x25 | ||
| 213 | #define ISDN_P_B_L2DSPHDLC 0x26 | ||
| 214 | |||
| 215 | #define OPTION_L2_PMX 1 | ||
| 216 | #define OPTION_L2_PTP 2 | ||
| 217 | #define OPTION_L2_FIXEDTEI 3 | ||
| 218 | #define OPTION_L2_CLEANUP 4 | ||
| 219 | |||
| 220 | /* should be in sync with linux/kobject.h:KOBJ_NAME_LEN */ | ||
| 221 | #define MISDN_MAX_IDLEN 20 | ||
| 222 | |||
| 223 | struct mISDNhead { | ||
| 224 | unsigned int prim; | ||
| 225 | unsigned int id; | ||
| 226 | } __attribute__((packed)); | ||
| 227 | |||
| 228 | #define MISDN_HEADER_LEN sizeof(struct mISDNhead) | ||
| 229 | #define MAX_DATA_SIZE 2048 | ||
| 230 | #define MAX_DATA_MEM (MAX_DATA_SIZE + MISDN_HEADER_LEN) | ||
| 231 | #define MAX_DFRAME_LEN 260 | ||
| 232 | |||
| 233 | #define MISDN_ID_ADDR_MASK 0xFFFF | ||
| 234 | #define MISDN_ID_TEI_MASK 0xFF00 | ||
| 235 | #define MISDN_ID_SAPI_MASK 0x00FF | ||
| 236 | #define MISDN_ID_TEI_ANY 0x7F00 | ||
| 237 | |||
| 238 | #define MISDN_ID_ANY 0xFFFF | ||
| 239 | #define MISDN_ID_NONE 0xFFFE | ||
| 240 | |||
| 241 | #define GROUP_TEI 127 | ||
| 242 | #define TEI_SAPI 63 | ||
| 243 | #define CTRL_SAPI 0 | ||
| 244 | |||
| 245 | #define MISDN_MAX_CHANNEL 127 | ||
| 246 | #define MISDN_CHMAP_SIZE ((MISDN_MAX_CHANNEL + 1) >> 3) | ||
| 247 | |||
| 248 | #define SOL_MISDN 0 | ||
| 249 | |||
| 250 | struct sockaddr_mISDN { | ||
| 251 | sa_family_t family; | ||
| 252 | unsigned char dev; | ||
| 253 | unsigned char channel; | ||
| 254 | unsigned char sapi; | ||
| 255 | unsigned char tei; | ||
| 256 | }; | ||
| 257 | |||
| 258 | /* timer device ioctl */ | ||
| 259 | #define IMADDTIMER _IOR('I', 64, int) | ||
| 260 | #define IMDELTIMER _IOR('I', 65, int) | ||
| 261 | /* socket ioctls */ | ||
| 262 | #define IMGETVERSION _IOR('I', 66, int) | ||
| 263 | #define IMGETCOUNT _IOR('I', 67, int) | ||
| 264 | #define IMGETDEVINFO _IOR('I', 68, int) | ||
| 265 | #define IMCTRLREQ _IOR('I', 69, int) | ||
| 266 | #define IMCLEAR_L2 _IOR('I', 70, int) | ||
| 267 | |||
| 268 | struct mISDNversion { | ||
| 269 | unsigned char major; | ||
| 270 | unsigned char minor; | ||
| 271 | unsigned short release; | ||
| 272 | }; | ||
| 273 | |||
| 274 | struct mISDN_devinfo { | ||
| 275 | u_int id; | ||
| 276 | u_int Dprotocols; | ||
| 277 | u_int Bprotocols; | ||
| 278 | u_int protocol; | ||
| 279 | u_char channelmap[MISDN_CHMAP_SIZE]; | ||
| 280 | u_int nrbchan; | ||
| 281 | char name[MISDN_MAX_IDLEN]; | ||
| 282 | }; | ||
| 283 | |||
| 284 | static inline int | ||
| 285 | test_channelmap(u_int nr, u_char *map) | ||
| 286 | { | ||
| 287 | if (nr <= MISDN_MAX_CHANNEL) | ||
| 288 | return map[nr >> 3] & (1 << (nr & 7)); | ||
| 289 | else | ||
| 290 | return 0; | ||
| 291 | } | ||
| 292 | |||
| 293 | static inline void | ||
| 294 | set_channelmap(u_int nr, u_char *map) | ||
| 295 | { | ||
| 296 | map[nr >> 3] |= (1 << (nr & 7)); | ||
| 297 | } | ||
| 298 | |||
| 299 | static inline void | ||
| 300 | clear_channelmap(u_int nr, u_char *map) | ||
| 301 | { | ||
| 302 | map[nr >> 3] &= ~(1 << (nr & 7)); | ||
| 303 | } | ||
| 304 | |||
| 305 | /* CONTROL_CHANNEL parameters */ | ||
| 306 | #define MISDN_CTRL_GETOP 0x0000 | ||
| 307 | #define MISDN_CTRL_LOOP 0x0001 | ||
| 308 | #define MISDN_CTRL_CONNECT 0x0002 | ||
| 309 | #define MISDN_CTRL_DISCONNECT 0x0004 | ||
| 310 | #define MISDN_CTRL_PCMCONNECT 0x0010 | ||
| 311 | #define MISDN_CTRL_PCMDISCONNECT 0x0020 | ||
| 312 | #define MISDN_CTRL_SETPEER 0x0040 | ||
| 313 | #define MISDN_CTRL_UNSETPEER 0x0080 | ||
| 314 | #define MISDN_CTRL_RX_OFF 0x0100 | ||
| 315 | #define MISDN_CTRL_HW_FEATURES_OP 0x2000 | ||
| 316 | #define MISDN_CTRL_HW_FEATURES 0x2001 | ||
| 317 | #define MISDN_CTRL_HFC_OP 0x4000 | ||
| 318 | #define MISDN_CTRL_HFC_PCM_CONN 0x4001 | ||
| 319 | #define MISDN_CTRL_HFC_PCM_DISC 0x4002 | ||
| 320 | #define MISDN_CTRL_HFC_CONF_JOIN 0x4003 | ||
| 321 | #define MISDN_CTRL_HFC_CONF_SPLIT 0x4004 | ||
| 322 | #define MISDN_CTRL_HFC_RECEIVE_OFF 0x4005 | ||
| 323 | #define MISDN_CTRL_HFC_RECEIVE_ON 0x4006 | ||
| 324 | #define MISDN_CTRL_HFC_ECHOCAN_ON 0x4007 | ||
| 325 | #define MISDN_CTRL_HFC_ECHOCAN_OFF 0x4008 | ||
| 326 | |||
| 327 | |||
| 328 | /* socket options */ | ||
| 329 | #define MISDN_TIME_STAMP 0x0001 | ||
| 330 | |||
| 331 | struct mISDN_ctrl_req { | ||
| 332 | int op; | ||
| 333 | int channel; | ||
| 334 | int p1; | ||
| 335 | int p2; | ||
| 336 | }; | ||
| 337 | |||
| 338 | /* muxer options */ | ||
| 339 | #define MISDN_OPT_ALL 1 | ||
| 340 | #define MISDN_OPT_TEIMGR 2 | ||
| 341 | |||
| 342 | #ifdef __KERNEL__ | ||
| 343 | #include <linux/list.h> | ||
| 344 | #include <linux/skbuff.h> | ||
| 345 | #include <linux/net.h> | ||
| 346 | #include <net/sock.h> | ||
| 347 | #include <linux/completion.h> | ||
| 348 | |||
| 349 | #define DEBUG_CORE 0x000000ff | ||
| 350 | #define DEBUG_CORE_FUNC 0x00000002 | ||
| 351 | #define DEBUG_SOCKET 0x00000004 | ||
| 352 | #define DEBUG_MANAGER 0x00000008 | ||
| 353 | #define DEBUG_SEND_ERR 0x00000010 | ||
| 354 | #define DEBUG_MSG_THREAD 0x00000020 | ||
| 355 | #define DEBUG_QUEUE_FUNC 0x00000040 | ||
| 356 | #define DEBUG_L1 0x0000ff00 | ||
| 357 | #define DEBUG_L1_FSM 0x00000200 | ||
| 358 | #define DEBUG_L2 0x00ff0000 | ||
| 359 | #define DEBUG_L2_FSM 0x00020000 | ||
| 360 | #define DEBUG_L2_CTRL 0x00040000 | ||
| 361 | #define DEBUG_L2_RECV 0x00080000 | ||
| 362 | #define DEBUG_L2_TEI 0x00100000 | ||
| 363 | #define DEBUG_L2_TEIFSM 0x00200000 | ||
| 364 | #define DEBUG_TIMER 0x01000000 | ||
| 365 | |||
| 366 | #define mISDN_HEAD_P(s) ((struct mISDNhead *)&s->cb[0]) | ||
| 367 | #define mISDN_HEAD_PRIM(s) (((struct mISDNhead *)&s->cb[0])->prim) | ||
| 368 | #define mISDN_HEAD_ID(s) (((struct mISDNhead *)&s->cb[0])->id) | ||
| 369 | |||
| 370 | /* socket states */ | ||
| 371 | #define MISDN_OPEN 1 | ||
| 372 | #define MISDN_BOUND 2 | ||
| 373 | #define MISDN_CLOSED 3 | ||
| 374 | |||
| 375 | struct mISDNchannel; | ||
| 376 | struct mISDNdevice; | ||
| 377 | struct mISDNstack; | ||
| 378 | |||
| 379 | struct channel_req { | ||
| 380 | u_int protocol; | ||
| 381 | struct sockaddr_mISDN adr; | ||
| 382 | struct mISDNchannel *ch; | ||
| 383 | }; | ||
| 384 | |||
| 385 | typedef int (ctrl_func_t)(struct mISDNchannel *, u_int, void *); | ||
| 386 | typedef int (send_func_t)(struct mISDNchannel *, struct sk_buff *); | ||
| 387 | typedef int (create_func_t)(struct channel_req *); | ||
| 388 | |||
| 389 | struct Bprotocol { | ||
| 390 | struct list_head list; | ||
| 391 | char *name; | ||
| 392 | u_int Bprotocols; | ||
| 393 | create_func_t *create; | ||
| 394 | }; | ||
| 395 | |||
| 396 | struct mISDNchannel { | ||
| 397 | struct list_head list; | ||
| 398 | u_int protocol; | ||
| 399 | u_int nr; | ||
| 400 | u_long opt; | ||
| 401 | u_int addr; | ||
| 402 | struct mISDNstack *st; | ||
| 403 | struct mISDNchannel *peer; | ||
| 404 | send_func_t *send; | ||
| 405 | send_func_t *recv; | ||
| 406 | ctrl_func_t *ctrl; | ||
| 407 | }; | ||
| 408 | |||
| 409 | struct mISDN_sock_list { | ||
| 410 | struct hlist_head head; | ||
| 411 | rwlock_t lock; | ||
| 412 | }; | ||
| 413 | |||
| 414 | struct mISDN_sock { | ||
| 415 | struct sock sk; | ||
| 416 | struct mISDNchannel ch; | ||
| 417 | u_int cmask; | ||
| 418 | struct mISDNdevice *dev; | ||
| 419 | }; | ||
| 420 | |||
| 421 | |||
| 422 | |||
| 423 | struct mISDNdevice { | ||
| 424 | struct mISDNchannel D; | ||
| 425 | u_int id; | ||
| 426 | char name[MISDN_MAX_IDLEN]; | ||
| 427 | u_int Dprotocols; | ||
| 428 | u_int Bprotocols; | ||
| 429 | u_int nrbchan; | ||
| 430 | u_char channelmap[MISDN_CHMAP_SIZE]; | ||
| 431 | struct list_head bchannels; | ||
| 432 | struct mISDNchannel *teimgr; | ||
| 433 | struct device dev; | ||
| 434 | }; | ||
| 435 | |||
| 436 | struct mISDNstack { | ||
| 437 | u_long status; | ||
| 438 | struct mISDNdevice *dev; | ||
| 439 | struct task_struct *thread; | ||
| 440 | struct completion *notify; | ||
| 441 | wait_queue_head_t workq; | ||
| 442 | struct sk_buff_head msgq; | ||
| 443 | struct list_head layer2; | ||
| 444 | struct mISDNchannel *layer1; | ||
| 445 | struct mISDNchannel own; | ||
| 446 | struct mutex lmutex; /* protect lists */ | ||
| 447 | struct mISDN_sock_list l1sock; | ||
| 448 | #ifdef MISDN_MSG_STATS | ||
| 449 | u_int msg_cnt; | ||
| 450 | u_int sleep_cnt; | ||
| 451 | u_int stopped_cnt; | ||
| 452 | #endif | ||
| 453 | }; | ||
| 454 | |||
| 455 | /* global alloc/queue functions */ | ||
| 456 | |||
| 457 | static inline struct sk_buff * | ||
| 458 | mI_alloc_skb(unsigned int len, gfp_t gfp_mask) | ||
| 459 | { | ||
| 460 | struct sk_buff *skb; | ||
| 461 | |||
| 462 | skb = alloc_skb(len + MISDN_HEADER_LEN, gfp_mask); | ||
| 463 | if (likely(skb)) | ||
| 464 | skb_reserve(skb, MISDN_HEADER_LEN); | ||
| 465 | return skb; | ||
| 466 | } | ||
| 467 | |||
| 468 | static inline struct sk_buff * | ||
| 469 | _alloc_mISDN_skb(u_int prim, u_int id, u_int len, void *dp, gfp_t gfp_mask) | ||
| 470 | { | ||
| 471 | struct sk_buff *skb = mI_alloc_skb(len, gfp_mask); | ||
| 472 | struct mISDNhead *hh; | ||
| 473 | |||
| 474 | if (!skb) | ||
| 475 | return NULL; | ||
| 476 | if (len) | ||
| 477 | memcpy(skb_put(skb, len), dp, len); | ||
| 478 | hh = mISDN_HEAD_P(skb); | ||
| 479 | hh->prim = prim; | ||
| 480 | hh->id = id; | ||
| 481 | return skb; | ||
| 482 | } | ||
| 483 | |||
| 484 | static inline void | ||
| 485 | _queue_data(struct mISDNchannel *ch, u_int prim, | ||
| 486 | u_int id, u_int len, void *dp, gfp_t gfp_mask) | ||
| 487 | { | ||
| 488 | struct sk_buff *skb; | ||
| 489 | |||
| 490 | if (!ch->peer) | ||
| 491 | return; | ||
| 492 | skb = _alloc_mISDN_skb(prim, id, len, dp, gfp_mask); | ||
| 493 | if (!skb) | ||
| 494 | return; | ||
| 495 | if (ch->recv(ch->peer, skb)) | ||
| 496 | dev_kfree_skb(skb); | ||
| 497 | } | ||
| 498 | |||
| 499 | /* global register/unregister functions */ | ||
| 500 | |||
| 501 | extern int mISDN_register_device(struct mISDNdevice *, char *name); | ||
| 502 | extern void mISDN_unregister_device(struct mISDNdevice *); | ||
| 503 | extern int mISDN_register_Bprotocol(struct Bprotocol *); | ||
| 504 | extern void mISDN_unregister_Bprotocol(struct Bprotocol *); | ||
| 505 | |||
| 506 | extern void set_channel_address(struct mISDNchannel *, u_int, u_int); | ||
| 507 | |||
| 508 | #endif /* __KERNEL__ */ | ||
| 509 | #endif /* mISDNIF_H */ | ||
diff --git a/include/linux/major.h b/include/linux/major.h index 0cb98053537a..53d5fafd85c3 100644 --- a/include/linux/major.h +++ b/include/linux/major.h | |||
| @@ -53,7 +53,7 @@ | |||
| 53 | #define STL_SIOMEMMAJOR 28 | 53 | #define STL_SIOMEMMAJOR 28 |
| 54 | #define ACSI_MAJOR 28 | 54 | #define ACSI_MAJOR 28 |
| 55 | #define AZTECH_CDROM_MAJOR 29 | 55 | #define AZTECH_CDROM_MAJOR 29 |
| 56 | #define GRAPHDEV_MAJOR 29 /* SparcLinux & Linux/68k /dev/fb */ | 56 | #define FB_MAJOR 29 /* /dev/fb* framebuffers */ |
| 57 | #define CM206_CDROM_MAJOR 32 | 57 | #define CM206_CDROM_MAJOR 32 |
| 58 | #define IDE2_MAJOR 33 | 58 | #define IDE2_MAJOR 33 |
| 59 | #define IDE3_MAJOR 34 | 59 | #define IDE3_MAJOR 34 |
diff --git a/include/linux/maple.h b/include/linux/maple.h index d31e36ebb436..c23d3f51ba40 100644 --- a/include/linux/maple.h +++ b/include/linux/maple.h | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | #define __LINUX_MAPLE_H | 2 | #define __LINUX_MAPLE_H |
| 3 | 3 | ||
| 4 | #include <linux/device.h> | 4 | #include <linux/device.h> |
| 5 | #include <mach/maple.h> | ||
| 5 | 6 | ||
| 6 | extern struct bus_type maple_bus_type; | 7 | extern struct bus_type maple_bus_type; |
| 7 | 8 | ||
| @@ -33,6 +34,7 @@ struct mapleq { | |||
| 33 | void *sendbuf, *recvbuf, *recvbufdcsp; | 34 | void *sendbuf, *recvbuf, *recvbufdcsp; |
| 34 | unsigned char length; | 35 | unsigned char length; |
| 35 | enum maple_code command; | 36 | enum maple_code command; |
| 37 | struct mutex mutex; | ||
| 36 | }; | 38 | }; |
| 37 | 39 | ||
| 38 | struct maple_devinfo { | 40 | struct maple_devinfo { |
| @@ -49,7 +51,6 @@ struct maple_devinfo { | |||
| 49 | struct maple_device { | 51 | struct maple_device { |
| 50 | struct maple_driver *driver; | 52 | struct maple_driver *driver; |
| 51 | struct mapleq *mq; | 53 | struct mapleq *mq; |
| 52 | void *private_data; | ||
| 53 | void (*callback) (struct mapleq * mq); | 54 | void (*callback) (struct mapleq * mq); |
| 54 | unsigned long when, interval, function; | 55 | unsigned long when, interval, function; |
| 55 | struct maple_devinfo devinfo; | 56 | struct maple_devinfo devinfo; |
| @@ -61,8 +62,6 @@ struct maple_device { | |||
| 61 | 62 | ||
| 62 | struct maple_driver { | 63 | struct maple_driver { |
| 63 | unsigned long function; | 64 | unsigned long function; |
| 64 | int (*connect) (struct maple_device * dev); | ||
| 65 | void (*disconnect) (struct maple_device * dev); | ||
| 66 | struct device_driver drv; | 65 | struct device_driver drv; |
| 67 | }; | 66 | }; |
| 68 | 67 | ||
| @@ -70,10 +69,17 @@ void maple_getcond_callback(struct maple_device *dev, | |||
| 70 | void (*callback) (struct mapleq * mq), | 69 | void (*callback) (struct mapleq * mq), |
| 71 | unsigned long interval, | 70 | unsigned long interval, |
| 72 | unsigned long function); | 71 | unsigned long function); |
| 73 | int maple_driver_register(struct device_driver *drv); | 72 | int maple_driver_register(struct maple_driver *); |
| 74 | void maple_add_packet(struct mapleq *mq); | 73 | void maple_driver_unregister(struct maple_driver *); |
| 74 | |||
| 75 | int maple_add_packet_sleeps(struct maple_device *mdev, u32 function, | ||
| 76 | u32 command, u32 length, void *data); | ||
| 77 | void maple_clear_dev(struct maple_device *mdev); | ||
| 75 | 78 | ||
| 76 | #define to_maple_dev(n) container_of(n, struct maple_device, dev) | 79 | #define to_maple_dev(n) container_of(n, struct maple_device, dev) |
| 77 | #define to_maple_driver(n) container_of(n, struct maple_driver, drv) | 80 | #define to_maple_driver(n) container_of(n, struct maple_driver, drv) |
| 78 | 81 | ||
| 82 | #define maple_get_drvdata(d) dev_get_drvdata(&(d)->dev) | ||
| 83 | #define maple_set_drvdata(d,p) dev_set_drvdata(&(d)->dev, (p)) | ||
| 84 | |||
| 79 | #endif /* __LINUX_MAPLE_H */ | 85 | #endif /* __LINUX_MAPLE_H */ |
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h index e6608776bc96..fdf3967e1397 100644 --- a/include/linux/memcontrol.h +++ b/include/linux/memcontrol.h | |||
| @@ -35,7 +35,10 @@ extern int mem_cgroup_charge(struct page *page, struct mm_struct *mm, | |||
| 35 | extern int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm, | 35 | extern int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm, |
| 36 | gfp_t gfp_mask); | 36 | gfp_t gfp_mask); |
| 37 | extern void mem_cgroup_uncharge_page(struct page *page); | 37 | extern void mem_cgroup_uncharge_page(struct page *page); |
| 38 | extern void mem_cgroup_uncharge_cache_page(struct page *page); | ||
| 38 | extern void mem_cgroup_move_lists(struct page *page, bool active); | 39 | extern void mem_cgroup_move_lists(struct page *page, bool active); |
| 40 | extern int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask); | ||
| 41 | |||
| 39 | extern unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan, | 42 | extern unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan, |
| 40 | struct list_head *dst, | 43 | struct list_head *dst, |
| 41 | unsigned long *scanned, int order, | 44 | unsigned long *scanned, int order, |
| @@ -50,9 +53,9 @@ extern struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p); | |||
| 50 | #define mm_match_cgroup(mm, cgroup) \ | 53 | #define mm_match_cgroup(mm, cgroup) \ |
| 51 | ((cgroup) == mem_cgroup_from_task((mm)->owner)) | 54 | ((cgroup) == mem_cgroup_from_task((mm)->owner)) |
| 52 | 55 | ||
| 53 | extern int mem_cgroup_prepare_migration(struct page *page); | 56 | extern int |
| 57 | mem_cgroup_prepare_migration(struct page *page, struct page *newpage); | ||
| 54 | extern void mem_cgroup_end_migration(struct page *page); | 58 | extern void mem_cgroup_end_migration(struct page *page); |
| 55 | extern void mem_cgroup_page_migration(struct page *page, struct page *newpage); | ||
| 56 | 59 | ||
| 57 | /* | 60 | /* |
| 58 | * For memory reclaim. | 61 | * For memory reclaim. |
| @@ -97,6 +100,15 @@ static inline void mem_cgroup_uncharge_page(struct page *page) | |||
| 97 | { | 100 | { |
| 98 | } | 101 | } |
| 99 | 102 | ||
| 103 | static inline void mem_cgroup_uncharge_cache_page(struct page *page) | ||
| 104 | { | ||
| 105 | } | ||
| 106 | |||
| 107 | static inline int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask) | ||
| 108 | { | ||
| 109 | return 0; | ||
| 110 | } | ||
| 111 | |||
| 100 | static inline void mem_cgroup_move_lists(struct page *page, bool active) | 112 | static inline void mem_cgroup_move_lists(struct page *page, bool active) |
| 101 | { | 113 | { |
| 102 | } | 114 | } |
| @@ -112,7 +124,8 @@ static inline int task_in_mem_cgroup(struct task_struct *task, | |||
| 112 | return 1; | 124 | return 1; |
| 113 | } | 125 | } |
| 114 | 126 | ||
| 115 | static inline int mem_cgroup_prepare_migration(struct page *page) | 127 | static inline int |
| 128 | mem_cgroup_prepare_migration(struct page *page, struct page *newpage) | ||
| 116 | { | 129 | { |
| 117 | return 0; | 130 | return 0; |
| 118 | } | 131 | } |
| @@ -121,11 +134,6 @@ static inline void mem_cgroup_end_migration(struct page *page) | |||
| 121 | { | 134 | { |
| 122 | } | 135 | } |
| 123 | 136 | ||
| 124 | static inline void | ||
| 125 | mem_cgroup_page_migration(struct page *page, struct page *newpage) | ||
| 126 | { | ||
| 127 | } | ||
| 128 | |||
| 129 | static inline int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem) | 137 | static inline int mem_cgroup_calc_mapped_ratio(struct mem_cgroup *mem) |
| 130 | { | 138 | { |
| 131 | return 0; | 139 | return 0; |
diff --git a/include/linux/memory_hotplug.h b/include/linux/memory_hotplug.h index ea9f5ad9ec8e..763ba81fc0f0 100644 --- a/include/linux/memory_hotplug.h +++ b/include/linux/memory_hotplug.h | |||
| @@ -13,12 +13,12 @@ struct mem_section; | |||
| 13 | #ifdef CONFIG_MEMORY_HOTPLUG | 13 | #ifdef CONFIG_MEMORY_HOTPLUG |
| 14 | 14 | ||
| 15 | /* | 15 | /* |
| 16 | * Magic number for free bootmem. | 16 | * Types for free bootmem. |
| 17 | * The normal smallest mapcount is -1. Here is smaller value than it. | 17 | * The normal smallest mapcount is -1. Here is smaller value than it. |
| 18 | */ | 18 | */ |
| 19 | #define SECTION_INFO 0xfffffffe | 19 | #define SECTION_INFO (-1 - 1) |
| 20 | #define MIX_INFO 0xfffffffd | 20 | #define MIX_SECTION_INFO (-1 - 2) |
| 21 | #define NODE_INFO 0xfffffffc | 21 | #define NODE_INFO (-1 - 3) |
| 22 | 22 | ||
| 23 | /* | 23 | /* |
| 24 | * pgdat resizing functions | 24 | * pgdat resizing functions |
| @@ -199,6 +199,18 @@ extern int walk_memory_resource(unsigned long start_pfn, | |||
| 199 | unsigned long nr_pages, void *arg, | 199 | unsigned long nr_pages, void *arg, |
| 200 | int (*func)(unsigned long, unsigned long, void *)); | 200 | int (*func)(unsigned long, unsigned long, void *)); |
| 201 | 201 | ||
| 202 | #ifdef CONFIG_MEMORY_HOTREMOVE | ||
| 203 | |||
| 204 | extern int is_mem_section_removable(unsigned long pfn, unsigned long nr_pages); | ||
| 205 | |||
| 206 | #else | ||
| 207 | static inline int is_mem_section_removable(unsigned long pfn, | ||
| 208 | unsigned long nr_pages) | ||
| 209 | { | ||
| 210 | return 0; | ||
| 211 | } | ||
| 212 | #endif /* CONFIG_MEMORY_HOTREMOVE */ | ||
| 213 | |||
| 202 | extern int add_memory(int nid, u64 start, u64 size); | 214 | extern int add_memory(int nid, u64 start, u64 size); |
| 203 | extern int arch_add_memory(int nid, u64 start, u64 size); | 215 | extern int arch_add_memory(int nid, u64 start, u64 size); |
| 204 | extern int remove_memory(u64 start, u64 size); | 216 | extern int remove_memory(u64 start, u64 size); |
diff --git a/include/linux/mempolicy.h b/include/linux/mempolicy.h index 3a39570b81b8..085c903fe0f1 100644 --- a/include/linux/mempolicy.h +++ b/include/linux/mempolicy.h | |||
| @@ -59,6 +59,7 @@ enum { | |||
| 59 | #include <linux/rbtree.h> | 59 | #include <linux/rbtree.h> |
| 60 | #include <linux/spinlock.h> | 60 | #include <linux/spinlock.h> |
| 61 | #include <linux/nodemask.h> | 61 | #include <linux/nodemask.h> |
| 62 | #include <linux/pagemap.h> | ||
| 62 | 63 | ||
| 63 | struct mm_struct; | 64 | struct mm_struct; |
| 64 | 65 | ||
| @@ -220,6 +221,24 @@ extern int mpol_parse_str(char *str, struct mempolicy **mpol, int no_context); | |||
| 220 | extern int mpol_to_str(char *buffer, int maxlen, struct mempolicy *pol, | 221 | extern int mpol_to_str(char *buffer, int maxlen, struct mempolicy *pol, |
| 221 | int no_context); | 222 | int no_context); |
| 222 | #endif | 223 | #endif |
| 224 | |||
| 225 | /* Check if a vma is migratable */ | ||
| 226 | static inline int vma_migratable(struct vm_area_struct *vma) | ||
| 227 | { | ||
| 228 | if (vma->vm_flags & (VM_IO|VM_HUGETLB|VM_PFNMAP|VM_RESERVED)) | ||
| 229 | return 0; | ||
| 230 | /* | ||
| 231 | * Migration allocates pages in the highest zone. If we cannot | ||
| 232 | * do so then migration (at least from node to node) is not | ||
| 233 | * possible. | ||
| 234 | */ | ||
| 235 | if (vma->vm_file && | ||
| 236 | gfp_zone(mapping_gfp_mask(vma->vm_file->f_mapping)) | ||
| 237 | < policy_zone) | ||
| 238 | return 0; | ||
| 239 | return 1; | ||
| 240 | } | ||
| 241 | |||
| 223 | #else | 242 | #else |
| 224 | 243 | ||
| 225 | struct mempolicy {}; | 244 | struct mempolicy {}; |
diff --git a/include/linux/memstick.h b/include/linux/memstick.h index 37a5cdb03918..a9f998a3f48b 100644 --- a/include/linux/memstick.h +++ b/include/linux/memstick.h | |||
| @@ -263,6 +263,10 @@ struct memstick_dev { | |||
| 263 | /* Get next request from the media driver. */ | 263 | /* Get next request from the media driver. */ |
| 264 | int (*next_request)(struct memstick_dev *card, | 264 | int (*next_request)(struct memstick_dev *card, |
| 265 | struct memstick_request **mrq); | 265 | struct memstick_request **mrq); |
| 266 | /* Tell the media driver to stop doing things */ | ||
| 267 | void (*stop)(struct memstick_dev *card); | ||
| 268 | /* Allow the media driver to continue */ | ||
| 269 | void (*start)(struct memstick_dev *card); | ||
| 266 | 270 | ||
| 267 | struct device dev; | 271 | struct device dev; |
| 268 | }; | 272 | }; |
| @@ -284,7 +288,7 @@ struct memstick_host { | |||
| 284 | /* Notify the host that some requests are pending. */ | 288 | /* Notify the host that some requests are pending. */ |
| 285 | void (*request)(struct memstick_host *host); | 289 | void (*request)(struct memstick_host *host); |
| 286 | /* Set host IO parameters (power, clock, etc). */ | 290 | /* Set host IO parameters (power, clock, etc). */ |
| 287 | void (*set_param)(struct memstick_host *host, | 291 | int (*set_param)(struct memstick_host *host, |
| 288 | enum memstick_param param, | 292 | enum memstick_param param, |
| 289 | int value); | 293 | int value); |
| 290 | unsigned long private[0] ____cacheline_aligned; | 294 | unsigned long private[0] ____cacheline_aligned; |
diff --git a/include/linux/mfd/core.h b/include/linux/mfd/core.h new file mode 100644 index 000000000000..49ef857cdb2d --- /dev/null +++ b/include/linux/mfd/core.h | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | /* | ||
| 2 | * drivers/mfd/mfd-core.h | ||
| 3 | * | ||
| 4 | * core MFD support | ||
| 5 | * Copyright (c) 2006 Ian Molton | ||
| 6 | * Copyright (c) 2007 Dmitry Baryshkov | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License version 2 as | ||
| 10 | * published by the Free Software Foundation. | ||
| 11 | * | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef MFD_CORE_H | ||
| 15 | #define MFD_CORE_H | ||
| 16 | |||
| 17 | #include <linux/platform_device.h> | ||
| 18 | |||
| 19 | /* | ||
| 20 | * This struct describes the MFD part ("cell"). | ||
| 21 | * After registration the copy of this structure will become the platform data | ||
| 22 | * of the resulting platform_device | ||
| 23 | */ | ||
| 24 | struct mfd_cell { | ||
| 25 | const char *name; | ||
| 26 | |||
| 27 | int (*enable)(struct platform_device *dev); | ||
| 28 | int (*disable)(struct platform_device *dev); | ||
| 29 | int (*suspend)(struct platform_device *dev); | ||
| 30 | int (*resume)(struct platform_device *dev); | ||
| 31 | |||
| 32 | /* driver-specific data for MFD-aware "cell" drivers */ | ||
| 33 | void *driver_data; | ||
| 34 | |||
| 35 | /* platform_data can be used to either pass data to "generic" | ||
| 36 | driver or as a hook to mfd_cell for the "cell" drivers */ | ||
| 37 | void *platform_data; | ||
| 38 | size_t data_size; | ||
| 39 | |||
| 40 | /* | ||
| 41 | * This resources can be specified relatievly to the parent device. | ||
| 42 | * For accessing device you should use resources from device | ||
| 43 | */ | ||
| 44 | int num_resources; | ||
| 45 | const struct resource *resources; | ||
| 46 | }; | ||
| 47 | |||
| 48 | extern int mfd_add_devices(struct device *parent, int id, | ||
| 49 | const struct mfd_cell *cells, int n_devs, | ||
| 50 | struct resource *mem_base, | ||
| 51 | int irq_base); | ||
| 52 | |||
| 53 | extern void mfd_remove_devices(struct device *parent); | ||
| 54 | |||
| 55 | #endif | ||
diff --git a/include/linux/mfd/t7l66xb.h b/include/linux/mfd/t7l66xb.h new file mode 100644 index 000000000000..e83c7f2036f9 --- /dev/null +++ b/include/linux/mfd/t7l66xb.h | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | /* | ||
| 2 | * This file contains the definitions for the T7L66XB | ||
| 3 | * | ||
| 4 | * (C) Copyright 2005 Ian Molton <spyro@f2s.com> | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License version 2 as | ||
| 8 | * published by the Free Software Foundation. | ||
| 9 | * | ||
| 10 | */ | ||
| 11 | #ifndef MFD_T7L66XB_H | ||
| 12 | #define MFD_T7L66XB_H | ||
| 13 | |||
| 14 | #include <linux/mfd/core.h> | ||
| 15 | #include <linux/mfd/tmio.h> | ||
| 16 | |||
| 17 | struct t7l66xb_platform_data { | ||
| 18 | int (*enable_clk32k)(struct platform_device *dev); | ||
| 19 | void (*disable_clk32k)(struct platform_device *dev); | ||
| 20 | int (*enable)(struct platform_device *dev); | ||
| 21 | int (*disable)(struct platform_device *dev); | ||
| 22 | int (*suspend)(struct platform_device *dev); | ||
| 23 | int (*resume)(struct platform_device *dev); | ||
| 24 | |||
| 25 | int irq_base; /* The base for subdevice irqs */ | ||
| 26 | |||
| 27 | struct tmio_nand_data *nand_data; | ||
| 28 | }; | ||
| 29 | |||
| 30 | |||
| 31 | #define IRQ_T7L66XB_MMC (1) | ||
| 32 | #define IRQ_T7L66XB_NAND (3) | ||
| 33 | |||
| 34 | #define T7L66XB_NR_IRQS 8 | ||
| 35 | |||
| 36 | #endif | ||
diff --git a/include/linux/mfd/tc6387xb.h b/include/linux/mfd/tc6387xb.h new file mode 100644 index 000000000000..fa06e0610b8e --- /dev/null +++ b/include/linux/mfd/tc6387xb.h | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | /* | ||
| 2 | * This file contains the definitions for the TC6387XB | ||
| 3 | * | ||
| 4 | * (C) Copyright 2005 Ian Molton <spyro@f2s.com> | ||
| 5 | * | ||
| 6 | * May be copied or modified under the terms of the GNU General Public | ||
| 7 | * License. See linux/COPYING for more information. | ||
| 8 | * | ||
| 9 | */ | ||
| 10 | #ifndef MFD_TC6387XB_H | ||
| 11 | #define MFD_TC6387XB_H | ||
| 12 | |||
| 13 | struct tc6387xb_platform_data { | ||
| 14 | int (*enable_clk32k)(struct platform_device *dev); | ||
| 15 | void (*disable_clk32k)(struct platform_device *dev); | ||
| 16 | |||
| 17 | int (*enable)(struct platform_device *dev); | ||
| 18 | int (*disable)(struct platform_device *dev); | ||
| 19 | int (*suspend)(struct platform_device *dev); | ||
| 20 | int (*resume)(struct platform_device *dev); | ||
| 21 | }; | ||
| 22 | |||
| 23 | #endif | ||
diff --git a/include/linux/mfd/tc6393xb.h b/include/linux/mfd/tc6393xb.h new file mode 100644 index 000000000000..fec7b3f7a81f --- /dev/null +++ b/include/linux/mfd/tc6393xb.h | |||
| @@ -0,0 +1,46 @@ | |||
| 1 | /* | ||
| 2 | * Toshiba TC6393XB SoC support | ||
| 3 | * | ||
| 4 | * Copyright(c) 2005-2006 Chris Humbert | ||
| 5 | * Copyright(c) 2005 Dirk Opfer | ||
| 6 | * Copyright(c) 2005 Ian Molton <spyro@f2s.com> | ||
| 7 | * Copyright(c) 2007 Dmitry Baryshkov | ||
| 8 | * | ||
| 9 | * Based on code written by Sharp/Lineo for 2.4 kernels | ||
| 10 | * Based on locomo.c | ||
| 11 | * | ||
| 12 | * This program is free software; you can redistribute it and/or modify | ||
| 13 | * it under the terms of the GNU General Public License version 2 as | ||
| 14 | * published by the Free Software Foundation. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #ifndef MFD_TC6393XB_H | ||
| 18 | #define MFD_TC6393XB_H | ||
| 19 | |||
| 20 | /* Also one should provide the CK3P6MI clock */ | ||
| 21 | struct tc6393xb_platform_data { | ||
| 22 | u16 scr_pll2cr; /* PLL2 Control */ | ||
| 23 | u16 scr_gper; /* GP Enable */ | ||
| 24 | u32 scr_gpo_doecr; /* GPO Data OE Control */ | ||
| 25 | u32 scr_gpo_dsr; /* GPO Data Set */ | ||
| 26 | |||
| 27 | int (*enable)(struct platform_device *dev); | ||
| 28 | int (*disable)(struct platform_device *dev); | ||
| 29 | int (*suspend)(struct platform_device *dev); | ||
| 30 | int (*resume)(struct platform_device *dev); | ||
| 31 | |||
| 32 | int irq_base; /* base for subdevice irqs */ | ||
| 33 | int gpio_base; | ||
| 34 | |||
| 35 | struct tmio_nand_data *nand_data; | ||
| 36 | }; | ||
| 37 | |||
| 38 | /* | ||
| 39 | * Relative to irq_base | ||
| 40 | */ | ||
| 41 | #define IRQ_TC6393_NAND 0 | ||
| 42 | #define IRQ_TC6393_MMC 1 | ||
| 43 | |||
| 44 | #define TC6393XB_NR_IRQS 8 | ||
| 45 | |||
| 46 | #endif | ||
diff --git a/include/linux/mfd/tmio.h b/include/linux/mfd/tmio.h new file mode 100644 index 000000000000..ec612e66391c --- /dev/null +++ b/include/linux/mfd/tmio.h | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | #ifndef MFD_TMIO_H | ||
| 2 | #define MFD_TMIO_H | ||
| 3 | |||
| 4 | #define tmio_ioread8(addr) readb(addr) | ||
| 5 | #define tmio_ioread16(addr) readw(addr) | ||
| 6 | #define tmio_ioread16_rep(r, b, l) readsw(r, b, l) | ||
| 7 | #define tmio_ioread32(addr) \ | ||
| 8 | (((u32) readw((addr))) | (((u32) readw((addr) + 2)) << 16)) | ||
| 9 | |||
| 10 | #define tmio_iowrite8(val, addr) writeb((val), (addr)) | ||
| 11 | #define tmio_iowrite16(val, addr) writew((val), (addr)) | ||
| 12 | #define tmio_iowrite16_rep(r, b, l) writesw(r, b, l) | ||
| 13 | #define tmio_iowrite32(val, addr) \ | ||
| 14 | do { \ | ||
| 15 | writew((val), (addr)); \ | ||
| 16 | writew((val) >> 16, (addr) + 2); \ | ||
| 17 | } while (0) | ||
| 18 | |||
| 19 | /* | ||
| 20 | * data for the NAND controller | ||
| 21 | */ | ||
| 22 | struct tmio_nand_data { | ||
| 23 | struct nand_bbt_descr *badblock_pattern; | ||
| 24 | struct mtd_partition *partition; | ||
| 25 | unsigned int num_partitions; | ||
| 26 | }; | ||
| 27 | |||
| 28 | #endif | ||
diff --git a/include/linux/migrate.h b/include/linux/migrate.h index e10a90a93b5d..03aea612d284 100644 --- a/include/linux/migrate.h +++ b/include/linux/migrate.h | |||
| @@ -3,28 +3,10 @@ | |||
| 3 | 3 | ||
| 4 | #include <linux/mm.h> | 4 | #include <linux/mm.h> |
| 5 | #include <linux/mempolicy.h> | 5 | #include <linux/mempolicy.h> |
| 6 | #include <linux/pagemap.h> | ||
| 7 | 6 | ||
| 8 | typedef struct page *new_page_t(struct page *, unsigned long private, int **); | 7 | typedef struct page *new_page_t(struct page *, unsigned long private, int **); |
| 9 | 8 | ||
| 10 | #ifdef CONFIG_MIGRATION | 9 | #ifdef CONFIG_MIGRATION |
| 11 | /* Check if a vma is migratable */ | ||
| 12 | static inline int vma_migratable(struct vm_area_struct *vma) | ||
| 13 | { | ||
| 14 | if (vma->vm_flags & (VM_IO|VM_HUGETLB|VM_PFNMAP|VM_RESERVED)) | ||
| 15 | return 0; | ||
| 16 | /* | ||
| 17 | * Migration allocates pages in the highest zone. If we cannot | ||
| 18 | * do so then migration (at least from node to node) is not | ||
| 19 | * possible. | ||
| 20 | */ | ||
| 21 | if (vma->vm_file && | ||
| 22 | gfp_zone(mapping_gfp_mask(vma->vm_file->f_mapping)) | ||
| 23 | < policy_zone) | ||
| 24 | return 0; | ||
| 25 | return 1; | ||
| 26 | } | ||
| 27 | |||
| 28 | extern int isolate_lru_page(struct page *p, struct list_head *pagelist); | 10 | extern int isolate_lru_page(struct page *p, struct list_head *pagelist); |
| 29 | extern int putback_lru_pages(struct list_head *l); | 11 | extern int putback_lru_pages(struct list_head *l); |
| 30 | extern int migrate_page(struct address_space *, | 12 | extern int migrate_page(struct address_space *, |
| @@ -39,9 +21,6 @@ extern int migrate_vmas(struct mm_struct *mm, | |||
| 39 | const nodemask_t *from, const nodemask_t *to, | 21 | const nodemask_t *from, const nodemask_t *to, |
| 40 | unsigned long flags); | 22 | unsigned long flags); |
| 41 | #else | 23 | #else |
| 42 | static inline int vma_migratable(struct vm_area_struct *vma) | ||
| 43 | { return 0; } | ||
| 44 | |||
| 45 | static inline int isolate_lru_page(struct page *p, struct list_head *list) | 24 | static inline int isolate_lru_page(struct page *p, struct list_head *list) |
| 46 | { return -ENOSYS; } | 25 | { return -ENOSYS; } |
| 47 | static inline int putback_lru_pages(struct list_head *l) { return 0; } | 26 | static inline int putback_lru_pages(struct list_head *l) { return 0; } |
diff --git a/include/linux/mlx4/cq.h b/include/linux/mlx4/cq.h index 071cf96cf01f..6f65b2c8bb89 100644 --- a/include/linux/mlx4/cq.h +++ b/include/linux/mlx4/cq.h | |||
| @@ -39,17 +39,18 @@ | |||
| 39 | #include <linux/mlx4/doorbell.h> | 39 | #include <linux/mlx4/doorbell.h> |
| 40 | 40 | ||
| 41 | struct mlx4_cqe { | 41 | struct mlx4_cqe { |
| 42 | __be32 my_qpn; | 42 | __be32 vlan_my_qpn; |
| 43 | __be32 immed_rss_invalid; | 43 | __be32 immed_rss_invalid; |
| 44 | __be32 g_mlpath_rqpn; | 44 | __be32 g_mlpath_rqpn; |
| 45 | u8 sl; | 45 | __be16 sl_vid; |
| 46 | u8 reserved1; | ||
| 47 | __be16 rlid; | 46 | __be16 rlid; |
| 48 | __be32 ipoib_status; | 47 | __be16 status; |
| 48 | u8 ipv6_ext_mask; | ||
| 49 | u8 badfcs_enc; | ||
| 49 | __be32 byte_cnt; | 50 | __be32 byte_cnt; |
| 50 | __be16 wqe_index; | 51 | __be16 wqe_index; |
| 51 | __be16 checksum; | 52 | __be16 checksum; |
| 52 | u8 reserved2[3]; | 53 | u8 reserved[3]; |
| 53 | u8 owner_sr_opcode; | 54 | u8 owner_sr_opcode; |
| 54 | }; | 55 | }; |
| 55 | 56 | ||
| @@ -64,6 +65,11 @@ struct mlx4_err_cqe { | |||
| 64 | }; | 65 | }; |
| 65 | 66 | ||
| 66 | enum { | 67 | enum { |
| 68 | MLX4_CQE_VLAN_PRESENT_MASK = 1 << 29, | ||
| 69 | MLX4_CQE_QPN_MASK = 0xffffff, | ||
| 70 | }; | ||
| 71 | |||
| 72 | enum { | ||
| 67 | MLX4_CQE_OWNER_MASK = 0x80, | 73 | MLX4_CQE_OWNER_MASK = 0x80, |
| 68 | MLX4_CQE_IS_SEND_MASK = 0x40, | 74 | MLX4_CQE_IS_SEND_MASK = 0x40, |
| 69 | MLX4_CQE_OPCODE_MASK = 0x1f | 75 | MLX4_CQE_OPCODE_MASK = 0x1f |
| @@ -86,13 +92,19 @@ enum { | |||
| 86 | }; | 92 | }; |
| 87 | 93 | ||
| 88 | enum { | 94 | enum { |
| 89 | MLX4_CQE_IPOIB_STATUS_IPV4 = 1 << 22, | 95 | MLX4_CQE_STATUS_IPV4 = 1 << 6, |
| 90 | MLX4_CQE_IPOIB_STATUS_IPV4F = 1 << 23, | 96 | MLX4_CQE_STATUS_IPV4F = 1 << 7, |
| 91 | MLX4_CQE_IPOIB_STATUS_IPV6 = 1 << 24, | 97 | MLX4_CQE_STATUS_IPV6 = 1 << 8, |
| 92 | MLX4_CQE_IPOIB_STATUS_IPV4OPT = 1 << 25, | 98 | MLX4_CQE_STATUS_IPV4OPT = 1 << 9, |
| 93 | MLX4_CQE_IPOIB_STATUS_TCP = 1 << 26, | 99 | MLX4_CQE_STATUS_TCP = 1 << 10, |
| 94 | MLX4_CQE_IPOIB_STATUS_UDP = 1 << 27, | 100 | MLX4_CQE_STATUS_UDP = 1 << 11, |
| 95 | MLX4_CQE_IPOIB_STATUS_IPOK = 1 << 28, | 101 | MLX4_CQE_STATUS_IPOK = 1 << 12, |
| 102 | }; | ||
| 103 | |||
| 104 | enum { | ||
| 105 | MLX4_CQE_LLC = 1, | ||
| 106 | MLX4_CQE_SNAP = 1 << 1, | ||
| 107 | MLX4_CQE_BAD_FCS = 1 << 4, | ||
| 96 | }; | 108 | }; |
| 97 | 109 | ||
| 98 | static inline void mlx4_cq_arm(struct mlx4_cq *cq, u32 cmd, | 110 | static inline void mlx4_cq_arm(struct mlx4_cq *cq, u32 cmd, |
diff --git a/include/linux/mlx4/device.h b/include/linux/mlx4/device.h index 81b3dd5206e0..655ea0d1ee14 100644 --- a/include/linux/mlx4/device.h +++ b/include/linux/mlx4/device.h | |||
| @@ -68,6 +68,14 @@ enum { | |||
| 68 | MLX4_DEV_CAP_FLAG_UD_MCAST = 1 << 21 | 68 | MLX4_DEV_CAP_FLAG_UD_MCAST = 1 << 21 |
| 69 | }; | 69 | }; |
| 70 | 70 | ||
| 71 | enum { | ||
| 72 | MLX4_BMME_FLAG_LOCAL_INV = 1 << 6, | ||
| 73 | MLX4_BMME_FLAG_REMOTE_INV = 1 << 7, | ||
| 74 | MLX4_BMME_FLAG_TYPE_2_WIN = 1 << 9, | ||
| 75 | MLX4_BMME_FLAG_RESERVED_LKEY = 1 << 10, | ||
| 76 | MLX4_BMME_FLAG_FAST_REG_WR = 1 << 11, | ||
| 77 | }; | ||
| 78 | |||
| 71 | enum mlx4_event { | 79 | enum mlx4_event { |
| 72 | MLX4_EVENT_TYPE_COMP = 0x00, | 80 | MLX4_EVENT_TYPE_COMP = 0x00, |
| 73 | MLX4_EVENT_TYPE_PATH_MIG = 0x01, | 81 | MLX4_EVENT_TYPE_PATH_MIG = 0x01, |
| @@ -184,6 +192,8 @@ struct mlx4_caps { | |||
| 184 | u32 max_msg_sz; | 192 | u32 max_msg_sz; |
| 185 | u32 page_size_cap; | 193 | u32 page_size_cap; |
| 186 | u32 flags; | 194 | u32 flags; |
| 195 | u32 bmme_flags; | ||
| 196 | u32 reserved_lkey; | ||
| 187 | u16 stat_rate_support; | 197 | u16 stat_rate_support; |
| 188 | u8 port_width_cap[MLX4_MAX_PORTS + 1]; | 198 | u8 port_width_cap[MLX4_MAX_PORTS + 1]; |
| 189 | int max_gso_sz; | 199 | int max_gso_sz; |
diff --git a/include/linux/mlx4/qp.h b/include/linux/mlx4/qp.h index 7f128b266faa..bf8f11982dae 100644 --- a/include/linux/mlx4/qp.h +++ b/include/linux/mlx4/qp.h | |||
| @@ -164,11 +164,13 @@ enum { | |||
| 164 | MLX4_WQE_CTRL_SOLICITED = 1 << 1, | 164 | MLX4_WQE_CTRL_SOLICITED = 1 << 1, |
| 165 | MLX4_WQE_CTRL_IP_CSUM = 1 << 4, | 165 | MLX4_WQE_CTRL_IP_CSUM = 1 << 4, |
| 166 | MLX4_WQE_CTRL_TCP_UDP_CSUM = 1 << 5, | 166 | MLX4_WQE_CTRL_TCP_UDP_CSUM = 1 << 5, |
| 167 | MLX4_WQE_CTRL_INS_VLAN = 1 << 6, | ||
| 167 | }; | 168 | }; |
| 168 | 169 | ||
| 169 | struct mlx4_wqe_ctrl_seg { | 170 | struct mlx4_wqe_ctrl_seg { |
| 170 | __be32 owner_opcode; | 171 | __be32 owner_opcode; |
| 171 | u8 reserved2[3]; | 172 | __be16 vlan_tag; |
| 173 | u8 ins_vlan; | ||
| 172 | u8 fence_size; | 174 | u8 fence_size; |
| 173 | /* | 175 | /* |
| 174 | * High 24 bits are SRC remote buffer; low 8 bits are flags: | 176 | * High 24 bits are SRC remote buffer; low 8 bits are flags: |
| @@ -219,7 +221,7 @@ struct mlx4_wqe_datagram_seg { | |||
| 219 | __be32 reservd[2]; | 221 | __be32 reservd[2]; |
| 220 | }; | 222 | }; |
| 221 | 223 | ||
| 222 | struct mlx4_lso_seg { | 224 | struct mlx4_wqe_lso_seg { |
| 223 | __be32 mss_hdr_size; | 225 | __be32 mss_hdr_size; |
| 224 | __be32 header[0]; | 226 | __be32 header[0]; |
| 225 | }; | 227 | }; |
| @@ -233,6 +235,14 @@ struct mlx4_wqe_bind_seg { | |||
| 233 | __be64 length; | 235 | __be64 length; |
| 234 | }; | 236 | }; |
| 235 | 237 | ||
| 238 | enum { | ||
| 239 | MLX4_WQE_FMR_PERM_LOCAL_READ = 1 << 27, | ||
| 240 | MLX4_WQE_FMR_PERM_LOCAL_WRITE = 1 << 28, | ||
| 241 | MLX4_WQE_FMR_PERM_REMOTE_READ = 1 << 29, | ||
| 242 | MLX4_WQE_FMR_PERM_REMOTE_WRITE = 1 << 30, | ||
| 243 | MLX4_WQE_FMR_PERM_ATOMIC = 1 << 31 | ||
| 244 | }; | ||
| 245 | |||
| 236 | struct mlx4_wqe_fmr_seg { | 246 | struct mlx4_wqe_fmr_seg { |
| 237 | __be32 flags; | 247 | __be32 flags; |
| 238 | __be32 mem_key; | 248 | __be32 mem_key; |
| @@ -255,11 +265,11 @@ struct mlx4_wqe_fmr_ext_seg { | |||
| 255 | }; | 265 | }; |
| 256 | 266 | ||
| 257 | struct mlx4_wqe_local_inval_seg { | 267 | struct mlx4_wqe_local_inval_seg { |
| 258 | u8 flags; | 268 | __be32 flags; |
| 259 | u8 reserved1[3]; | 269 | u32 reserved1; |
| 260 | __be32 mem_key; | 270 | __be32 mem_key; |
| 261 | u8 reserved2[3]; | 271 | u32 reserved2[2]; |
| 262 | u8 guest_id; | 272 | __be32 guest_id; |
| 263 | __be64 pa; | 273 | __be64 pa; |
| 264 | }; | 274 | }; |
| 265 | 275 | ||
diff --git a/include/linux/mm.h b/include/linux/mm.h index 2128ef7780c6..fa651609b65d 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
| @@ -41,6 +41,9 @@ extern unsigned long mmap_min_addr; | |||
| 41 | 41 | ||
| 42 | #define nth_page(page,n) pfn_to_page(page_to_pfn((page)) + (n)) | 42 | #define nth_page(page,n) pfn_to_page(page_to_pfn((page)) + (n)) |
| 43 | 43 | ||
| 44 | /* to align the pointer to the (next) page boundary */ | ||
| 45 | #define PAGE_ALIGN(addr) ALIGN(addr, PAGE_SIZE) | ||
| 46 | |||
| 44 | /* | 47 | /* |
| 45 | * Linux kernel virtual memory manager primitives. | 48 | * Linux kernel virtual memory manager primitives. |
| 46 | * The idea being to have a "virtual" mm in the same way | 49 | * The idea being to have a "virtual" mm in the same way |
| @@ -100,6 +103,7 @@ extern unsigned int kobjsize(const void *objp); | |||
| 100 | #define VM_DONTEXPAND 0x00040000 /* Cannot expand with mremap() */ | 103 | #define VM_DONTEXPAND 0x00040000 /* Cannot expand with mremap() */ |
| 101 | #define VM_RESERVED 0x00080000 /* Count as reserved_vm like IO */ | 104 | #define VM_RESERVED 0x00080000 /* Count as reserved_vm like IO */ |
| 102 | #define VM_ACCOUNT 0x00100000 /* Is a VM accounted object */ | 105 | #define VM_ACCOUNT 0x00100000 /* Is a VM accounted object */ |
| 106 | #define VM_NORESERVE 0x00200000 /* should the VM suppress accounting */ | ||
| 103 | #define VM_HUGETLB 0x00400000 /* Huge TLB Page VM */ | 107 | #define VM_HUGETLB 0x00400000 /* Huge TLB Page VM */ |
| 104 | #define VM_NONLINEAR 0x00800000 /* Is non-linear (remap_file_pages) */ | 108 | #define VM_NONLINEAR 0x00800000 /* Is non-linear (remap_file_pages) */ |
| 105 | #define VM_MAPPED_COPY 0x01000000 /* T if mapped copy of data (nommu mmap) */ | 109 | #define VM_MAPPED_COPY 0x01000000 /* T if mapped copy of data (nommu mmap) */ |
| @@ -166,12 +170,16 @@ struct vm_operations_struct { | |||
| 166 | void (*open)(struct vm_area_struct * area); | 170 | void (*open)(struct vm_area_struct * area); |
| 167 | void (*close)(struct vm_area_struct * area); | 171 | void (*close)(struct vm_area_struct * area); |
| 168 | int (*fault)(struct vm_area_struct *vma, struct vm_fault *vmf); | 172 | int (*fault)(struct vm_area_struct *vma, struct vm_fault *vmf); |
| 169 | unsigned long (*nopfn)(struct vm_area_struct *area, | ||
| 170 | unsigned long address); | ||
| 171 | 173 | ||
| 172 | /* notification that a previously read-only page is about to become | 174 | /* notification that a previously read-only page is about to become |
| 173 | * writable, if an error is returned it will cause a SIGBUS */ | 175 | * writable, if an error is returned it will cause a SIGBUS */ |
| 174 | int (*page_mkwrite)(struct vm_area_struct *vma, struct page *page); | 176 | int (*page_mkwrite)(struct vm_area_struct *vma, struct page *page); |
| 177 | |||
| 178 | /* called by access_process_vm when get_user_pages() fails, typically | ||
| 179 | * for use by special VMAs that can switch between memory and hardware | ||
| 180 | */ | ||
| 181 | int (*access)(struct vm_area_struct *vma, unsigned long addr, | ||
| 182 | void *buf, int len, int write); | ||
| 175 | #ifdef CONFIG_NUMA | 183 | #ifdef CONFIG_NUMA |
| 176 | /* | 184 | /* |
| 177 | * set_policy() op must add a reference to any non-NULL @new mempolicy | 185 | * set_policy() op must add a reference to any non-NULL @new mempolicy |
| @@ -675,13 +683,6 @@ static inline int page_mapped(struct page *page) | |||
| 675 | } | 683 | } |
| 676 | 684 | ||
| 677 | /* | 685 | /* |
| 678 | * Error return values for the *_nopfn functions | ||
| 679 | */ | ||
| 680 | #define NOPFN_SIGBUS ((unsigned long) -1) | ||
| 681 | #define NOPFN_OOM ((unsigned long) -2) | ||
| 682 | #define NOPFN_REFAULT ((unsigned long) -3) | ||
| 683 | |||
| 684 | /* | ||
| 685 | * Different kinds of faults, as returned by handle_mm_fault(). | 686 | * Different kinds of faults, as returned by handle_mm_fault(). |
| 686 | * Used to decide whether a process gets delivered SIGBUS or | 687 | * Used to decide whether a process gets delivered SIGBUS or |
| 687 | * just gets major/minor fault counters bumped up. | 688 | * just gets major/minor fault counters bumped up. |
| @@ -743,6 +744,8 @@ struct zap_details { | |||
| 743 | struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr, | 744 | struct page *vm_normal_page(struct vm_area_struct *vma, unsigned long addr, |
| 744 | pte_t pte); | 745 | pte_t pte); |
| 745 | 746 | ||
| 747 | int zap_vma_ptes(struct vm_area_struct *vma, unsigned long address, | ||
| 748 | unsigned long size); | ||
| 746 | unsigned long zap_page_range(struct vm_area_struct *vma, unsigned long address, | 749 | unsigned long zap_page_range(struct vm_area_struct *vma, unsigned long address, |
| 747 | unsigned long size, struct zap_details *); | 750 | unsigned long size, struct zap_details *); |
| 748 | unsigned long unmap_vmas(struct mmu_gather **tlb, | 751 | unsigned long unmap_vmas(struct mmu_gather **tlb, |
| @@ -772,14 +775,14 @@ struct mm_walk { | |||
| 772 | 775 | ||
| 773 | int walk_page_range(unsigned long addr, unsigned long end, | 776 | int walk_page_range(unsigned long addr, unsigned long end, |
| 774 | struct mm_walk *walk); | 777 | struct mm_walk *walk); |
| 775 | void free_pgd_range(struct mmu_gather **tlb, unsigned long addr, | 778 | void free_pgd_range(struct mmu_gather *tlb, unsigned long addr, |
| 776 | unsigned long end, unsigned long floor, unsigned long ceiling); | 779 | unsigned long end, unsigned long floor, unsigned long ceiling); |
| 777 | void free_pgtables(struct mmu_gather **tlb, struct vm_area_struct *start_vma, | ||
| 778 | unsigned long floor, unsigned long ceiling); | ||
| 779 | int copy_page_range(struct mm_struct *dst, struct mm_struct *src, | 780 | int copy_page_range(struct mm_struct *dst, struct mm_struct *src, |
| 780 | struct vm_area_struct *vma); | 781 | struct vm_area_struct *vma); |
| 781 | void unmap_mapping_range(struct address_space *mapping, | 782 | void unmap_mapping_range(struct address_space *mapping, |
| 782 | loff_t const holebegin, loff_t const holelen, int even_cows); | 783 | loff_t const holebegin, loff_t const holelen, int even_cows); |
| 784 | int generic_access_phys(struct vm_area_struct *vma, unsigned long addr, | ||
| 785 | void *buf, int len, int write); | ||
| 783 | 786 | ||
| 784 | static inline void unmap_shared_mapping_range(struct address_space *mapping, | 787 | static inline void unmap_shared_mapping_range(struct address_space *mapping, |
| 785 | loff_t const holebegin, loff_t const holelen) | 788 | loff_t const holebegin, loff_t const holelen) |
| @@ -809,7 +812,6 @@ extern int access_process_vm(struct task_struct *tsk, unsigned long addr, void * | |||
| 809 | 812 | ||
| 810 | int get_user_pages(struct task_struct *tsk, struct mm_struct *mm, unsigned long start, | 813 | int get_user_pages(struct task_struct *tsk, struct mm_struct *mm, unsigned long start, |
| 811 | int len, int write, int force, struct page **pages, struct vm_area_struct **vmas); | 814 | int len, int write, int force, struct page **pages, struct vm_area_struct **vmas); |
| 812 | void print_bad_pte(struct vm_area_struct *, pte_t, unsigned long); | ||
| 813 | 815 | ||
| 814 | extern int try_to_release_page(struct page * page, gfp_t gfp_mask); | 816 | extern int try_to_release_page(struct page * page, gfp_t gfp_mask); |
| 815 | extern void do_invalidatepage(struct page *page, unsigned long offset); | 817 | extern void do_invalidatepage(struct page *page, unsigned long offset); |
| @@ -833,6 +835,19 @@ extern int mprotect_fixup(struct vm_area_struct *vma, | |||
| 833 | unsigned long end, unsigned long newflags); | 835 | unsigned long end, unsigned long newflags); |
| 834 | 836 | ||
| 835 | /* | 837 | /* |
| 838 | * get_user_pages_fast provides equivalent functionality to get_user_pages, | ||
| 839 | * operating on current and current->mm (force=0 and doesn't return any vmas). | ||
| 840 | * | ||
| 841 | * get_user_pages_fast may take mmap_sem and page tables, so no assumptions | ||
| 842 | * can be made about locking. get_user_pages_fast is to be implemented in a | ||
| 843 | * way that is advantageous (vs get_user_pages()) when the user memory area is | ||
| 844 | * already faulted in and present in ptes. However if the pages have to be | ||
| 845 | * faulted in, it may turn out to be slightly slower). | ||
| 846 | */ | ||
| 847 | int get_user_pages_fast(unsigned long start, int nr_pages, int write, | ||
| 848 | struct page **pages); | ||
| 849 | |||
| 850 | /* | ||
| 836 | * A callback you can register to apply pressure to ageable caches. | 851 | * A callback you can register to apply pressure to ageable caches. |
| 837 | * | 852 | * |
| 838 | * 'shrink' is passed a count 'nr_to_scan' and a 'gfpmask'. It should | 853 | * 'shrink' is passed a count 'nr_to_scan' and a 'gfpmask'. It should |
| @@ -965,9 +980,8 @@ static inline void pgtable_page_dtor(struct page *page) | |||
| 965 | NULL: pte_offset_kernel(pmd, address)) | 980 | NULL: pte_offset_kernel(pmd, address)) |
| 966 | 981 | ||
| 967 | extern void free_area_init(unsigned long * zones_size); | 982 | extern void free_area_init(unsigned long * zones_size); |
| 968 | extern void free_area_init_node(int nid, pg_data_t *pgdat, | 983 | extern void free_area_init_node(int nid, unsigned long * zones_size, |
| 969 | unsigned long * zones_size, unsigned long zone_start_pfn, | 984 | unsigned long zone_start_pfn, unsigned long *zholes_size); |
| 970 | unsigned long *zholes_size); | ||
| 971 | #ifdef CONFIG_ARCH_POPULATES_NODE_MAP | 985 | #ifdef CONFIG_ARCH_POPULATES_NODE_MAP |
| 972 | /* | 986 | /* |
| 973 | * With CONFIG_ARCH_POPULATES_NODE_MAP set, an architecture may initialise its | 987 | * With CONFIG_ARCH_POPULATES_NODE_MAP set, an architecture may initialise its |
| @@ -1009,7 +1023,6 @@ extern unsigned long absent_pages_in_range(unsigned long start_pfn, | |||
| 1009 | extern void get_pfn_range_for_nid(unsigned int nid, | 1023 | extern void get_pfn_range_for_nid(unsigned int nid, |
| 1010 | unsigned long *start_pfn, unsigned long *end_pfn); | 1024 | unsigned long *start_pfn, unsigned long *end_pfn); |
| 1011 | extern unsigned long find_min_pfn_with_active_regions(void); | 1025 | extern unsigned long find_min_pfn_with_active_regions(void); |
| 1012 | extern unsigned long find_max_pfn_with_active_regions(void); | ||
| 1013 | extern void free_bootmem_with_active_regions(int nid, | 1026 | extern void free_bootmem_with_active_regions(int nid, |
| 1014 | unsigned long max_low_pfn); | 1027 | unsigned long max_low_pfn); |
| 1015 | typedef int (*work_fn_t)(unsigned long, unsigned long, void *); | 1028 | typedef int (*work_fn_t)(unsigned long, unsigned long, void *); |
| @@ -1072,6 +1085,9 @@ extern struct vm_area_struct *copy_vma(struct vm_area_struct **, | |||
| 1072 | unsigned long addr, unsigned long len, pgoff_t pgoff); | 1085 | unsigned long addr, unsigned long len, pgoff_t pgoff); |
| 1073 | extern void exit_mmap(struct mm_struct *); | 1086 | extern void exit_mmap(struct mm_struct *); |
| 1074 | 1087 | ||
| 1088 | extern int mm_take_all_locks(struct mm_struct *mm); | ||
| 1089 | extern void mm_drop_all_locks(struct mm_struct *mm); | ||
| 1090 | |||
| 1075 | #ifdef CONFIG_PROC_FS | 1091 | #ifdef CONFIG_PROC_FS |
| 1076 | /* From fs/proc/base.c. callers must _not_ hold the mm's exe_file_lock */ | 1092 | /* From fs/proc/base.c. callers must _not_ hold the mm's exe_file_lock */ |
| 1077 | extern void added_exe_file_vma(struct mm_struct *mm); | 1093 | extern void added_exe_file_vma(struct mm_struct *mm); |
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index 02a27ae78539..386edbe2cb4e 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h | |||
| @@ -10,6 +10,7 @@ | |||
| 10 | #include <linux/rbtree.h> | 10 | #include <linux/rbtree.h> |
| 11 | #include <linux/rwsem.h> | 11 | #include <linux/rwsem.h> |
| 12 | #include <linux/completion.h> | 12 | #include <linux/completion.h> |
| 13 | #include <linux/cpumask.h> | ||
| 13 | #include <asm/page.h> | 14 | #include <asm/page.h> |
| 14 | #include <asm/mmu.h> | 15 | #include <asm/mmu.h> |
| 15 | 16 | ||
| @@ -159,6 +160,17 @@ struct vm_area_struct { | |||
| 159 | #endif | 160 | #endif |
| 160 | }; | 161 | }; |
| 161 | 162 | ||
| 163 | struct core_thread { | ||
| 164 | struct task_struct *task; | ||
| 165 | struct core_thread *next; | ||
| 166 | }; | ||
| 167 | |||
| 168 | struct core_state { | ||
| 169 | atomic_t nr_threads; | ||
| 170 | struct core_thread dumper; | ||
| 171 | struct completion startup; | ||
| 172 | }; | ||
| 173 | |||
| 162 | struct mm_struct { | 174 | struct mm_struct { |
| 163 | struct vm_area_struct * mmap; /* list of VMAs */ | 175 | struct vm_area_struct * mmap; /* list of VMAs */ |
| 164 | struct rb_root mm_rb; | 176 | struct rb_root mm_rb; |
| @@ -175,7 +187,6 @@ struct mm_struct { | |||
| 175 | atomic_t mm_users; /* How many users with user space? */ | 187 | atomic_t mm_users; /* How many users with user space? */ |
| 176 | atomic_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */ | 188 | atomic_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */ |
| 177 | int map_count; /* number of VMAs */ | 189 | int map_count; /* number of VMAs */ |
| 178 | int core_waiters; | ||
| 179 | struct rw_semaphore mmap_sem; | 190 | struct rw_semaphore mmap_sem; |
| 180 | spinlock_t page_table_lock; /* Protects page tables and some counters */ | 191 | spinlock_t page_table_lock; /* Protects page tables and some counters */ |
| 181 | 192 | ||
| @@ -219,8 +230,7 @@ struct mm_struct { | |||
| 219 | 230 | ||
| 220 | unsigned long flags; /* Must use atomic bitops to access the bits */ | 231 | unsigned long flags; /* Must use atomic bitops to access the bits */ |
| 221 | 232 | ||
| 222 | /* coredumping support */ | 233 | struct core_state *core_state; /* coredumping support */ |
| 223 | struct completion *core_startup_done, core_done; | ||
| 224 | 234 | ||
| 225 | /* aio bits */ | 235 | /* aio bits */ |
| 226 | rwlock_t ioctx_list_lock; /* aio lock */ | 236 | rwlock_t ioctx_list_lock; /* aio lock */ |
| @@ -244,6 +254,9 @@ struct mm_struct { | |||
| 244 | struct file *exe_file; | 254 | struct file *exe_file; |
| 245 | unsigned long num_exe_file_vmas; | 255 | unsigned long num_exe_file_vmas; |
| 246 | #endif | 256 | #endif |
| 257 | #ifdef CONFIG_MMU_NOTIFIER | ||
| 258 | struct mmu_notifier_mm *mmu_notifier_mm; | ||
| 259 | #endif | ||
| 247 | }; | 260 | }; |
| 248 | 261 | ||
| 249 | #endif /* _LINUX_MM_TYPES_H */ | 262 | #endif /* _LINUX_MM_TYPES_H */ |
diff --git a/include/linux/mmc/card.h b/include/linux/mmc/card.h index 0d508ac17d64..ee6e822d5994 100644 --- a/include/linux/mmc/card.h +++ b/include/linux/mmc/card.h | |||
| @@ -111,6 +111,8 @@ struct mmc_card { | |||
| 111 | unsigned num_info; /* number of info strings */ | 111 | unsigned num_info; /* number of info strings */ |
| 112 | const char **info; /* info strings */ | 112 | const char **info; /* info strings */ |
| 113 | struct sdio_func_tuple *tuples; /* unknown common tuples */ | 113 | struct sdio_func_tuple *tuples; /* unknown common tuples */ |
| 114 | |||
| 115 | struct dentry *debugfs_root; | ||
| 114 | }; | 116 | }; |
| 115 | 117 | ||
| 116 | #define mmc_card_mmc(c) ((c)->type == MMC_TYPE_MMC) | 118 | #define mmc_card_mmc(c) ((c)->type == MMC_TYPE_MMC) |
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 10a2080086ca..9c288c909878 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h | |||
| @@ -157,6 +157,8 @@ struct mmc_host { | |||
| 157 | struct led_trigger *led; /* activity led */ | 157 | struct led_trigger *led; /* activity led */ |
| 158 | #endif | 158 | #endif |
| 159 | 159 | ||
| 160 | struct dentry *debugfs_root; | ||
| 161 | |||
| 160 | unsigned long private[0] ____cacheline_aligned; | 162 | unsigned long private[0] ____cacheline_aligned; |
| 161 | }; | 163 | }; |
| 162 | 164 | ||
diff --git a/include/linux/mmu_notifier.h b/include/linux/mmu_notifier.h new file mode 100644 index 000000000000..b77486d152cd --- /dev/null +++ b/include/linux/mmu_notifier.h | |||
| @@ -0,0 +1,279 @@ | |||
| 1 | #ifndef _LINUX_MMU_NOTIFIER_H | ||
| 2 | #define _LINUX_MMU_NOTIFIER_H | ||
| 3 | |||
| 4 | #include <linux/list.h> | ||
| 5 | #include <linux/spinlock.h> | ||
| 6 | #include <linux/mm_types.h> | ||
| 7 | |||
| 8 | struct mmu_notifier; | ||
| 9 | struct mmu_notifier_ops; | ||
| 10 | |||
| 11 | #ifdef CONFIG_MMU_NOTIFIER | ||
| 12 | |||
| 13 | /* | ||
| 14 | * The mmu notifier_mm structure is allocated and installed in | ||
| 15 | * mm->mmu_notifier_mm inside the mm_take_all_locks() protected | ||
| 16 | * critical section and it's released only when mm_count reaches zero | ||
| 17 | * in mmdrop(). | ||
| 18 | */ | ||
| 19 | struct mmu_notifier_mm { | ||
| 20 | /* all mmu notifiers registerd in this mm are queued in this list */ | ||
| 21 | struct hlist_head list; | ||
| 22 | /* to serialize the list modifications and hlist_unhashed */ | ||
| 23 | spinlock_t lock; | ||
| 24 | }; | ||
| 25 | |||
| 26 | struct mmu_notifier_ops { | ||
| 27 | /* | ||
| 28 | * Called either by mmu_notifier_unregister or when the mm is | ||
| 29 | * being destroyed by exit_mmap, always before all pages are | ||
| 30 | * freed. This can run concurrently with other mmu notifier | ||
| 31 | * methods (the ones invoked outside the mm context) and it | ||
| 32 | * should tear down all secondary mmu mappings and freeze the | ||
| 33 | * secondary mmu. If this method isn't implemented you've to | ||
| 34 | * be sure that nothing could possibly write to the pages | ||
| 35 | * through the secondary mmu by the time the last thread with | ||
| 36 | * tsk->mm == mm exits. | ||
| 37 | * | ||
| 38 | * As side note: the pages freed after ->release returns could | ||
| 39 | * be immediately reallocated by the gart at an alias physical | ||
| 40 | * address with a different cache model, so if ->release isn't | ||
| 41 | * implemented because all _software_ driven memory accesses | ||
| 42 | * through the secondary mmu are terminated by the time the | ||
| 43 | * last thread of this mm quits, you've also to be sure that | ||
| 44 | * speculative _hardware_ operations can't allocate dirty | ||
| 45 | * cachelines in the cpu that could not be snooped and made | ||
| 46 | * coherent with the other read and write operations happening | ||
| 47 | * through the gart alias address, so leading to memory | ||
| 48 | * corruption. | ||
| 49 | */ | ||
| 50 | void (*release)(struct mmu_notifier *mn, | ||
| 51 | struct mm_struct *mm); | ||
| 52 | |||
| 53 | /* | ||
| 54 | * clear_flush_young is called after the VM is | ||
| 55 | * test-and-clearing the young/accessed bitflag in the | ||
| 56 | * pte. This way the VM will provide proper aging to the | ||
| 57 | * accesses to the page through the secondary MMUs and not | ||
| 58 | * only to the ones through the Linux pte. | ||
| 59 | */ | ||
| 60 | int (*clear_flush_young)(struct mmu_notifier *mn, | ||
| 61 | struct mm_struct *mm, | ||
| 62 | unsigned long address); | ||
| 63 | |||
| 64 | /* | ||
| 65 | * Before this is invoked any secondary MMU is still ok to | ||
| 66 | * read/write to the page previously pointed to by the Linux | ||
| 67 | * pte because the page hasn't been freed yet and it won't be | ||
| 68 | * freed until this returns. If required set_page_dirty has to | ||
| 69 | * be called internally to this method. | ||
| 70 | */ | ||
| 71 | void (*invalidate_page)(struct mmu_notifier *mn, | ||
| 72 | struct mm_struct *mm, | ||
| 73 | unsigned long address); | ||
| 74 | |||
| 75 | /* | ||
| 76 | * invalidate_range_start() and invalidate_range_end() must be | ||
| 77 | * paired and are called only when the mmap_sem and/or the | ||
| 78 | * locks protecting the reverse maps are held. The subsystem | ||
| 79 | * must guarantee that no additional references are taken to | ||
| 80 | * the pages in the range established between the call to | ||
| 81 | * invalidate_range_start() and the matching call to | ||
| 82 | * invalidate_range_end(). | ||
| 83 | * | ||
| 84 | * Invalidation of multiple concurrent ranges may be | ||
| 85 | * optionally permitted by the driver. Either way the | ||
| 86 | * establishment of sptes is forbidden in the range passed to | ||
| 87 | * invalidate_range_begin/end for the whole duration of the | ||
| 88 | * invalidate_range_begin/end critical section. | ||
| 89 | * | ||
| 90 | * invalidate_range_start() is called when all pages in the | ||
| 91 | * range are still mapped and have at least a refcount of one. | ||
| 92 | * | ||
| 93 | * invalidate_range_end() is called when all pages in the | ||
| 94 | * range have been unmapped and the pages have been freed by | ||
| 95 | * the VM. | ||
| 96 | * | ||
| 97 | * The VM will remove the page table entries and potentially | ||
| 98 | * the page between invalidate_range_start() and | ||
| 99 | * invalidate_range_end(). If the page must not be freed | ||
| 100 | * because of pending I/O or other circumstances then the | ||
| 101 | * invalidate_range_start() callback (or the initial mapping | ||
| 102 | * by the driver) must make sure that the refcount is kept | ||
| 103 | * elevated. | ||
| 104 | * | ||
| 105 | * If the driver increases the refcount when the pages are | ||
| 106 | * initially mapped into an address space then either | ||
| 107 | * invalidate_range_start() or invalidate_range_end() may | ||
| 108 | * decrease the refcount. If the refcount is decreased on | ||
| 109 | * invalidate_range_start() then the VM can free pages as page | ||
| 110 | * table entries are removed. If the refcount is only | ||
| 111 | * droppped on invalidate_range_end() then the driver itself | ||
| 112 | * will drop the last refcount but it must take care to flush | ||
| 113 | * any secondary tlb before doing the final free on the | ||
| 114 | * page. Pages will no longer be referenced by the linux | ||
| 115 | * address space but may still be referenced by sptes until | ||
| 116 | * the last refcount is dropped. | ||
| 117 | */ | ||
| 118 | void (*invalidate_range_start)(struct mmu_notifier *mn, | ||
| 119 | struct mm_struct *mm, | ||
| 120 | unsigned long start, unsigned long end); | ||
| 121 | void (*invalidate_range_end)(struct mmu_notifier *mn, | ||
| 122 | struct mm_struct *mm, | ||
| 123 | unsigned long start, unsigned long end); | ||
| 124 | }; | ||
| 125 | |||
| 126 | /* | ||
| 127 | * The notifier chains are protected by mmap_sem and/or the reverse map | ||
| 128 | * semaphores. Notifier chains are only changed when all reverse maps and | ||
| 129 | * the mmap_sem locks are taken. | ||
| 130 | * | ||
| 131 | * Therefore notifier chains can only be traversed when either | ||
| 132 | * | ||
| 133 | * 1. mmap_sem is held. | ||
| 134 | * 2. One of the reverse map locks is held (i_mmap_lock or anon_vma->lock). | ||
| 135 | * 3. No other concurrent thread can access the list (release) | ||
| 136 | */ | ||
| 137 | struct mmu_notifier { | ||
| 138 | struct hlist_node hlist; | ||
| 139 | const struct mmu_notifier_ops *ops; | ||
| 140 | }; | ||
| 141 | |||
| 142 | static inline int mm_has_notifiers(struct mm_struct *mm) | ||
| 143 | { | ||
| 144 | return unlikely(mm->mmu_notifier_mm); | ||
| 145 | } | ||
| 146 | |||
| 147 | extern int mmu_notifier_register(struct mmu_notifier *mn, | ||
| 148 | struct mm_struct *mm); | ||
| 149 | extern int __mmu_notifier_register(struct mmu_notifier *mn, | ||
| 150 | struct mm_struct *mm); | ||
| 151 | extern void mmu_notifier_unregister(struct mmu_notifier *mn, | ||
| 152 | struct mm_struct *mm); | ||
| 153 | extern void __mmu_notifier_mm_destroy(struct mm_struct *mm); | ||
| 154 | extern void __mmu_notifier_release(struct mm_struct *mm); | ||
| 155 | extern int __mmu_notifier_clear_flush_young(struct mm_struct *mm, | ||
| 156 | unsigned long address); | ||
| 157 | extern void __mmu_notifier_invalidate_page(struct mm_struct *mm, | ||
| 158 | unsigned long address); | ||
| 159 | extern void __mmu_notifier_invalidate_range_start(struct mm_struct *mm, | ||
| 160 | unsigned long start, unsigned long end); | ||
| 161 | extern void __mmu_notifier_invalidate_range_end(struct mm_struct *mm, | ||
| 162 | unsigned long start, unsigned long end); | ||
| 163 | |||
| 164 | static inline void mmu_notifier_release(struct mm_struct *mm) | ||
| 165 | { | ||
| 166 | if (mm_has_notifiers(mm)) | ||
| 167 | __mmu_notifier_release(mm); | ||
| 168 | } | ||
| 169 | |||
| 170 | static inline int mmu_notifier_clear_flush_young(struct mm_struct *mm, | ||
| 171 | unsigned long address) | ||
| 172 | { | ||
| 173 | if (mm_has_notifiers(mm)) | ||
| 174 | return __mmu_notifier_clear_flush_young(mm, address); | ||
| 175 | return 0; | ||
| 176 | } | ||
| 177 | |||
| 178 | static inline void mmu_notifier_invalidate_page(struct mm_struct *mm, | ||
| 179 | unsigned long address) | ||
| 180 | { | ||
| 181 | if (mm_has_notifiers(mm)) | ||
| 182 | __mmu_notifier_invalidate_page(mm, address); | ||
| 183 | } | ||
| 184 | |||
| 185 | static inline void mmu_notifier_invalidate_range_start(struct mm_struct *mm, | ||
| 186 | unsigned long start, unsigned long end) | ||
| 187 | { | ||
| 188 | if (mm_has_notifiers(mm)) | ||
| 189 | __mmu_notifier_invalidate_range_start(mm, start, end); | ||
| 190 | } | ||
| 191 | |||
| 192 | static inline void mmu_notifier_invalidate_range_end(struct mm_struct *mm, | ||
| 193 | unsigned long start, unsigned long end) | ||
| 194 | { | ||
| 195 | if (mm_has_notifiers(mm)) | ||
| 196 | __mmu_notifier_invalidate_range_end(mm, start, end); | ||
| 197 | } | ||
| 198 | |||
| 199 | static inline void mmu_notifier_mm_init(struct mm_struct *mm) | ||
| 200 | { | ||
| 201 | mm->mmu_notifier_mm = NULL; | ||
| 202 | } | ||
| 203 | |||
| 204 | static inline void mmu_notifier_mm_destroy(struct mm_struct *mm) | ||
| 205 | { | ||
| 206 | if (mm_has_notifiers(mm)) | ||
| 207 | __mmu_notifier_mm_destroy(mm); | ||
| 208 | } | ||
| 209 | |||
| 210 | /* | ||
| 211 | * These two macros will sometime replace ptep_clear_flush. | ||
| 212 | * ptep_clear_flush is impleemnted as macro itself, so this also is | ||
| 213 | * implemented as a macro until ptep_clear_flush will converted to an | ||
| 214 | * inline function, to diminish the risk of compilation failure. The | ||
| 215 | * invalidate_page method over time can be moved outside the PT lock | ||
| 216 | * and these two macros can be later removed. | ||
| 217 | */ | ||
| 218 | #define ptep_clear_flush_notify(__vma, __address, __ptep) \ | ||
| 219 | ({ \ | ||
| 220 | pte_t __pte; \ | ||
| 221 | struct vm_area_struct *___vma = __vma; \ | ||
| 222 | unsigned long ___address = __address; \ | ||
| 223 | __pte = ptep_clear_flush(___vma, ___address, __ptep); \ | ||
| 224 | mmu_notifier_invalidate_page(___vma->vm_mm, ___address); \ | ||
| 225 | __pte; \ | ||
| 226 | }) | ||
| 227 | |||
| 228 | #define ptep_clear_flush_young_notify(__vma, __address, __ptep) \ | ||
| 229 | ({ \ | ||
| 230 | int __young; \ | ||
| 231 | struct vm_area_struct *___vma = __vma; \ | ||
| 232 | unsigned long ___address = __address; \ | ||
| 233 | __young = ptep_clear_flush_young(___vma, ___address, __ptep); \ | ||
| 234 | __young |= mmu_notifier_clear_flush_young(___vma->vm_mm, \ | ||
| 235 | ___address); \ | ||
| 236 | __young; \ | ||
| 237 | }) | ||
| 238 | |||
| 239 | #else /* CONFIG_MMU_NOTIFIER */ | ||
| 240 | |||
| 241 | static inline void mmu_notifier_release(struct mm_struct *mm) | ||
| 242 | { | ||
| 243 | } | ||
| 244 | |||
| 245 | static inline int mmu_notifier_clear_flush_young(struct mm_struct *mm, | ||
| 246 | unsigned long address) | ||
| 247 | { | ||
| 248 | return 0; | ||
| 249 | } | ||
| 250 | |||
| 251 | static inline void mmu_notifier_invalidate_page(struct mm_struct *mm, | ||
| 252 | unsigned long address) | ||
| 253 | { | ||
| 254 | } | ||
| 255 | |||
| 256 | static inline void mmu_notifier_invalidate_range_start(struct mm_struct *mm, | ||
| 257 | unsigned long start, unsigned long end) | ||
| 258 | { | ||
| 259 | } | ||
| 260 | |||
| 261 | static inline void mmu_notifier_invalidate_range_end(struct mm_struct *mm, | ||
| 262 | unsigned long start, unsigned long end) | ||
| 263 | { | ||
| 264 | } | ||
| 265 | |||
| 266 | static inline void mmu_notifier_mm_init(struct mm_struct *mm) | ||
| 267 | { | ||
| 268 | } | ||
| 269 | |||
| 270 | static inline void mmu_notifier_mm_destroy(struct mm_struct *mm) | ||
| 271 | { | ||
| 272 | } | ||
| 273 | |||
| 274 | #define ptep_clear_flush_young_notify ptep_clear_flush_young | ||
| 275 | #define ptep_clear_flush_notify ptep_clear_flush | ||
| 276 | |||
| 277 | #endif /* CONFIG_MMU_NOTIFIER */ | ||
| 278 | |||
| 279 | #endif /* _LINUX_MMU_NOTIFIER_H */ | ||
diff --git a/include/linux/module.h b/include/linux/module.h index 3e03b1acbc94..68e09557c951 100644 --- a/include/linux/module.h +++ b/include/linux/module.h | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | /* Not Yet Implemented */ | 23 | /* Not Yet Implemented */ |
| 24 | #define MODULE_SUPPORTED_DEVICE(name) | 24 | #define MODULE_SUPPORTED_DEVICE(name) |
| 25 | 25 | ||
| 26 | /* v850 toolchain uses a `_' prefix for all user symbols */ | 26 | /* some toolchains uses a `_' prefix for all user symbols */ |
| 27 | #ifndef MODULE_SYMBOL_PREFIX | 27 | #ifndef MODULE_SYMBOL_PREFIX |
| 28 | #define MODULE_SYMBOL_PREFIX "" | 28 | #define MODULE_SYMBOL_PREFIX "" |
| 29 | #endif | 29 | #endif |
| @@ -249,27 +249,30 @@ struct module | |||
| 249 | 249 | ||
| 250 | /* Exported symbols */ | 250 | /* Exported symbols */ |
| 251 | const struct kernel_symbol *syms; | 251 | const struct kernel_symbol *syms; |
| 252 | unsigned int num_syms; | ||
| 253 | const unsigned long *crcs; | 252 | const unsigned long *crcs; |
| 253 | unsigned int num_syms; | ||
| 254 | 254 | ||
| 255 | /* GPL-only exported symbols. */ | 255 | /* GPL-only exported symbols. */ |
| 256 | const struct kernel_symbol *gpl_syms; | ||
| 257 | unsigned int num_gpl_syms; | 256 | unsigned int num_gpl_syms; |
| 257 | const struct kernel_symbol *gpl_syms; | ||
| 258 | const unsigned long *gpl_crcs; | 258 | const unsigned long *gpl_crcs; |
| 259 | 259 | ||
| 260 | #ifdef CONFIG_UNUSED_SYMBOLS | ||
| 260 | /* unused exported symbols. */ | 261 | /* unused exported symbols. */ |
| 261 | const struct kernel_symbol *unused_syms; | 262 | const struct kernel_symbol *unused_syms; |
| 262 | unsigned int num_unused_syms; | ||
| 263 | const unsigned long *unused_crcs; | 263 | const unsigned long *unused_crcs; |
| 264 | unsigned int num_unused_syms; | ||
| 265 | |||
| 264 | /* GPL-only, unused exported symbols. */ | 266 | /* GPL-only, unused exported symbols. */ |
| 265 | const struct kernel_symbol *unused_gpl_syms; | ||
| 266 | unsigned int num_unused_gpl_syms; | 267 | unsigned int num_unused_gpl_syms; |
| 268 | const struct kernel_symbol *unused_gpl_syms; | ||
| 267 | const unsigned long *unused_gpl_crcs; | 269 | const unsigned long *unused_gpl_crcs; |
| 270 | #endif | ||
| 268 | 271 | ||
| 269 | /* symbols that will be GPL-only in the near future. */ | 272 | /* symbols that will be GPL-only in the near future. */ |
| 270 | const struct kernel_symbol *gpl_future_syms; | 273 | const struct kernel_symbol *gpl_future_syms; |
| 271 | unsigned int num_gpl_future_syms; | ||
| 272 | const unsigned long *gpl_future_crcs; | 274 | const unsigned long *gpl_future_crcs; |
| 275 | unsigned int num_gpl_future_syms; | ||
| 273 | 276 | ||
| 274 | /* Exception table */ | 277 | /* Exception table */ |
| 275 | unsigned int num_exentries; | 278 | unsigned int num_exentries; |
| @@ -285,10 +288,10 @@ struct module | |||
| 285 | void *module_core; | 288 | void *module_core; |
| 286 | 289 | ||
| 287 | /* Here are the sizes of the init and core sections */ | 290 | /* Here are the sizes of the init and core sections */ |
| 288 | unsigned long init_size, core_size; | 291 | unsigned int init_size, core_size; |
| 289 | 292 | ||
| 290 | /* The size of the executable code in each section. */ | 293 | /* The size of the executable code in each section. */ |
| 291 | unsigned long init_text_size, core_text_size; | 294 | unsigned int init_text_size, core_text_size; |
| 292 | 295 | ||
| 293 | /* The handle returned from unwind_add_table. */ | 296 | /* The handle returned from unwind_add_table. */ |
| 294 | void *unwind_info; | 297 | void *unwind_info; |
| @@ -300,29 +303,15 @@ struct module | |||
| 300 | 303 | ||
| 301 | #ifdef CONFIG_GENERIC_BUG | 304 | #ifdef CONFIG_GENERIC_BUG |
| 302 | /* Support for BUG */ | 305 | /* Support for BUG */ |
| 306 | unsigned num_bugs; | ||
| 303 | struct list_head bug_list; | 307 | struct list_head bug_list; |
| 304 | struct bug_entry *bug_table; | 308 | struct bug_entry *bug_table; |
| 305 | unsigned num_bugs; | ||
| 306 | #endif | ||
| 307 | |||
| 308 | #ifdef CONFIG_MODULE_UNLOAD | ||
| 309 | /* Reference counts */ | ||
| 310 | struct module_ref ref[NR_CPUS]; | ||
| 311 | |||
| 312 | /* What modules depend on me? */ | ||
| 313 | struct list_head modules_which_use_me; | ||
| 314 | |||
| 315 | /* Who is waiting for us to be unloaded */ | ||
| 316 | struct task_struct *waiter; | ||
| 317 | |||
| 318 | /* Destruction function. */ | ||
| 319 | void (*exit)(void); | ||
| 320 | #endif | 309 | #endif |
| 321 | 310 | ||
| 322 | #ifdef CONFIG_KALLSYMS | 311 | #ifdef CONFIG_KALLSYMS |
| 323 | /* We keep the symbol and string tables for kallsyms. */ | 312 | /* We keep the symbol and string tables for kallsyms. */ |
| 324 | Elf_Sym *symtab; | 313 | Elf_Sym *symtab; |
| 325 | unsigned long num_symtab; | 314 | unsigned int num_symtab; |
| 326 | char *strtab; | 315 | char *strtab; |
| 327 | 316 | ||
| 328 | /* Section attributes */ | 317 | /* Section attributes */ |
| @@ -342,6 +331,21 @@ struct module | |||
| 342 | struct marker *markers; | 331 | struct marker *markers; |
| 343 | unsigned int num_markers; | 332 | unsigned int num_markers; |
| 344 | #endif | 333 | #endif |
| 334 | |||
| 335 | #ifdef CONFIG_MODULE_UNLOAD | ||
| 336 | /* What modules depend on me? */ | ||
| 337 | struct list_head modules_which_use_me; | ||
| 338 | |||
| 339 | /* Who is waiting for us to be unloaded */ | ||
| 340 | struct task_struct *waiter; | ||
| 341 | |||
| 342 | /* Destruction function. */ | ||
| 343 | void (*exit)(void); | ||
| 344 | |||
| 345 | /* Reference counts */ | ||
| 346 | struct module_ref ref[NR_CPUS]; | ||
| 347 | #endif | ||
| 348 | |||
| 345 | }; | 349 | }; |
| 346 | #ifndef MODULE_ARCH_INIT | 350 | #ifndef MODULE_ARCH_INIT |
| 347 | #define MODULE_ARCH_INIT {} | 351 | #define MODULE_ARCH_INIT {} |
diff --git a/include/linux/mount.h b/include/linux/mount.h index 4374d1adeb4b..30a1d63b6fb5 100644 --- a/include/linux/mount.h +++ b/include/linux/mount.h | |||
| @@ -47,7 +47,7 @@ struct vfsmount { | |||
| 47 | struct list_head mnt_child; /* and going through their mnt_child */ | 47 | struct list_head mnt_child; /* and going through their mnt_child */ |
| 48 | int mnt_flags; | 48 | int mnt_flags; |
| 49 | /* 4 bytes hole on 64bits arches */ | 49 | /* 4 bytes hole on 64bits arches */ |
| 50 | char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */ | 50 | const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */ |
| 51 | struct list_head mnt_list; | 51 | struct list_head mnt_list; |
| 52 | struct list_head mnt_expire; /* link in fs-specific expiry list */ | 52 | struct list_head mnt_expire; /* link in fs-specific expiry list */ |
| 53 | struct list_head mnt_share; /* circular list of shared mounts */ | 53 | struct list_head mnt_share; /* circular list of shared mounts */ |
| @@ -105,7 +105,8 @@ extern struct vfsmount *vfs_kern_mount(struct file_system_type *type, | |||
| 105 | 105 | ||
| 106 | struct nameidata; | 106 | struct nameidata; |
| 107 | 107 | ||
| 108 | extern int do_add_mount(struct vfsmount *newmnt, struct nameidata *nd, | 108 | struct path; |
| 109 | extern int do_add_mount(struct vfsmount *newmnt, struct path *path, | ||
| 109 | int mnt_flags, struct list_head *fslist); | 110 | int mnt_flags, struct list_head *fslist); |
| 110 | 111 | ||
| 111 | extern void mark_mounts_for_expiry(struct list_head *mounts); | 112 | extern void mark_mounts_for_expiry(struct list_head *mounts); |
diff --git a/include/linux/msdos_fs.h b/include/linux/msdos_fs.h index 81cd36b735b0..ba63858056c7 100644 --- a/include/linux/msdos_fs.h +++ b/include/linux/msdos_fs.h | |||
| @@ -2,11 +2,11 @@ | |||
| 2 | #define _LINUX_MSDOS_FS_H | 2 | #define _LINUX_MSDOS_FS_H |
| 3 | 3 | ||
| 4 | #include <linux/magic.h> | 4 | #include <linux/magic.h> |
| 5 | #include <asm/byteorder.h> | ||
| 5 | 6 | ||
| 6 | /* | 7 | /* |
| 7 | * The MS-DOS filesystem constants/structures | 8 | * The MS-DOS filesystem constants/structures |
| 8 | */ | 9 | */ |
| 9 | #include <asm/byteorder.h> | ||
| 10 | 10 | ||
| 11 | #define SECTOR_SIZE 512 /* sector size (bytes) */ | 11 | #define SECTOR_SIZE 512 /* sector size (bytes) */ |
| 12 | #define SECTOR_BITS 9 /* log2(SECTOR_SIZE) */ | 12 | #define SECTOR_BITS 9 /* log2(SECTOR_SIZE) */ |
| @@ -89,24 +89,22 @@ | |||
| 89 | #define IS_FSINFO(x) (le32_to_cpu((x)->signature1) == FAT_FSINFO_SIG1 \ | 89 | #define IS_FSINFO(x) (le32_to_cpu((x)->signature1) == FAT_FSINFO_SIG1 \ |
| 90 | && le32_to_cpu((x)->signature2) == FAT_FSINFO_SIG2) | 90 | && le32_to_cpu((x)->signature2) == FAT_FSINFO_SIG2) |
| 91 | 91 | ||
| 92 | struct __fat_dirent { | ||
| 93 | long d_ino; | ||
| 94 | __kernel_off_t d_off; | ||
| 95 | unsigned short d_reclen; | ||
| 96 | char d_name[256]; /* We must not include limits.h! */ | ||
| 97 | }; | ||
| 98 | |||
| 92 | /* | 99 | /* |
| 93 | * ioctl commands | 100 | * ioctl commands |
| 94 | */ | 101 | */ |
| 95 | #define VFAT_IOCTL_READDIR_BOTH _IOR('r', 1, struct dirent [2]) | 102 | #define VFAT_IOCTL_READDIR_BOTH _IOR('r', 1, struct __fat_dirent[2]) |
| 96 | #define VFAT_IOCTL_READDIR_SHORT _IOR('r', 2, struct dirent [2]) | 103 | #define VFAT_IOCTL_READDIR_SHORT _IOR('r', 2, struct __fat_dirent[2]) |
| 97 | /* <linux/videotext.h> has used 0x72 ('r') in collision, so skip a few */ | 104 | /* <linux/videotext.h> has used 0x72 ('r') in collision, so skip a few */ |
| 98 | #define FAT_IOCTL_GET_ATTRIBUTES _IOR('r', 0x10, __u32) | 105 | #define FAT_IOCTL_GET_ATTRIBUTES _IOR('r', 0x10, __u32) |
| 99 | #define FAT_IOCTL_SET_ATTRIBUTES _IOW('r', 0x11, __u32) | 106 | #define FAT_IOCTL_SET_ATTRIBUTES _IOW('r', 0x11, __u32) |
| 100 | 107 | ||
| 101 | /* | ||
| 102 | * vfat shortname flags | ||
| 103 | */ | ||
| 104 | #define VFAT_SFN_DISPLAY_LOWER 0x0001 /* convert to lowercase for display */ | ||
| 105 | #define VFAT_SFN_DISPLAY_WIN95 0x0002 /* emulate win95 rule for display */ | ||
| 106 | #define VFAT_SFN_DISPLAY_WINNT 0x0004 /* emulate winnt rule for display */ | ||
| 107 | #define VFAT_SFN_CREATE_WIN95 0x0100 /* emulate win95 rule for create */ | ||
| 108 | #define VFAT_SFN_CREATE_WINNT 0x0200 /* emulate winnt rule for create */ | ||
| 109 | |||
| 110 | struct fat_boot_sector { | 108 | struct fat_boot_sector { |
| 111 | __u8 ignored[3]; /* Boot strap short or near jump */ | 109 | __u8 ignored[3]; /* Boot strap short or near jump */ |
| 112 | __u8 system_id[8]; /* Name - can be used to special case | 110 | __u8 system_id[8]; /* Name - can be used to special case |
| @@ -168,14 +166,6 @@ struct msdos_dir_slot { | |||
| 168 | __u8 name11_12[4]; /* last 2 characters in name */ | 166 | __u8 name11_12[4]; /* last 2 characters in name */ |
| 169 | }; | 167 | }; |
| 170 | 168 | ||
| 171 | struct fat_slot_info { | ||
| 172 | loff_t i_pos; /* on-disk position of directory entry */ | ||
| 173 | loff_t slot_off; /* offset for slot or de start */ | ||
| 174 | int nr_slots; /* number of slots + 1(de) in filename */ | ||
| 175 | struct msdos_dir_entry *de; | ||
| 176 | struct buffer_head *bh; | ||
| 177 | }; | ||
| 178 | |||
| 179 | #ifdef __KERNEL__ | 169 | #ifdef __KERNEL__ |
| 180 | 170 | ||
| 181 | #include <linux/buffer_head.h> | 171 | #include <linux/buffer_head.h> |
| @@ -184,6 +174,15 @@ struct fat_slot_info { | |||
| 184 | #include <linux/fs.h> | 174 | #include <linux/fs.h> |
| 185 | #include <linux/mutex.h> | 175 | #include <linux/mutex.h> |
| 186 | 176 | ||
| 177 | /* | ||
| 178 | * vfat shortname flags | ||
| 179 | */ | ||
| 180 | #define VFAT_SFN_DISPLAY_LOWER 0x0001 /* convert to lowercase for display */ | ||
| 181 | #define VFAT_SFN_DISPLAY_WIN95 0x0002 /* emulate win95 rule for display */ | ||
| 182 | #define VFAT_SFN_DISPLAY_WINNT 0x0004 /* emulate winnt rule for display */ | ||
| 183 | #define VFAT_SFN_CREATE_WIN95 0x0100 /* emulate win95 rule for create */ | ||
| 184 | #define VFAT_SFN_CREATE_WINNT 0x0200 /* emulate winnt rule for create */ | ||
| 185 | |||
| 187 | struct fat_mount_options { | 186 | struct fat_mount_options { |
| 188 | uid_t fs_uid; | 187 | uid_t fs_uid; |
| 189 | gid_t fs_gid; | 188 | gid_t fs_gid; |
| @@ -202,10 +201,10 @@ struct fat_mount_options { | |||
| 202 | utf8:1, /* Use of UTF-8 character set (Default) */ | 201 | utf8:1, /* Use of UTF-8 character set (Default) */ |
| 203 | unicode_xlate:1, /* create escape sequences for unhandled Unicode */ | 202 | unicode_xlate:1, /* create escape sequences for unhandled Unicode */ |
| 204 | numtail:1, /* Does first alias have a numeric '~1' type tail? */ | 203 | numtail:1, /* Does first alias have a numeric '~1' type tail? */ |
| 205 | atari:1, /* Use Atari GEMDOS variation of MS-DOS fs */ | ||
| 206 | flush:1, /* write things quickly */ | 204 | flush:1, /* write things quickly */ |
| 207 | nocase:1, /* Does this need case conversion? 0=need case conversion*/ | 205 | nocase:1, /* Does this need case conversion? 0=need case conversion*/ |
| 208 | usefree:1; /* Use free_clusters for FAT32 */ | 206 | usefree:1, /* Use free_clusters for FAT32 */ |
| 207 | tz_utc:1; /* Filesystem timestamps are in UTC */ | ||
| 209 | }; | 208 | }; |
| 210 | 209 | ||
| 211 | #define FAT_HASH_BITS 8 | 210 | #define FAT_HASH_BITS 8 |
| @@ -267,6 +266,14 @@ struct msdos_inode_info { | |||
| 267 | struct inode vfs_inode; | 266 | struct inode vfs_inode; |
| 268 | }; | 267 | }; |
| 269 | 268 | ||
| 269 | struct fat_slot_info { | ||
| 270 | loff_t i_pos; /* on-disk position of directory entry */ | ||
| 271 | loff_t slot_off; /* offset for slot or de start */ | ||
| 272 | int nr_slots; /* number of slots + 1(de) in filename */ | ||
| 273 | struct msdos_dir_entry *de; | ||
| 274 | struct buffer_head *bh; | ||
| 275 | }; | ||
| 276 | |||
| 270 | static inline struct msdos_sb_info *MSDOS_SB(struct super_block *sb) | 277 | static inline struct msdos_sb_info *MSDOS_SB(struct super_block *sb) |
| 271 | { | 278 | { |
| 272 | return sb->s_fs_info; | 279 | return sb->s_fs_info; |
| @@ -428,8 +435,9 @@ extern int fat_flush_inodes(struct super_block *sb, struct inode *i1, | |||
| 428 | extern void fat_fs_panic(struct super_block *s, const char *fmt, ...); | 435 | extern void fat_fs_panic(struct super_block *s, const char *fmt, ...); |
| 429 | extern void fat_clusters_flush(struct super_block *sb); | 436 | extern void fat_clusters_flush(struct super_block *sb); |
| 430 | extern int fat_chain_add(struct inode *inode, int new_dclus, int nr_cluster); | 437 | extern int fat_chain_add(struct inode *inode, int new_dclus, int nr_cluster); |
| 431 | extern int date_dos2unix(unsigned short time, unsigned short date); | 438 | extern int date_dos2unix(unsigned short time, unsigned short date, int tz_utc); |
| 432 | extern void fat_date_unix2dos(int unix_date, __le16 *time, __le16 *date); | 439 | extern void fat_date_unix2dos(int unix_date, __le16 *time, __le16 *date, |
| 440 | int tz_utc); | ||
| 433 | extern int fat_sync_bhs(struct buffer_head **bhs, int nr_bhs); | 441 | extern int fat_sync_bhs(struct buffer_head **bhs, int nr_bhs); |
| 434 | 442 | ||
| 435 | int fat_cache_init(void); | 443 | int fat_cache_init(void); |
diff --git a/include/linux/mtd/blktrans.h b/include/linux/mtd/blktrans.h index 9a6e2f953cba..310e61606415 100644 --- a/include/linux/mtd/blktrans.h +++ b/include/linux/mtd/blktrans.h | |||
| @@ -1,6 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * $Id: blktrans.h,v 1.6 2005/11/07 11:14:54 gleixner Exp $ | ||
| 3 | * | ||
| 4 | * (C) 2003 David Woodhouse <dwmw2@infradead.org> | 2 | * (C) 2003 David Woodhouse <dwmw2@infradead.org> |
| 5 | * | 3 | * |
| 6 | * Interface to Linux block layer for MTD 'translation layers'. | 4 | * Interface to Linux block layer for MTD 'translation layers'. |
diff --git a/include/linux/mtd/cfi.h b/include/linux/mtd/cfi.h index b0ddf4b25862..d6fb115f5a07 100644 --- a/include/linux/mtd/cfi.h +++ b/include/linux/mtd/cfi.h | |||
| @@ -1,7 +1,6 @@ | |||
| 1 | 1 | ||
| 2 | /* Common Flash Interface structures | 2 | /* Common Flash Interface structures |
| 3 | * See http://support.intel.com/design/flash/technote/index.htm | 3 | * See http://support.intel.com/design/flash/technote/index.htm |
| 4 | * $Id: cfi.h,v 1.57 2005/11/15 23:28:17 tpoynor Exp $ | ||
| 5 | */ | 4 | */ |
| 6 | 5 | ||
| 7 | #ifndef __MTD_CFI_H__ | 6 | #ifndef __MTD_CFI_H__ |
diff --git a/include/linux/mtd/cfi_endian.h b/include/linux/mtd/cfi_endian.h index 25724f7d3867..d802f7736be3 100644 --- a/include/linux/mtd/cfi_endian.h +++ b/include/linux/mtd/cfi_endian.h | |||
| @@ -1,8 +1,3 @@ | |||
| 1 | /* | ||
| 2 | * $Id: cfi_endian.h,v 1.11 2002/01/30 23:20:48 awozniak Exp $ | ||
| 3 | * | ||
| 4 | */ | ||
| 5 | |||
| 6 | #include <asm/byteorder.h> | 1 | #include <asm/byteorder.h> |
| 7 | 2 | ||
| 8 | #ifndef CONFIG_MTD_CFI_ADV_OPTIONS | 3 | #ifndef CONFIG_MTD_CFI_ADV_OPTIONS |
diff --git a/include/linux/mtd/concat.h b/include/linux/mtd/concat.h index ed8dc6755219..c02f3d264ecf 100644 --- a/include/linux/mtd/concat.h +++ b/include/linux/mtd/concat.h | |||
| @@ -4,8 +4,6 @@ | |||
| 4 | * (C) 2002 Robert Kaiser <rkaiser@sysgo.de> | 4 | * (C) 2002 Robert Kaiser <rkaiser@sysgo.de> |
| 5 | * | 5 | * |
| 6 | * This code is GPL | 6 | * This code is GPL |
| 7 | * | ||
| 8 | * $Id: concat.h,v 1.1 2002/03/08 16:34:36 rkaiser Exp $ | ||
| 9 | */ | 7 | */ |
| 10 | 8 | ||
| 11 | #ifndef MTD_CONCAT_H | 9 | #ifndef MTD_CONCAT_H |
diff --git a/include/linux/mtd/doc2000.h b/include/linux/mtd/doc2000.h index 9addd073bf15..0a6d516ab71d 100644 --- a/include/linux/mtd/doc2000.h +++ b/include/linux/mtd/doc2000.h | |||
| @@ -6,8 +6,6 @@ | |||
| 6 | * Copyright (C) 2002-2003 Greg Ungerer <gerg@snapgear.com> | 6 | * Copyright (C) 2002-2003 Greg Ungerer <gerg@snapgear.com> |
| 7 | * Copyright (C) 2002-2003 SnapGear Inc | 7 | * Copyright (C) 2002-2003 SnapGear Inc |
| 8 | * | 8 | * |
| 9 | * $Id: doc2000.h,v 1.25 2005/11/07 11:14:54 gleixner Exp $ | ||
| 10 | * | ||
| 11 | * Released under GPL | 9 | * Released under GPL |
| 12 | */ | 10 | */ |
| 13 | 11 | ||
diff --git a/include/linux/mtd/flashchip.h b/include/linux/mtd/flashchip.h index 39e7d2a1be9a..08dd131301c1 100644 --- a/include/linux/mtd/flashchip.h +++ b/include/linux/mtd/flashchip.h | |||
| @@ -5,9 +5,6 @@ | |||
| 5 | * Contains information about the location and state of a given flash device | 5 | * Contains information about the location and state of a given flash device |
| 6 | * | 6 | * |
| 7 | * (C) 2000 Red Hat. GPLd. | 7 | * (C) 2000 Red Hat. GPLd. |
| 8 | * | ||
| 9 | * $Id: flashchip.h,v 1.18 2005/11/07 11:14:54 gleixner Exp $ | ||
| 10 | * | ||
| 11 | */ | 8 | */ |
| 12 | 9 | ||
| 13 | #ifndef __MTD_FLASHCHIP_H__ | 10 | #ifndef __MTD_FLASHCHIP_H__ |
diff --git a/include/linux/mtd/ftl.h b/include/linux/mtd/ftl.h index d99609113307..0be442f881dd 100644 --- a/include/linux/mtd/ftl.h +++ b/include/linux/mtd/ftl.h | |||
| @@ -1,6 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * $Id: ftl.h,v 1.7 2005/11/07 11:14:54 gleixner Exp $ | ||
| 3 | * | ||
| 4 | * Derived from (and probably identical to): | 2 | * Derived from (and probably identical to): |
| 5 | * ftl.h 1.7 1999/10/25 20:23:17 | 3 | * ftl.h 1.7 1999/10/25 20:23:17 |
| 6 | * | 4 | * |
diff --git a/include/linux/mtd/gen_probe.h b/include/linux/mtd/gen_probe.h index 256e7342ed1e..df362ddf2949 100644 --- a/include/linux/mtd/gen_probe.h +++ b/include/linux/mtd/gen_probe.h | |||
| @@ -1,7 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * (C) 2001, 2001 Red Hat, Inc. | 2 | * (C) 2001, 2001 Red Hat, Inc. |
| 3 | * GPL'd | 3 | * GPL'd |
| 4 | * $Id: gen_probe.h,v 1.4 2005/11/07 11:14:54 gleixner Exp $ | ||
| 5 | */ | 4 | */ |
| 6 | 5 | ||
| 7 | #ifndef __LINUX_MTD_GEN_PROBE_H__ | 6 | #ifndef __LINUX_MTD_GEN_PROBE_H__ |
diff --git a/include/linux/mtd/inftl.h b/include/linux/mtd/inftl.h index 85fd041d44ad..64ee53ce95a9 100644 --- a/include/linux/mtd/inftl.h +++ b/include/linux/mtd/inftl.h | |||
| @@ -2,8 +2,6 @@ | |||
| 2 | * inftl.h -- defines to support the Inverse NAND Flash Translation Layer | 2 | * inftl.h -- defines to support the Inverse NAND Flash Translation Layer |
| 3 | * | 3 | * |
| 4 | * (C) Copyright 2002, Greg Ungerer (gerg@snapgear.com) | 4 | * (C) Copyright 2002, Greg Ungerer (gerg@snapgear.com) |
| 5 | * | ||
| 6 | * $Id: inftl.h,v 1.7 2005/06/13 13:08:45 sean Exp $ | ||
| 7 | */ | 5 | */ |
| 8 | 6 | ||
| 9 | #ifndef __MTD_INFTL_H__ | 7 | #ifndef __MTD_INFTL_H__ |
| @@ -52,8 +50,6 @@ struct INFTLrecord { | |||
| 52 | int INFTL_mount(struct INFTLrecord *s); | 50 | int INFTL_mount(struct INFTLrecord *s); |
| 53 | int INFTL_formatblock(struct INFTLrecord *s, int block); | 51 | int INFTL_formatblock(struct INFTLrecord *s, int block); |
| 54 | 52 | ||
| 55 | extern char inftlmountrev[]; | ||
| 56 | |||
| 57 | void INFTL_dumptables(struct INFTLrecord *s); | 53 | void INFTL_dumptables(struct INFTLrecord *s); |
| 58 | void INFTL_dumpVUchains(struct INFTLrecord *s); | 54 | void INFTL_dumpVUchains(struct INFTLrecord *s); |
| 59 | 55 | ||
diff --git a/include/linux/mtd/map.h b/include/linux/mtd/map.h index a9fae032ba81..aa30244492c6 100644 --- a/include/linux/mtd/map.h +++ b/include/linux/mtd/map.h | |||
| @@ -1,6 +1,5 @@ | |||
| 1 | 1 | ||
| 2 | /* Overhauled routines for dealing with different mmap regions of flash */ | 2 | /* Overhauled routines for dealing with different mmap regions of flash */ |
| 3 | /* $Id: map.h,v 1.54 2005/11/07 11:14:54 gleixner Exp $ */ | ||
| 4 | 3 | ||
| 5 | #ifndef __LINUX_MTD_MAP_H__ | 4 | #ifndef __LINUX_MTD_MAP_H__ |
| 6 | #define __LINUX_MTD_MAP_H__ | 5 | #define __LINUX_MTD_MAP_H__ |
| @@ -189,7 +188,7 @@ typedef union { | |||
| 189 | */ | 188 | */ |
| 190 | 189 | ||
| 191 | struct map_info { | 190 | struct map_info { |
| 192 | char *name; | 191 | const char *name; |
| 193 | unsigned long size; | 192 | unsigned long size; |
| 194 | resource_size_t phys; | 193 | resource_size_t phys; |
| 195 | #define NO_XIP (-1UL) | 194 | #define NO_XIP (-1UL) |
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h index 245f9098e171..922636548558 100644 --- a/include/linux/mtd/mtd.h +++ b/include/linux/mtd/mtd.h | |||
| @@ -1,6 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * $Id: mtd.h,v 1.61 2005/11/07 11:14:54 gleixner Exp $ | ||
| 3 | * | ||
| 4 | * Copyright (C) 1999-2003 David Woodhouse <dwmw2@infradead.org> et al. | 2 | * Copyright (C) 1999-2003 David Woodhouse <dwmw2@infradead.org> et al. |
| 5 | * | 3 | * |
| 6 | * Released under GPL | 4 | * Released under GPL |
| @@ -121,7 +119,7 @@ struct mtd_info { | |||
| 121 | u_int32_t oobavail; // Available OOB bytes per block | 119 | u_int32_t oobavail; // Available OOB bytes per block |
| 122 | 120 | ||
| 123 | // Kernel-only stuff starts here. | 121 | // Kernel-only stuff starts here. |
| 124 | char *name; | 122 | const char *name; |
| 125 | int index; | 123 | int index; |
| 126 | 124 | ||
| 127 | /* ecc layout structure pointer - read only ! */ | 125 | /* ecc layout structure pointer - read only ! */ |
| @@ -274,7 +272,11 @@ static inline void mtd_erase_callback(struct erase_info *instr) | |||
| 274 | printk(KERN_INFO args); \ | 272 | printk(KERN_INFO args); \ |
| 275 | } while(0) | 273 | } while(0) |
| 276 | #else /* CONFIG_MTD_DEBUG */ | 274 | #else /* CONFIG_MTD_DEBUG */ |
| 277 | #define DEBUG(n, args...) do { } while(0) | 275 | #define DEBUG(n, args...) \ |
| 276 | do { \ | ||
| 277 | if (0) \ | ||
| 278 | printk(KERN_INFO args); \ | ||
| 279 | } while(0) | ||
| 278 | 280 | ||
| 279 | #endif /* CONFIG_MTD_DEBUG */ | 281 | #endif /* CONFIG_MTD_DEBUG */ |
| 280 | 282 | ||
diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h index 53ea3dc8b0e8..81774e5facf4 100644 --- a/include/linux/mtd/nand.h +++ b/include/linux/mtd/nand.h | |||
| @@ -5,8 +5,6 @@ | |||
| 5 | * Steven J. Hill <sjhill@realitydiluted.com> | 5 | * Steven J. Hill <sjhill@realitydiluted.com> |
| 6 | * Thomas Gleixner <tglx@linutronix.de> | 6 | * Thomas Gleixner <tglx@linutronix.de> |
| 7 | * | 7 | * |
| 8 | * $Id: nand.h,v 1.74 2005/09/15 13:58:50 vwool Exp $ | ||
| 9 | * | ||
| 10 | * This program is free software; you can redistribute it and/or modify | 8 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License version 2 as | 9 | * it under the terms of the GNU General Public License version 2 as |
| 12 | * published by the Free Software Foundation. | 10 | * published by the Free Software Foundation. |
| @@ -179,6 +177,9 @@ typedef enum { | |||
| 179 | #define NAND_MUST_PAD(chip) (!(chip->options & NAND_NO_PADDING)) | 177 | #define NAND_MUST_PAD(chip) (!(chip->options & NAND_NO_PADDING)) |
| 180 | #define NAND_HAS_CACHEPROG(chip) ((chip->options & NAND_CACHEPRG)) | 178 | #define NAND_HAS_CACHEPROG(chip) ((chip->options & NAND_CACHEPRG)) |
| 181 | #define NAND_HAS_COPYBACK(chip) ((chip->options & NAND_COPYBACK)) | 179 | #define NAND_HAS_COPYBACK(chip) ((chip->options & NAND_COPYBACK)) |
| 180 | /* Large page NAND with SOFT_ECC should support subpage reads */ | ||
| 181 | #define NAND_SUBPAGE_READ(chip) ((chip->ecc.mode == NAND_ECC_SOFT) \ | ||
| 182 | && (chip->page_shift > 9)) | ||
| 182 | 183 | ||
| 183 | /* Mask to zero out the chip options, which come from the id table */ | 184 | /* Mask to zero out the chip options, which come from the id table */ |
| 184 | #define NAND_CHIPOPTIONS_MSK (0x0000ffff & ~NAND_NO_AUTOINCR) | 185 | #define NAND_CHIPOPTIONS_MSK (0x0000ffff & ~NAND_NO_AUTOINCR) |
| @@ -276,6 +277,10 @@ struct nand_ecc_ctrl { | |||
| 276 | int (*read_page)(struct mtd_info *mtd, | 277 | int (*read_page)(struct mtd_info *mtd, |
| 277 | struct nand_chip *chip, | 278 | struct nand_chip *chip, |
| 278 | uint8_t *buf); | 279 | uint8_t *buf); |
| 280 | int (*read_subpage)(struct mtd_info *mtd, | ||
| 281 | struct nand_chip *chip, | ||
| 282 | uint32_t offs, uint32_t len, | ||
| 283 | uint8_t *buf); | ||
| 279 | void (*write_page)(struct mtd_info *mtd, | 284 | void (*write_page)(struct mtd_info *mtd, |
| 280 | struct nand_chip *chip, | 285 | struct nand_chip *chip, |
| 281 | const uint8_t *buf); | 286 | const uint8_t *buf); |
diff --git a/include/linux/mtd/nand_ecc.h b/include/linux/mtd/nand_ecc.h index 12c5bc342ead..090da505425d 100644 --- a/include/linux/mtd/nand_ecc.h +++ b/include/linux/mtd/nand_ecc.h | |||
| @@ -3,8 +3,6 @@ | |||
| 3 | * | 3 | * |
| 4 | * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com) | 4 | * Copyright (C) 2000 Steven J. Hill (sjhill@realitydiluted.com) |
| 5 | * | 5 | * |
| 6 | * $Id: nand_ecc.h,v 1.4 2004/06/17 02:35:02 dbrown Exp $ | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as | 7 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
diff --git a/include/linux/mtd/nftl.h b/include/linux/mtd/nftl.h index 001eec50cac6..dcaf611ed748 100644 --- a/include/linux/mtd/nftl.h +++ b/include/linux/mtd/nftl.h | |||
| @@ -1,6 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * $Id: nftl.h,v 1.16 2004/06/30 14:49:00 dbrown Exp $ | ||
| 3 | * | ||
| 4 | * (C) 1999-2003 David Woodhouse <dwmw2@infradead.org> | 2 | * (C) 1999-2003 David Woodhouse <dwmw2@infradead.org> |
| 5 | */ | 3 | */ |
| 6 | 4 | ||
diff --git a/include/linux/mtd/partitions.h b/include/linux/mtd/partitions.h index 7c37d7e55abc..5014f7a9f5df 100644 --- a/include/linux/mtd/partitions.h +++ b/include/linux/mtd/partitions.h | |||
| @@ -4,8 +4,6 @@ | |||
| 4 | * (C) 2000 Nicolas Pitre <nico@cam.org> | 4 | * (C) 2000 Nicolas Pitre <nico@cam.org> |
| 5 | * | 5 | * |
| 6 | * This code is GPL | 6 | * This code is GPL |
| 7 | * | ||
| 8 | * $Id: partitions.h,v 1.17 2005/11/07 11:14:55 gleixner Exp $ | ||
| 9 | */ | 7 | */ |
| 10 | 8 | ||
| 11 | #ifndef MTD_PARTITIONS_H | 9 | #ifndef MTD_PARTITIONS_H |
diff --git a/include/linux/mtd/physmap.h b/include/linux/mtd/physmap.h index 0dc07d5f3354..c8e63a5ee72e 100644 --- a/include/linux/mtd/physmap.h +++ b/include/linux/mtd/physmap.h | |||
| @@ -2,8 +2,6 @@ | |||
| 2 | * For boards with physically mapped flash and using | 2 | * For boards with physically mapped flash and using |
| 3 | * drivers/mtd/maps/physmap.c mapping driver. | 3 | * drivers/mtd/maps/physmap.c mapping driver. |
| 4 | * | 4 | * |
| 5 | * $Id: physmap.h,v 1.4 2005/11/07 11:14:55 gleixner Exp $ | ||
| 6 | * | ||
| 7 | * Copyright (C) 2003 MontaVista Software Inc. | 5 | * Copyright (C) 2003 MontaVista Software Inc. |
| 8 | * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net | 6 | * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net |
| 9 | * | 7 | * |
diff --git a/include/linux/mtd/plat-ram.h b/include/linux/mtd/plat-ram.h index 0e37ad07bce2..e07890aff1cf 100644 --- a/include/linux/mtd/plat-ram.h +++ b/include/linux/mtd/plat-ram.h | |||
| @@ -6,8 +6,6 @@ | |||
| 6 | * | 6 | * |
| 7 | * Generic platform device based RAM map | 7 | * Generic platform device based RAM map |
| 8 | * | 8 | * |
| 9 | * $Id: plat-ram.h,v 1.2 2005/01/24 00:37:40 bjd Exp $ | ||
| 10 | * | ||
| 11 | * This program is free software; you can redistribute it and/or modify | 9 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License version 2 as | 10 | * it under the terms of the GNU General Public License version 2 as |
| 13 | * published by the Free Software Foundation. | 11 | * published by the Free Software Foundation. |
diff --git a/include/linux/mtd/pmc551.h b/include/linux/mtd/pmc551.h index 5cc070c24d88..27ad40aed19f 100644 --- a/include/linux/mtd/pmc551.h +++ b/include/linux/mtd/pmc551.h | |||
| @@ -1,6 +1,4 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * $Id: pmc551.h,v 1.6 2005/11/07 11:14:55 gleixner Exp $ | ||
| 3 | * | ||
| 4 | * PMC551 PCI Mezzanine Ram Device | 2 | * PMC551 PCI Mezzanine Ram Device |
| 5 | * | 3 | * |
| 6 | * Author: | 4 | * Author: |
| @@ -17,7 +15,7 @@ | |||
| 17 | 15 | ||
| 18 | #include <linux/mtd/mtd.h> | 16 | #include <linux/mtd/mtd.h> |
| 19 | 17 | ||
| 20 | #define PMC551_VERSION "$Id: pmc551.h,v 1.6 2005/11/07 11:14:55 gleixner Exp $\n"\ | 18 | #define PMC551_VERSION \ |
| 21 | "Ramix PMC551 PCI Mezzanine Ram Driver. (C) 1999,2000 Nortel Networks.\n" | 19 | "Ramix PMC551 PCI Mezzanine Ram Driver. (C) 1999,2000 Nortel Networks.\n" |
| 22 | 20 | ||
| 23 | /* | 21 | /* |
diff --git a/include/linux/mtd/ubi.h b/include/linux/mtd/ubi.h index f71201d0f3e7..6316fafe5c2a 100644 --- a/include/linux/mtd/ubi.h +++ b/include/linux/mtd/ubi.h | |||
| @@ -45,13 +45,13 @@ enum { | |||
| 45 | * @size: how many physical eraseblocks are reserved for this volume | 45 | * @size: how many physical eraseblocks are reserved for this volume |
| 46 | * @used_bytes: how many bytes of data this volume contains | 46 | * @used_bytes: how many bytes of data this volume contains |
| 47 | * @used_ebs: how many physical eraseblocks of this volume actually contain any | 47 | * @used_ebs: how many physical eraseblocks of this volume actually contain any |
| 48 | * data | 48 | * data |
| 49 | * @vol_type: volume type (%UBI_DYNAMIC_VOLUME or %UBI_STATIC_VOLUME) | 49 | * @vol_type: volume type (%UBI_DYNAMIC_VOLUME or %UBI_STATIC_VOLUME) |
| 50 | * @corrupted: non-zero if the volume is corrupted (static volumes only) | 50 | * @corrupted: non-zero if the volume is corrupted (static volumes only) |
| 51 | * @upd_marker: non-zero if the volume has update marker set | 51 | * @upd_marker: non-zero if the volume has update marker set |
| 52 | * @alignment: volume alignment | 52 | * @alignment: volume alignment |
| 53 | * @usable_leb_size: how many bytes are available in logical eraseblocks of | 53 | * @usable_leb_size: how many bytes are available in logical eraseblocks of |
| 54 | * this volume | 54 | * this volume |
| 55 | * @name_len: volume name length | 55 | * @name_len: volume name length |
| 56 | * @name: volume name | 56 | * @name: volume name |
| 57 | * @cdev: UBI volume character device major and minor numbers | 57 | * @cdev: UBI volume character device major and minor numbers |
| @@ -152,6 +152,7 @@ int ubi_leb_erase(struct ubi_volume_desc *desc, int lnum); | |||
| 152 | int ubi_leb_unmap(struct ubi_volume_desc *desc, int lnum); | 152 | int ubi_leb_unmap(struct ubi_volume_desc *desc, int lnum); |
| 153 | int ubi_leb_map(struct ubi_volume_desc *desc, int lnum, int dtype); | 153 | int ubi_leb_map(struct ubi_volume_desc *desc, int lnum, int dtype); |
| 154 | int ubi_is_mapped(struct ubi_volume_desc *desc, int lnum); | 154 | int ubi_is_mapped(struct ubi_volume_desc *desc, int lnum); |
| 155 | int ubi_sync(int ubi_num); | ||
| 155 | 156 | ||
| 156 | /* | 157 | /* |
| 157 | * This function is the same as the 'ubi_leb_read()' function, but it does not | 158 | * This function is the same as the 'ubi_leb_read()' function, but it does not |
diff --git a/include/linux/mtd/xip.h b/include/linux/mtd/xip.h index e9d40bdde48c..36efcba15ecd 100644 --- a/include/linux/mtd/xip.h +++ b/include/linux/mtd/xip.h | |||
| @@ -11,8 +11,6 @@ | |||
| 11 | * This program is free software; you can redistribute it and/or modify | 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License version 2 as | 12 | * it under the terms of the GNU General Public License version 2 as |
| 13 | * published by the Free Software Foundation. | 13 | * published by the Free Software Foundation. |
| 14 | * | ||
| 15 | * $Id: xip.h,v 1.5 2005/11/07 11:14:55 gleixner Exp $ | ||
| 16 | */ | 14 | */ |
| 17 | 15 | ||
| 18 | #ifndef __LINUX_MTD_XIP_H__ | 16 | #ifndef __LINUX_MTD_XIP_H__ |
diff --git a/include/linux/namei.h b/include/linux/namei.h index 24d88e98a626..68f8c3203c89 100644 --- a/include/linux/namei.h +++ b/include/linux/namei.h | |||
| @@ -47,27 +47,24 @@ enum {LAST_NORM, LAST_ROOT, LAST_DOT, LAST_DOTDOT, LAST_BIND}; | |||
| 47 | #define LOOKUP_DIRECTORY 2 | 47 | #define LOOKUP_DIRECTORY 2 |
| 48 | #define LOOKUP_CONTINUE 4 | 48 | #define LOOKUP_CONTINUE 4 |
| 49 | #define LOOKUP_PARENT 16 | 49 | #define LOOKUP_PARENT 16 |
| 50 | #define LOOKUP_NOALT 32 | ||
| 51 | #define LOOKUP_REVAL 64 | 50 | #define LOOKUP_REVAL 64 |
| 52 | /* | 51 | /* |
| 53 | * Intent data | 52 | * Intent data |
| 54 | */ | 53 | */ |
| 55 | #define LOOKUP_OPEN (0x0100) | 54 | #define LOOKUP_OPEN (0x0100) |
| 56 | #define LOOKUP_CREATE (0x0200) | 55 | #define LOOKUP_CREATE (0x0200) |
| 57 | #define LOOKUP_ACCESS (0x0400) | 56 | |
| 58 | #define LOOKUP_CHDIR (0x0800) | 57 | extern int user_path_at(int, const char __user *, unsigned, struct path *); |
| 59 | 58 | ||
| 60 | extern int __user_walk(const char __user *, unsigned, struct nameidata *); | 59 | #define user_path(name, path) user_path_at(AT_FDCWD, name, LOOKUP_FOLLOW, path) |
| 61 | extern int __user_walk_fd(int dfd, const char __user *, unsigned, struct nameidata *); | 60 | #define user_lpath(name, path) user_path_at(AT_FDCWD, name, 0, path) |
| 62 | #define user_path_walk(name,nd) \ | 61 | #define user_path_dir(name, path) \ |
| 63 | __user_walk_fd(AT_FDCWD, name, LOOKUP_FOLLOW, nd) | 62 | user_path_at(AT_FDCWD, name, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, path) |
| 64 | #define user_path_walk_link(name,nd) \ | 63 | |
| 65 | __user_walk_fd(AT_FDCWD, name, 0, nd) | ||
| 66 | extern int path_lookup(const char *, unsigned, struct nameidata *); | 64 | extern int path_lookup(const char *, unsigned, struct nameidata *); |
| 67 | extern int vfs_path_lookup(struct dentry *, struct vfsmount *, | 65 | extern int vfs_path_lookup(struct dentry *, struct vfsmount *, |
| 68 | const char *, unsigned int, struct nameidata *); | 66 | const char *, unsigned int, struct nameidata *); |
| 69 | 67 | ||
| 70 | extern int __user_path_lookup_open(const char __user *, unsigned lookup_flags, struct nameidata *nd, int open_flags); | ||
| 71 | extern int path_lookup_open(int dfd, const char *name, unsigned lookup_flags, struct nameidata *, int open_flags); | 68 | extern int path_lookup_open(int dfd, const char *name, unsigned lookup_flags, struct nameidata *, int open_flags); |
| 72 | extern struct file *lookup_instantiate_filp(struct nameidata *nd, struct dentry *dentry, | 69 | extern struct file *lookup_instantiate_filp(struct nameidata *nd, struct dentry *dentry, |
| 73 | int (*open)(struct inode *, struct file *)); | 70 | int (*open)(struct inode *, struct file *)); |
diff --git a/include/linux/net.h b/include/linux/net.h index 150a48c68d52..4a9a30f2d68f 100644 --- a/include/linux/net.h +++ b/include/linux/net.h | |||
| @@ -20,6 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | #include <linux/wait.h> | 21 | #include <linux/wait.h> |
| 22 | #include <linux/socket.h> | 22 | #include <linux/socket.h> |
| 23 | #include <linux/fcntl.h> /* For O_CLOEXEC and O_NONBLOCK */ | ||
| 23 | #include <asm/socket.h> | 24 | #include <asm/socket.h> |
| 24 | 25 | ||
| 25 | struct poll_table_struct; | 26 | struct poll_table_struct; |
| @@ -46,6 +47,7 @@ struct net; | |||
| 46 | #define SYS_GETSOCKOPT 15 /* sys_getsockopt(2) */ | 47 | #define SYS_GETSOCKOPT 15 /* sys_getsockopt(2) */ |
| 47 | #define SYS_SENDMSG 16 /* sys_sendmsg(2) */ | 48 | #define SYS_SENDMSG 16 /* sys_sendmsg(2) */ |
| 48 | #define SYS_RECVMSG 17 /* sys_recvmsg(2) */ | 49 | #define SYS_RECVMSG 17 /* sys_recvmsg(2) */ |
| 50 | #define SYS_PACCEPT 18 /* sys_paccept(2) */ | ||
| 49 | 51 | ||
| 50 | typedef enum { | 52 | typedef enum { |
| 51 | SS_FREE = 0, /* not allocated */ | 53 | SS_FREE = 0, /* not allocated */ |
| @@ -94,6 +96,15 @@ enum sock_type { | |||
| 94 | }; | 96 | }; |
| 95 | 97 | ||
| 96 | #define SOCK_MAX (SOCK_PACKET + 1) | 98 | #define SOCK_MAX (SOCK_PACKET + 1) |
| 99 | /* Mask which covers at least up to SOCK_MASK-1. The | ||
| 100 | * remaining bits are used as flags. */ | ||
| 101 | #define SOCK_TYPE_MASK 0xf | ||
| 102 | |||
| 103 | /* Flags for socket, socketpair, paccept */ | ||
| 104 | #define SOCK_CLOEXEC O_CLOEXEC | ||
| 105 | #ifndef SOCK_NONBLOCK | ||
| 106 | #define SOCK_NONBLOCK O_NONBLOCK | ||
| 107 | #endif | ||
| 97 | 108 | ||
| 98 | #endif /* ARCH_HAS_SOCKET_TYPES */ | 109 | #endif /* ARCH_HAS_SOCKET_TYPES */ |
| 99 | 110 | ||
| @@ -208,10 +219,12 @@ extern int sock_sendmsg(struct socket *sock, struct msghdr *msg, | |||
| 208 | size_t len); | 219 | size_t len); |
| 209 | extern int sock_recvmsg(struct socket *sock, struct msghdr *msg, | 220 | extern int sock_recvmsg(struct socket *sock, struct msghdr *msg, |
| 210 | size_t size, int flags); | 221 | size_t size, int flags); |
| 211 | extern int sock_map_fd(struct socket *sock); | 222 | extern int sock_map_fd(struct socket *sock, int flags); |
| 212 | extern struct socket *sockfd_lookup(int fd, int *err); | 223 | extern struct socket *sockfd_lookup(int fd, int *err); |
| 213 | #define sockfd_put(sock) fput(sock->file) | 224 | #define sockfd_put(sock) fput(sock->file) |
| 214 | extern int net_ratelimit(void); | 225 | extern int net_ratelimit(void); |
| 226 | extern long do_accept(int fd, struct sockaddr __user *upeer_sockaddr, | ||
| 227 | int __user *upeer_addrlen, int flags); | ||
| 215 | 228 | ||
| 216 | #define net_random() random32() | 229 | #define net_random() random32() |
| 217 | #define net_srandom(seed) srandom32((__force u32)seed) | 230 | #define net_srandom(seed) srandom32((__force u32)seed) |
| @@ -338,8 +351,7 @@ static const struct proto_ops name##_ops = { \ | |||
| 338 | 351 | ||
| 339 | #ifdef CONFIG_SYSCTL | 352 | #ifdef CONFIG_SYSCTL |
| 340 | #include <linux/sysctl.h> | 353 | #include <linux/sysctl.h> |
| 341 | extern int net_msg_cost; | 354 | extern struct ratelimit_state net_ratelimit_state; |
| 342 | extern int net_msg_burst; | ||
| 343 | #endif | 355 | #endif |
| 344 | 356 | ||
| 345 | #endif /* __KERNEL__ */ | 357 | #endif /* __KERNEL__ */ |
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 812bcd8b4363..488c56e649b5 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
| @@ -61,9 +61,7 @@ struct wireless_dev; | |||
| 61 | #define NET_XMIT_DROP 1 /* skb dropped */ | 61 | #define NET_XMIT_DROP 1 /* skb dropped */ |
| 62 | #define NET_XMIT_CN 2 /* congestion notification */ | 62 | #define NET_XMIT_CN 2 /* congestion notification */ |
| 63 | #define NET_XMIT_POLICED 3 /* skb is shot by police */ | 63 | #define NET_XMIT_POLICED 3 /* skb is shot by police */ |
| 64 | #define NET_XMIT_BYPASS 4 /* packet does not leave via dequeue; | 64 | #define NET_XMIT_MASK 0xFFFF /* qdisc flags in net/sch_generic.h */ |
| 65 | (TC use only - dev_queue_xmit | ||
| 66 | returns this as NET_XMIT_SUCCESS) */ | ||
| 67 | 65 | ||
| 68 | /* Backlog congestion levels */ | 66 | /* Backlog congestion levels */ |
| 69 | #define NET_RX_SUCCESS 0 /* keep 'em coming, baby */ | 67 | #define NET_RX_SUCCESS 0 /* keep 'em coming, baby */ |
| @@ -440,6 +438,7 @@ static inline void napi_synchronize(const struct napi_struct *n) | |||
| 440 | enum netdev_queue_state_t | 438 | enum netdev_queue_state_t |
| 441 | { | 439 | { |
| 442 | __QUEUE_STATE_XOFF, | 440 | __QUEUE_STATE_XOFF, |
| 441 | __QUEUE_STATE_FROZEN, | ||
| 443 | }; | 442 | }; |
| 444 | 443 | ||
| 445 | struct netdev_queue { | 444 | struct netdev_queue { |
| @@ -636,7 +635,7 @@ struct net_device | |||
| 636 | unsigned int real_num_tx_queues; | 635 | unsigned int real_num_tx_queues; |
| 637 | 636 | ||
| 638 | unsigned long tx_queue_len; /* Max frames per queue allowed */ | 637 | unsigned long tx_queue_len; /* Max frames per queue allowed */ |
| 639 | 638 | spinlock_t tx_global_lock; | |
| 640 | /* | 639 | /* |
| 641 | * One part is mostly used on xmit path (device) | 640 | * One part is mostly used on xmit path (device) |
| 642 | */ | 641 | */ |
| @@ -996,17 +995,17 @@ static inline void netif_tx_schedule_all(struct net_device *dev) | |||
| 996 | netif_schedule_queue(netdev_get_tx_queue(dev, i)); | 995 | netif_schedule_queue(netdev_get_tx_queue(dev, i)); |
| 997 | } | 996 | } |
| 998 | 997 | ||
| 998 | static inline void netif_tx_start_queue(struct netdev_queue *dev_queue) | ||
| 999 | { | ||
| 1000 | clear_bit(__QUEUE_STATE_XOFF, &dev_queue->state); | ||
| 1001 | } | ||
| 1002 | |||
| 999 | /** | 1003 | /** |
| 1000 | * netif_start_queue - allow transmit | 1004 | * netif_start_queue - allow transmit |
| 1001 | * @dev: network device | 1005 | * @dev: network device |
| 1002 | * | 1006 | * |
| 1003 | * Allow upper layers to call the device hard_start_xmit routine. | 1007 | * Allow upper layers to call the device hard_start_xmit routine. |
| 1004 | */ | 1008 | */ |
| 1005 | static inline void netif_tx_start_queue(struct netdev_queue *dev_queue) | ||
| 1006 | { | ||
| 1007 | clear_bit(__QUEUE_STATE_XOFF, &dev_queue->state); | ||
| 1008 | } | ||
| 1009 | |||
| 1010 | static inline void netif_start_queue(struct net_device *dev) | 1009 | static inline void netif_start_queue(struct net_device *dev) |
| 1011 | { | 1010 | { |
| 1012 | netif_tx_start_queue(netdev_get_tx_queue(dev, 0)); | 1011 | netif_tx_start_queue(netdev_get_tx_queue(dev, 0)); |
| @@ -1022,13 +1021,6 @@ static inline void netif_tx_start_all_queues(struct net_device *dev) | |||
| 1022 | } | 1021 | } |
| 1023 | } | 1022 | } |
| 1024 | 1023 | ||
| 1025 | /** | ||
| 1026 | * netif_wake_queue - restart transmit | ||
| 1027 | * @dev: network device | ||
| 1028 | * | ||
| 1029 | * Allow upper layers to call the device hard_start_xmit routine. | ||
| 1030 | * Used for flow control when transmit resources are available. | ||
| 1031 | */ | ||
| 1032 | static inline void netif_tx_wake_queue(struct netdev_queue *dev_queue) | 1024 | static inline void netif_tx_wake_queue(struct netdev_queue *dev_queue) |
| 1033 | { | 1025 | { |
| 1034 | #ifdef CONFIG_NETPOLL_TRAP | 1026 | #ifdef CONFIG_NETPOLL_TRAP |
| @@ -1041,6 +1033,13 @@ static inline void netif_tx_wake_queue(struct netdev_queue *dev_queue) | |||
| 1041 | __netif_schedule(dev_queue->qdisc); | 1033 | __netif_schedule(dev_queue->qdisc); |
| 1042 | } | 1034 | } |
| 1043 | 1035 | ||
| 1036 | /** | ||
| 1037 | * netif_wake_queue - restart transmit | ||
| 1038 | * @dev: network device | ||
| 1039 | * | ||
| 1040 | * Allow upper layers to call the device hard_start_xmit routine. | ||
| 1041 | * Used for flow control when transmit resources are available. | ||
| 1042 | */ | ||
| 1044 | static inline void netif_wake_queue(struct net_device *dev) | 1043 | static inline void netif_wake_queue(struct net_device *dev) |
| 1045 | { | 1044 | { |
| 1046 | netif_tx_wake_queue(netdev_get_tx_queue(dev, 0)); | 1045 | netif_tx_wake_queue(netdev_get_tx_queue(dev, 0)); |
| @@ -1056,6 +1055,11 @@ static inline void netif_tx_wake_all_queues(struct net_device *dev) | |||
| 1056 | } | 1055 | } |
| 1057 | } | 1056 | } |
| 1058 | 1057 | ||
| 1058 | static inline void netif_tx_stop_queue(struct netdev_queue *dev_queue) | ||
| 1059 | { | ||
| 1060 | set_bit(__QUEUE_STATE_XOFF, &dev_queue->state); | ||
| 1061 | } | ||
| 1062 | |||
| 1059 | /** | 1063 | /** |
| 1060 | * netif_stop_queue - stop transmitted packets | 1064 | * netif_stop_queue - stop transmitted packets |
| 1061 | * @dev: network device | 1065 | * @dev: network device |
| @@ -1063,11 +1067,6 @@ static inline void netif_tx_wake_all_queues(struct net_device *dev) | |||
| 1063 | * Stop upper layers calling the device hard_start_xmit routine. | 1067 | * Stop upper layers calling the device hard_start_xmit routine. |
| 1064 | * Used for flow control when transmit resources are unavailable. | 1068 | * Used for flow control when transmit resources are unavailable. |
| 1065 | */ | 1069 | */ |
| 1066 | static inline void netif_tx_stop_queue(struct netdev_queue *dev_queue) | ||
| 1067 | { | ||
| 1068 | set_bit(__QUEUE_STATE_XOFF, &dev_queue->state); | ||
| 1069 | } | ||
| 1070 | |||
| 1071 | static inline void netif_stop_queue(struct net_device *dev) | 1070 | static inline void netif_stop_queue(struct net_device *dev) |
| 1072 | { | 1071 | { |
| 1073 | netif_tx_stop_queue(netdev_get_tx_queue(dev, 0)); | 1072 | netif_tx_stop_queue(netdev_get_tx_queue(dev, 0)); |
| @@ -1083,20 +1082,25 @@ static inline void netif_tx_stop_all_queues(struct net_device *dev) | |||
| 1083 | } | 1082 | } |
| 1084 | } | 1083 | } |
| 1085 | 1084 | ||
| 1085 | static inline int netif_tx_queue_stopped(const struct netdev_queue *dev_queue) | ||
| 1086 | { | ||
| 1087 | return test_bit(__QUEUE_STATE_XOFF, &dev_queue->state); | ||
| 1088 | } | ||
| 1089 | |||
| 1086 | /** | 1090 | /** |
| 1087 | * netif_queue_stopped - test if transmit queue is flowblocked | 1091 | * netif_queue_stopped - test if transmit queue is flowblocked |
| 1088 | * @dev: network device | 1092 | * @dev: network device |
| 1089 | * | 1093 | * |
| 1090 | * Test if transmit queue on device is currently unable to send. | 1094 | * Test if transmit queue on device is currently unable to send. |
| 1091 | */ | 1095 | */ |
| 1092 | static inline int netif_tx_queue_stopped(const struct netdev_queue *dev_queue) | 1096 | static inline int netif_queue_stopped(const struct net_device *dev) |
| 1093 | { | 1097 | { |
| 1094 | return test_bit(__QUEUE_STATE_XOFF, &dev_queue->state); | 1098 | return netif_tx_queue_stopped(netdev_get_tx_queue(dev, 0)); |
| 1095 | } | 1099 | } |
| 1096 | 1100 | ||
| 1097 | static inline int netif_queue_stopped(const struct net_device *dev) | 1101 | static inline int netif_tx_queue_frozen(const struct netdev_queue *dev_queue) |
| 1098 | { | 1102 | { |
| 1099 | return netif_tx_queue_stopped(netdev_get_tx_queue(dev, 0)); | 1103 | return test_bit(__QUEUE_STATE_FROZEN, &dev_queue->state); |
| 1100 | } | 1104 | } |
| 1101 | 1105 | ||
| 1102 | /** | 1106 | /** |
| @@ -1463,13 +1467,6 @@ static inline void netif_rx_complete(struct net_device *dev, | |||
| 1463 | local_irq_restore(flags); | 1467 | local_irq_restore(flags); |
| 1464 | } | 1468 | } |
| 1465 | 1469 | ||
| 1466 | /** | ||
| 1467 | * netif_tx_lock - grab network device transmit lock | ||
| 1468 | * @dev: network device | ||
| 1469 | * @cpu: cpu number of lock owner | ||
| 1470 | * | ||
| 1471 | * Get network device transmit lock | ||
| 1472 | */ | ||
| 1473 | static inline void __netif_tx_lock(struct netdev_queue *txq, int cpu) | 1470 | static inline void __netif_tx_lock(struct netdev_queue *txq, int cpu) |
| 1474 | { | 1471 | { |
| 1475 | spin_lock(&txq->_xmit_lock); | 1472 | spin_lock(&txq->_xmit_lock); |
| @@ -1482,23 +1479,6 @@ static inline void __netif_tx_lock_bh(struct netdev_queue *txq) | |||
| 1482 | txq->xmit_lock_owner = smp_processor_id(); | 1479 | txq->xmit_lock_owner = smp_processor_id(); |
| 1483 | } | 1480 | } |
| 1484 | 1481 | ||
| 1485 | static inline void netif_tx_lock(struct net_device *dev) | ||
| 1486 | { | ||
| 1487 | int cpu = smp_processor_id(); | ||
| 1488 | unsigned int i; | ||
| 1489 | |||
| 1490 | for (i = 0; i < dev->num_tx_queues; i++) { | ||
| 1491 | struct netdev_queue *txq = netdev_get_tx_queue(dev, i); | ||
| 1492 | __netif_tx_lock(txq, cpu); | ||
| 1493 | } | ||
| 1494 | } | ||
| 1495 | |||
| 1496 | static inline void netif_tx_lock_bh(struct net_device *dev) | ||
| 1497 | { | ||
| 1498 | local_bh_disable(); | ||
| 1499 | netif_tx_lock(dev); | ||
| 1500 | } | ||
| 1501 | |||
| 1502 | static inline int __netif_tx_trylock(struct netdev_queue *txq) | 1482 | static inline int __netif_tx_trylock(struct netdev_queue *txq) |
| 1503 | { | 1483 | { |
| 1504 | int ok = spin_trylock(&txq->_xmit_lock); | 1484 | int ok = spin_trylock(&txq->_xmit_lock); |
| @@ -1507,11 +1487,6 @@ static inline int __netif_tx_trylock(struct netdev_queue *txq) | |||
| 1507 | return ok; | 1487 | return ok; |
| 1508 | } | 1488 | } |
| 1509 | 1489 | ||
| 1510 | static inline int netif_tx_trylock(struct net_device *dev) | ||
| 1511 | { | ||
| 1512 | return __netif_tx_trylock(netdev_get_tx_queue(dev, 0)); | ||
| 1513 | } | ||
| 1514 | |||
| 1515 | static inline void __netif_tx_unlock(struct netdev_queue *txq) | 1490 | static inline void __netif_tx_unlock(struct netdev_queue *txq) |
| 1516 | { | 1491 | { |
| 1517 | txq->xmit_lock_owner = -1; | 1492 | txq->xmit_lock_owner = -1; |
| @@ -1524,15 +1499,57 @@ static inline void __netif_tx_unlock_bh(struct netdev_queue *txq) | |||
| 1524 | spin_unlock_bh(&txq->_xmit_lock); | 1499 | spin_unlock_bh(&txq->_xmit_lock); |
| 1525 | } | 1500 | } |
| 1526 | 1501 | ||
| 1527 | static inline void netif_tx_unlock(struct net_device *dev) | 1502 | /** |
| 1503 | * netif_tx_lock - grab network device transmit lock | ||
| 1504 | * @dev: network device | ||
| 1505 | * @cpu: cpu number of lock owner | ||
| 1506 | * | ||
| 1507 | * Get network device transmit lock | ||
| 1508 | */ | ||
| 1509 | static inline void netif_tx_lock(struct net_device *dev) | ||
| 1528 | { | 1510 | { |
| 1529 | unsigned int i; | 1511 | unsigned int i; |
| 1512 | int cpu; | ||
| 1530 | 1513 | ||
| 1514 | spin_lock(&dev->tx_global_lock); | ||
| 1515 | cpu = smp_processor_id(); | ||
| 1531 | for (i = 0; i < dev->num_tx_queues; i++) { | 1516 | for (i = 0; i < dev->num_tx_queues; i++) { |
| 1532 | struct netdev_queue *txq = netdev_get_tx_queue(dev, i); | 1517 | struct netdev_queue *txq = netdev_get_tx_queue(dev, i); |
| 1518 | |||
| 1519 | /* We are the only thread of execution doing a | ||
| 1520 | * freeze, but we have to grab the _xmit_lock in | ||
| 1521 | * order to synchronize with threads which are in | ||
| 1522 | * the ->hard_start_xmit() handler and already | ||
| 1523 | * checked the frozen bit. | ||
| 1524 | */ | ||
| 1525 | __netif_tx_lock(txq, cpu); | ||
| 1526 | set_bit(__QUEUE_STATE_FROZEN, &txq->state); | ||
| 1533 | __netif_tx_unlock(txq); | 1527 | __netif_tx_unlock(txq); |
| 1534 | } | 1528 | } |
| 1529 | } | ||
| 1530 | |||
| 1531 | static inline void netif_tx_lock_bh(struct net_device *dev) | ||
| 1532 | { | ||
| 1533 | local_bh_disable(); | ||
| 1534 | netif_tx_lock(dev); | ||
| 1535 | } | ||
| 1536 | |||
| 1537 | static inline void netif_tx_unlock(struct net_device *dev) | ||
| 1538 | { | ||
| 1539 | unsigned int i; | ||
| 1535 | 1540 | ||
| 1541 | for (i = 0; i < dev->num_tx_queues; i++) { | ||
| 1542 | struct netdev_queue *txq = netdev_get_tx_queue(dev, i); | ||
| 1543 | |||
| 1544 | /* No need to grab the _xmit_lock here. If the | ||
| 1545 | * queue is not stopped for another reason, we | ||
| 1546 | * force a schedule. | ||
| 1547 | */ | ||
| 1548 | clear_bit(__QUEUE_STATE_FROZEN, &txq->state); | ||
| 1549 | if (!test_bit(__QUEUE_STATE_XOFF, &txq->state)) | ||
| 1550 | __netif_schedule(txq->qdisc); | ||
| 1551 | } | ||
| 1552 | spin_unlock(&dev->tx_global_lock); | ||
| 1536 | } | 1553 | } |
| 1537 | 1554 | ||
| 1538 | static inline void netif_tx_unlock_bh(struct net_device *dev) | 1555 | static inline void netif_tx_unlock_bh(struct net_device *dev) |
| @@ -1556,13 +1573,18 @@ static inline void netif_tx_unlock_bh(struct net_device *dev) | |||
| 1556 | static inline void netif_tx_disable(struct net_device *dev) | 1573 | static inline void netif_tx_disable(struct net_device *dev) |
| 1557 | { | 1574 | { |
| 1558 | unsigned int i; | 1575 | unsigned int i; |
| 1576 | int cpu; | ||
| 1559 | 1577 | ||
| 1560 | netif_tx_lock_bh(dev); | 1578 | local_bh_disable(); |
| 1579 | cpu = smp_processor_id(); | ||
| 1561 | for (i = 0; i < dev->num_tx_queues; i++) { | 1580 | for (i = 0; i < dev->num_tx_queues; i++) { |
| 1562 | struct netdev_queue *txq = netdev_get_tx_queue(dev, i); | 1581 | struct netdev_queue *txq = netdev_get_tx_queue(dev, i); |
| 1582 | |||
| 1583 | __netif_tx_lock(txq, cpu); | ||
| 1563 | netif_tx_stop_queue(txq); | 1584 | netif_tx_stop_queue(txq); |
| 1585 | __netif_tx_unlock(txq); | ||
| 1564 | } | 1586 | } |
| 1565 | netif_tx_unlock_bh(dev); | 1587 | local_bh_enable(); |
| 1566 | } | 1588 | } |
| 1567 | 1589 | ||
| 1568 | static inline void netif_addr_lock(struct net_device *dev) | 1590 | static inline void netif_addr_lock(struct net_device *dev) |
| @@ -1645,6 +1667,8 @@ extern void dev_seq_stop(struct seq_file *seq, void *v); | |||
| 1645 | extern int netdev_class_create_file(struct class_attribute *class_attr); | 1667 | extern int netdev_class_create_file(struct class_attribute *class_attr); |
| 1646 | extern void netdev_class_remove_file(struct class_attribute *class_attr); | 1668 | extern void netdev_class_remove_file(struct class_attribute *class_attr); |
| 1647 | 1669 | ||
| 1670 | extern char *netdev_drivername(struct net_device *dev, char *buffer, int len); | ||
| 1671 | |||
| 1648 | extern void linkwatch_run_queue(void); | 1672 | extern void linkwatch_run_queue(void); |
| 1649 | 1673 | ||
| 1650 | extern int netdev_compute_features(unsigned long all, unsigned long one); | 1674 | extern int netdev_compute_features(unsigned long all, unsigned long one); |
diff --git a/include/linux/netfilter/nf_conntrack_tcp.h b/include/linux/netfilter/nf_conntrack_tcp.h index 22ce29995f13..a049df4f2236 100644 --- a/include/linux/netfilter/nf_conntrack_tcp.h +++ b/include/linux/netfilter/nf_conntrack_tcp.h | |||
| @@ -30,6 +30,9 @@ enum tcp_conntrack { | |||
| 30 | /* Be liberal in window checking */ | 30 | /* Be liberal in window checking */ |
| 31 | #define IP_CT_TCP_FLAG_BE_LIBERAL 0x08 | 31 | #define IP_CT_TCP_FLAG_BE_LIBERAL 0x08 |
| 32 | 32 | ||
| 33 | /* Has unacknowledged data */ | ||
| 34 | #define IP_CT_TCP_FLAG_DATA_UNACKNOWLEDGED 0x10 | ||
| 35 | |||
| 33 | struct nf_ct_tcp_flags { | 36 | struct nf_ct_tcp_flags { |
| 34 | u_int8_t flags; | 37 | u_int8_t flags; |
| 35 | u_int8_t mask; | 38 | u_int8_t mask; |
diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h index 29d261918734..78a5922a2f11 100644 --- a/include/linux/nfs_fs.h +++ b/include/linux/nfs_fs.h | |||
| @@ -42,7 +42,6 @@ | |||
| 42 | #include <linux/in.h> | 42 | #include <linux/in.h> |
| 43 | #include <linux/kref.h> | 43 | #include <linux/kref.h> |
| 44 | #include <linux/mm.h> | 44 | #include <linux/mm.h> |
| 45 | #include <linux/namei.h> | ||
| 46 | #include <linux/pagemap.h> | 45 | #include <linux/pagemap.h> |
| 47 | #include <linux/rbtree.h> | 46 | #include <linux/rbtree.h> |
| 48 | #include <linux/rwsem.h> | 47 | #include <linux/rwsem.h> |
| @@ -332,7 +331,7 @@ extern int nfs_refresh_inode(struct inode *, struct nfs_fattr *); | |||
| 332 | extern int nfs_post_op_update_inode(struct inode *inode, struct nfs_fattr *fattr); | 331 | extern int nfs_post_op_update_inode(struct inode *inode, struct nfs_fattr *fattr); |
| 333 | extern int nfs_post_op_update_inode_force_wcc(struct inode *inode, struct nfs_fattr *fattr); | 332 | extern int nfs_post_op_update_inode_force_wcc(struct inode *inode, struct nfs_fattr *fattr); |
| 334 | extern int nfs_getattr(struct vfsmount *, struct dentry *, struct kstat *); | 333 | extern int nfs_getattr(struct vfsmount *, struct dentry *, struct kstat *); |
| 335 | extern int nfs_permission(struct inode *, int, struct nameidata *); | 334 | extern int nfs_permission(struct inode *, int); |
| 336 | extern int nfs_open(struct inode *, struct file *); | 335 | extern int nfs_open(struct inode *, struct file *); |
| 337 | extern int nfs_release(struct inode *, struct file *); | 336 | extern int nfs_release(struct inode *, struct file *); |
| 338 | extern int nfs_attribute_timeout(struct inode *inode); | 337 | extern int nfs_attribute_timeout(struct inode *inode); |
diff --git a/include/linux/nfsd/nfsd.h b/include/linux/nfsd/nfsd.h index a2861d95ecc3..108f47e5fd95 100644 --- a/include/linux/nfsd/nfsd.h +++ b/include/linux/nfsd/nfsd.h | |||
| @@ -12,7 +12,6 @@ | |||
| 12 | 12 | ||
| 13 | #include <linux/types.h> | 13 | #include <linux/types.h> |
| 14 | #include <linux/unistd.h> | 14 | #include <linux/unistd.h> |
| 15 | #include <linux/dirent.h> | ||
| 16 | #include <linux/fs.h> | 15 | #include <linux/fs.h> |
| 17 | #include <linux/posix_acl.h> | 16 | #include <linux/posix_acl.h> |
| 18 | #include <linux/mount.h> | 17 | #include <linux/mount.h> |
diff --git a/include/linux/notifier.h b/include/linux/notifier.h index bd3d72ddf333..da2698b0fdd1 100644 --- a/include/linux/notifier.h +++ b/include/linux/notifier.h | |||
| @@ -214,6 +214,8 @@ static inline int notifier_to_errno(int ret) | |||
| 214 | #define CPU_DEAD 0x0007 /* CPU (unsigned)v dead */ | 214 | #define CPU_DEAD 0x0007 /* CPU (unsigned)v dead */ |
| 215 | #define CPU_DYING 0x0008 /* CPU (unsigned)v not running any task, | 215 | #define CPU_DYING 0x0008 /* CPU (unsigned)v not running any task, |
| 216 | * not handling interrupts, soon dead */ | 216 | * not handling interrupts, soon dead */ |
| 217 | #define CPU_POST_DEAD 0x0009 /* CPU (unsigned)v dead, cpu_hotplug | ||
| 218 | * lock is dropped */ | ||
| 217 | 219 | ||
| 218 | /* Used for CPU hotplug events occuring while tasks are frozen due to a suspend | 220 | /* Used for CPU hotplug events occuring while tasks are frozen due to a suspend |
| 219 | * operation in progress | 221 | * operation in progress |
diff --git a/include/linux/nsproxy.h b/include/linux/nsproxy.h index 0e66b57631fc..c8a768e59640 100644 --- a/include/linux/nsproxy.h +++ b/include/linux/nsproxy.h | |||
| @@ -82,9 +82,12 @@ static inline void get_nsproxy(struct nsproxy *ns) | |||
| 82 | } | 82 | } |
| 83 | 83 | ||
| 84 | #ifdef CONFIG_CGROUP_NS | 84 | #ifdef CONFIG_CGROUP_NS |
| 85 | int ns_cgroup_clone(struct task_struct *tsk); | 85 | int ns_cgroup_clone(struct task_struct *tsk, struct pid *pid); |
| 86 | #else | 86 | #else |
| 87 | static inline int ns_cgroup_clone(struct task_struct *tsk) { return 0; } | 87 | static inline int ns_cgroup_clone(struct task_struct *tsk, struct pid *pid) |
| 88 | { | ||
| 89 | return 0; | ||
| 90 | } | ||
| 88 | #endif | 91 | #endif |
| 89 | 92 | ||
| 90 | #endif | 93 | #endif |
diff --git a/include/linux/of.h b/include/linux/of.h index 59a61bdc98b6..79886ade070f 100644 --- a/include/linux/of.h +++ b/include/linux/of.h | |||
| @@ -70,5 +70,6 @@ extern int of_n_addr_cells(struct device_node *np); | |||
| 70 | extern int of_n_size_cells(struct device_node *np); | 70 | extern int of_n_size_cells(struct device_node *np); |
| 71 | extern const struct of_device_id *of_match_node( | 71 | extern const struct of_device_id *of_match_node( |
| 72 | const struct of_device_id *matches, const struct device_node *node); | 72 | const struct of_device_id *matches, const struct device_node *node); |
| 73 | extern int of_modalias_node(struct device_node *node, char *modalias, int len); | ||
| 73 | 74 | ||
| 74 | #endif /* _LINUX_OF_H */ | 75 | #endif /* _LINUX_OF_H */ |
diff --git a/include/linux/of_gpio.h b/include/linux/of_gpio.h index 2ee97e9877a7..67db101d0eb8 100644 --- a/include/linux/of_gpio.h +++ b/include/linux/of_gpio.h | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | #define __LINUX_OF_GPIO_H | 15 | #define __LINUX_OF_GPIO_H |
| 16 | 16 | ||
| 17 | #include <linux/errno.h> | 17 | #include <linux/errno.h> |
| 18 | #include <asm/gpio.h> | 18 | #include <linux/gpio.h> |
| 19 | 19 | ||
| 20 | #ifdef CONFIG_OF_GPIO | 20 | #ifdef CONFIG_OF_GPIO |
| 21 | 21 | ||
diff --git a/include/linux/of_spi.h b/include/linux/of_spi.h new file mode 100644 index 000000000000..5f71ee8c0868 --- /dev/null +++ b/include/linux/of_spi.h | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | /* | ||
| 2 | * OpenFirmware SPI support routines | ||
| 3 | * Copyright (C) 2008 Secret Lab Technologies Ltd. | ||
| 4 | * | ||
| 5 | * Support routines for deriving SPI device attachments from the device | ||
| 6 | * tree. | ||
| 7 | */ | ||
| 8 | |||
| 9 | #ifndef __LINUX_OF_SPI_H | ||
| 10 | #define __LINUX_OF_SPI_H | ||
| 11 | |||
| 12 | #include <linux/of.h> | ||
| 13 | #include <linux/spi/spi.h> | ||
| 14 | |||
| 15 | extern void of_register_spi_devices(struct spi_master *master, | ||
| 16 | struct device_node *np); | ||
| 17 | |||
| 18 | #endif /* __LINUX_OF_SPI */ | ||
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h index 0d2a4e7012aa..c74d3e875314 100644 --- a/include/linux/page-flags.h +++ b/include/linux/page-flags.h | |||
| @@ -96,7 +96,22 @@ enum pageflags { | |||
| 96 | #ifdef CONFIG_IA64_UNCACHED_ALLOCATOR | 96 | #ifdef CONFIG_IA64_UNCACHED_ALLOCATOR |
| 97 | PG_uncached, /* Page has been mapped as uncached */ | 97 | PG_uncached, /* Page has been mapped as uncached */ |
| 98 | #endif | 98 | #endif |
| 99 | __NR_PAGEFLAGS | 99 | __NR_PAGEFLAGS, |
| 100 | |||
| 101 | /* Filesystems */ | ||
| 102 | PG_checked = PG_owner_priv_1, | ||
| 103 | |||
| 104 | /* XEN */ | ||
| 105 | PG_pinned = PG_owner_priv_1, | ||
| 106 | PG_savepinned = PG_dirty, | ||
| 107 | |||
| 108 | /* SLOB */ | ||
| 109 | PG_slob_page = PG_active, | ||
| 110 | PG_slob_free = PG_private, | ||
| 111 | |||
| 112 | /* SLUB */ | ||
| 113 | PG_slub_frozen = PG_active, | ||
| 114 | PG_slub_debug = PG_error, | ||
| 100 | }; | 115 | }; |
| 101 | 116 | ||
| 102 | #ifndef __GENERATING_BOUNDS_H | 117 | #ifndef __GENERATING_BOUNDS_H |
| @@ -148,20 +163,26 @@ static inline int Page##uname(struct page *page) \ | |||
| 148 | 163 | ||
| 149 | struct page; /* forward declaration */ | 164 | struct page; /* forward declaration */ |
| 150 | 165 | ||
| 151 | PAGEFLAG(Locked, locked) TESTSCFLAG(Locked, locked) | 166 | TESTPAGEFLAG(Locked, locked) |
| 152 | PAGEFLAG(Error, error) | 167 | PAGEFLAG(Error, error) |
| 153 | PAGEFLAG(Referenced, referenced) TESTCLEARFLAG(Referenced, referenced) | 168 | PAGEFLAG(Referenced, referenced) TESTCLEARFLAG(Referenced, referenced) |
| 154 | PAGEFLAG(Dirty, dirty) TESTSCFLAG(Dirty, dirty) __CLEARPAGEFLAG(Dirty, dirty) | 169 | PAGEFLAG(Dirty, dirty) TESTSCFLAG(Dirty, dirty) __CLEARPAGEFLAG(Dirty, dirty) |
| 155 | PAGEFLAG(LRU, lru) __CLEARPAGEFLAG(LRU, lru) | 170 | PAGEFLAG(LRU, lru) __CLEARPAGEFLAG(LRU, lru) |
| 156 | PAGEFLAG(Active, active) __CLEARPAGEFLAG(Active, active) | 171 | PAGEFLAG(Active, active) __CLEARPAGEFLAG(Active, active) |
| 157 | __PAGEFLAG(Slab, slab) | 172 | __PAGEFLAG(Slab, slab) |
| 158 | PAGEFLAG(Checked, owner_priv_1) /* Used by some filesystems */ | 173 | PAGEFLAG(Checked, checked) /* Used by some filesystems */ |
| 159 | PAGEFLAG(Pinned, owner_priv_1) TESTSCFLAG(Pinned, owner_priv_1) /* Xen */ | 174 | PAGEFLAG(Pinned, pinned) TESTSCFLAG(Pinned, pinned) /* Xen */ |
| 160 | PAGEFLAG(SavePinned, dirty); /* Xen */ | 175 | PAGEFLAG(SavePinned, savepinned); /* Xen */ |
| 161 | PAGEFLAG(Reserved, reserved) __CLEARPAGEFLAG(Reserved, reserved) | 176 | PAGEFLAG(Reserved, reserved) __CLEARPAGEFLAG(Reserved, reserved) |
| 162 | PAGEFLAG(Private, private) __CLEARPAGEFLAG(Private, private) | 177 | PAGEFLAG(Private, private) __CLEARPAGEFLAG(Private, private) |
| 163 | __SETPAGEFLAG(Private, private) | 178 | __SETPAGEFLAG(Private, private) |
| 164 | 179 | ||
| 180 | __PAGEFLAG(SlobPage, slob_page) | ||
| 181 | __PAGEFLAG(SlobFree, slob_free) | ||
| 182 | |||
| 183 | __PAGEFLAG(SlubFrozen, slub_frozen) | ||
| 184 | __PAGEFLAG(SlubDebug, slub_debug) | ||
| 185 | |||
| 165 | /* | 186 | /* |
| 166 | * Only test-and-set exist for PG_writeback. The unconditional operators are | 187 | * Only test-and-set exist for PG_writeback. The unconditional operators are |
| 167 | * risky: they bypass page accounting. | 188 | * risky: they bypass page accounting. |
| @@ -218,9 +239,6 @@ static inline void __SetPageUptodate(struct page *page) | |||
| 218 | { | 239 | { |
| 219 | smp_wmb(); | 240 | smp_wmb(); |
| 220 | __set_bit(PG_uptodate, &(page)->flags); | 241 | __set_bit(PG_uptodate, &(page)->flags); |
| 221 | #ifdef CONFIG_S390 | ||
| 222 | page_clear_dirty(page); | ||
| 223 | #endif | ||
| 224 | } | 242 | } |
| 225 | 243 | ||
| 226 | static inline void SetPageUptodate(struct page *page) | 244 | static inline void SetPageUptodate(struct page *page) |
diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h index d2fca802f809..5da31c12101c 100644 --- a/include/linux/pagemap.h +++ b/include/linux/pagemap.h | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | #include <asm/uaccess.h> | 12 | #include <asm/uaccess.h> |
| 13 | #include <linux/gfp.h> | 13 | #include <linux/gfp.h> |
| 14 | #include <linux/bitops.h> | 14 | #include <linux/bitops.h> |
| 15 | #include <linux/hardirq.h> /* for in_interrupt() */ | ||
| 15 | 16 | ||
| 16 | /* | 17 | /* |
| 17 | * Bits in mapping->flags. The lower __GFP_BITS_SHIFT bits are the page | 18 | * Bits in mapping->flags. The lower __GFP_BITS_SHIFT bits are the page |
| @@ -19,10 +20,11 @@ | |||
| 19 | */ | 20 | */ |
| 20 | #define AS_EIO (__GFP_BITS_SHIFT + 0) /* IO error on async write */ | 21 | #define AS_EIO (__GFP_BITS_SHIFT + 0) /* IO error on async write */ |
| 21 | #define AS_ENOSPC (__GFP_BITS_SHIFT + 1) /* ENOSPC on async write */ | 22 | #define AS_ENOSPC (__GFP_BITS_SHIFT + 1) /* ENOSPC on async write */ |
| 23 | #define AS_MM_ALL_LOCKS (__GFP_BITS_SHIFT + 2) /* under mm_take_all_locks() */ | ||
| 22 | 24 | ||
| 23 | static inline void mapping_set_error(struct address_space *mapping, int error) | 25 | static inline void mapping_set_error(struct address_space *mapping, int error) |
| 24 | { | 26 | { |
| 25 | if (error) { | 27 | if (unlikely(error)) { |
| 26 | if (error == -ENOSPC) | 28 | if (error == -ENOSPC) |
| 27 | set_bit(AS_ENOSPC, &mapping->flags); | 29 | set_bit(AS_ENOSPC, &mapping->flags); |
| 28 | else | 30 | else |
| @@ -62,6 +64,121 @@ static inline void mapping_set_gfp_mask(struct address_space *m, gfp_t mask) | |||
| 62 | #define page_cache_release(page) put_page(page) | 64 | #define page_cache_release(page) put_page(page) |
| 63 | void release_pages(struct page **pages, int nr, int cold); | 65 | void release_pages(struct page **pages, int nr, int cold); |
| 64 | 66 | ||
| 67 | /* | ||
| 68 | * speculatively take a reference to a page. | ||
| 69 | * If the page is free (_count == 0), then _count is untouched, and 0 | ||
| 70 | * is returned. Otherwise, _count is incremented by 1 and 1 is returned. | ||
| 71 | * | ||
| 72 | * This function must be called inside the same rcu_read_lock() section as has | ||
| 73 | * been used to lookup the page in the pagecache radix-tree (or page table): | ||
| 74 | * this allows allocators to use a synchronize_rcu() to stabilize _count. | ||
| 75 | * | ||
| 76 | * Unless an RCU grace period has passed, the count of all pages coming out | ||
| 77 | * of the allocator must be considered unstable. page_count may return higher | ||
| 78 | * than expected, and put_page must be able to do the right thing when the | ||
| 79 | * page has been finished with, no matter what it is subsequently allocated | ||
| 80 | * for (because put_page is what is used here to drop an invalid speculative | ||
| 81 | * reference). | ||
| 82 | * | ||
| 83 | * This is the interesting part of the lockless pagecache (and lockless | ||
| 84 | * get_user_pages) locking protocol, where the lookup-side (eg. find_get_page) | ||
| 85 | * has the following pattern: | ||
| 86 | * 1. find page in radix tree | ||
| 87 | * 2. conditionally increment refcount | ||
| 88 | * 3. check the page is still in pagecache (if no, goto 1) | ||
| 89 | * | ||
| 90 | * Remove-side that cares about stability of _count (eg. reclaim) has the | ||
| 91 | * following (with tree_lock held for write): | ||
| 92 | * A. atomically check refcount is correct and set it to 0 (atomic_cmpxchg) | ||
| 93 | * B. remove page from pagecache | ||
| 94 | * C. free the page | ||
| 95 | * | ||
| 96 | * There are 2 critical interleavings that matter: | ||
| 97 | * - 2 runs before A: in this case, A sees elevated refcount and bails out | ||
| 98 | * - A runs before 2: in this case, 2 sees zero refcount and retries; | ||
| 99 | * subsequently, B will complete and 1 will find no page, causing the | ||
| 100 | * lookup to return NULL. | ||
| 101 | * | ||
| 102 | * It is possible that between 1 and 2, the page is removed then the exact same | ||
| 103 | * page is inserted into the same position in pagecache. That's OK: the | ||
| 104 | * old find_get_page using tree_lock could equally have run before or after | ||
| 105 | * such a re-insertion, depending on order that locks are granted. | ||
| 106 | * | ||
| 107 | * Lookups racing against pagecache insertion isn't a big problem: either 1 | ||
| 108 | * will find the page or it will not. Likewise, the old find_get_page could run | ||
| 109 | * either before the insertion or afterwards, depending on timing. | ||
| 110 | */ | ||
| 111 | static inline int page_cache_get_speculative(struct page *page) | ||
| 112 | { | ||
| 113 | VM_BUG_ON(in_interrupt()); | ||
| 114 | |||
| 115 | #if !defined(CONFIG_SMP) && defined(CONFIG_CLASSIC_RCU) | ||
| 116 | # ifdef CONFIG_PREEMPT | ||
| 117 | VM_BUG_ON(!in_atomic()); | ||
| 118 | # endif | ||
| 119 | /* | ||
| 120 | * Preempt must be disabled here - we rely on rcu_read_lock doing | ||
| 121 | * this for us. | ||
| 122 | * | ||
| 123 | * Pagecache won't be truncated from interrupt context, so if we have | ||
| 124 | * found a page in the radix tree here, we have pinned its refcount by | ||
| 125 | * disabling preempt, and hence no need for the "speculative get" that | ||
| 126 | * SMP requires. | ||
| 127 | */ | ||
| 128 | VM_BUG_ON(page_count(page) == 0); | ||
| 129 | atomic_inc(&page->_count); | ||
| 130 | |||
| 131 | #else | ||
| 132 | if (unlikely(!get_page_unless_zero(page))) { | ||
| 133 | /* | ||
| 134 | * Either the page has been freed, or will be freed. | ||
| 135 | * In either case, retry here and the caller should | ||
| 136 | * do the right thing (see comments above). | ||
| 137 | */ | ||
| 138 | return 0; | ||
| 139 | } | ||
| 140 | #endif | ||
| 141 | VM_BUG_ON(PageTail(page)); | ||
| 142 | |||
| 143 | return 1; | ||
| 144 | } | ||
| 145 | |||
| 146 | /* | ||
| 147 | * Same as above, but add instead of inc (could just be merged) | ||
| 148 | */ | ||
| 149 | static inline int page_cache_add_speculative(struct page *page, int count) | ||
| 150 | { | ||
| 151 | VM_BUG_ON(in_interrupt()); | ||
| 152 | |||
| 153 | #if !defined(CONFIG_SMP) && defined(CONFIG_CLASSIC_RCU) | ||
| 154 | # ifdef CONFIG_PREEMPT | ||
| 155 | VM_BUG_ON(!in_atomic()); | ||
| 156 | # endif | ||
| 157 | VM_BUG_ON(page_count(page) == 0); | ||
| 158 | atomic_add(count, &page->_count); | ||
| 159 | |||
| 160 | #else | ||
| 161 | if (unlikely(!atomic_add_unless(&page->_count, count, 0))) | ||
| 162 | return 0; | ||
| 163 | #endif | ||
| 164 | VM_BUG_ON(PageCompound(page) && page != compound_head(page)); | ||
| 165 | |||
| 166 | return 1; | ||
| 167 | } | ||
| 168 | |||
| 169 | static inline int page_freeze_refs(struct page *page, int count) | ||
| 170 | { | ||
| 171 | return likely(atomic_cmpxchg(&page->_count, count, 0) == count); | ||
| 172 | } | ||
| 173 | |||
| 174 | static inline void page_unfreeze_refs(struct page *page, int count) | ||
| 175 | { | ||
| 176 | VM_BUG_ON(page_count(page) != 0); | ||
| 177 | VM_BUG_ON(count == 0); | ||
| 178 | |||
| 179 | atomic_set(&page->_count, count); | ||
| 180 | } | ||
| 181 | |||
| 65 | #ifdef CONFIG_NUMA | 182 | #ifdef CONFIG_NUMA |
| 66 | extern struct page *__page_cache_alloc(gfp_t gfp); | 183 | extern struct page *__page_cache_alloc(gfp_t gfp); |
| 67 | #else | 184 | #else |
| @@ -133,13 +250,6 @@ static inline struct page *read_mapping_page(struct address_space *mapping, | |||
| 133 | return read_cache_page(mapping, index, filler, data); | 250 | return read_cache_page(mapping, index, filler, data); |
| 134 | } | 251 | } |
| 135 | 252 | ||
| 136 | int add_to_page_cache(struct page *page, struct address_space *mapping, | ||
| 137 | pgoff_t index, gfp_t gfp_mask); | ||
| 138 | int add_to_page_cache_lru(struct page *page, struct address_space *mapping, | ||
| 139 | pgoff_t index, gfp_t gfp_mask); | ||
| 140 | extern void remove_from_page_cache(struct page *page); | ||
| 141 | extern void __remove_from_page_cache(struct page *page); | ||
| 142 | |||
| 143 | /* | 253 | /* |
| 144 | * Return byte-offset into filesystem object for page. | 254 | * Return byte-offset into filesystem object for page. |
| 145 | */ | 255 | */ |
| @@ -161,13 +271,28 @@ extern int __lock_page_killable(struct page *page); | |||
| 161 | extern void __lock_page_nosync(struct page *page); | 271 | extern void __lock_page_nosync(struct page *page); |
| 162 | extern void unlock_page(struct page *page); | 272 | extern void unlock_page(struct page *page); |
| 163 | 273 | ||
| 274 | static inline void set_page_locked(struct page *page) | ||
| 275 | { | ||
| 276 | set_bit(PG_locked, &page->flags); | ||
| 277 | } | ||
| 278 | |||
| 279 | static inline void clear_page_locked(struct page *page) | ||
| 280 | { | ||
| 281 | clear_bit(PG_locked, &page->flags); | ||
| 282 | } | ||
| 283 | |||
| 284 | static inline int trylock_page(struct page *page) | ||
| 285 | { | ||
| 286 | return !test_and_set_bit(PG_locked, &page->flags); | ||
| 287 | } | ||
| 288 | |||
| 164 | /* | 289 | /* |
| 165 | * lock_page may only be called if we have the page's inode pinned. | 290 | * lock_page may only be called if we have the page's inode pinned. |
| 166 | */ | 291 | */ |
| 167 | static inline void lock_page(struct page *page) | 292 | static inline void lock_page(struct page *page) |
| 168 | { | 293 | { |
| 169 | might_sleep(); | 294 | might_sleep(); |
| 170 | if (TestSetPageLocked(page)) | 295 | if (!trylock_page(page)) |
| 171 | __lock_page(page); | 296 | __lock_page(page); |
| 172 | } | 297 | } |
| 173 | 298 | ||
| @@ -179,7 +304,7 @@ static inline void lock_page(struct page *page) | |||
| 179 | static inline int lock_page_killable(struct page *page) | 304 | static inline int lock_page_killable(struct page *page) |
| 180 | { | 305 | { |
| 181 | might_sleep(); | 306 | might_sleep(); |
| 182 | if (TestSetPageLocked(page)) | 307 | if (!trylock_page(page)) |
| 183 | return __lock_page_killable(page); | 308 | return __lock_page_killable(page); |
| 184 | return 0; | 309 | return 0; |
| 185 | } | 310 | } |
| @@ -191,7 +316,7 @@ static inline int lock_page_killable(struct page *page) | |||
| 191 | static inline void lock_page_nosync(struct page *page) | 316 | static inline void lock_page_nosync(struct page *page) |
| 192 | { | 317 | { |
| 193 | might_sleep(); | 318 | might_sleep(); |
| 194 | if (TestSetPageLocked(page)) | 319 | if (!trylock_page(page)) |
| 195 | __lock_page_nosync(page); | 320 | __lock_page_nosync(page); |
| 196 | } | 321 | } |
| 197 | 322 | ||
| @@ -276,4 +401,27 @@ static inline int fault_in_pages_readable(const char __user *uaddr, int size) | |||
| 276 | return ret; | 401 | return ret; |
| 277 | } | 402 | } |
| 278 | 403 | ||
| 404 | int add_to_page_cache_locked(struct page *page, struct address_space *mapping, | ||
| 405 | pgoff_t index, gfp_t gfp_mask); | ||
| 406 | int add_to_page_cache_lru(struct page *page, struct address_space *mapping, | ||
| 407 | pgoff_t index, gfp_t gfp_mask); | ||
| 408 | extern void remove_from_page_cache(struct page *page); | ||
| 409 | extern void __remove_from_page_cache(struct page *page); | ||
| 410 | |||
| 411 | /* | ||
| 412 | * Like add_to_page_cache_locked, but used to add newly allocated pages: | ||
| 413 | * the page is new, so we can just run set_page_locked() against it. | ||
| 414 | */ | ||
| 415 | static inline int add_to_page_cache(struct page *page, | ||
| 416 | struct address_space *mapping, pgoff_t offset, gfp_t gfp_mask) | ||
| 417 | { | ||
| 418 | int error; | ||
| 419 | |||
| 420 | set_page_locked(page); | ||
| 421 | error = add_to_page_cache_locked(page, mapping, offset, gfp_mask); | ||
| 422 | if (unlikely(error)) | ||
| 423 | clear_page_locked(page); | ||
| 424 | return error; | ||
| 425 | } | ||
| 426 | |||
| 279 | #endif /* _LINUX_PAGEMAP_H */ | 427 | #endif /* _LINUX_PAGEMAP_H */ |
diff --git a/include/linux/parport.h b/include/linux/parport.h index dcb9e01a69ca..6a0d7cdb5774 100644 --- a/include/linux/parport.h +++ b/include/linux/parport.h | |||
| @@ -560,5 +560,8 @@ extern int parport_device_proc_unregister(struct pardevice *device); | |||
| 560 | 560 | ||
| 561 | #endif /* !CONFIG_PARPORT_NOT_PC */ | 561 | #endif /* !CONFIG_PARPORT_NOT_PC */ |
| 562 | 562 | ||
| 563 | extern unsigned long parport_default_timeslice; | ||
| 564 | extern int parport_default_spintime; | ||
| 565 | |||
| 563 | #endif /* __KERNEL__ */ | 566 | #endif /* __KERNEL__ */ |
| 564 | #endif /* _PARPORT_H_ */ | 567 | #endif /* _PARPORT_H_ */ |
diff --git a/include/linux/pci-aspm.h b/include/linux/pci-aspm.h index a1a1e618e996..91ba0b338b47 100644 --- a/include/linux/pci-aspm.h +++ b/include/linux/pci-aspm.h | |||
| @@ -27,6 +27,7 @@ extern void pcie_aspm_init_link_state(struct pci_dev *pdev); | |||
| 27 | extern void pcie_aspm_exit_link_state(struct pci_dev *pdev); | 27 | extern void pcie_aspm_exit_link_state(struct pci_dev *pdev); |
| 28 | extern void pcie_aspm_pm_state_change(struct pci_dev *pdev); | 28 | extern void pcie_aspm_pm_state_change(struct pci_dev *pdev); |
| 29 | extern void pci_disable_link_state(struct pci_dev *pdev, int state); | 29 | extern void pci_disable_link_state(struct pci_dev *pdev, int state); |
| 30 | extern void pcie_no_aspm(void); | ||
| 30 | #else | 31 | #else |
| 31 | static inline void pcie_aspm_init_link_state(struct pci_dev *pdev) | 32 | static inline void pcie_aspm_init_link_state(struct pci_dev *pdev) |
| 32 | { | 33 | { |
| @@ -40,6 +41,10 @@ static inline void pcie_aspm_pm_state_change(struct pci_dev *pdev) | |||
| 40 | static inline void pci_disable_link_state(struct pci_dev *pdev, int state) | 41 | static inline void pci_disable_link_state(struct pci_dev *pdev, int state) |
| 41 | { | 42 | { |
| 42 | } | 43 | } |
| 44 | |||
| 45 | static inline void pcie_no_aspm(void) | ||
| 46 | { | ||
| 47 | } | ||
| 43 | #endif | 48 | #endif |
| 44 | 49 | ||
| 45 | #ifdef CONFIG_PCIEASPM_DEBUG /* this depends on CONFIG_PCIEASPM */ | 50 | #ifdef CONFIG_PCIEASPM_DEBUG /* this depends on CONFIG_PCIEASPM */ |
diff --git a/include/linux/pci.h b/include/linux/pci.h index a6a088e1a804..c0e14008a3c2 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
| @@ -124,6 +124,8 @@ enum pci_dev_flags { | |||
| 124 | * generation too. | 124 | * generation too. |
| 125 | */ | 125 | */ |
| 126 | PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG = (__force pci_dev_flags_t) 1, | 126 | PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG = (__force pci_dev_flags_t) 1, |
| 127 | /* Device configuration is irrevocably lost if disabled into D3 */ | ||
| 128 | PCI_DEV_FLAGS_NO_D3 = (__force pci_dev_flags_t) 2, | ||
| 127 | }; | 129 | }; |
| 128 | 130 | ||
| 129 | typedef unsigned short __bitwise pci_bus_flags_t; | 131 | typedef unsigned short __bitwise pci_bus_flags_t; |
| @@ -638,7 +640,10 @@ int pci_save_state(struct pci_dev *dev); | |||
| 638 | int pci_restore_state(struct pci_dev *dev); | 640 | int pci_restore_state(struct pci_dev *dev); |
| 639 | int pci_set_power_state(struct pci_dev *dev, pci_power_t state); | 641 | int pci_set_power_state(struct pci_dev *dev, pci_power_t state); |
| 640 | pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state); | 642 | pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state); |
| 643 | bool pci_pme_capable(struct pci_dev *dev, pci_power_t state); | ||
| 644 | void pci_pme_active(struct pci_dev *dev, bool enable); | ||
| 641 | int pci_enable_wake(struct pci_dev *dev, pci_power_t state, int enable); | 645 | int pci_enable_wake(struct pci_dev *dev, pci_power_t state, int enable); |
| 646 | pci_power_t pci_target_state(struct pci_dev *dev); | ||
| 642 | int pci_prepare_to_sleep(struct pci_dev *dev); | 647 | int pci_prepare_to_sleep(struct pci_dev *dev); |
| 643 | int pci_back_from_sleep(struct pci_dev *dev); | 648 | int pci_back_from_sleep(struct pci_dev *dev); |
| 644 | 649 | ||
| @@ -676,10 +681,12 @@ void pci_enable_bridges(struct pci_bus *bus); | |||
| 676 | /* Proper probing supporting hot-pluggable devices */ | 681 | /* Proper probing supporting hot-pluggable devices */ |
| 677 | int __must_check __pci_register_driver(struct pci_driver *, struct module *, | 682 | int __must_check __pci_register_driver(struct pci_driver *, struct module *, |
| 678 | const char *mod_name); | 683 | const char *mod_name); |
| 679 | static inline int __must_check pci_register_driver(struct pci_driver *driver) | 684 | |
| 680 | { | 685 | /* |
| 681 | return __pci_register_driver(driver, THIS_MODULE, KBUILD_MODNAME); | 686 | * pci_register_driver must be a macro so that KBUILD_MODNAME can be expanded |
| 682 | } | 687 | */ |
| 688 | #define pci_register_driver(driver) \ | ||
| 689 | __pci_register_driver(driver, THIS_MODULE, KBUILD_MODNAME) | ||
| 683 | 690 | ||
| 684 | void pci_unregister_driver(struct pci_driver *dev); | 691 | void pci_unregister_driver(struct pci_driver *dev); |
| 685 | void pci_remove_behind_bridge(struct pci_dev *dev); | 692 | void pci_remove_behind_bridge(struct pci_dev *dev); |
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index d8507eb394cf..9ec2bcce8e83 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h | |||
| @@ -748,6 +748,7 @@ | |||
| 748 | #define PCI_VENDOR_ID_TI 0x104c | 748 | #define PCI_VENDOR_ID_TI 0x104c |
| 749 | #define PCI_DEVICE_ID_TI_TVP4020 0x3d07 | 749 | #define PCI_DEVICE_ID_TI_TVP4020 0x3d07 |
| 750 | #define PCI_DEVICE_ID_TI_4450 0x8011 | 750 | #define PCI_DEVICE_ID_TI_4450 0x8011 |
| 751 | #define PCI_DEVICE_ID_TI_TSB43AB22 0x8023 | ||
| 751 | #define PCI_DEVICE_ID_TI_XX21_XX11 0x8031 | 752 | #define PCI_DEVICE_ID_TI_XX21_XX11 0x8031 |
| 752 | #define PCI_DEVICE_ID_TI_XX21_XX11_FM 0x8033 | 753 | #define PCI_DEVICE_ID_TI_XX21_XX11_FM 0x8033 |
| 753 | #define PCI_DEVICE_ID_TI_XX21_XX11_SD 0x8034 | 754 | #define PCI_DEVICE_ID_TI_XX21_XX11_SD 0x8034 |
| @@ -1832,7 +1833,13 @@ | |||
| 1832 | #define PCI_DEVICE_ID_MOXA_C320 0x3200 | 1833 | #define PCI_DEVICE_ID_MOXA_C320 0x3200 |
| 1833 | 1834 | ||
| 1834 | #define PCI_VENDOR_ID_CCD 0x1397 | 1835 | #define PCI_VENDOR_ID_CCD 0x1397 |
| 1836 | #define PCI_DEVICE_ID_CCD_HFC4S 0x08B4 | ||
| 1837 | #define PCI_SUBDEVICE_ID_CCD_PMX2S 0x1234 | ||
| 1838 | #define PCI_DEVICE_ID_CCD_HFC8S 0x16B8 | ||
| 1835 | #define PCI_DEVICE_ID_CCD_2BD0 0x2bd0 | 1839 | #define PCI_DEVICE_ID_CCD_2BD0 0x2bd0 |
| 1840 | #define PCI_DEVICE_ID_CCD_HFCE1 0x30B1 | ||
| 1841 | #define PCI_SUBDEVICE_ID_CCD_SPD4S 0x3136 | ||
| 1842 | #define PCI_SUBDEVICE_ID_CCD_SPDE1 0x3137 | ||
| 1836 | #define PCI_DEVICE_ID_CCD_B000 0xb000 | 1843 | #define PCI_DEVICE_ID_CCD_B000 0xb000 |
| 1837 | #define PCI_DEVICE_ID_CCD_B006 0xb006 | 1844 | #define PCI_DEVICE_ID_CCD_B006 0xb006 |
| 1838 | #define PCI_DEVICE_ID_CCD_B007 0xb007 | 1845 | #define PCI_DEVICE_ID_CCD_B007 0xb007 |
| @@ -1842,8 +1849,32 @@ | |||
| 1842 | #define PCI_DEVICE_ID_CCD_B00B 0xb00b | 1849 | #define PCI_DEVICE_ID_CCD_B00B 0xb00b |
| 1843 | #define PCI_DEVICE_ID_CCD_B00C 0xb00c | 1850 | #define PCI_DEVICE_ID_CCD_B00C 0xb00c |
| 1844 | #define PCI_DEVICE_ID_CCD_B100 0xb100 | 1851 | #define PCI_DEVICE_ID_CCD_B100 0xb100 |
| 1852 | #define PCI_SUBDEVICE_ID_CCD_IOB4ST 0xB520 | ||
| 1853 | #define PCI_SUBDEVICE_ID_CCD_IOB8STR 0xB521 | ||
| 1854 | #define PCI_SUBDEVICE_ID_CCD_IOB8ST 0xB522 | ||
| 1855 | #define PCI_SUBDEVICE_ID_CCD_IOB1E1 0xB523 | ||
| 1856 | #define PCI_SUBDEVICE_ID_CCD_SWYX4S 0xB540 | ||
| 1857 | #define PCI_SUBDEVICE_ID_CCD_JH4S20 0xB550 | ||
| 1858 | #define PCI_SUBDEVICE_ID_CCD_IOB8ST_1 0xB552 | ||
| 1859 | #define PCI_SUBDEVICE_ID_CCD_BN4S 0xB560 | ||
| 1860 | #define PCI_SUBDEVICE_ID_CCD_BN8S 0xB562 | ||
| 1861 | #define PCI_SUBDEVICE_ID_CCD_BNE1 0xB563 | ||
| 1862 | #define PCI_SUBDEVICE_ID_CCD_BNE1D 0xB564 | ||
| 1863 | #define PCI_SUBDEVICE_ID_CCD_BNE1DP 0xB565 | ||
| 1864 | #define PCI_SUBDEVICE_ID_CCD_BN2S 0xB566 | ||
| 1865 | #define PCI_SUBDEVICE_ID_CCD_BN1SM 0xB567 | ||
| 1866 | #define PCI_SUBDEVICE_ID_CCD_BN4SM 0xB568 | ||
| 1867 | #define PCI_SUBDEVICE_ID_CCD_BN2SM 0xB569 | ||
| 1868 | #define PCI_SUBDEVICE_ID_CCD_BNE1M 0xB56A | ||
| 1869 | #define PCI_SUBDEVICE_ID_CCD_BN8SP 0xB56B | ||
| 1870 | #define PCI_SUBDEVICE_ID_CCD_HFC4S 0xB620 | ||
| 1871 | #define PCI_SUBDEVICE_ID_CCD_HFC8S 0xB622 | ||
| 1845 | #define PCI_DEVICE_ID_CCD_B700 0xb700 | 1872 | #define PCI_DEVICE_ID_CCD_B700 0xb700 |
| 1846 | #define PCI_DEVICE_ID_CCD_B701 0xb701 | 1873 | #define PCI_DEVICE_ID_CCD_B701 0xb701 |
| 1874 | #define PCI_SUBDEVICE_ID_CCD_HFCE1 0xC523 | ||
| 1875 | #define PCI_SUBDEVICE_ID_CCD_OV2S 0xE884 | ||
| 1876 | #define PCI_SUBDEVICE_ID_CCD_OV4S 0xE888 | ||
| 1877 | #define PCI_SUBDEVICE_ID_CCD_OV8S 0xE998 | ||
| 1847 | 1878 | ||
| 1848 | #define PCI_VENDOR_ID_EXAR 0x13a8 | 1879 | #define PCI_VENDOR_ID_EXAR 0x13a8 |
| 1849 | #define PCI_DEVICE_ID_EXAR_XR17C152 0x0152 | 1880 | #define PCI_DEVICE_ID_EXAR_XR17C152 0x0152 |
| @@ -2146,8 +2177,6 @@ | |||
| 2146 | #define PCI_DEVICE_ID_HERC_WIN 0x5732 | 2177 | #define PCI_DEVICE_ID_HERC_WIN 0x5732 |
| 2147 | #define PCI_DEVICE_ID_HERC_UNI 0x5832 | 2178 | #define PCI_DEVICE_ID_HERC_UNI 0x5832 |
| 2148 | 2179 | ||
| 2149 | #define PCI_VENDOR_ID_RDC 0x17f3 | ||
| 2150 | |||
| 2151 | #define PCI_VENDOR_ID_SITECOM 0x182d | 2180 | #define PCI_VENDOR_ID_SITECOM 0x182d |
| 2152 | #define PCI_DEVICE_ID_SITECOM_DC105V2 0x3069 | 2181 | #define PCI_DEVICE_ID_SITECOM_DC105V2 0x3069 |
| 2153 | 2182 | ||
| @@ -2371,6 +2400,14 @@ | |||
| 2371 | #define PCI_DEVICE_ID_INTEL_ICH9_7 0x2916 | 2400 | #define PCI_DEVICE_ID_INTEL_ICH9_7 0x2916 |
| 2372 | #define PCI_DEVICE_ID_INTEL_ICH9_8 0x2918 | 2401 | #define PCI_DEVICE_ID_INTEL_ICH9_8 0x2918 |
| 2373 | #define PCI_DEVICE_ID_INTEL_82855PM_HB 0x3340 | 2402 | #define PCI_DEVICE_ID_INTEL_82855PM_HB 0x3340 |
| 2403 | #define PCI_DEVICE_ID_INTEL_IOAT_TBG4 0x3429 | ||
| 2404 | #define PCI_DEVICE_ID_INTEL_IOAT_TBG5 0x342a | ||
| 2405 | #define PCI_DEVICE_ID_INTEL_IOAT_TBG6 0x342b | ||
| 2406 | #define PCI_DEVICE_ID_INTEL_IOAT_TBG7 0x342c | ||
| 2407 | #define PCI_DEVICE_ID_INTEL_IOAT_TBG0 0x3430 | ||
| 2408 | #define PCI_DEVICE_ID_INTEL_IOAT_TBG1 0x3431 | ||
| 2409 | #define PCI_DEVICE_ID_INTEL_IOAT_TBG2 0x3432 | ||
| 2410 | #define PCI_DEVICE_ID_INTEL_IOAT_TBG3 0x3433 | ||
| 2374 | #define PCI_DEVICE_ID_INTEL_82830_HB 0x3575 | 2411 | #define PCI_DEVICE_ID_INTEL_82830_HB 0x3575 |
| 2375 | #define PCI_DEVICE_ID_INTEL_82830_CGC 0x3577 | 2412 | #define PCI_DEVICE_ID_INTEL_82830_CGC 0x3577 |
| 2376 | #define PCI_DEVICE_ID_INTEL_82855GM_HB 0x3580 | 2413 | #define PCI_DEVICE_ID_INTEL_82855GM_HB 0x3580 |
| @@ -2392,6 +2429,9 @@ | |||
| 2392 | #define PCI_DEVICE_ID_INTEL_ICH10_4 0x3a30 | 2429 | #define PCI_DEVICE_ID_INTEL_ICH10_4 0x3a30 |
| 2393 | #define PCI_DEVICE_ID_INTEL_ICH10_5 0x3a60 | 2430 | #define PCI_DEVICE_ID_INTEL_ICH10_5 0x3a60 |
| 2394 | #define PCI_DEVICE_ID_INTEL_IOAT_SNB 0x402f | 2431 | #define PCI_DEVICE_ID_INTEL_IOAT_SNB 0x402f |
| 2432 | #define PCI_DEVICE_ID_INTEL_5100_16 0x65f0 | ||
| 2433 | #define PCI_DEVICE_ID_INTEL_5100_21 0x65f5 | ||
| 2434 | #define PCI_DEVICE_ID_INTEL_5100_22 0x65f6 | ||
| 2395 | #define PCI_DEVICE_ID_INTEL_5400_ERR 0x4030 | 2435 | #define PCI_DEVICE_ID_INTEL_5400_ERR 0x4030 |
| 2396 | #define PCI_DEVICE_ID_INTEL_5400_FBD0 0x4035 | 2436 | #define PCI_DEVICE_ID_INTEL_5400_FBD0 0x4035 |
| 2397 | #define PCI_DEVICE_ID_INTEL_5400_FBD1 0x4036 | 2437 | #define PCI_DEVICE_ID_INTEL_5400_FBD1 0x4036 |
| @@ -2512,6 +2552,9 @@ | |||
| 2512 | 2552 | ||
| 2513 | #define PCI_VENDOR_ID_3COM_2 0xa727 | 2553 | #define PCI_VENDOR_ID_3COM_2 0xa727 |
| 2514 | 2554 | ||
| 2555 | #define PCI_VENDOR_ID_DIGIUM 0xd161 | ||
| 2556 | #define PCI_DEVICE_ID_DIGIUM_HFC4S 0xb410 | ||
| 2557 | |||
| 2515 | #define PCI_SUBVENDOR_ID_EXSYS 0xd84d | 2558 | #define PCI_SUBVENDOR_ID_EXSYS 0xd84d |
| 2516 | #define PCI_SUBDEVICE_ID_EXSYS_4014 0x4014 | 2559 | #define PCI_SUBDEVICE_ID_EXSYS_4014 0x4014 |
| 2517 | #define PCI_SUBDEVICE_ID_EXSYS_4055 0x4055 | 2560 | #define PCI_SUBDEVICE_ID_EXSYS_4055 0x4055 |
diff --git a/include/linux/pci_regs.h b/include/linux/pci_regs.h index 19958b929905..450684f7eaac 100644 --- a/include/linux/pci_regs.h +++ b/include/linux/pci_regs.h | |||
| @@ -374,6 +374,7 @@ | |||
| 374 | #define PCI_EXP_DEVCAP_ATN_BUT 0x1000 /* Attention Button Present */ | 374 | #define PCI_EXP_DEVCAP_ATN_BUT 0x1000 /* Attention Button Present */ |
| 375 | #define PCI_EXP_DEVCAP_ATN_IND 0x2000 /* Attention Indicator Present */ | 375 | #define PCI_EXP_DEVCAP_ATN_IND 0x2000 /* Attention Indicator Present */ |
| 376 | #define PCI_EXP_DEVCAP_PWR_IND 0x4000 /* Power Indicator Present */ | 376 | #define PCI_EXP_DEVCAP_PWR_IND 0x4000 /* Power Indicator Present */ |
| 377 | #define PCI_EXP_DEVCAP_RBER 0x8000 /* Role-Based Error Reporting */ | ||
| 377 | #define PCI_EXP_DEVCAP_PWR_VAL 0x3fc0000 /* Slot Power Limit Value */ | 378 | #define PCI_EXP_DEVCAP_PWR_VAL 0x3fc0000 /* Slot Power Limit Value */ |
| 378 | #define PCI_EXP_DEVCAP_PWR_SCL 0xc000000 /* Slot Power Limit Scale */ | 379 | #define PCI_EXP_DEVCAP_PWR_SCL 0xc000000 /* Slot Power Limit Scale */ |
| 379 | #define PCI_EXP_DEVCTL 8 /* Device Control */ | 380 | #define PCI_EXP_DEVCTL 8 /* Device Control */ |
diff --git a/include/linux/percpu.h b/include/linux/percpu.h index 4cdd393e71e1..fac3337547eb 100644 --- a/include/linux/percpu.h +++ b/include/linux/percpu.h | |||
| @@ -74,11 +74,6 @@ struct percpu_data { | |||
| 74 | (__typeof__(ptr))__p->ptrs[(cpu)]; \ | 74 | (__typeof__(ptr))__p->ptrs[(cpu)]; \ |
| 75 | }) | 75 | }) |
| 76 | 76 | ||
| 77 | extern void *percpu_populate(void *__pdata, size_t size, gfp_t gfp, int cpu); | ||
| 78 | extern void percpu_depopulate(void *__pdata, int cpu); | ||
| 79 | extern int __percpu_populate_mask(void *__pdata, size_t size, gfp_t gfp, | ||
| 80 | cpumask_t *mask); | ||
| 81 | extern void __percpu_depopulate_mask(void *__pdata, cpumask_t *mask); | ||
| 82 | extern void *__percpu_alloc_mask(size_t size, gfp_t gfp, cpumask_t *mask); | 77 | extern void *__percpu_alloc_mask(size_t size, gfp_t gfp, cpumask_t *mask); |
| 83 | extern void percpu_free(void *__pdata); | 78 | extern void percpu_free(void *__pdata); |
| 84 | 79 | ||
| @@ -86,26 +81,6 @@ extern void percpu_free(void *__pdata); | |||
| 86 | 81 | ||
| 87 | #define percpu_ptr(ptr, cpu) ({ (void)(cpu); (ptr); }) | 82 | #define percpu_ptr(ptr, cpu) ({ (void)(cpu); (ptr); }) |
| 88 | 83 | ||
| 89 | static inline void percpu_depopulate(void *__pdata, int cpu) | ||
| 90 | { | ||
| 91 | } | ||
| 92 | |||
| 93 | static inline void __percpu_depopulate_mask(void *__pdata, cpumask_t *mask) | ||
| 94 | { | ||
| 95 | } | ||
| 96 | |||
| 97 | static inline void *percpu_populate(void *__pdata, size_t size, gfp_t gfp, | ||
| 98 | int cpu) | ||
| 99 | { | ||
| 100 | return percpu_ptr(__pdata, cpu); | ||
| 101 | } | ||
| 102 | |||
| 103 | static inline int __percpu_populate_mask(void *__pdata, size_t size, gfp_t gfp, | ||
| 104 | cpumask_t *mask) | ||
| 105 | { | ||
| 106 | return 0; | ||
| 107 | } | ||
| 108 | |||
| 109 | static __always_inline void *__percpu_alloc_mask(size_t size, gfp_t gfp, cpumask_t *mask) | 84 | static __always_inline void *__percpu_alloc_mask(size_t size, gfp_t gfp, cpumask_t *mask) |
| 110 | { | 85 | { |
| 111 | return kzalloc(size, gfp); | 86 | return kzalloc(size, gfp); |
| @@ -118,10 +93,6 @@ static inline void percpu_free(void *__pdata) | |||
| 118 | 93 | ||
| 119 | #endif /* CONFIG_SMP */ | 94 | #endif /* CONFIG_SMP */ |
| 120 | 95 | ||
| 121 | #define percpu_populate_mask(__pdata, size, gfp, mask) \ | ||
| 122 | __percpu_populate_mask((__pdata), (size), (gfp), &(mask)) | ||
| 123 | #define percpu_depopulate_mask(__pdata, mask) \ | ||
| 124 | __percpu_depopulate_mask((__pdata), &(mask)) | ||
| 125 | #define percpu_alloc_mask(size, gfp, mask) \ | 96 | #define percpu_alloc_mask(size, gfp, mask) \ |
| 126 | __percpu_alloc_mask((size), (gfp), &(mask)) | 97 | __percpu_alloc_mask((size), (gfp), &(mask)) |
| 127 | 98 | ||
diff --git a/include/linux/pid.h b/include/linux/pid.h index c21c7e8124a7..22921ac4cfd9 100644 --- a/include/linux/pid.h +++ b/include/linux/pid.h | |||
| @@ -48,7 +48,7 @@ enum pid_type | |||
| 48 | */ | 48 | */ |
| 49 | 49 | ||
| 50 | struct upid { | 50 | struct upid { |
| 51 | /* Try to keep pid_chain in the same cacheline as nr for find_pid */ | 51 | /* Try to keep pid_chain in the same cacheline as nr for find_vpid */ |
| 52 | int nr; | 52 | int nr; |
| 53 | struct pid_namespace *ns; | 53 | struct pid_namespace *ns; |
| 54 | struct hlist_node pid_chain; | 54 | struct hlist_node pid_chain; |
| @@ -57,10 +57,10 @@ struct upid { | |||
| 57 | struct pid | 57 | struct pid |
| 58 | { | 58 | { |
| 59 | atomic_t count; | 59 | atomic_t count; |
| 60 | unsigned int level; | ||
| 60 | /* lists of tasks that use this pid */ | 61 | /* lists of tasks that use this pid */ |
| 61 | struct hlist_head tasks[PIDTYPE_MAX]; | 62 | struct hlist_head tasks[PIDTYPE_MAX]; |
| 62 | struct rcu_head rcu; | 63 | struct rcu_head rcu; |
| 63 | unsigned int level; | ||
| 64 | struct upid numbers[1]; | 64 | struct upid numbers[1]; |
| 65 | }; | 65 | }; |
| 66 | 66 | ||
| @@ -105,14 +105,12 @@ extern struct pid_namespace init_pid_ns; | |||
| 105 | * or rcu_read_lock() held. | 105 | * or rcu_read_lock() held. |
| 106 | * | 106 | * |
| 107 | * find_pid_ns() finds the pid in the namespace specified | 107 | * find_pid_ns() finds the pid in the namespace specified |
| 108 | * find_pid() find the pid by its global id, i.e. in the init namespace | ||
| 109 | * find_vpid() finr the pid by its virtual id, i.e. in the current namespace | 108 | * find_vpid() finr the pid by its virtual id, i.e. in the current namespace |
| 110 | * | 109 | * |
| 111 | * see also find_task_by_pid() set in include/linux/sched.h | 110 | * see also find_task_by_vpid() set in include/linux/sched.h |
| 112 | */ | 111 | */ |
| 113 | extern struct pid *find_pid_ns(int nr, struct pid_namespace *ns); | 112 | extern struct pid *find_pid_ns(int nr, struct pid_namespace *ns); |
| 114 | extern struct pid *find_vpid(int nr); | 113 | extern struct pid *find_vpid(int nr); |
| 115 | extern struct pid *find_pid(int nr); | ||
| 116 | 114 | ||
| 117 | /* | 115 | /* |
| 118 | * Lookup a PID in the hash table, and return with it's count elevated. | 116 | * Lookup a PID in the hash table, and return with it's count elevated. |
diff --git a/include/linux/pid_namespace.h b/include/linux/pid_namespace.h index caff5283d15c..1af82c4e17d4 100644 --- a/include/linux/pid_namespace.h +++ b/include/linux/pid_namespace.h | |||
| @@ -14,6 +14,8 @@ struct pidmap { | |||
| 14 | 14 | ||
| 15 | #define PIDMAP_ENTRIES ((PID_MAX_LIMIT + 8*PAGE_SIZE - 1)/PAGE_SIZE/8) | 15 | #define PIDMAP_ENTRIES ((PID_MAX_LIMIT + 8*PAGE_SIZE - 1)/PAGE_SIZE/8) |
| 16 | 16 | ||
| 17 | struct bsd_acct_struct; | ||
| 18 | |||
| 17 | struct pid_namespace { | 19 | struct pid_namespace { |
| 18 | struct kref kref; | 20 | struct kref kref; |
| 19 | struct pidmap pidmap[PIDMAP_ENTRIES]; | 21 | struct pidmap pidmap[PIDMAP_ENTRIES]; |
| @@ -25,6 +27,9 @@ struct pid_namespace { | |||
| 25 | #ifdef CONFIG_PROC_FS | 27 | #ifdef CONFIG_PROC_FS |
| 26 | struct vfsmount *proc_mnt; | 28 | struct vfsmount *proc_mnt; |
| 27 | #endif | 29 | #endif |
| 30 | #ifdef CONFIG_BSD_PROCESS_ACCT | ||
| 31 | struct bsd_acct_struct *bacct; | ||
| 32 | #endif | ||
| 28 | }; | 33 | }; |
| 29 | 34 | ||
| 30 | extern struct pid_namespace init_pid_ns; | 35 | extern struct pid_namespace init_pid_ns; |
| @@ -85,4 +90,7 @@ static inline struct task_struct *task_child_reaper(struct task_struct *tsk) | |||
| 85 | return tsk->nsproxy->pid_ns->child_reaper; | 90 | return tsk->nsproxy->pid_ns->child_reaper; |
| 86 | } | 91 | } |
| 87 | 92 | ||
| 93 | void pidhash_init(void); | ||
| 94 | void pidmap_init(void); | ||
| 95 | |||
| 88 | #endif /* _LINUX_PID_NS_H */ | 96 | #endif /* _LINUX_PID_NS_H */ |
diff --git a/include/linux/pm.h b/include/linux/pm.h index 4ad9de94449a..4dcce54b6d76 100644 --- a/include/linux/pm.h +++ b/include/linux/pm.h | |||
| @@ -22,78 +22,6 @@ | |||
| 22 | #define _LINUX_PM_H | 22 | #define _LINUX_PM_H |
| 23 | 23 | ||
| 24 | #include <linux/list.h> | 24 | #include <linux/list.h> |
| 25 | #include <asm/atomic.h> | ||
| 26 | #include <asm/errno.h> | ||
| 27 | |||
| 28 | /* | ||
| 29 | * Power management requests... these are passed to pm_send_all() and friends. | ||
| 30 | * | ||
| 31 | * these functions are old and deprecated, see below. | ||
| 32 | */ | ||
| 33 | typedef int __bitwise pm_request_t; | ||
| 34 | |||
| 35 | #define PM_SUSPEND ((__force pm_request_t) 1) /* enter D1-D3 */ | ||
| 36 | #define PM_RESUME ((__force pm_request_t) 2) /* enter D0 */ | ||
| 37 | |||
| 38 | |||
| 39 | /* | ||
| 40 | * Device types... these are passed to pm_register | ||
| 41 | */ | ||
| 42 | typedef int __bitwise pm_dev_t; | ||
| 43 | |||
| 44 | #define PM_UNKNOWN_DEV ((__force pm_dev_t) 0) /* generic */ | ||
| 45 | #define PM_SYS_DEV ((__force pm_dev_t) 1) /* system device (fan, KB controller, ...) */ | ||
| 46 | #define PM_PCI_DEV ((__force pm_dev_t) 2) /* PCI device */ | ||
| 47 | #define PM_USB_DEV ((__force pm_dev_t) 3) /* USB device */ | ||
| 48 | #define PM_SCSI_DEV ((__force pm_dev_t) 4) /* SCSI device */ | ||
| 49 | #define PM_ISA_DEV ((__force pm_dev_t) 5) /* ISA device */ | ||
| 50 | #define PM_MTD_DEV ((__force pm_dev_t) 6) /* Memory Technology Device */ | ||
| 51 | |||
| 52 | /* | ||
| 53 | * System device hardware ID (PnP) values | ||
| 54 | */ | ||
| 55 | enum | ||
| 56 | { | ||
| 57 | PM_SYS_UNKNOWN = 0x00000000, /* generic */ | ||
| 58 | PM_SYS_KBC = 0x41d00303, /* keyboard controller */ | ||
| 59 | PM_SYS_COM = 0x41d00500, /* serial port */ | ||
| 60 | PM_SYS_IRDA = 0x41d00510, /* IRDA controller */ | ||
| 61 | PM_SYS_FDC = 0x41d00700, /* floppy controller */ | ||
| 62 | PM_SYS_VGA = 0x41d00900, /* VGA controller */ | ||
| 63 | PM_SYS_PCMCIA = 0x41d00e00, /* PCMCIA controller */ | ||
| 64 | }; | ||
| 65 | |||
| 66 | /* | ||
| 67 | * Device identifier | ||
| 68 | */ | ||
| 69 | #define PM_PCI_ID(dev) ((dev)->bus->number << 16 | (dev)->devfn) | ||
| 70 | |||
| 71 | /* | ||
| 72 | * Request handler callback | ||
| 73 | */ | ||
| 74 | struct pm_dev; | ||
| 75 | |||
| 76 | typedef int (*pm_callback)(struct pm_dev *dev, pm_request_t rqst, void *data); | ||
| 77 | |||
| 78 | /* | ||
| 79 | * Dynamic device information | ||
| 80 | */ | ||
| 81 | struct pm_dev | ||
| 82 | { | ||
| 83 | pm_dev_t type; | ||
| 84 | unsigned long id; | ||
| 85 | pm_callback callback; | ||
| 86 | void *data; | ||
| 87 | |||
| 88 | unsigned long flags; | ||
| 89 | unsigned long state; | ||
| 90 | unsigned long prev_state; | ||
| 91 | |||
| 92 | struct list_head entry; | ||
| 93 | }; | ||
| 94 | |||
| 95 | /* Functions above this comment are list-based old-style power | ||
| 96 | * management. Please avoid using them. */ | ||
| 97 | 25 | ||
| 98 | /* | 26 | /* |
| 99 | * Callbacks for platform drivers to implement. | 27 | * Callbacks for platform drivers to implement. |
| @@ -317,6 +245,21 @@ struct pm_ext_ops { | |||
| 317 | * RECOVER Creation of a hibernation image or restoration of the main | 245 | * RECOVER Creation of a hibernation image or restoration of the main |
| 318 | * memory contents from a hibernation image has failed, call | 246 | * memory contents from a hibernation image has failed, call |
| 319 | * ->thaw() and ->complete() for all devices. | 247 | * ->thaw() and ->complete() for all devices. |
| 248 | * | ||
| 249 | * The following PM_EVENT_ messages are defined for internal use by | ||
| 250 | * kernel subsystems. They are never issued by the PM core. | ||
| 251 | * | ||
| 252 | * USER_SUSPEND Manual selective suspend was issued by userspace. | ||
| 253 | * | ||
| 254 | * USER_RESUME Manual selective resume was issued by userspace. | ||
| 255 | * | ||
| 256 | * REMOTE_WAKEUP Remote-wakeup request was received from the device. | ||
| 257 | * | ||
| 258 | * AUTO_SUSPEND Automatic (device idle) runtime suspend was | ||
| 259 | * initiated by the subsystem. | ||
| 260 | * | ||
| 261 | * AUTO_RESUME Automatic (device needed) runtime resume was | ||
| 262 | * requested by a driver. | ||
| 320 | */ | 263 | */ |
| 321 | 264 | ||
| 322 | #define PM_EVENT_ON 0x0000 | 265 | #define PM_EVENT_ON 0x0000 |
| @@ -328,9 +271,18 @@ struct pm_ext_ops { | |||
| 328 | #define PM_EVENT_THAW 0x0020 | 271 | #define PM_EVENT_THAW 0x0020 |
| 329 | #define PM_EVENT_RESTORE 0x0040 | 272 | #define PM_EVENT_RESTORE 0x0040 |
| 330 | #define PM_EVENT_RECOVER 0x0080 | 273 | #define PM_EVENT_RECOVER 0x0080 |
| 274 | #define PM_EVENT_USER 0x0100 | ||
| 275 | #define PM_EVENT_REMOTE 0x0200 | ||
| 276 | #define PM_EVENT_AUTO 0x0400 | ||
| 331 | 277 | ||
| 332 | #define PM_EVENT_SLEEP (PM_EVENT_SUSPEND | PM_EVENT_HIBERNATE) | 278 | #define PM_EVENT_SLEEP (PM_EVENT_SUSPEND | PM_EVENT_HIBERNATE) |
| 279 | #define PM_EVENT_USER_SUSPEND (PM_EVENT_USER | PM_EVENT_SUSPEND) | ||
| 280 | #define PM_EVENT_USER_RESUME (PM_EVENT_USER | PM_EVENT_RESUME) | ||
| 281 | #define PM_EVENT_REMOTE_WAKEUP (PM_EVENT_REMOTE | PM_EVENT_RESUME) | ||
| 282 | #define PM_EVENT_AUTO_SUSPEND (PM_EVENT_AUTO | PM_EVENT_SUSPEND) | ||
| 283 | #define PM_EVENT_AUTO_RESUME (PM_EVENT_AUTO | PM_EVENT_RESUME) | ||
| 333 | 284 | ||
| 285 | #define PMSG_ON ((struct pm_message){ .event = PM_EVENT_ON, }) | ||
| 334 | #define PMSG_FREEZE ((struct pm_message){ .event = PM_EVENT_FREEZE, }) | 286 | #define PMSG_FREEZE ((struct pm_message){ .event = PM_EVENT_FREEZE, }) |
| 335 | #define PMSG_QUIESCE ((struct pm_message){ .event = PM_EVENT_QUIESCE, }) | 287 | #define PMSG_QUIESCE ((struct pm_message){ .event = PM_EVENT_QUIESCE, }) |
| 336 | #define PMSG_SUSPEND ((struct pm_message){ .event = PM_EVENT_SUSPEND, }) | 288 | #define PMSG_SUSPEND ((struct pm_message){ .event = PM_EVENT_SUSPEND, }) |
| @@ -339,7 +291,16 @@ struct pm_ext_ops { | |||
| 339 | #define PMSG_THAW ((struct pm_message){ .event = PM_EVENT_THAW, }) | 291 | #define PMSG_THAW ((struct pm_message){ .event = PM_EVENT_THAW, }) |
| 340 | #define PMSG_RESTORE ((struct pm_message){ .event = PM_EVENT_RESTORE, }) | 292 | #define PMSG_RESTORE ((struct pm_message){ .event = PM_EVENT_RESTORE, }) |
| 341 | #define PMSG_RECOVER ((struct pm_message){ .event = PM_EVENT_RECOVER, }) | 293 | #define PMSG_RECOVER ((struct pm_message){ .event = PM_EVENT_RECOVER, }) |
| 342 | #define PMSG_ON ((struct pm_message){ .event = PM_EVENT_ON, }) | 294 | #define PMSG_USER_SUSPEND ((struct pm_messge) \ |
| 295 | { .event = PM_EVENT_USER_SUSPEND, }) | ||
| 296 | #define PMSG_USER_RESUME ((struct pm_messge) \ | ||
| 297 | { .event = PM_EVENT_USER_RESUME, }) | ||
| 298 | #define PMSG_REMOTE_RESUME ((struct pm_messge) \ | ||
| 299 | { .event = PM_EVENT_REMOTE_RESUME, }) | ||
| 300 | #define PMSG_AUTO_SUSPEND ((struct pm_messge) \ | ||
| 301 | { .event = PM_EVENT_AUTO_SUSPEND, }) | ||
| 302 | #define PMSG_AUTO_RESUME ((struct pm_messge) \ | ||
| 303 | { .event = PM_EVENT_AUTO_RESUME, }) | ||
| 343 | 304 | ||
| 344 | /** | 305 | /** |
| 345 | * Device power management states | 306 | * Device power management states |
diff --git a/include/linux/pm_legacy.h b/include/linux/pm_legacy.h deleted file mode 100644 index 446f4f42b952..000000000000 --- a/include/linux/pm_legacy.h +++ /dev/null | |||
| @@ -1,35 +0,0 @@ | |||
| 1 | #ifndef __LINUX_PM_LEGACY_H__ | ||
| 2 | #define __LINUX_PM_LEGACY_H__ | ||
| 3 | |||
| 4 | |||
| 5 | #ifdef CONFIG_PM_LEGACY | ||
| 6 | |||
| 7 | /* | ||
| 8 | * Register a device with power management | ||
| 9 | */ | ||
| 10 | struct pm_dev __deprecated * | ||
| 11 | pm_register(pm_dev_t type, unsigned long id, pm_callback callback); | ||
| 12 | |||
| 13 | /* | ||
| 14 | * Send a request to all devices | ||
| 15 | */ | ||
| 16 | int __deprecated pm_send_all(pm_request_t rqst, void *data); | ||
| 17 | |||
| 18 | #else /* CONFIG_PM_LEGACY */ | ||
| 19 | |||
| 20 | static inline struct pm_dev *pm_register(pm_dev_t type, | ||
| 21 | unsigned long id, | ||
| 22 | pm_callback callback) | ||
| 23 | { | ||
| 24 | return NULL; | ||
| 25 | } | ||
| 26 | |||
| 27 | static inline int pm_send_all(pm_request_t rqst, void *data) | ||
| 28 | { | ||
| 29 | return 0; | ||
| 30 | } | ||
| 31 | |||
| 32 | #endif /* CONFIG_PM_LEGACY */ | ||
| 33 | |||
| 34 | #endif /* __LINUX_PM_LEGACY_H__ */ | ||
| 35 | |||
diff --git a/include/linux/pm_qos_params.h b/include/linux/pm_qos_params.h index 2e4e97bd19f7..d74f75ed1e47 100644 --- a/include/linux/pm_qos_params.h +++ b/include/linux/pm_qos_params.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* interface for the pm_qos_power infrastructure of the linux kernel. | 1 | /* interface for the pm_qos_power infrastructure of the linux kernel. |
| 2 | * | 2 | * |
| 3 | * Mark Gross | 3 | * Mark Gross <mgross@linux.intel.com> |
| 4 | */ | 4 | */ |
| 5 | #include <linux/list.h> | 5 | #include <linux/list.h> |
| 6 | #include <linux/notifier.h> | 6 | #include <linux/notifier.h> |
diff --git a/include/linux/power_supply.h b/include/linux/power_supply.h index 68ed19ccf1f7..ea96ead1d39d 100644 --- a/include/linux/power_supply.h +++ b/include/linux/power_supply.h | |||
| @@ -78,6 +78,7 @@ enum power_supply_property { | |||
| 78 | POWER_SUPPLY_PROP_CHARGE_EMPTY, | 78 | POWER_SUPPLY_PROP_CHARGE_EMPTY, |
| 79 | POWER_SUPPLY_PROP_CHARGE_NOW, | 79 | POWER_SUPPLY_PROP_CHARGE_NOW, |
| 80 | POWER_SUPPLY_PROP_CHARGE_AVG, | 80 | POWER_SUPPLY_PROP_CHARGE_AVG, |
| 81 | POWER_SUPPLY_PROP_CHARGE_COUNTER, | ||
| 81 | POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN, | 82 | POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN, |
| 82 | POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN, | 83 | POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN, |
| 83 | POWER_SUPPLY_PROP_ENERGY_FULL, | 84 | POWER_SUPPLY_PROP_ENERGY_FULL, |
diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h index fff1d27ddb4c..fb61850d1cfc 100644 --- a/include/linux/proc_fs.h +++ b/include/linux/proc_fs.h | |||
| @@ -79,6 +79,7 @@ struct proc_dir_entry { | |||
| 79 | int pde_users; /* number of callers into module in progress */ | 79 | int pde_users; /* number of callers into module in progress */ |
| 80 | spinlock_t pde_unload_lock; /* proc_fops checks and pde_users bumps */ | 80 | spinlock_t pde_unload_lock; /* proc_fops checks and pde_users bumps */ |
| 81 | struct completion *pde_unload_completion; | 81 | struct completion *pde_unload_completion; |
| 82 | struct list_head pde_openers; /* who did ->open, but not ->release */ | ||
| 82 | }; | 83 | }; |
| 83 | 84 | ||
| 84 | struct kcore_list { | 85 | struct kcore_list { |
| @@ -138,7 +139,6 @@ extern int proc_readdir(struct file *, void *, filldir_t); | |||
| 138 | extern struct dentry *proc_lookup(struct inode *, struct dentry *, struct nameidata *); | 139 | extern struct dentry *proc_lookup(struct inode *, struct dentry *, struct nameidata *); |
| 139 | 140 | ||
| 140 | extern const struct file_operations proc_kcore_operations; | 141 | extern const struct file_operations proc_kcore_operations; |
| 141 | extern const struct file_operations proc_kmsg_operations; | ||
| 142 | extern const struct file_operations ppc_htab_operations; | 142 | extern const struct file_operations ppc_htab_operations; |
| 143 | 143 | ||
| 144 | extern int pid_ns_prepare_proc(struct pid_namespace *ns); | 144 | extern int pid_ns_prepare_proc(struct pid_namespace *ns); |
| @@ -282,11 +282,16 @@ union proc_op { | |||
| 282 | struct task_struct *task); | 282 | struct task_struct *task); |
| 283 | }; | 283 | }; |
| 284 | 284 | ||
| 285 | struct ctl_table_header; | ||
| 286 | struct ctl_table; | ||
| 287 | |||
| 285 | struct proc_inode { | 288 | struct proc_inode { |
| 286 | struct pid *pid; | 289 | struct pid *pid; |
| 287 | int fd; | 290 | int fd; |
| 288 | union proc_op op; | 291 | union proc_op op; |
| 289 | struct proc_dir_entry *pde; | 292 | struct proc_dir_entry *pde; |
| 293 | struct ctl_table_header *sysctl; | ||
| 294 | struct ctl_table *sysctl_entry; | ||
| 290 | struct inode vfs_inode; | 295 | struct inode vfs_inode; |
| 291 | }; | 296 | }; |
| 292 | 297 | ||
| @@ -305,8 +310,6 @@ static inline struct net *PDE_NET(struct proc_dir_entry *pde) | |||
| 305 | return pde->parent->data; | 310 | return pde->parent->data; |
| 306 | } | 311 | } |
| 307 | 312 | ||
| 308 | struct net *get_proc_net(const struct inode *inode); | ||
| 309 | |||
| 310 | struct proc_maps_private { | 313 | struct proc_maps_private { |
| 311 | struct pid *pid; | 314 | struct pid *pid; |
| 312 | struct task_struct *task; | 315 | struct task_struct *task; |
diff --git a/include/linux/profile.h b/include/linux/profile.h index 05c1cc736937..7e7087239af5 100644 --- a/include/linux/profile.h +++ b/include/linux/profile.h | |||
| @@ -8,8 +8,6 @@ | |||
| 8 | 8 | ||
| 9 | #include <asm/errno.h> | 9 | #include <asm/errno.h> |
| 10 | 10 | ||
| 11 | extern int prof_on __read_mostly; | ||
| 12 | |||
| 13 | #define CPU_PROFILING 1 | 11 | #define CPU_PROFILING 1 |
| 14 | #define SCHED_PROFILING 2 | 12 | #define SCHED_PROFILING 2 |
| 15 | #define SLEEP_PROFILING 3 | 13 | #define SLEEP_PROFILING 3 |
| @@ -19,14 +17,31 @@ struct proc_dir_entry; | |||
| 19 | struct pt_regs; | 17 | struct pt_regs; |
| 20 | struct notifier_block; | 18 | struct notifier_block; |
| 21 | 19 | ||
| 20 | #if defined(CONFIG_PROFILING) && defined(CONFIG_PROC_FS) | ||
| 21 | void create_prof_cpu_mask(struct proc_dir_entry *de); | ||
| 22 | #else | ||
| 23 | static inline void create_prof_cpu_mask(struct proc_dir_entry *de) | ||
| 24 | { | ||
| 25 | } | ||
| 26 | #endif | ||
| 27 | |||
| 28 | enum profile_type { | ||
| 29 | PROFILE_TASK_EXIT, | ||
| 30 | PROFILE_MUNMAP | ||
| 31 | }; | ||
| 32 | |||
| 33 | #ifdef CONFIG_PROFILING | ||
| 34 | |||
| 35 | extern int prof_on __read_mostly; | ||
| 36 | |||
| 22 | /* init basic kernel profiler */ | 37 | /* init basic kernel profiler */ |
| 23 | void __init profile_init(void); | 38 | void __init profile_init(void); |
| 24 | void profile_tick(int); | 39 | void profile_tick(int type); |
| 25 | 40 | ||
| 26 | /* | 41 | /* |
| 27 | * Add multiple profiler hits to a given address: | 42 | * Add multiple profiler hits to a given address: |
| 28 | */ | 43 | */ |
| 29 | void profile_hits(int, void *ip, unsigned int nr_hits); | 44 | void profile_hits(int type, void *ip, unsigned int nr_hits); |
| 30 | 45 | ||
| 31 | /* | 46 | /* |
| 32 | * Single profiler hit: | 47 | * Single profiler hit: |
| @@ -40,19 +55,6 @@ static inline void profile_hit(int type, void *ip) | |||
| 40 | profile_hits(type, ip, 1); | 55 | profile_hits(type, ip, 1); |
| 41 | } | 56 | } |
| 42 | 57 | ||
| 43 | #ifdef CONFIG_PROC_FS | ||
| 44 | void create_prof_cpu_mask(struct proc_dir_entry *); | ||
| 45 | #else | ||
| 46 | #define create_prof_cpu_mask(x) do { (void)(x); } while (0) | ||
| 47 | #endif | ||
| 48 | |||
| 49 | enum profile_type { | ||
| 50 | PROFILE_TASK_EXIT, | ||
| 51 | PROFILE_MUNMAP | ||
| 52 | }; | ||
| 53 | |||
| 54 | #ifdef CONFIG_PROFILING | ||
| 55 | |||
| 56 | struct task_struct; | 58 | struct task_struct; |
| 57 | struct mm_struct; | 59 | struct mm_struct; |
| 58 | 60 | ||
| @@ -80,6 +82,28 @@ struct pt_regs; | |||
| 80 | 82 | ||
| 81 | #else | 83 | #else |
| 82 | 84 | ||
| 85 | #define prof_on 0 | ||
| 86 | |||
| 87 | static inline void profile_init(void) | ||
| 88 | { | ||
| 89 | return; | ||
| 90 | } | ||
| 91 | |||
| 92 | static inline void profile_tick(int type) | ||
| 93 | { | ||
| 94 | return; | ||
| 95 | } | ||
| 96 | |||
| 97 | static inline void profile_hits(int type, void *ip, unsigned int nr_hits) | ||
| 98 | { | ||
| 99 | return; | ||
| 100 | } | ||
| 101 | |||
| 102 | static inline void profile_hit(int type, void *ip) | ||
| 103 | { | ||
| 104 | return; | ||
| 105 | } | ||
| 106 | |||
| 83 | static inline int task_handoff_register(struct notifier_block * n) | 107 | static inline int task_handoff_register(struct notifier_block * n) |
| 84 | { | 108 | { |
| 85 | return -ENOSYS; | 109 | return -ENOSYS; |
diff --git a/include/linux/ptrace.h b/include/linux/ptrace.h index c6f5f9dd0cee..ea7416c901d1 100644 --- a/include/linux/ptrace.h +++ b/include/linux/ptrace.h | |||
| @@ -121,6 +121,74 @@ static inline void ptrace_unlink(struct task_struct *child) | |||
| 121 | int generic_ptrace_peekdata(struct task_struct *tsk, long addr, long data); | 121 | int generic_ptrace_peekdata(struct task_struct *tsk, long addr, long data); |
| 122 | int generic_ptrace_pokedata(struct task_struct *tsk, long addr, long data); | 122 | int generic_ptrace_pokedata(struct task_struct *tsk, long addr, long data); |
| 123 | 123 | ||
| 124 | /** | ||
| 125 | * task_ptrace - return %PT_* flags that apply to a task | ||
| 126 | * @task: pointer to &task_struct in question | ||
| 127 | * | ||
| 128 | * Returns the %PT_* flags that apply to @task. | ||
| 129 | */ | ||
| 130 | static inline int task_ptrace(struct task_struct *task) | ||
| 131 | { | ||
| 132 | return task->ptrace; | ||
| 133 | } | ||
| 134 | |||
| 135 | /** | ||
| 136 | * ptrace_event - possibly stop for a ptrace event notification | ||
| 137 | * @mask: %PT_* bit to check in @current->ptrace | ||
| 138 | * @event: %PTRACE_EVENT_* value to report if @mask is set | ||
| 139 | * @message: value for %PTRACE_GETEVENTMSG to return | ||
| 140 | * | ||
| 141 | * This checks the @mask bit to see if ptrace wants stops for this event. | ||
| 142 | * If so we stop, reporting @event and @message to the ptrace parent. | ||
| 143 | * | ||
| 144 | * Returns nonzero if we did a ptrace notification, zero if not. | ||
| 145 | * | ||
| 146 | * Called without locks. | ||
| 147 | */ | ||
| 148 | static inline int ptrace_event(int mask, int event, unsigned long message) | ||
| 149 | { | ||
| 150 | if (mask && likely(!(current->ptrace & mask))) | ||
| 151 | return 0; | ||
| 152 | current->ptrace_message = message; | ||
| 153 | ptrace_notify((event << 8) | SIGTRAP); | ||
| 154 | return 1; | ||
| 155 | } | ||
| 156 | |||
| 157 | /** | ||
| 158 | * ptrace_init_task - initialize ptrace state for a new child | ||
| 159 | * @child: new child task | ||
| 160 | * @ptrace: true if child should be ptrace'd by parent's tracer | ||
| 161 | * | ||
| 162 | * This is called immediately after adding @child to its parent's children | ||
| 163 | * list. @ptrace is false in the normal case, and true to ptrace @child. | ||
| 164 | * | ||
| 165 | * Called with current's siglock and write_lock_irq(&tasklist_lock) held. | ||
| 166 | */ | ||
| 167 | static inline void ptrace_init_task(struct task_struct *child, bool ptrace) | ||
| 168 | { | ||
| 169 | INIT_LIST_HEAD(&child->ptrace_entry); | ||
| 170 | INIT_LIST_HEAD(&child->ptraced); | ||
| 171 | child->parent = child->real_parent; | ||
| 172 | child->ptrace = 0; | ||
| 173 | if (unlikely(ptrace)) { | ||
| 174 | child->ptrace = current->ptrace; | ||
| 175 | ptrace_link(child, current->parent); | ||
| 176 | } | ||
| 177 | } | ||
| 178 | |||
| 179 | /** | ||
| 180 | * ptrace_release_task - final ptrace-related cleanup of a zombie being reaped | ||
| 181 | * @task: task in %EXIT_DEAD state | ||
| 182 | * | ||
| 183 | * Called with write_lock(&tasklist_lock) held. | ||
| 184 | */ | ||
| 185 | static inline void ptrace_release_task(struct task_struct *task) | ||
| 186 | { | ||
| 187 | BUG_ON(!list_empty(&task->ptraced)); | ||
| 188 | ptrace_unlink(task); | ||
| 189 | BUG_ON(!list_empty(&task->ptrace_entry)); | ||
| 190 | } | ||
| 191 | |||
| 124 | #ifndef force_successful_syscall_return | 192 | #ifndef force_successful_syscall_return |
| 125 | /* | 193 | /* |
| 126 | * System call handlers that, upon successful completion, need to return a | 194 | * System call handlers that, upon successful completion, need to return a |
| @@ -246,6 +314,10 @@ static inline void user_enable_block_step(struct task_struct *task) | |||
| 246 | #define arch_ptrace_stop(code, info) do { } while (0) | 314 | #define arch_ptrace_stop(code, info) do { } while (0) |
| 247 | #endif | 315 | #endif |
| 248 | 316 | ||
| 317 | extern int task_current_syscall(struct task_struct *target, long *callno, | ||
| 318 | unsigned long args[6], unsigned int maxargs, | ||
| 319 | unsigned long *sp, unsigned long *pc); | ||
| 320 | |||
| 249 | #endif | 321 | #endif |
| 250 | 322 | ||
| 251 | #endif | 323 | #endif |
diff --git a/include/linux/quota.h b/include/linux/quota.h index dcddfb200947..376a05048bc5 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h | |||
| @@ -41,9 +41,6 @@ | |||
| 41 | #define __DQUOT_VERSION__ "dquot_6.5.1" | 41 | #define __DQUOT_VERSION__ "dquot_6.5.1" |
| 42 | #define __DQUOT_NUM_VERSION__ 6*10000+5*100+1 | 42 | #define __DQUOT_NUM_VERSION__ 6*10000+5*100+1 |
| 43 | 43 | ||
| 44 | typedef __kernel_uid32_t qid_t; /* Type in which we store ids in memory */ | ||
| 45 | typedef __u64 qsize_t; /* Type in which we store sizes */ | ||
| 46 | |||
| 47 | /* Size of blocks in which are counted size limits */ | 44 | /* Size of blocks in which are counted size limits */ |
| 48 | #define QUOTABLOCK_BITS 10 | 45 | #define QUOTABLOCK_BITS 10 |
| 49 | #define QUOTABLOCK_SIZE (1 << QUOTABLOCK_BITS) | 46 | #define QUOTABLOCK_SIZE (1 << QUOTABLOCK_BITS) |
| @@ -138,6 +135,10 @@ struct if_dqinfo { | |||
| 138 | #define QUOTA_NL_BHARDWARN 4 /* Block hardlimit reached */ | 135 | #define QUOTA_NL_BHARDWARN 4 /* Block hardlimit reached */ |
| 139 | #define QUOTA_NL_BSOFTLONGWARN 5 /* Block grace time expired */ | 136 | #define QUOTA_NL_BSOFTLONGWARN 5 /* Block grace time expired */ |
| 140 | #define QUOTA_NL_BSOFTWARN 6 /* Block softlimit reached */ | 137 | #define QUOTA_NL_BSOFTWARN 6 /* Block softlimit reached */ |
| 138 | #define QUOTA_NL_IHARDBELOW 7 /* Usage got below inode hardlimit */ | ||
| 139 | #define QUOTA_NL_ISOFTBELOW 8 /* Usage got below inode softlimit */ | ||
| 140 | #define QUOTA_NL_BHARDBELOW 9 /* Usage got below block hardlimit */ | ||
| 141 | #define QUOTA_NL_BSOFTBELOW 10 /* Usage got below block softlimit */ | ||
| 141 | 142 | ||
| 142 | enum { | 143 | enum { |
| 143 | QUOTA_NL_C_UNSPEC, | 144 | QUOTA_NL_C_UNSPEC, |
| @@ -172,6 +173,9 @@ enum { | |||
| 172 | 173 | ||
| 173 | #include <asm/atomic.h> | 174 | #include <asm/atomic.h> |
| 174 | 175 | ||
| 176 | typedef __kernel_uid32_t qid_t; /* Type in which we store ids in memory */ | ||
| 177 | typedef __u64 qsize_t; /* Type in which we store sizes */ | ||
| 178 | |||
| 175 | extern spinlock_t dq_data_lock; | 179 | extern spinlock_t dq_data_lock; |
| 176 | 180 | ||
| 177 | /* Maximal numbers of writes for quota operation (insert/delete/update) | 181 | /* Maximal numbers of writes for quota operation (insert/delete/update) |
| @@ -223,12 +227,10 @@ struct super_block; | |||
| 223 | #define DQF_INFO_DIRTY (1 << DQF_INFO_DIRTY_B) /* Is info dirty? */ | 227 | #define DQF_INFO_DIRTY (1 << DQF_INFO_DIRTY_B) /* Is info dirty? */ |
| 224 | 228 | ||
| 225 | extern void mark_info_dirty(struct super_block *sb, int type); | 229 | extern void mark_info_dirty(struct super_block *sb, int type); |
| 226 | #define info_dirty(info) test_bit(DQF_INFO_DIRTY_B, &(info)->dqi_flags) | 230 | static inline int info_dirty(struct mem_dqinfo *info) |
| 227 | #define info_any_dquot_dirty(info) (!list_empty(&(info)->dqi_dirty_list)) | 231 | { |
| 228 | #define info_any_dirty(info) (info_dirty(info) || info_any_dquot_dirty(info)) | 232 | return test_bit(DQF_INFO_DIRTY_B, &info->dqi_flags); |
| 229 | 233 | } | |
| 230 | #define sb_dqopt(sb) (&(sb)->s_dquot) | ||
| 231 | #define sb_dqinfo(sb, type) (sb_dqopt(sb)->info+(type)) | ||
| 232 | 234 | ||
| 233 | struct dqstats { | 235 | struct dqstats { |
| 234 | int lookups; | 236 | int lookups; |
| @@ -337,19 +339,6 @@ struct quota_info { | |||
| 337 | struct quota_format_ops *ops[MAXQUOTAS]; /* Operations for each type */ | 339 | struct quota_format_ops *ops[MAXQUOTAS]; /* Operations for each type */ |
| 338 | }; | 340 | }; |
| 339 | 341 | ||
| 340 | #define sb_has_quota_enabled(sb, type) ((type)==USRQUOTA ? \ | ||
| 341 | (sb_dqopt(sb)->flags & DQUOT_USR_ENABLED) : (sb_dqopt(sb)->flags & DQUOT_GRP_ENABLED)) | ||
| 342 | |||
| 343 | #define sb_any_quota_enabled(sb) (sb_has_quota_enabled(sb, USRQUOTA) | \ | ||
| 344 | sb_has_quota_enabled(sb, GRPQUOTA)) | ||
| 345 | |||
| 346 | #define sb_has_quota_suspended(sb, type) \ | ||
| 347 | ((type) == USRQUOTA ? (sb_dqopt(sb)->flags & DQUOT_USR_SUSPENDED) : \ | ||
| 348 | (sb_dqopt(sb)->flags & DQUOT_GRP_SUSPENDED)) | ||
| 349 | |||
| 350 | #define sb_any_quota_suspended(sb) (sb_has_quota_suspended(sb, USRQUOTA) | \ | ||
| 351 | sb_has_quota_suspended(sb, GRPQUOTA)) | ||
| 352 | |||
| 353 | int register_quota_format(struct quota_format_type *fmt); | 342 | int register_quota_format(struct quota_format_type *fmt); |
| 354 | void unregister_quota_format(struct quota_format_type *fmt); | 343 | void unregister_quota_format(struct quota_format_type *fmt); |
| 355 | 344 | ||
diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index f86702053853..ca6b9b5c8d52 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h | |||
| @@ -11,42 +11,87 @@ | |||
| 11 | #define _LINUX_QUOTAOPS_ | 11 | #define _LINUX_QUOTAOPS_ |
| 12 | 12 | ||
| 13 | #include <linux/smp_lock.h> | 13 | #include <linux/smp_lock.h> |
| 14 | |||
| 15 | #include <linux/fs.h> | 14 | #include <linux/fs.h> |
| 16 | 15 | ||
| 16 | static inline struct quota_info *sb_dqopt(struct super_block *sb) | ||
| 17 | { | ||
| 18 | return &sb->s_dquot; | ||
| 19 | } | ||
| 20 | |||
| 17 | #if defined(CONFIG_QUOTA) | 21 | #if defined(CONFIG_QUOTA) |
| 18 | 22 | ||
| 19 | /* | 23 | /* |
| 20 | * declaration of quota_function calls in kernel. | 24 | * declaration of quota_function calls in kernel. |
| 21 | */ | 25 | */ |
| 22 | extern void sync_dquots(struct super_block *sb, int type); | 26 | void sync_dquots(struct super_block *sb, int type); |
| 23 | 27 | ||
| 24 | extern int dquot_initialize(struct inode *inode, int type); | 28 | int dquot_initialize(struct inode *inode, int type); |
| 25 | extern int dquot_drop(struct inode *inode); | 29 | int dquot_drop(struct inode *inode); |
| 26 | 30 | ||
| 27 | extern int dquot_alloc_space(struct inode *inode, qsize_t number, int prealloc); | 31 | int dquot_alloc_space(struct inode *inode, qsize_t number, int prealloc); |
| 28 | extern int dquot_alloc_inode(const struct inode *inode, unsigned long number); | 32 | int dquot_alloc_inode(const struct inode *inode, unsigned long number); |
| 29 | 33 | ||
| 30 | extern int dquot_free_space(struct inode *inode, qsize_t number); | 34 | int dquot_free_space(struct inode *inode, qsize_t number); |
| 31 | extern int dquot_free_inode(const struct inode *inode, unsigned long number); | 35 | int dquot_free_inode(const struct inode *inode, unsigned long number); |
| 32 | 36 | ||
| 33 | extern int dquot_transfer(struct inode *inode, struct iattr *iattr); | 37 | int dquot_transfer(struct inode *inode, struct iattr *iattr); |
| 34 | extern int dquot_commit(struct dquot *dquot); | 38 | int dquot_commit(struct dquot *dquot); |
| 35 | extern int dquot_acquire(struct dquot *dquot); | 39 | int dquot_acquire(struct dquot *dquot); |
| 36 | extern int dquot_release(struct dquot *dquot); | 40 | int dquot_release(struct dquot *dquot); |
| 37 | extern int dquot_commit_info(struct super_block *sb, int type); | 41 | int dquot_commit_info(struct super_block *sb, int type); |
| 38 | extern int dquot_mark_dquot_dirty(struct dquot *dquot); | 42 | int dquot_mark_dquot_dirty(struct dquot *dquot); |
| 39 | 43 | ||
| 40 | extern int vfs_quota_on(struct super_block *sb, int type, int format_id, | 44 | int vfs_quota_on(struct super_block *sb, int type, int format_id, |
| 41 | char *path, int remount); | 45 | char *path, int remount); |
| 42 | extern int vfs_quota_on_mount(struct super_block *sb, char *qf_name, | 46 | int vfs_quota_on_path(struct super_block *sb, int type, int format_id, |
| 43 | int format_id, int type); | 47 | struct path *path); |
| 44 | extern int vfs_quota_off(struct super_block *sb, int type, int remount); | 48 | int vfs_quota_on_mount(struct super_block *sb, char *qf_name, |
| 45 | extern int vfs_quota_sync(struct super_block *sb, int type); | 49 | int format_id, int type); |
| 46 | extern int vfs_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); | 50 | int vfs_quota_off(struct super_block *sb, int type, int remount); |
| 47 | extern int vfs_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); | 51 | int vfs_quota_sync(struct super_block *sb, int type); |
| 48 | extern int vfs_get_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di); | 52 | int vfs_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); |
| 49 | extern int vfs_set_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di); | 53 | int vfs_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); |
| 54 | int vfs_get_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di); | ||
| 55 | int vfs_set_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di); | ||
| 56 | |||
| 57 | void vfs_dq_drop(struct inode *inode); | ||
| 58 | int vfs_dq_transfer(struct inode *inode, struct iattr *iattr); | ||
| 59 | int vfs_dq_quota_on_remount(struct super_block *sb); | ||
| 60 | |||
| 61 | static inline struct mem_dqinfo *sb_dqinfo(struct super_block *sb, int type) | ||
| 62 | { | ||
| 63 | return sb_dqopt(sb)->info + type; | ||
| 64 | } | ||
| 65 | |||
| 66 | /* | ||
| 67 | * Functions for checking status of quota | ||
| 68 | */ | ||
| 69 | |||
| 70 | static inline int sb_has_quota_enabled(struct super_block *sb, int type) | ||
| 71 | { | ||
| 72 | if (type == USRQUOTA) | ||
| 73 | return sb_dqopt(sb)->flags & DQUOT_USR_ENABLED; | ||
| 74 | return sb_dqopt(sb)->flags & DQUOT_GRP_ENABLED; | ||
| 75 | } | ||
| 76 | |||
| 77 | static inline int sb_any_quota_enabled(struct super_block *sb) | ||
| 78 | { | ||
| 79 | return sb_has_quota_enabled(sb, USRQUOTA) || | ||
| 80 | sb_has_quota_enabled(sb, GRPQUOTA); | ||
| 81 | } | ||
| 82 | |||
| 83 | static inline int sb_has_quota_suspended(struct super_block *sb, int type) | ||
| 84 | { | ||
| 85 | if (type == USRQUOTA) | ||
| 86 | return sb_dqopt(sb)->flags & DQUOT_USR_SUSPENDED; | ||
| 87 | return sb_dqopt(sb)->flags & DQUOT_GRP_SUSPENDED; | ||
| 88 | } | ||
| 89 | |||
| 90 | static inline int sb_any_quota_suspended(struct super_block *sb) | ||
| 91 | { | ||
| 92 | return sb_has_quota_suspended(sb, USRQUOTA) || | ||
| 93 | sb_has_quota_suspended(sb, GRPQUOTA); | ||
| 94 | } | ||
| 50 | 95 | ||
| 51 | /* | 96 | /* |
| 52 | * Operations supported for diskquotas. | 97 | * Operations supported for diskquotas. |
| @@ -59,38 +104,16 @@ extern struct quotactl_ops vfs_quotactl_ops; | |||
| 59 | 104 | ||
| 60 | /* It is better to call this function outside of any transaction as it might | 105 | /* It is better to call this function outside of any transaction as it might |
| 61 | * need a lot of space in journal for dquot structure allocation. */ | 106 | * need a lot of space in journal for dquot structure allocation. */ |
| 62 | static inline void DQUOT_INIT(struct inode *inode) | 107 | static inline void vfs_dq_init(struct inode *inode) |
| 63 | { | 108 | { |
| 64 | BUG_ON(!inode->i_sb); | 109 | BUG_ON(!inode->i_sb); |
| 65 | if (sb_any_quota_enabled(inode->i_sb) && !IS_NOQUOTA(inode)) | 110 | if (sb_any_quota_enabled(inode->i_sb) && !IS_NOQUOTA(inode)) |
| 66 | inode->i_sb->dq_op->initialize(inode, -1); | 111 | inode->i_sb->dq_op->initialize(inode, -1); |
| 67 | } | 112 | } |
| 68 | 113 | ||
| 69 | /* The same as with DQUOT_INIT */ | ||
| 70 | static inline void DQUOT_DROP(struct inode *inode) | ||
| 71 | { | ||
| 72 | /* Here we can get arbitrary inode from clear_inode() so we have | ||
| 73 | * to be careful. OTOH we don't need locking as quota operations | ||
| 74 | * are allowed to change only at mount time */ | ||
| 75 | if (!IS_NOQUOTA(inode) && inode->i_sb && inode->i_sb->dq_op | ||
| 76 | && inode->i_sb->dq_op->drop) { | ||
| 77 | int cnt; | ||
| 78 | /* Test before calling to rule out calls from proc and such | ||
| 79 | * where we are not allowed to block. Note that this is | ||
| 80 | * actually reliable test even without the lock - the caller | ||
| 81 | * must assure that nobody can come after the DQUOT_DROP and | ||
| 82 | * add quota pointers back anyway */ | ||
| 83 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) | ||
| 84 | if (inode->i_dquot[cnt] != NODQUOT) | ||
| 85 | break; | ||
| 86 | if (cnt < MAXQUOTAS) | ||
| 87 | inode->i_sb->dq_op->drop(inode); | ||
| 88 | } | ||
| 89 | } | ||
| 90 | |||
| 91 | /* The following allocation/freeing/transfer functions *must* be called inside | 114 | /* The following allocation/freeing/transfer functions *must* be called inside |
| 92 | * a transaction (deadlocks possible otherwise) */ | 115 | * a transaction (deadlocks possible otherwise) */ |
| 93 | static inline int DQUOT_PREALLOC_SPACE_NODIRTY(struct inode *inode, qsize_t nr) | 116 | static inline int vfs_dq_prealloc_space_nodirty(struct inode *inode, qsize_t nr) |
| 94 | { | 117 | { |
| 95 | if (sb_any_quota_enabled(inode->i_sb)) { | 118 | if (sb_any_quota_enabled(inode->i_sb)) { |
| 96 | /* Used space is updated in alloc_space() */ | 119 | /* Used space is updated in alloc_space() */ |
| @@ -102,15 +125,15 @@ static inline int DQUOT_PREALLOC_SPACE_NODIRTY(struct inode *inode, qsize_t nr) | |||
| 102 | return 0; | 125 | return 0; |
| 103 | } | 126 | } |
| 104 | 127 | ||
| 105 | static inline int DQUOT_PREALLOC_SPACE(struct inode *inode, qsize_t nr) | 128 | static inline int vfs_dq_prealloc_space(struct inode *inode, qsize_t nr) |
| 106 | { | 129 | { |
| 107 | int ret; | 130 | int ret; |
| 108 | if (!(ret = DQUOT_PREALLOC_SPACE_NODIRTY(inode, nr))) | 131 | if (!(ret = vfs_dq_prealloc_space_nodirty(inode, nr))) |
| 109 | mark_inode_dirty(inode); | 132 | mark_inode_dirty(inode); |
| 110 | return ret; | 133 | return ret; |
| 111 | } | 134 | } |
| 112 | 135 | ||
| 113 | static inline int DQUOT_ALLOC_SPACE_NODIRTY(struct inode *inode, qsize_t nr) | 136 | static inline int vfs_dq_alloc_space_nodirty(struct inode *inode, qsize_t nr) |
| 114 | { | 137 | { |
| 115 | if (sb_any_quota_enabled(inode->i_sb)) { | 138 | if (sb_any_quota_enabled(inode->i_sb)) { |
| 116 | /* Used space is updated in alloc_space() */ | 139 | /* Used space is updated in alloc_space() */ |
| @@ -122,25 +145,25 @@ static inline int DQUOT_ALLOC_SPACE_NODIRTY(struct inode *inode, qsize_t nr) | |||
| 122 | return 0; | 145 | return 0; |
| 123 | } | 146 | } |
| 124 | 147 | ||
| 125 | static inline int DQUOT_ALLOC_SPACE(struct inode *inode, qsize_t nr) | 148 | static inline int vfs_dq_alloc_space(struct inode *inode, qsize_t nr) |
| 126 | { | 149 | { |
| 127 | int ret; | 150 | int ret; |
| 128 | if (!(ret = DQUOT_ALLOC_SPACE_NODIRTY(inode, nr))) | 151 | if (!(ret = vfs_dq_alloc_space_nodirty(inode, nr))) |
| 129 | mark_inode_dirty(inode); | 152 | mark_inode_dirty(inode); |
| 130 | return ret; | 153 | return ret; |
| 131 | } | 154 | } |
| 132 | 155 | ||
| 133 | static inline int DQUOT_ALLOC_INODE(struct inode *inode) | 156 | static inline int vfs_dq_alloc_inode(struct inode *inode) |
| 134 | { | 157 | { |
| 135 | if (sb_any_quota_enabled(inode->i_sb)) { | 158 | if (sb_any_quota_enabled(inode->i_sb)) { |
| 136 | DQUOT_INIT(inode); | 159 | vfs_dq_init(inode); |
| 137 | if (inode->i_sb->dq_op->alloc_inode(inode, 1) == NO_QUOTA) | 160 | if (inode->i_sb->dq_op->alloc_inode(inode, 1) == NO_QUOTA) |
| 138 | return 1; | 161 | return 1; |
| 139 | } | 162 | } |
| 140 | return 0; | 163 | return 0; |
| 141 | } | 164 | } |
| 142 | 165 | ||
| 143 | static inline void DQUOT_FREE_SPACE_NODIRTY(struct inode *inode, qsize_t nr) | 166 | static inline void vfs_dq_free_space_nodirty(struct inode *inode, qsize_t nr) |
| 144 | { | 167 | { |
| 145 | if (sb_any_quota_enabled(inode->i_sb)) | 168 | if (sb_any_quota_enabled(inode->i_sb)) |
| 146 | inode->i_sb->dq_op->free_space(inode, nr); | 169 | inode->i_sb->dq_op->free_space(inode, nr); |
| @@ -148,35 +171,25 @@ static inline void DQUOT_FREE_SPACE_NODIRTY(struct inode *inode, qsize_t nr) | |||
| 148 | inode_sub_bytes(inode, nr); | 171 | inode_sub_bytes(inode, nr); |
| 149 | } | 172 | } |
| 150 | 173 | ||
| 151 | static inline void DQUOT_FREE_SPACE(struct inode *inode, qsize_t nr) | 174 | static inline void vfs_dq_free_space(struct inode *inode, qsize_t nr) |
| 152 | { | 175 | { |
| 153 | DQUOT_FREE_SPACE_NODIRTY(inode, nr); | 176 | vfs_dq_free_space_nodirty(inode, nr); |
| 154 | mark_inode_dirty(inode); | 177 | mark_inode_dirty(inode); |
| 155 | } | 178 | } |
| 156 | 179 | ||
| 157 | static inline void DQUOT_FREE_INODE(struct inode *inode) | 180 | static inline void vfs_dq_free_inode(struct inode *inode) |
| 158 | { | 181 | { |
| 159 | if (sb_any_quota_enabled(inode->i_sb)) | 182 | if (sb_any_quota_enabled(inode->i_sb)) |
| 160 | inode->i_sb->dq_op->free_inode(inode, 1); | 183 | inode->i_sb->dq_op->free_inode(inode, 1); |
| 161 | } | 184 | } |
| 162 | 185 | ||
| 163 | static inline int DQUOT_TRANSFER(struct inode *inode, struct iattr *iattr) | ||
| 164 | { | ||
| 165 | if (sb_any_quota_enabled(inode->i_sb) && !IS_NOQUOTA(inode)) { | ||
| 166 | DQUOT_INIT(inode); | ||
| 167 | if (inode->i_sb->dq_op->transfer(inode, iattr) == NO_QUOTA) | ||
| 168 | return 1; | ||
| 169 | } | ||
| 170 | return 0; | ||
| 171 | } | ||
| 172 | |||
| 173 | /* The following two functions cannot be called inside a transaction */ | 186 | /* The following two functions cannot be called inside a transaction */ |
| 174 | static inline void DQUOT_SYNC(struct super_block *sb) | 187 | static inline void vfs_dq_sync(struct super_block *sb) |
| 175 | { | 188 | { |
| 176 | sync_dquots(sb, -1); | 189 | sync_dquots(sb, -1); |
| 177 | } | 190 | } |
| 178 | 191 | ||
| 179 | static inline int DQUOT_OFF(struct super_block *sb, int remount) | 192 | static inline int vfs_dq_off(struct super_block *sb, int remount) |
| 180 | { | 193 | { |
| 181 | int ret = -ENOSYS; | 194 | int ret = -ENOSYS; |
| 182 | 195 | ||
| @@ -185,22 +198,27 @@ static inline int DQUOT_OFF(struct super_block *sb, int remount) | |||
| 185 | return ret; | 198 | return ret; |
| 186 | } | 199 | } |
| 187 | 200 | ||
| 188 | static inline int DQUOT_ON_REMOUNT(struct super_block *sb) | 201 | #else |
| 202 | |||
| 203 | static inline int sb_has_quota_enabled(struct super_block *sb, int type) | ||
| 189 | { | 204 | { |
| 190 | int cnt; | 205 | return 0; |
| 191 | int ret = 0, err; | 206 | } |
| 192 | 207 | ||
| 193 | if (!sb->s_qcop || !sb->s_qcop->quota_on) | 208 | static inline int sb_any_quota_enabled(struct super_block *sb) |
| 194 | return -ENOSYS; | 209 | { |
| 195 | for (cnt = 0; cnt < MAXQUOTAS; cnt++) { | 210 | return 0; |
| 196 | err = sb->s_qcop->quota_on(sb, cnt, 0, NULL, 1); | ||
| 197 | if (err < 0 && !ret) | ||
| 198 | ret = err; | ||
| 199 | } | ||
| 200 | return ret; | ||
| 201 | } | 211 | } |
| 202 | 212 | ||
| 203 | #else | 213 | static inline int sb_has_quota_suspended(struct super_block *sb, int type) |
| 214 | { | ||
| 215 | return 0; | ||
| 216 | } | ||
| 217 | |||
| 218 | static inline int sb_any_quota_suspended(struct super_block *sb) | ||
| 219 | { | ||
| 220 | return 0; | ||
| 221 | } | ||
| 204 | 222 | ||
| 205 | /* | 223 | /* |
| 206 | * NO-OP when quota not configured. | 224 | * NO-OP when quota not configured. |
| @@ -208,113 +226,144 @@ static inline int DQUOT_ON_REMOUNT(struct super_block *sb) | |||
| 208 | #define sb_dquot_ops (NULL) | 226 | #define sb_dquot_ops (NULL) |
| 209 | #define sb_quotactl_ops (NULL) | 227 | #define sb_quotactl_ops (NULL) |
| 210 | 228 | ||
| 211 | static inline void DQUOT_INIT(struct inode *inode) | 229 | static inline void vfs_dq_init(struct inode *inode) |
| 212 | { | 230 | { |
| 213 | } | 231 | } |
| 214 | 232 | ||
| 215 | static inline void DQUOT_DROP(struct inode *inode) | 233 | static inline void vfs_dq_drop(struct inode *inode) |
| 216 | { | 234 | { |
| 217 | } | 235 | } |
| 218 | 236 | ||
| 219 | static inline int DQUOT_ALLOC_INODE(struct inode *inode) | 237 | static inline int vfs_dq_alloc_inode(struct inode *inode) |
| 220 | { | 238 | { |
| 221 | return 0; | 239 | return 0; |
| 222 | } | 240 | } |
| 223 | 241 | ||
| 224 | static inline void DQUOT_FREE_INODE(struct inode *inode) | 242 | static inline void vfs_dq_free_inode(struct inode *inode) |
| 225 | { | 243 | { |
| 226 | } | 244 | } |
| 227 | 245 | ||
| 228 | static inline void DQUOT_SYNC(struct super_block *sb) | 246 | static inline void vfs_dq_sync(struct super_block *sb) |
| 229 | { | 247 | { |
| 230 | } | 248 | } |
| 231 | 249 | ||
| 232 | static inline int DQUOT_OFF(struct super_block *sb, int remount) | 250 | static inline int vfs_dq_off(struct super_block *sb, int remount) |
| 233 | { | 251 | { |
| 234 | return 0; | 252 | return 0; |
| 235 | } | 253 | } |
| 236 | 254 | ||
| 237 | static inline int DQUOT_ON_REMOUNT(struct super_block *sb) | 255 | static inline int vfs_dq_quota_on_remount(struct super_block *sb) |
| 238 | { | 256 | { |
| 239 | return 0; | 257 | return 0; |
| 240 | } | 258 | } |
| 241 | 259 | ||
| 242 | static inline int DQUOT_TRANSFER(struct inode *inode, struct iattr *iattr) | 260 | static inline int vfs_dq_transfer(struct inode *inode, struct iattr *iattr) |
| 243 | { | 261 | { |
| 244 | return 0; | 262 | return 0; |
| 245 | } | 263 | } |
| 246 | 264 | ||
| 247 | static inline int DQUOT_PREALLOC_SPACE_NODIRTY(struct inode *inode, qsize_t nr) | 265 | static inline int vfs_dq_prealloc_space_nodirty(struct inode *inode, qsize_t nr) |
| 248 | { | 266 | { |
| 249 | inode_add_bytes(inode, nr); | 267 | inode_add_bytes(inode, nr); |
| 250 | return 0; | 268 | return 0; |
| 251 | } | 269 | } |
| 252 | 270 | ||
| 253 | static inline int DQUOT_PREALLOC_SPACE(struct inode *inode, qsize_t nr) | 271 | static inline int vfs_dq_prealloc_space(struct inode *inode, qsize_t nr) |
| 254 | { | 272 | { |
| 255 | DQUOT_PREALLOC_SPACE_NODIRTY(inode, nr); | 273 | vfs_dq_prealloc_space_nodirty(inode, nr); |
| 256 | mark_inode_dirty(inode); | 274 | mark_inode_dirty(inode); |
| 257 | return 0; | 275 | return 0; |
| 258 | } | 276 | } |
| 259 | 277 | ||
| 260 | static inline int DQUOT_ALLOC_SPACE_NODIRTY(struct inode *inode, qsize_t nr) | 278 | static inline int vfs_dq_alloc_space_nodirty(struct inode *inode, qsize_t nr) |
| 261 | { | 279 | { |
| 262 | inode_add_bytes(inode, nr); | 280 | inode_add_bytes(inode, nr); |
| 263 | return 0; | 281 | return 0; |
| 264 | } | 282 | } |
| 265 | 283 | ||
| 266 | static inline int DQUOT_ALLOC_SPACE(struct inode *inode, qsize_t nr) | 284 | static inline int vfs_dq_alloc_space(struct inode *inode, qsize_t nr) |
| 267 | { | 285 | { |
| 268 | DQUOT_ALLOC_SPACE_NODIRTY(inode, nr); | 286 | vfs_dq_alloc_space_nodirty(inode, nr); |
| 269 | mark_inode_dirty(inode); | 287 | mark_inode_dirty(inode); |
| 270 | return 0; | 288 | return 0; |
| 271 | } | 289 | } |
| 272 | 290 | ||
| 273 | static inline void DQUOT_FREE_SPACE_NODIRTY(struct inode *inode, qsize_t nr) | 291 | static inline void vfs_dq_free_space_nodirty(struct inode *inode, qsize_t nr) |
| 274 | { | 292 | { |
| 275 | inode_sub_bytes(inode, nr); | 293 | inode_sub_bytes(inode, nr); |
| 276 | } | 294 | } |
| 277 | 295 | ||
| 278 | static inline void DQUOT_FREE_SPACE(struct inode *inode, qsize_t nr) | 296 | static inline void vfs_dq_free_space(struct inode *inode, qsize_t nr) |
| 279 | { | 297 | { |
| 280 | DQUOT_FREE_SPACE_NODIRTY(inode, nr); | 298 | vfs_dq_free_space_nodirty(inode, nr); |
| 281 | mark_inode_dirty(inode); | 299 | mark_inode_dirty(inode); |
| 282 | } | 300 | } |
| 283 | 301 | ||
| 284 | #endif /* CONFIG_QUOTA */ | 302 | #endif /* CONFIG_QUOTA */ |
| 285 | 303 | ||
| 286 | static inline int DQUOT_PREALLOC_BLOCK_NODIRTY(struct inode *inode, qsize_t nr) | 304 | static inline int vfs_dq_prealloc_block_nodirty(struct inode *inode, qsize_t nr) |
| 287 | { | 305 | { |
| 288 | return DQUOT_PREALLOC_SPACE_NODIRTY(inode, | 306 | return vfs_dq_prealloc_space_nodirty(inode, |
| 289 | nr << inode->i_sb->s_blocksize_bits); | 307 | nr << inode->i_sb->s_blocksize_bits); |
| 290 | } | 308 | } |
| 291 | 309 | ||
| 292 | static inline int DQUOT_PREALLOC_BLOCK(struct inode *inode, qsize_t nr) | 310 | static inline int vfs_dq_prealloc_block(struct inode *inode, qsize_t nr) |
| 293 | { | 311 | { |
| 294 | return DQUOT_PREALLOC_SPACE(inode, | 312 | return vfs_dq_prealloc_space(inode, |
| 295 | nr << inode->i_sb->s_blocksize_bits); | 313 | nr << inode->i_sb->s_blocksize_bits); |
| 296 | } | 314 | } |
| 297 | 315 | ||
| 298 | static inline int DQUOT_ALLOC_BLOCK_NODIRTY(struct inode *inode, qsize_t nr) | 316 | static inline int vfs_dq_alloc_block_nodirty(struct inode *inode, qsize_t nr) |
| 299 | { | 317 | { |
| 300 | return DQUOT_ALLOC_SPACE_NODIRTY(inode, | 318 | return vfs_dq_alloc_space_nodirty(inode, |
| 301 | nr << inode->i_sb->s_blocksize_bits); | 319 | nr << inode->i_sb->s_blocksize_bits); |
| 302 | } | 320 | } |
| 303 | 321 | ||
| 304 | static inline int DQUOT_ALLOC_BLOCK(struct inode *inode, qsize_t nr) | 322 | static inline int vfs_dq_alloc_block(struct inode *inode, qsize_t nr) |
| 305 | { | 323 | { |
| 306 | return DQUOT_ALLOC_SPACE(inode, | 324 | return vfs_dq_alloc_space(inode, |
| 307 | nr << inode->i_sb->s_blocksize_bits); | 325 | nr << inode->i_sb->s_blocksize_bits); |
| 308 | } | 326 | } |
| 309 | 327 | ||
| 310 | static inline void DQUOT_FREE_BLOCK_NODIRTY(struct inode *inode, qsize_t nr) | 328 | static inline void vfs_dq_free_block_nodirty(struct inode *inode, qsize_t nr) |
| 311 | { | 329 | { |
| 312 | DQUOT_FREE_SPACE_NODIRTY(inode, nr << inode->i_sb->s_blocksize_bits); | 330 | vfs_dq_free_space_nodirty(inode, nr << inode->i_sb->s_blocksize_bits); |
| 313 | } | 331 | } |
| 314 | 332 | ||
| 315 | static inline void DQUOT_FREE_BLOCK(struct inode *inode, qsize_t nr) | 333 | static inline void vfs_dq_free_block(struct inode *inode, qsize_t nr) |
| 316 | { | 334 | { |
| 317 | DQUOT_FREE_SPACE(inode, nr << inode->i_sb->s_blocksize_bits); | 335 | vfs_dq_free_space(inode, nr << inode->i_sb->s_blocksize_bits); |
| 318 | } | 336 | } |
| 319 | 337 | ||
| 338 | /* | ||
| 339 | * Define uppercase equivalents for compatibility with old function names | ||
| 340 | * Can go away when we think all users have been converted (15/04/2008) | ||
| 341 | */ | ||
| 342 | #define DQUOT_INIT(inode) vfs_dq_init(inode) | ||
| 343 | #define DQUOT_DROP(inode) vfs_dq_drop(inode) | ||
| 344 | #define DQUOT_PREALLOC_SPACE_NODIRTY(inode, nr) \ | ||
| 345 | vfs_dq_prealloc_space_nodirty(inode, nr) | ||
| 346 | #define DQUOT_PREALLOC_SPACE(inode, nr) vfs_dq_prealloc_space(inode, nr) | ||
| 347 | #define DQUOT_ALLOC_SPACE_NODIRTY(inode, nr) \ | ||
| 348 | vfs_dq_alloc_space_nodirty(inode, nr) | ||
| 349 | #define DQUOT_ALLOC_SPACE(inode, nr) vfs_dq_alloc_space(inode, nr) | ||
| 350 | #define DQUOT_PREALLOC_BLOCK_NODIRTY(inode, nr) \ | ||
| 351 | vfs_dq_prealloc_block_nodirty(inode, nr) | ||
| 352 | #define DQUOT_PREALLOC_BLOCK(inode, nr) vfs_dq_prealloc_block(inode, nr) | ||
| 353 | #define DQUOT_ALLOC_BLOCK_NODIRTY(inode, nr) \ | ||
| 354 | vfs_dq_alloc_block_nodirty(inode, nr) | ||
| 355 | #define DQUOT_ALLOC_BLOCK(inode, nr) vfs_dq_alloc_block(inode, nr) | ||
| 356 | #define DQUOT_ALLOC_INODE(inode) vfs_dq_alloc_inode(inode) | ||
| 357 | #define DQUOT_FREE_SPACE_NODIRTY(inode, nr) \ | ||
| 358 | vfs_dq_free_space_nodirty(inode, nr) | ||
| 359 | #define DQUOT_FREE_SPACE(inode, nr) vfs_dq_free_space(inode, nr) | ||
| 360 | #define DQUOT_FREE_BLOCK_NODIRTY(inode, nr) \ | ||
| 361 | vfs_dq_free_block_nodirty(inode, nr) | ||
| 362 | #define DQUOT_FREE_BLOCK(inode, nr) vfs_dq_free_block(inode, nr) | ||
| 363 | #define DQUOT_FREE_INODE(inode) vfs_dq_free_inode(inode) | ||
| 364 | #define DQUOT_TRANSFER(inode, iattr) vfs_dq_transfer(inode, iattr) | ||
| 365 | #define DQUOT_SYNC(sb) vfs_dq_sync(sb) | ||
| 366 | #define DQUOT_OFF(sb, remount) vfs_dq_off(sb, remount) | ||
| 367 | #define DQUOT_ON_REMOUNT(sb) vfs_dq_quota_on_remount(sb) | ||
| 368 | |||
| 320 | #endif /* _LINUX_QUOTAOPS_ */ | 369 | #endif /* _LINUX_QUOTAOPS_ */ |
diff --git a/include/linux/radix-tree.h b/include/linux/radix-tree.h index b8ce2b444bb5..a916c6660dfa 100644 --- a/include/linux/radix-tree.h +++ b/include/linux/radix-tree.h | |||
| @@ -99,12 +99,15 @@ do { \ | |||
| 99 | * | 99 | * |
| 100 | * The notable exceptions to this rule are the following functions: | 100 | * The notable exceptions to this rule are the following functions: |
| 101 | * radix_tree_lookup | 101 | * radix_tree_lookup |
| 102 | * radix_tree_lookup_slot | ||
| 102 | * radix_tree_tag_get | 103 | * radix_tree_tag_get |
| 103 | * radix_tree_gang_lookup | 104 | * radix_tree_gang_lookup |
| 105 | * radix_tree_gang_lookup_slot | ||
| 104 | * radix_tree_gang_lookup_tag | 106 | * radix_tree_gang_lookup_tag |
| 107 | * radix_tree_gang_lookup_tag_slot | ||
| 105 | * radix_tree_tagged | 108 | * radix_tree_tagged |
| 106 | * | 109 | * |
| 107 | * The first 4 functions are able to be called locklessly, using RCU. The | 110 | * The first 7 functions are able to be called locklessly, using RCU. The |
| 108 | * caller must ensure calls to these functions are made within rcu_read_lock() | 111 | * caller must ensure calls to these functions are made within rcu_read_lock() |
| 109 | * regions. Other readers (lock-free or otherwise) and modifications may be | 112 | * regions. Other readers (lock-free or otherwise) and modifications may be |
| 110 | * running concurrently. | 113 | * running concurrently. |
| @@ -159,6 +162,9 @@ void *radix_tree_delete(struct radix_tree_root *, unsigned long); | |||
| 159 | unsigned int | 162 | unsigned int |
| 160 | radix_tree_gang_lookup(struct radix_tree_root *root, void **results, | 163 | radix_tree_gang_lookup(struct radix_tree_root *root, void **results, |
| 161 | unsigned long first_index, unsigned int max_items); | 164 | unsigned long first_index, unsigned int max_items); |
| 165 | unsigned int | ||
| 166 | radix_tree_gang_lookup_slot(struct radix_tree_root *root, void ***results, | ||
| 167 | unsigned long first_index, unsigned int max_items); | ||
| 162 | unsigned long radix_tree_next_hole(struct radix_tree_root *root, | 168 | unsigned long radix_tree_next_hole(struct radix_tree_root *root, |
| 163 | unsigned long index, unsigned long max_scan); | 169 | unsigned long index, unsigned long max_scan); |
| 164 | int radix_tree_preload(gfp_t gfp_mask); | 170 | int radix_tree_preload(gfp_t gfp_mask); |
| @@ -173,6 +179,10 @@ unsigned int | |||
| 173 | radix_tree_gang_lookup_tag(struct radix_tree_root *root, void **results, | 179 | radix_tree_gang_lookup_tag(struct radix_tree_root *root, void **results, |
| 174 | unsigned long first_index, unsigned int max_items, | 180 | unsigned long first_index, unsigned int max_items, |
| 175 | unsigned int tag); | 181 | unsigned int tag); |
| 182 | unsigned int | ||
| 183 | radix_tree_gang_lookup_tag_slot(struct radix_tree_root *root, void ***results, | ||
| 184 | unsigned long first_index, unsigned int max_items, | ||
| 185 | unsigned int tag); | ||
| 176 | int radix_tree_tagged(struct radix_tree_root *root, unsigned int tag); | 186 | int radix_tree_tagged(struct radix_tree_root *root, unsigned int tag); |
| 177 | 187 | ||
| 178 | static inline void radix_tree_preload_end(void) | 188 | static inline void radix_tree_preload_end(void) |
diff --git a/include/linux/raid/md_k.h b/include/linux/raid/md_k.h index 9f2549ac0e2d..c200b9a34aff 100644 --- a/include/linux/raid/md_k.h +++ b/include/linux/raid/md_k.h | |||
| @@ -128,6 +128,7 @@ struct mddev_s | |||
| 128 | #define MD_CHANGE_DEVS 0 /* Some device status has changed */ | 128 | #define MD_CHANGE_DEVS 0 /* Some device status has changed */ |
| 129 | #define MD_CHANGE_CLEAN 1 /* transition to or from 'clean' */ | 129 | #define MD_CHANGE_CLEAN 1 /* transition to or from 'clean' */ |
| 130 | #define MD_CHANGE_PENDING 2 /* superblock update in progress */ | 130 | #define MD_CHANGE_PENDING 2 /* superblock update in progress */ |
| 131 | #define MD_NOTIFY_ARRAY_STATE 3 /* atomic context wants to notify userspace */ | ||
| 131 | 132 | ||
| 132 | int ro; | 133 | int ro; |
| 133 | 134 | ||
diff --git a/include/linux/ratelimit.h b/include/linux/ratelimit.h new file mode 100644 index 000000000000..18a5b9ba9d40 --- /dev/null +++ b/include/linux/ratelimit.h | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | #ifndef _LINUX_RATELIMIT_H | ||
| 2 | #define _LINUX_RATELIMIT_H | ||
| 3 | #include <linux/param.h> | ||
| 4 | |||
| 5 | #define DEFAULT_RATELIMIT_INTERVAL (5 * HZ) | ||
| 6 | #define DEFAULT_RATELIMIT_BURST 10 | ||
| 7 | |||
| 8 | struct ratelimit_state { | ||
| 9 | int interval; | ||
| 10 | int burst; | ||
| 11 | int printed; | ||
| 12 | int missed; | ||
| 13 | unsigned long begin; | ||
| 14 | }; | ||
| 15 | |||
| 16 | #define DEFINE_RATELIMIT_STATE(name, interval, burst) \ | ||
| 17 | struct ratelimit_state name = {interval, burst,} | ||
| 18 | |||
| 19 | extern int __ratelimit(struct ratelimit_state *rs); | ||
| 20 | |||
| 21 | static inline int ratelimit(void) | ||
| 22 | { | ||
| 23 | static DEFINE_RATELIMIT_STATE(rs, DEFAULT_RATELIMIT_INTERVAL, | ||
| 24 | DEFAULT_RATELIMIT_BURST); | ||
| 25 | return __ratelimit(&rs); | ||
| 26 | } | ||
| 27 | #endif | ||
diff --git a/include/linux/rcuclassic.h b/include/linux/rcuclassic.h index 8c774905dcfe..4ab843622727 100644 --- a/include/linux/rcuclassic.h +++ b/include/linux/rcuclassic.h | |||
| @@ -117,7 +117,7 @@ extern int rcu_needs_cpu(int cpu); | |||
| 117 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 117 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 118 | extern struct lockdep_map rcu_lock_map; | 118 | extern struct lockdep_map rcu_lock_map; |
| 119 | # define rcu_read_acquire() \ | 119 | # define rcu_read_acquire() \ |
| 120 | lock_acquire(&rcu_lock_map, 0, 0, 2, 1, _THIS_IP_) | 120 | lock_acquire(&rcu_lock_map, 0, 0, 2, 1, NULL, _THIS_IP_) |
| 121 | # define rcu_read_release() lock_release(&rcu_lock_map, 1, _THIS_IP_) | 121 | # define rcu_read_release() lock_release(&rcu_lock_map, 1, _THIS_IP_) |
| 122 | #else | 122 | #else |
| 123 | # define rcu_read_acquire() do { } while (0) | 123 | # define rcu_read_acquire() do { } while (0) |
diff --git a/include/linux/rculist.h b/include/linux/rculist.h index b0f39be08b6c..eb4443c7e05b 100644 --- a/include/linux/rculist.h +++ b/include/linux/rculist.h | |||
| @@ -98,6 +98,34 @@ static inline void list_del_rcu(struct list_head *entry) | |||
| 98 | } | 98 | } |
| 99 | 99 | ||
| 100 | /** | 100 | /** |
| 101 | * hlist_del_init_rcu - deletes entry from hash list with re-initialization | ||
| 102 | * @n: the element to delete from the hash list. | ||
| 103 | * | ||
| 104 | * Note: list_unhashed() on the node return true after this. It is | ||
| 105 | * useful for RCU based read lockfree traversal if the writer side | ||
| 106 | * must know if the list entry is still hashed or already unhashed. | ||
| 107 | * | ||
| 108 | * In particular, it means that we can not poison the forward pointers | ||
| 109 | * that may still be used for walking the hash list and we can only | ||
| 110 | * zero the pprev pointer so list_unhashed() will return true after | ||
| 111 | * this. | ||
| 112 | * | ||
| 113 | * The caller must take whatever precautions are necessary (such as | ||
| 114 | * holding appropriate locks) to avoid racing with another | ||
| 115 | * list-mutation primitive, such as hlist_add_head_rcu() or | ||
| 116 | * hlist_del_rcu(), running on this same list. However, it is | ||
| 117 | * perfectly legal to run concurrently with the _rcu list-traversal | ||
| 118 | * primitives, such as hlist_for_each_entry_rcu(). | ||
| 119 | */ | ||
| 120 | static inline void hlist_del_init_rcu(struct hlist_node *n) | ||
| 121 | { | ||
| 122 | if (!hlist_unhashed(n)) { | ||
| 123 | __hlist_del(n); | ||
| 124 | n->pprev = NULL; | ||
| 125 | } | ||
| 126 | } | ||
| 127 | |||
| 128 | /** | ||
| 101 | * list_replace_rcu - replace old entry by new one | 129 | * list_replace_rcu - replace old entry by new one |
| 102 | * @old : the element to be replaced | 130 | * @old : the element to be replaced |
| 103 | * @new : the new element to insert | 131 | * @new : the new element to insert |
diff --git a/include/linux/rcupreempt.h b/include/linux/rcupreempt.h index f04b64eca636..0967f03b0705 100644 --- a/include/linux/rcupreempt.h +++ b/include/linux/rcupreempt.h | |||
| @@ -115,16 +115,21 @@ DECLARE_PER_CPU(struct rcu_dyntick_sched, rcu_dyntick_sched); | |||
| 115 | 115 | ||
| 116 | static inline void rcu_enter_nohz(void) | 116 | static inline void rcu_enter_nohz(void) |
| 117 | { | 117 | { |
| 118 | static DEFINE_RATELIMIT_STATE(rs, 10 * HZ, 1); | ||
| 119 | |||
| 118 | smp_mb(); /* CPUs seeing ++ must see prior RCU read-side crit sects */ | 120 | smp_mb(); /* CPUs seeing ++ must see prior RCU read-side crit sects */ |
| 119 | __get_cpu_var(rcu_dyntick_sched).dynticks++; | 121 | __get_cpu_var(rcu_dyntick_sched).dynticks++; |
| 120 | WARN_ON(__get_cpu_var(rcu_dyntick_sched).dynticks & 0x1); | 122 | WARN_ON_RATELIMIT(__get_cpu_var(rcu_dyntick_sched).dynticks & 0x1, &rs); |
| 121 | } | 123 | } |
| 122 | 124 | ||
| 123 | static inline void rcu_exit_nohz(void) | 125 | static inline void rcu_exit_nohz(void) |
| 124 | { | 126 | { |
| 127 | static DEFINE_RATELIMIT_STATE(rs, 10 * HZ, 1); | ||
| 128 | |||
| 125 | smp_mb(); /* CPUs seeing ++ must see later RCU read-side crit sects */ | 129 | smp_mb(); /* CPUs seeing ++ must see later RCU read-side crit sects */ |
| 126 | __get_cpu_var(rcu_dyntick_sched).dynticks++; | 130 | __get_cpu_var(rcu_dyntick_sched).dynticks++; |
| 127 | WARN_ON(!(__get_cpu_var(rcu_dyntick_sched).dynticks & 0x1)); | 131 | WARN_ON_RATELIMIT(!(__get_cpu_var(rcu_dyntick_sched).dynticks & 0x1), |
| 132 | &rs); | ||
| 128 | } | 133 | } |
| 129 | 134 | ||
| 130 | #else /* CONFIG_NO_HZ */ | 135 | #else /* CONFIG_NO_HZ */ |
diff --git a/include/linux/regulator/bq24022.h b/include/linux/regulator/bq24022.h new file mode 100644 index 000000000000..e84b0a9feda5 --- /dev/null +++ b/include/linux/regulator/bq24022.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | /* | ||
| 2 | * Support for TI bq24022 (bqTINY-II) Dual Input (USB/AC Adpater) | ||
| 3 | * 1-Cell Li-Ion Charger connected via GPIOs. | ||
| 4 | * | ||
| 5 | * Copyright (c) 2008 Philipp Zabel | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | * | ||
| 11 | */ | ||
| 12 | |||
| 13 | /** | ||
| 14 | * bq24022_mach_info - platform data for bq24022 | ||
| 15 | * @gpio_nce: GPIO line connected to the nCE pin, used to enable / disable charging | ||
| 16 | * @gpio_iset2: GPIO line connected to the ISET2 pin, used to limit charging current to 100 mA / 500 mA | ||
| 17 | */ | ||
| 18 | struct bq24022_mach_info { | ||
| 19 | int gpio_nce; | ||
| 20 | int gpio_iset2; | ||
| 21 | }; | ||
diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h new file mode 100644 index 000000000000..afdc4558bb94 --- /dev/null +++ b/include/linux/regulator/consumer.h | |||
| @@ -0,0 +1,284 @@ | |||
| 1 | /* | ||
| 2 | * consumer.h -- SoC Regulator consumer support. | ||
| 3 | * | ||
| 4 | * Copyright (C) 2007, 2008 Wolfson Microelectronics PLC. | ||
| 5 | * | ||
| 6 | * Author: Liam Girdwood <lg@opensource.wolfsonmicro.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License version 2 as | ||
| 10 | * published by the Free Software Foundation. | ||
| 11 | * | ||
| 12 | * Regulator Consumer Interface. | ||
| 13 | * | ||
| 14 | * A Power Management Regulator framework for SoC based devices. | ||
| 15 | * Features:- | ||
| 16 | * o Voltage and current level control. | ||
| 17 | * o Operating mode control. | ||
| 18 | * o Regulator status. | ||
| 19 | * o sysfs entries for showing client devices and status | ||
| 20 | * | ||
| 21 | * EXPERIMENTAL FEATURES: | ||
| 22 | * Dynamic Regulator operating Mode Switching (DRMS) - allows regulators | ||
| 23 | * to use most efficient operating mode depending upon voltage and load and | ||
| 24 | * is transparent to client drivers. | ||
| 25 | * | ||
| 26 | * e.g. Devices x,y,z share regulator r. Device x and y draw 20mA each during | ||
| 27 | * IO and 1mA at idle. Device z draws 100mA when under load and 5mA when | ||
| 28 | * idling. Regulator r has > 90% efficiency in NORMAL mode at loads > 100mA | ||
| 29 | * but this drops rapidly to 60% when below 100mA. Regulator r has > 90% | ||
| 30 | * efficiency in IDLE mode at loads < 10mA. Thus regulator r will operate | ||
| 31 | * in normal mode for loads > 10mA and in IDLE mode for load <= 10mA. | ||
| 32 | * | ||
| 33 | */ | ||
| 34 | |||
| 35 | #ifndef __LINUX_REGULATOR_CONSUMER_H_ | ||
| 36 | #define __LINUX_REGULATOR_CONSUMER_H_ | ||
| 37 | |||
| 38 | /* | ||
| 39 | * Regulator operating modes. | ||
| 40 | * | ||
| 41 | * Regulators can run in a variety of different operating modes depending on | ||
| 42 | * output load. This allows further system power savings by selecting the | ||
| 43 | * best (and most efficient) regulator mode for a desired load. | ||
| 44 | * | ||
| 45 | * Most drivers will only care about NORMAL. The modes below are generic and | ||
| 46 | * will probably not match the naming convention of your regulator data sheet | ||
| 47 | * but should match the use cases in the datasheet. | ||
| 48 | * | ||
| 49 | * In order of power efficiency (least efficient at top). | ||
| 50 | * | ||
| 51 | * Mode Description | ||
| 52 | * FAST Regulator can handle fast changes in it's load. | ||
| 53 | * e.g. useful in CPU voltage & frequency scaling where | ||
| 54 | * load can quickly increase with CPU frequency increases. | ||
| 55 | * | ||
| 56 | * NORMAL Normal regulator power supply mode. Most drivers will | ||
| 57 | * use this mode. | ||
| 58 | * | ||
| 59 | * IDLE Regulator runs in a more efficient mode for light | ||
| 60 | * loads. Can be used for devices that have a low power | ||
| 61 | * requirement during periods of inactivity. This mode | ||
| 62 | * may be more noisy than NORMAL and may not be able | ||
| 63 | * to handle fast load switching. | ||
| 64 | * | ||
| 65 | * STANDBY Regulator runs in the most efficient mode for very | ||
| 66 | * light loads. Can be used by devices when they are | ||
| 67 | * in a sleep/standby state. This mode is likely to be | ||
| 68 | * the most noisy and may not be able to handle fast load | ||
| 69 | * switching. | ||
| 70 | * | ||
| 71 | * NOTE: Most regulators will only support a subset of these modes. Some | ||
| 72 | * will only just support NORMAL. | ||
| 73 | * | ||
| 74 | * These modes can be OR'ed together to make up a mask of valid register modes. | ||
| 75 | */ | ||
| 76 | |||
| 77 | #define REGULATOR_MODE_FAST 0x1 | ||
| 78 | #define REGULATOR_MODE_NORMAL 0x2 | ||
| 79 | #define REGULATOR_MODE_IDLE 0x4 | ||
| 80 | #define REGULATOR_MODE_STANDBY 0x8 | ||
| 81 | |||
| 82 | /* | ||
| 83 | * Regulator notifier events. | ||
| 84 | * | ||
| 85 | * UNDER_VOLTAGE Regulator output is under voltage. | ||
| 86 | * OVER_CURRENT Regulator output current is too high. | ||
| 87 | * REGULATION_OUT Regulator output is out of regulation. | ||
| 88 | * FAIL Regulator output has failed. | ||
| 89 | * OVER_TEMP Regulator over temp. | ||
| 90 | * FORCE_DISABLE Regulator shut down by software. | ||
| 91 | * | ||
| 92 | * NOTE: These events can be OR'ed together when passed into handler. | ||
| 93 | */ | ||
| 94 | |||
| 95 | #define REGULATOR_EVENT_UNDER_VOLTAGE 0x01 | ||
| 96 | #define REGULATOR_EVENT_OVER_CURRENT 0x02 | ||
| 97 | #define REGULATOR_EVENT_REGULATION_OUT 0x04 | ||
| 98 | #define REGULATOR_EVENT_FAIL 0x08 | ||
| 99 | #define REGULATOR_EVENT_OVER_TEMP 0x10 | ||
| 100 | #define REGULATOR_EVENT_FORCE_DISABLE 0x20 | ||
| 101 | |||
| 102 | struct regulator; | ||
| 103 | |||
| 104 | /** | ||
| 105 | * struct regulator_bulk_data - Data used for bulk regulator operations. | ||
| 106 | * | ||
| 107 | * @supply The name of the supply. Initialised by the user before | ||
| 108 | * using the bulk regulator APIs. | ||
| 109 | * @consumer The regulator consumer for the supply. This will be managed | ||
| 110 | * by the bulk API. | ||
| 111 | * | ||
| 112 | * The regulator APIs provide a series of regulator_bulk_() API calls as | ||
| 113 | * a convenience to consumers which require multiple supplies. This | ||
| 114 | * structure is used to manage data for these calls. | ||
| 115 | */ | ||
| 116 | struct regulator_bulk_data { | ||
| 117 | const char *supply; | ||
| 118 | struct regulator *consumer; | ||
| 119 | }; | ||
| 120 | |||
| 121 | #if defined(CONFIG_REGULATOR) | ||
| 122 | |||
| 123 | /* regulator get and put */ | ||
| 124 | struct regulator *__must_check regulator_get(struct device *dev, | ||
| 125 | const char *id); | ||
| 126 | void regulator_put(struct regulator *regulator); | ||
| 127 | |||
| 128 | /* regulator output control and status */ | ||
| 129 | int regulator_enable(struct regulator *regulator); | ||
| 130 | int regulator_disable(struct regulator *regulator); | ||
| 131 | int regulator_force_disable(struct regulator *regulator); | ||
| 132 | int regulator_is_enabled(struct regulator *regulator); | ||
| 133 | |||
| 134 | int regulator_bulk_get(struct device *dev, int num_consumers, | ||
| 135 | struct regulator_bulk_data *consumers); | ||
| 136 | int regulator_bulk_enable(int num_consumers, | ||
| 137 | struct regulator_bulk_data *consumers); | ||
| 138 | int regulator_bulk_disable(int num_consumers, | ||
| 139 | struct regulator_bulk_data *consumers); | ||
| 140 | void regulator_bulk_free(int num_consumers, | ||
| 141 | struct regulator_bulk_data *consumers); | ||
| 142 | |||
| 143 | int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV); | ||
| 144 | int regulator_get_voltage(struct regulator *regulator); | ||
| 145 | int regulator_set_current_limit(struct regulator *regulator, | ||
| 146 | int min_uA, int max_uA); | ||
| 147 | int regulator_get_current_limit(struct regulator *regulator); | ||
| 148 | |||
| 149 | int regulator_set_mode(struct regulator *regulator, unsigned int mode); | ||
| 150 | unsigned int regulator_get_mode(struct regulator *regulator); | ||
| 151 | int regulator_set_optimum_mode(struct regulator *regulator, int load_uA); | ||
| 152 | |||
| 153 | /* regulator notifier block */ | ||
| 154 | int regulator_register_notifier(struct regulator *regulator, | ||
| 155 | struct notifier_block *nb); | ||
| 156 | int regulator_unregister_notifier(struct regulator *regulator, | ||
| 157 | struct notifier_block *nb); | ||
| 158 | |||
| 159 | /* driver data - core doesn't touch */ | ||
| 160 | void *regulator_get_drvdata(struct regulator *regulator); | ||
| 161 | void regulator_set_drvdata(struct regulator *regulator, void *data); | ||
| 162 | |||
| 163 | #else | ||
| 164 | |||
| 165 | /* | ||
| 166 | * Make sure client drivers will still build on systems with no software | ||
| 167 | * controllable voltage or current regulators. | ||
| 168 | */ | ||
| 169 | static inline struct regulator *__must_check regulator_get(struct device *dev, | ||
| 170 | const char *id) | ||
| 171 | { | ||
| 172 | /* Nothing except the stubbed out regulator API should be | ||
| 173 | * looking at the value except to check if it is an error | ||
| 174 | * value so the actual return value doesn't matter. | ||
| 175 | */ | ||
| 176 | return (struct regulator *)id; | ||
| 177 | } | ||
| 178 | static inline void regulator_put(struct regulator *regulator) | ||
| 179 | { | ||
| 180 | } | ||
| 181 | |||
| 182 | static inline int regulator_enable(struct regulator *regulator) | ||
| 183 | { | ||
| 184 | return 0; | ||
| 185 | } | ||
| 186 | |||
| 187 | static inline int regulator_disable(struct regulator *regulator) | ||
| 188 | { | ||
| 189 | return 0; | ||
| 190 | } | ||
| 191 | |||
| 192 | static inline int regulator_is_enabled(struct regulator *regulator) | ||
| 193 | { | ||
| 194 | return 1; | ||
| 195 | } | ||
| 196 | |||
| 197 | static inline int regulator_bulk_get(struct device *dev, | ||
| 198 | int num_consumers, | ||
| 199 | struct regulator_bulk_data *consumers) | ||
| 200 | { | ||
| 201 | return 0; | ||
| 202 | } | ||
| 203 | |||
| 204 | static inline int regulator_bulk_enable(int num_consumers, | ||
| 205 | struct regulator_bulk_data *consumers) | ||
| 206 | { | ||
| 207 | return 0; | ||
| 208 | } | ||
| 209 | |||
| 210 | static inline int regulator_bulk_disable(int num_consumers, | ||
| 211 | struct regulator_bulk_data *consumers) | ||
| 212 | { | ||
| 213 | return 0; | ||
| 214 | } | ||
| 215 | |||
| 216 | static inline void regulator_bulk_free(int num_consumers, | ||
| 217 | struct regulator_bulk_data *consumers) | ||
| 218 | { | ||
| 219 | } | ||
| 220 | |||
| 221 | static inline int regulator_set_voltage(struct regulator *regulator, | ||
| 222 | int min_uV, int max_uV) | ||
| 223 | { | ||
| 224 | return 0; | ||
| 225 | } | ||
| 226 | |||
| 227 | static inline int regulator_get_voltage(struct regulator *regulator) | ||
| 228 | { | ||
| 229 | return 0; | ||
| 230 | } | ||
| 231 | |||
| 232 | static inline int regulator_set_current_limit(struct regulator *regulator, | ||
| 233 | int min_uA, int max_uA) | ||
| 234 | { | ||
| 235 | return 0; | ||
| 236 | } | ||
| 237 | |||
| 238 | static inline int regulator_get_current_limit(struct regulator *regulator) | ||
| 239 | { | ||
| 240 | return 0; | ||
| 241 | } | ||
| 242 | |||
| 243 | static inline int regulator_set_mode(struct regulator *regulator, | ||
| 244 | unsigned int mode) | ||
| 245 | { | ||
| 246 | return 0; | ||
| 247 | } | ||
| 248 | |||
| 249 | static inline unsigned int regulator_get_mode(struct regulator *regulator) | ||
| 250 | { | ||
| 251 | return REGULATOR_MODE_NORMAL; | ||
| 252 | } | ||
| 253 | |||
| 254 | static inline int regulator_set_optimum_mode(struct regulator *regulator, | ||
| 255 | int load_uA) | ||
| 256 | { | ||
| 257 | return REGULATOR_MODE_NORMAL; | ||
| 258 | } | ||
| 259 | |||
| 260 | static inline int regulator_register_notifier(struct regulator *regulator, | ||
| 261 | struct notifier_block *nb) | ||
| 262 | { | ||
| 263 | return 0; | ||
| 264 | } | ||
| 265 | |||
| 266 | static inline int regulator_unregister_notifier(struct regulator *regulator, | ||
| 267 | struct notifier_block *nb) | ||
| 268 | { | ||
| 269 | return 0; | ||
| 270 | } | ||
| 271 | |||
| 272 | static inline void *regulator_get_drvdata(struct regulator *regulator) | ||
| 273 | { | ||
| 274 | return NULL; | ||
| 275 | } | ||
| 276 | |||
| 277 | static inline void regulator_set_drvdata(struct regulator *regulator, | ||
| 278 | void *data) | ||
| 279 | { | ||
| 280 | } | ||
| 281 | |||
| 282 | #endif | ||
| 283 | |||
| 284 | #endif | ||
diff --git a/include/linux/regulator/driver.h b/include/linux/regulator/driver.h new file mode 100644 index 000000000000..1d712c7172a2 --- /dev/null +++ b/include/linux/regulator/driver.h | |||
| @@ -0,0 +1,99 @@ | |||
| 1 | /* | ||
| 2 | * driver.h -- SoC Regulator driver support. | ||
| 3 | * | ||
| 4 | * Copyright (C) 2007, 2008 Wolfson Microelectronics PLC. | ||
| 5 | * | ||
| 6 | * Author: Liam Girdwood <lg@opensource.wolfsonmicro.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License version 2 as | ||
| 10 | * published by the Free Software Foundation. | ||
| 11 | * | ||
| 12 | * Regulator Driver Interface. | ||
| 13 | */ | ||
| 14 | |||
| 15 | #ifndef __LINUX_REGULATOR_DRIVER_H_ | ||
| 16 | #define __LINUX_REGULATOR_DRIVER_H_ | ||
| 17 | |||
| 18 | #include <linux/device.h> | ||
| 19 | #include <linux/regulator/consumer.h> | ||
| 20 | |||
| 21 | struct regulator_constraints; | ||
| 22 | struct regulator_dev; | ||
| 23 | |||
| 24 | /** | ||
| 25 | * struct regulator_ops - regulator operations. | ||
| 26 | * | ||
| 27 | * This struct describes regulator operations. | ||
| 28 | */ | ||
| 29 | struct regulator_ops { | ||
| 30 | |||
| 31 | /* get/set regulator voltage */ | ||
| 32 | int (*set_voltage) (struct regulator_dev *, int min_uV, int max_uV); | ||
| 33 | int (*get_voltage) (struct regulator_dev *); | ||
| 34 | |||
| 35 | /* get/set regulator current */ | ||
| 36 | int (*set_current_limit) (struct regulator_dev *, | ||
| 37 | int min_uA, int max_uA); | ||
| 38 | int (*get_current_limit) (struct regulator_dev *); | ||
| 39 | |||
| 40 | /* enable/disable regulator */ | ||
| 41 | int (*enable) (struct regulator_dev *); | ||
| 42 | int (*disable) (struct regulator_dev *); | ||
| 43 | int (*is_enabled) (struct regulator_dev *); | ||
| 44 | |||
| 45 | /* get/set regulator operating mode (defined in regulator.h) */ | ||
| 46 | int (*set_mode) (struct regulator_dev *, unsigned int mode); | ||
| 47 | unsigned int (*get_mode) (struct regulator_dev *); | ||
| 48 | |||
| 49 | /* get most efficient regulator operating mode for load */ | ||
| 50 | unsigned int (*get_optimum_mode) (struct regulator_dev *, int input_uV, | ||
| 51 | int output_uV, int load_uA); | ||
| 52 | |||
| 53 | /* the operations below are for configuration of regulator state when | ||
| 54 | * it's parent PMIC enters a global STANBY/HIBERNATE state */ | ||
| 55 | |||
| 56 | /* set regulator suspend voltage */ | ||
| 57 | int (*set_suspend_voltage) (struct regulator_dev *, int uV); | ||
| 58 | |||
| 59 | /* enable/disable regulator in suspend state */ | ||
| 60 | int (*set_suspend_enable) (struct regulator_dev *); | ||
| 61 | int (*set_suspend_disable) (struct regulator_dev *); | ||
| 62 | |||
| 63 | /* set regulator suspend operating mode (defined in regulator.h) */ | ||
| 64 | int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode); | ||
| 65 | }; | ||
| 66 | |||
| 67 | /* | ||
| 68 | * Regulators can either control voltage or current. | ||
| 69 | */ | ||
| 70 | enum regulator_type { | ||
| 71 | REGULATOR_VOLTAGE, | ||
| 72 | REGULATOR_CURRENT, | ||
| 73 | }; | ||
| 74 | |||
| 75 | /** | ||
| 76 | * struct regulator_desc - Regulator descriptor | ||
| 77 | * | ||
| 78 | */ | ||
| 79 | struct regulator_desc { | ||
| 80 | const char *name; | ||
| 81 | int id; | ||
| 82 | struct regulator_ops *ops; | ||
| 83 | int irq; | ||
| 84 | enum regulator_type type; | ||
| 85 | struct module *owner; | ||
| 86 | }; | ||
| 87 | |||
| 88 | |||
| 89 | struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc, | ||
| 90 | void *reg_data); | ||
| 91 | void regulator_unregister(struct regulator_dev *rdev); | ||
| 92 | |||
| 93 | int regulator_notifier_call_chain(struct regulator_dev *rdev, | ||
| 94 | unsigned long event, void *data); | ||
| 95 | |||
| 96 | void *rdev_get_drvdata(struct regulator_dev *rdev); | ||
| 97 | int rdev_get_id(struct regulator_dev *rdev); | ||
| 98 | |||
| 99 | #endif | ||
diff --git a/include/linux/regulator/fixed.h b/include/linux/regulator/fixed.h new file mode 100644 index 000000000000..1387a5d2190e --- /dev/null +++ b/include/linux/regulator/fixed.h | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | /* | ||
| 2 | * fixed.h | ||
| 3 | * | ||
| 4 | * Copyright 2008 Wolfson Microelectronics PLC. | ||
| 5 | * | ||
| 6 | * Author: Mark Brown <broonie@opensource.wolfsonmicro.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or | ||
| 9 | * modify it under the terms of the GNU General Public License as | ||
| 10 | * published by the Free Software Foundation; either version 2 of the | ||
| 11 | * License, or (at your option) any later version. | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef __REGULATOR_FIXED_H | ||
| 15 | #define __REGULATOR_FIXED_H | ||
| 16 | |||
| 17 | struct fixed_voltage_config { | ||
| 18 | const char *supply_name; | ||
| 19 | int microvolts; | ||
| 20 | }; | ||
| 21 | |||
| 22 | #endif | ||
diff --git a/include/linux/regulator/machine.h b/include/linux/regulator/machine.h new file mode 100644 index 000000000000..11e737dbfcf2 --- /dev/null +++ b/include/linux/regulator/machine.h | |||
| @@ -0,0 +1,104 @@ | |||
| 1 | /* | ||
| 2 | * machine.h -- SoC Regulator support, machine/board driver API. | ||
| 3 | * | ||
| 4 | * Copyright (C) 2007, 2008 Wolfson Microelectronics PLC. | ||
| 5 | * | ||
| 6 | * Author: Liam Girdwood <lg@opensource.wolfsonmicro.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License version 2 as | ||
| 10 | * published by the Free Software Foundation. | ||
| 11 | * | ||
| 12 | * Regulator Machine/Board Interface. | ||
| 13 | */ | ||
| 14 | |||
| 15 | #ifndef __LINUX_REGULATOR_MACHINE_H_ | ||
| 16 | #define __LINUX_REGULATOR_MACHINE_H_ | ||
| 17 | |||
| 18 | #include <linux/regulator/consumer.h> | ||
| 19 | #include <linux/suspend.h> | ||
| 20 | |||
| 21 | struct regulator; | ||
| 22 | |||
| 23 | /* | ||
| 24 | * Regulator operation constraint flags. These flags are used to enable | ||
| 25 | * certain regulator operations and can be OR'ed together. | ||
| 26 | * | ||
| 27 | * VOLTAGE: Regulator output voltage can be changed by software on this | ||
| 28 | * board/machine. | ||
| 29 | * CURRENT: Regulator output current can be changed by software on this | ||
| 30 | * board/machine. | ||
| 31 | * MODE: Regulator operating mode can be changed by software on this | ||
| 32 | * board/machine. | ||
| 33 | * STATUS: Regulator can be enabled and disabled. | ||
| 34 | * DRMS: Dynamic Regulator Mode Switching is enabled for this regulator. | ||
| 35 | */ | ||
| 36 | |||
| 37 | #define REGULATOR_CHANGE_VOLTAGE 0x1 | ||
| 38 | #define REGULATOR_CHANGE_CURRENT 0x2 | ||
| 39 | #define REGULATOR_CHANGE_MODE 0x4 | ||
| 40 | #define REGULATOR_CHANGE_STATUS 0x8 | ||
| 41 | #define REGULATOR_CHANGE_DRMS 0x10 | ||
| 42 | |||
| 43 | /** | ||
| 44 | * struct regulator_state - regulator state during low power syatem states | ||
| 45 | * | ||
| 46 | * This describes a regulators state during a system wide low power state. | ||
| 47 | */ | ||
| 48 | struct regulator_state { | ||
| 49 | int uV; /* suspend voltage */ | ||
| 50 | unsigned int mode; /* suspend regulator operating mode */ | ||
| 51 | int enabled; /* is regulator enabled in this suspend state */ | ||
| 52 | }; | ||
| 53 | |||
| 54 | /** | ||
| 55 | * struct regulation_constraints - regulator operating constraints. | ||
| 56 | * | ||
| 57 | * This struct describes regulator and board/machine specific constraints. | ||
| 58 | */ | ||
| 59 | struct regulation_constraints { | ||
| 60 | |||
| 61 | char *name; | ||
| 62 | |||
| 63 | /* voltage output range (inclusive) - for voltage control */ | ||
| 64 | int min_uV; | ||
| 65 | int max_uV; | ||
| 66 | |||
| 67 | /* current output range (inclusive) - for current control */ | ||
| 68 | int min_uA; | ||
| 69 | int max_uA; | ||
| 70 | |||
| 71 | /* valid regulator operating modes for this machine */ | ||
| 72 | unsigned int valid_modes_mask; | ||
| 73 | |||
| 74 | /* valid operations for regulator on this machine */ | ||
| 75 | unsigned int valid_ops_mask; | ||
| 76 | |||
| 77 | /* regulator input voltage - only if supply is another regulator */ | ||
| 78 | int input_uV; | ||
| 79 | |||
| 80 | /* regulator suspend states for global PMIC STANDBY/HIBERNATE */ | ||
| 81 | struct regulator_state state_disk; | ||
| 82 | struct regulator_state state_mem; | ||
| 83 | struct regulator_state state_standby; | ||
| 84 | suspend_state_t initial_state; /* suspend state to set at init */ | ||
| 85 | |||
| 86 | /* constriant flags */ | ||
| 87 | unsigned always_on:1; /* regulator never off when system is on */ | ||
| 88 | unsigned boot_on:1; /* bootloader/firmware enabled regulator */ | ||
| 89 | unsigned apply_uV:1; /* apply uV constraint iff min == max */ | ||
| 90 | }; | ||
| 91 | |||
| 92 | int regulator_set_supply(const char *regulator, const char *regulator_supply); | ||
| 93 | |||
| 94 | const char *regulator_get_supply(const char *regulator); | ||
| 95 | |||
| 96 | int regulator_set_machine_constraints(const char *regulator, | ||
| 97 | struct regulation_constraints *constraints); | ||
| 98 | |||
| 99 | int regulator_set_device_supply(const char *regulator, struct device *dev, | ||
| 100 | const char *supply); | ||
| 101 | |||
| 102 | int regulator_suspend_prepare(suspend_state_t state); | ||
| 103 | |||
| 104 | #endif | ||
diff --git a/include/linux/reiserfs_fs.h b/include/linux/reiserfs_fs.h index 4aacaeecb56f..e9963af16cda 100644 --- a/include/linux/reiserfs_fs.h +++ b/include/linux/reiserfs_fs.h | |||
| @@ -526,8 +526,8 @@ struct item_head { | |||
| 526 | ** p is the array of __u32, i is the index into the array, v is the value | 526 | ** p is the array of __u32, i is the index into the array, v is the value |
| 527 | ** to store there. | 527 | ** to store there. |
| 528 | */ | 528 | */ |
| 529 | #define get_block_num(p, i) le32_to_cpu(get_unaligned((p) + (i))) | 529 | #define get_block_num(p, i) get_unaligned_le32((p) + (i)) |
| 530 | #define put_block_num(p, i, v) put_unaligned(cpu_to_le32(v), (p) + (i)) | 530 | #define put_block_num(p, i, v) put_unaligned_le32((v), (p) + (i)) |
| 531 | 531 | ||
| 532 | // | 532 | // |
| 533 | // in old version uniqueness field shows key type | 533 | // in old version uniqueness field shows key type |
diff --git a/include/linux/reiserfs_fs_sb.h b/include/linux/reiserfs_fs_sb.h index 336ee43ed7d8..315517e8bfa1 100644 --- a/include/linux/reiserfs_fs_sb.h +++ b/include/linux/reiserfs_fs_sb.h | |||
| @@ -152,7 +152,7 @@ struct reiserfs_journal_list { | |||
| 152 | atomic_t j_nonzerolen; | 152 | atomic_t j_nonzerolen; |
| 153 | atomic_t j_commit_left; | 153 | atomic_t j_commit_left; |
| 154 | atomic_t j_older_commits_done; /* all commits older than this on disk */ | 154 | atomic_t j_older_commits_done; /* all commits older than this on disk */ |
| 155 | struct semaphore j_commit_lock; | 155 | struct mutex j_commit_mutex; |
| 156 | unsigned long j_trans_id; | 156 | unsigned long j_trans_id; |
| 157 | time_t j_timestamp; | 157 | time_t j_timestamp; |
| 158 | struct reiserfs_list_bitmap *j_list_bitmap; | 158 | struct reiserfs_list_bitmap *j_list_bitmap; |
| @@ -193,8 +193,8 @@ struct reiserfs_journal { | |||
| 193 | struct buffer_head *j_header_bh; | 193 | struct buffer_head *j_header_bh; |
| 194 | 194 | ||
| 195 | time_t j_trans_start_time; /* time this transaction started */ | 195 | time_t j_trans_start_time; /* time this transaction started */ |
| 196 | struct semaphore j_lock; | 196 | struct mutex j_mutex; |
| 197 | struct semaphore j_flush_sem; | 197 | struct mutex j_flush_mutex; |
| 198 | wait_queue_head_t j_join_wait; /* wait for current transaction to finish before starting new one */ | 198 | wait_queue_head_t j_join_wait; /* wait for current transaction to finish before starting new one */ |
| 199 | atomic_t j_jlock; /* lock for j_join_wait */ | 199 | atomic_t j_jlock; /* lock for j_join_wait */ |
| 200 | int j_list_bitmap_index; /* number of next list bitmap to use */ | 200 | int j_list_bitmap_index; /* number of next list bitmap to use */ |
diff --git a/include/linux/reiserfs_xattr.h b/include/linux/reiserfs_xattr.h index 66a96814d614..af135ae895db 100644 --- a/include/linux/reiserfs_xattr.h +++ b/include/linux/reiserfs_xattr.h | |||
| @@ -55,7 +55,7 @@ int reiserfs_removexattr(struct dentry *dentry, const char *name); | |||
| 55 | int reiserfs_delete_xattrs(struct inode *inode); | 55 | int reiserfs_delete_xattrs(struct inode *inode); |
| 56 | int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs); | 56 | int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs); |
| 57 | int reiserfs_xattr_init(struct super_block *sb, int mount_flags); | 57 | int reiserfs_xattr_init(struct super_block *sb, int mount_flags); |
| 58 | int reiserfs_permission(struct inode *inode, int mask, struct nameidata *nd); | 58 | int reiserfs_permission(struct inode *inode, int mask); |
| 59 | 59 | ||
| 60 | int reiserfs_xattr_del(struct inode *, const char *); | 60 | int reiserfs_xattr_del(struct inode *, const char *); |
| 61 | int reiserfs_xattr_get(const struct inode *, const char *, void *, size_t); | 61 | int reiserfs_xattr_get(const struct inode *, const char *, void *, size_t); |
diff --git a/include/linux/relay.h b/include/linux/relay.h index 6cd8c4425fc7..953fc055e875 100644 --- a/include/linux/relay.h +++ b/include/linux/relay.h | |||
| @@ -48,6 +48,7 @@ struct rchan_buf | |||
| 48 | size_t *padding; /* padding counts per sub-buffer */ | 48 | size_t *padding; /* padding counts per sub-buffer */ |
| 49 | size_t prev_padding; /* temporary variable */ | 49 | size_t prev_padding; /* temporary variable */ |
| 50 | size_t bytes_consumed; /* bytes consumed in cur read subbuf */ | 50 | size_t bytes_consumed; /* bytes consumed in cur read subbuf */ |
| 51 | size_t early_bytes; /* bytes consumed before VFS inited */ | ||
| 51 | unsigned int cpu; /* this buf's cpu */ | 52 | unsigned int cpu; /* this buf's cpu */ |
| 52 | } ____cacheline_aligned; | 53 | } ____cacheline_aligned; |
| 53 | 54 | ||
| @@ -68,6 +69,7 @@ struct rchan | |||
| 68 | int is_global; /* One global buffer ? */ | 69 | int is_global; /* One global buffer ? */ |
| 69 | struct list_head list; /* for channel list */ | 70 | struct list_head list; /* for channel list */ |
| 70 | struct dentry *parent; /* parent dentry passed to open */ | 71 | struct dentry *parent; /* parent dentry passed to open */ |
| 72 | int has_base_filename; /* has a filename associated? */ | ||
| 71 | char base_filename[NAME_MAX]; /* saved base filename */ | 73 | char base_filename[NAME_MAX]; /* saved base filename */ |
| 72 | }; | 74 | }; |
| 73 | 75 | ||
| @@ -169,6 +171,9 @@ struct rchan *relay_open(const char *base_filename, | |||
| 169 | size_t n_subbufs, | 171 | size_t n_subbufs, |
| 170 | struct rchan_callbacks *cb, | 172 | struct rchan_callbacks *cb, |
| 171 | void *private_data); | 173 | void *private_data); |
| 174 | extern int relay_late_setup_files(struct rchan *chan, | ||
| 175 | const char *base_filename, | ||
| 176 | struct dentry *parent); | ||
| 172 | extern void relay_close(struct rchan *chan); | 177 | extern void relay_close(struct rchan *chan); |
| 173 | extern void relay_flush(struct rchan *chan); | 178 | extern void relay_flush(struct rchan *chan); |
| 174 | extern void relay_subbufs_consumed(struct rchan *chan, | 179 | extern void relay_subbufs_consumed(struct rchan *chan, |
diff --git a/include/linux/res_counter.h b/include/linux/res_counter.h index 6d9e1fca098c..fdeadd9740dc 100644 --- a/include/linux/res_counter.h +++ b/include/linux/res_counter.h | |||
| @@ -63,9 +63,14 @@ u64 res_counter_read_u64(struct res_counter *counter, int member); | |||
| 63 | ssize_t res_counter_read(struct res_counter *counter, int member, | 63 | ssize_t res_counter_read(struct res_counter *counter, int member, |
| 64 | const char __user *buf, size_t nbytes, loff_t *pos, | 64 | const char __user *buf, size_t nbytes, loff_t *pos, |
| 65 | int (*read_strategy)(unsigned long long val, char *s)); | 65 | int (*read_strategy)(unsigned long long val, char *s)); |
| 66 | ssize_t res_counter_write(struct res_counter *counter, int member, | 66 | |
| 67 | const char __user *buf, size_t nbytes, loff_t *pos, | 67 | typedef int (*write_strategy_fn)(const char *buf, unsigned long long *val); |
| 68 | int (*write_strategy)(char *buf, unsigned long long *val)); | 68 | |
| 69 | int res_counter_memparse_write_strategy(const char *buf, | ||
| 70 | unsigned long long *res); | ||
| 71 | |||
| 72 | int res_counter_write(struct res_counter *counter, int member, | ||
| 73 | const char *buffer, write_strategy_fn write_strategy); | ||
| 69 | 74 | ||
| 70 | /* | 75 | /* |
| 71 | * the field descriptors. one for each member of res_counter | 76 | * the field descriptors. one for each member of res_counter |
| @@ -95,8 +100,10 @@ void res_counter_init(struct res_counter *counter); | |||
| 95 | * counter->limit _locked call expects the counter->lock to be taken | 100 | * counter->limit _locked call expects the counter->lock to be taken |
| 96 | */ | 101 | */ |
| 97 | 102 | ||
| 98 | int res_counter_charge_locked(struct res_counter *counter, unsigned long val); | 103 | int __must_check res_counter_charge_locked(struct res_counter *counter, |
| 99 | int res_counter_charge(struct res_counter *counter, unsigned long val); | 104 | unsigned long val); |
| 105 | int __must_check res_counter_charge(struct res_counter *counter, | ||
| 106 | unsigned long val); | ||
| 100 | 107 | ||
| 101 | /* | 108 | /* |
| 102 | * uncharge - tell that some portion of the resource is released | 109 | * uncharge - tell that some portion of the resource is released |
| @@ -151,4 +158,20 @@ static inline void res_counter_reset_failcnt(struct res_counter *cnt) | |||
| 151 | cnt->failcnt = 0; | 158 | cnt->failcnt = 0; |
| 152 | spin_unlock_irqrestore(&cnt->lock, flags); | 159 | spin_unlock_irqrestore(&cnt->lock, flags); |
| 153 | } | 160 | } |
| 161 | |||
| 162 | static inline int res_counter_set_limit(struct res_counter *cnt, | ||
| 163 | unsigned long long limit) | ||
| 164 | { | ||
| 165 | unsigned long flags; | ||
| 166 | int ret = -EBUSY; | ||
| 167 | |||
| 168 | spin_lock_irqsave(&cnt->lock, flags); | ||
| 169 | if (cnt->usage < limit) { | ||
| 170 | cnt->limit = limit; | ||
| 171 | ret = 0; | ||
| 172 | } | ||
| 173 | spin_unlock_irqrestore(&cnt->lock, flags); | ||
| 174 | return ret; | ||
| 175 | } | ||
| 176 | |||
| 154 | #endif | 177 | #endif |
diff --git a/include/linux/rfkill.h b/include/linux/rfkill.h index c5f6e54ec6ae..741d1a62cc3f 100644 --- a/include/linux/rfkill.h +++ b/include/linux/rfkill.h | |||
| @@ -68,7 +68,8 @@ enum rfkill_state { | |||
| 68 | * @user_claim_unsupported: Whether the hardware supports exclusive | 68 | * @user_claim_unsupported: Whether the hardware supports exclusive |
| 69 | * RF-kill control by userspace. Set this before registering. | 69 | * RF-kill control by userspace. Set this before registering. |
| 70 | * @user_claim: Set when the switch is controlled exlusively by userspace. | 70 | * @user_claim: Set when the switch is controlled exlusively by userspace. |
| 71 | * @mutex: Guards switch state transitions | 71 | * @mutex: Guards switch state transitions. It serializes callbacks |
| 72 | * and also protects the state. | ||
| 72 | * @data: Pointer to the RF button drivers private data which will be | 73 | * @data: Pointer to the RF button drivers private data which will be |
| 73 | * passed along when toggling radio state. | 74 | * passed along when toggling radio state. |
| 74 | * @toggle_radio(): Mandatory handler to control state of the radio. | 75 | * @toggle_radio(): Mandatory handler to control state of the radio. |
| @@ -89,12 +90,13 @@ struct rfkill { | |||
| 89 | const char *name; | 90 | const char *name; |
| 90 | enum rfkill_type type; | 91 | enum rfkill_type type; |
| 91 | 92 | ||
| 92 | enum rfkill_state state; | ||
| 93 | bool user_claim_unsupported; | 93 | bool user_claim_unsupported; |
| 94 | bool user_claim; | 94 | bool user_claim; |
| 95 | 95 | ||
| 96 | /* the mutex serializes callbacks and also protects | ||
| 97 | * the state */ | ||
| 96 | struct mutex mutex; | 98 | struct mutex mutex; |
| 97 | 99 | enum rfkill_state state; | |
| 98 | void *data; | 100 | void *data; |
| 99 | int (*toggle_radio)(void *data, enum rfkill_state state); | 101 | int (*toggle_radio)(void *data, enum rfkill_state state); |
| 100 | int (*get_state)(void *data, enum rfkill_state *state); | 102 | int (*get_state)(void *data, enum rfkill_state *state); |
diff --git a/include/linux/rmap.h b/include/linux/rmap.h index 1383692ac5bd..69407f85e10b 100644 --- a/include/linux/rmap.h +++ b/include/linux/rmap.h | |||
| @@ -26,6 +26,14 @@ | |||
| 26 | */ | 26 | */ |
| 27 | struct anon_vma { | 27 | struct anon_vma { |
| 28 | spinlock_t lock; /* Serialize access to vma list */ | 28 | spinlock_t lock; /* Serialize access to vma list */ |
| 29 | /* | ||
| 30 | * NOTE: the LSB of the head.next is set by | ||
| 31 | * mm_take_all_locks() _after_ taking the above lock. So the | ||
| 32 | * head must only be read/written after taking the above lock | ||
| 33 | * to be sure to see a valid next pointer. The LSB bit itself | ||
| 34 | * is serialized by a system wide lock only visible to | ||
| 35 | * mm_take_all_locks() (mm_all_locks_mutex). | ||
| 36 | */ | ||
| 29 | struct list_head head; /* List of private "related" vmas */ | 37 | struct list_head head; /* List of private "related" vmas */ |
| 30 | }; | 38 | }; |
| 31 | 39 | ||
diff --git a/include/linux/rtc.h b/include/linux/rtc.h index f2d0d1527721..91f597ad6acc 100644 --- a/include/linux/rtc.h +++ b/include/linux/rtc.h | |||
| @@ -115,6 +115,23 @@ extern void rtc_time_to_tm(unsigned long time, struct rtc_time *tm); | |||
| 115 | 115 | ||
| 116 | extern struct class *rtc_class; | 116 | extern struct class *rtc_class; |
| 117 | 117 | ||
| 118 | /* | ||
| 119 | * For these RTC methods the device parameter is the physical device | ||
| 120 | * on whatever bus holds the hardware (I2C, Platform, SPI, etc), which | ||
| 121 | * was passed to rtc_device_register(). Its driver_data normally holds | ||
| 122 | * device state, including the rtc_device pointer for the RTC. | ||
| 123 | * | ||
| 124 | * Most of these methods are called with rtc_device.ops_lock held, | ||
| 125 | * through the rtc_*(struct rtc_device *, ...) calls. | ||
| 126 | * | ||
| 127 | * The (current) exceptions are mostly filesystem hooks: | ||
| 128 | * - the proc() hook for procfs | ||
| 129 | * - non-ioctl() chardev hooks: open(), release(), read_callback() | ||
| 130 | * - periodic irq calls: irq_set_state(), irq_set_freq() | ||
| 131 | * | ||
| 132 | * REVISIT those periodic irq calls *do* have ops_lock when they're | ||
| 133 | * issued through ioctl() ... | ||
| 134 | */ | ||
| 118 | struct rtc_class_ops { | 135 | struct rtc_class_ops { |
| 119 | int (*open)(struct device *); | 136 | int (*open)(struct device *); |
| 120 | void (*release)(struct device *); | 137 | void (*release)(struct device *); |
| @@ -208,8 +225,6 @@ typedef struct rtc_task { | |||
| 208 | int rtc_register(rtc_task_t *task); | 225 | int rtc_register(rtc_task_t *task); |
| 209 | int rtc_unregister(rtc_task_t *task); | 226 | int rtc_unregister(rtc_task_t *task); |
| 210 | int rtc_control(rtc_task_t *t, unsigned int cmd, unsigned long arg); | 227 | int rtc_control(rtc_task_t *t, unsigned int cmd, unsigned long arg); |
| 211 | void rtc_get_rtc_time(struct rtc_time *rtc_tm); | ||
| 212 | irqreturn_t rtc_interrupt(int irq, void *dev_id); | ||
| 213 | 228 | ||
| 214 | #endif /* __KERNEL__ */ | 229 | #endif /* __KERNEL__ */ |
| 215 | 230 | ||
diff --git a/include/linux/rtnetlink.h b/include/linux/rtnetlink.h index f4d386c191f5..ca643b13b026 100644 --- a/include/linux/rtnetlink.h +++ b/include/linux/rtnetlink.h | |||
| @@ -755,13 +755,6 @@ extern void __rtnl_unlock(void); | |||
| 755 | } \ | 755 | } \ |
| 756 | } while(0) | 756 | } while(0) |
| 757 | 757 | ||
| 758 | #define BUG_TRAP(x) do { \ | ||
| 759 | if (unlikely(!(x))) { \ | ||
| 760 | printk(KERN_ERR "KERNEL: assertion (%s) failed at %s (%d)\n", \ | ||
| 761 | #x, __FILE__ , __LINE__); \ | ||
| 762 | } \ | ||
| 763 | } while(0) | ||
| 764 | |||
| 765 | static inline u32 rtm_get_table(struct rtattr **rta, u8 table) | 758 | static inline u32 rtm_get_table(struct rtattr **rta, u8 table) |
| 766 | { | 759 | { |
| 767 | return RTA_GET_U32(rta[RTA_TABLE-1]); | 760 | return RTA_GET_U32(rta[RTA_TABLE-1]); |
diff --git a/include/linux/scatterlist.h b/include/linux/scatterlist.h index 71fc81360048..e5996984ddd0 100644 --- a/include/linux/scatterlist.h +++ b/include/linux/scatterlist.h | |||
| @@ -224,4 +224,42 @@ size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents, | |||
| 224 | */ | 224 | */ |
| 225 | #define SG_MAX_SINGLE_ALLOC (PAGE_SIZE / sizeof(struct scatterlist)) | 225 | #define SG_MAX_SINGLE_ALLOC (PAGE_SIZE / sizeof(struct scatterlist)) |
| 226 | 226 | ||
| 227 | |||
| 228 | /* | ||
| 229 | * Mapping sg iterator | ||
| 230 | * | ||
| 231 | * Iterates over sg entries mapping page-by-page. On each successful | ||
| 232 | * iteration, @miter->page points to the mapped page and | ||
| 233 | * @miter->length bytes of data can be accessed at @miter->addr. As | ||
| 234 | * long as an interation is enclosed between start and stop, the user | ||
| 235 | * is free to choose control structure and when to stop. | ||
| 236 | * | ||
| 237 | * @miter->consumed is set to @miter->length on each iteration. It | ||
| 238 | * can be adjusted if the user can't consume all the bytes in one go. | ||
| 239 | * Also, a stopped iteration can be resumed by calling next on it. | ||
| 240 | * This is useful when iteration needs to release all resources and | ||
| 241 | * continue later (e.g. at the next interrupt). | ||
| 242 | */ | ||
| 243 | |||
| 244 | #define SG_MITER_ATOMIC (1 << 0) /* use kmap_atomic */ | ||
| 245 | |||
| 246 | struct sg_mapping_iter { | ||
| 247 | /* the following three fields can be accessed directly */ | ||
| 248 | struct page *page; /* currently mapped page */ | ||
| 249 | void *addr; /* pointer to the mapped area */ | ||
| 250 | size_t length; /* length of the mapped area */ | ||
| 251 | size_t consumed; /* number of consumed bytes */ | ||
| 252 | |||
| 253 | /* these are internal states, keep away */ | ||
| 254 | struct scatterlist *__sg; /* current entry */ | ||
| 255 | unsigned int __nents; /* nr of remaining entries */ | ||
| 256 | unsigned int __offset; /* offset within sg */ | ||
| 257 | unsigned int __flags; | ||
| 258 | }; | ||
| 259 | |||
| 260 | void sg_miter_start(struct sg_mapping_iter *miter, struct scatterlist *sgl, | ||
| 261 | unsigned int nents, unsigned int flags); | ||
| 262 | bool sg_miter_next(struct sg_mapping_iter *miter); | ||
| 263 | void sg_miter_stop(struct sg_mapping_iter *miter); | ||
| 264 | |||
| 227 | #endif /* _LINUX_SCATTERLIST_H */ | 265 | #endif /* _LINUX_SCATTERLIST_H */ |
diff --git a/include/linux/sched.h b/include/linux/sched.h index 1941d8b5cf11..5850bfb968a8 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
| @@ -292,13 +292,13 @@ extern void sched_show_task(struct task_struct *p); | |||
| 292 | 292 | ||
| 293 | #ifdef CONFIG_DETECT_SOFTLOCKUP | 293 | #ifdef CONFIG_DETECT_SOFTLOCKUP |
| 294 | extern void softlockup_tick(void); | 294 | extern void softlockup_tick(void); |
| 295 | extern void spawn_softlockup_task(void); | ||
| 296 | extern void touch_softlockup_watchdog(void); | 295 | extern void touch_softlockup_watchdog(void); |
| 297 | extern void touch_all_softlockup_watchdogs(void); | 296 | extern void touch_all_softlockup_watchdogs(void); |
| 298 | extern unsigned long softlockup_thresh; | 297 | extern unsigned int softlockup_panic; |
| 299 | extern unsigned long sysctl_hung_task_check_count; | 298 | extern unsigned long sysctl_hung_task_check_count; |
| 300 | extern unsigned long sysctl_hung_task_timeout_secs; | 299 | extern unsigned long sysctl_hung_task_timeout_secs; |
| 301 | extern unsigned long sysctl_hung_task_warnings; | 300 | extern unsigned long sysctl_hung_task_warnings; |
| 301 | extern int softlockup_thresh; | ||
| 302 | #else | 302 | #else |
| 303 | static inline void softlockup_tick(void) | 303 | static inline void softlockup_tick(void) |
| 304 | { | 304 | { |
| @@ -505,6 +505,7 @@ struct signal_struct { | |||
| 505 | unsigned long nvcsw, nivcsw, cnvcsw, cnivcsw; | 505 | unsigned long nvcsw, nivcsw, cnvcsw, cnivcsw; |
| 506 | unsigned long min_flt, maj_flt, cmin_flt, cmaj_flt; | 506 | unsigned long min_flt, maj_flt, cmin_flt, cmaj_flt; |
| 507 | unsigned long inblock, oublock, cinblock, coublock; | 507 | unsigned long inblock, oublock, cinblock, coublock; |
| 508 | struct task_io_accounting ioac; | ||
| 508 | 509 | ||
| 509 | /* | 510 | /* |
| 510 | * Cumulative ns of scheduled CPU time for dead threads in the | 511 | * Cumulative ns of scheduled CPU time for dead threads in the |
| @@ -667,6 +668,10 @@ struct task_delay_info { | |||
| 667 | /* io operations performed */ | 668 | /* io operations performed */ |
| 668 | u32 swapin_count; /* total count of the number of swapin block */ | 669 | u32 swapin_count; /* total count of the number of swapin block */ |
| 669 | /* io operations performed */ | 670 | /* io operations performed */ |
| 671 | |||
| 672 | struct timespec freepages_start, freepages_end; | ||
| 673 | u64 freepages_delay; /* wait for memory reclaim */ | ||
| 674 | u32 freepages_count; /* total count of memory reclaim */ | ||
| 670 | }; | 675 | }; |
| 671 | #endif /* CONFIG_TASK_DELAY_ACCT */ | 676 | #endif /* CONFIG_TASK_DELAY_ACCT */ |
| 672 | 677 | ||
| @@ -824,7 +829,16 @@ extern void partition_sched_domains(int ndoms_new, cpumask_t *doms_new, | |||
| 824 | struct sched_domain_attr *dattr_new); | 829 | struct sched_domain_attr *dattr_new); |
| 825 | extern int arch_reinit_sched_domains(void); | 830 | extern int arch_reinit_sched_domains(void); |
| 826 | 831 | ||
| 827 | #endif /* CONFIG_SMP */ | 832 | #else /* CONFIG_SMP */ |
| 833 | |||
| 834 | struct sched_domain_attr; | ||
| 835 | |||
| 836 | static inline void | ||
| 837 | partition_sched_domains(int ndoms_new, cpumask_t *doms_new, | ||
| 838 | struct sched_domain_attr *dattr_new) | ||
| 839 | { | ||
| 840 | } | ||
| 841 | #endif /* !CONFIG_SMP */ | ||
| 828 | 842 | ||
| 829 | struct io_context; /* See blkdev.h */ | 843 | struct io_context; /* See blkdev.h */ |
| 830 | #define NGROUPS_SMALL 32 | 844 | #define NGROUPS_SMALL 32 |
| @@ -1239,15 +1253,11 @@ struct task_struct { | |||
| 1239 | 1253 | ||
| 1240 | unsigned long ptrace_message; | 1254 | unsigned long ptrace_message; |
| 1241 | siginfo_t *last_siginfo; /* For ptrace use. */ | 1255 | siginfo_t *last_siginfo; /* For ptrace use. */ |
| 1242 | #ifdef CONFIG_TASK_XACCT | ||
| 1243 | /* i/o counters(bytes read/written, #syscalls */ | ||
| 1244 | u64 rchar, wchar, syscr, syscw; | ||
| 1245 | #endif | ||
| 1246 | struct task_io_accounting ioac; | 1256 | struct task_io_accounting ioac; |
| 1247 | #if defined(CONFIG_TASK_XACCT) | 1257 | #if defined(CONFIG_TASK_XACCT) |
| 1248 | u64 acct_rss_mem1; /* accumulated rss usage */ | 1258 | u64 acct_rss_mem1; /* accumulated rss usage */ |
| 1249 | u64 acct_vm_mem1; /* accumulated virtual memory usage */ | 1259 | u64 acct_vm_mem1; /* accumulated virtual memory usage */ |
| 1250 | cputime_t acct_stimexpd;/* stime since last update */ | 1260 | cputime_t acct_timexpd; /* stime + utime since last update */ |
| 1251 | #endif | 1261 | #endif |
| 1252 | #ifdef CONFIG_CPUSETS | 1262 | #ifdef CONFIG_CPUSETS |
| 1253 | nodemask_t mems_allowed; | 1263 | nodemask_t mems_allowed; |
| @@ -1486,7 +1496,7 @@ static inline void put_task_struct(struct task_struct *t) | |||
| 1486 | #define PF_KSWAPD 0x00040000 /* I am kswapd */ | 1496 | #define PF_KSWAPD 0x00040000 /* I am kswapd */ |
| 1487 | #define PF_SWAPOFF 0x00080000 /* I am in swapoff */ | 1497 | #define PF_SWAPOFF 0x00080000 /* I am in swapoff */ |
| 1488 | #define PF_LESS_THROTTLE 0x00100000 /* Throttle me less: I clean memory */ | 1498 | #define PF_LESS_THROTTLE 0x00100000 /* Throttle me less: I clean memory */ |
| 1489 | #define PF_BORROWED_MM 0x00200000 /* I am a kthread doing use_mm */ | 1499 | #define PF_KTHREAD 0x00200000 /* I am a kernel thread */ |
| 1490 | #define PF_RANDOMIZE 0x00400000 /* randomize virtual address space */ | 1500 | #define PF_RANDOMIZE 0x00400000 /* randomize virtual address space */ |
| 1491 | #define PF_SWAPWRITE 0x00800000 /* Allowed to write to swap */ | 1501 | #define PF_SWAPWRITE 0x00800000 /* Allowed to write to swap */ |
| 1492 | #define PF_SPREAD_PAGE 0x01000000 /* Spread page cache over cpuset */ | 1502 | #define PF_SPREAD_PAGE 0x01000000 /* Spread page cache over cpuset */ |
| @@ -1541,16 +1551,10 @@ static inline int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask) | |||
| 1541 | 1551 | ||
| 1542 | extern unsigned long long sched_clock(void); | 1552 | extern unsigned long long sched_clock(void); |
| 1543 | 1553 | ||
| 1544 | #ifndef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK | 1554 | extern void sched_clock_init(void); |
| 1545 | static inline void sched_clock_init(void) | 1555 | extern u64 sched_clock_cpu(int cpu); |
| 1546 | { | ||
| 1547 | } | ||
| 1548 | |||
| 1549 | static inline u64 sched_clock_cpu(int cpu) | ||
| 1550 | { | ||
| 1551 | return sched_clock(); | ||
| 1552 | } | ||
| 1553 | 1556 | ||
| 1557 | #ifndef CONFIG_HAVE_UNSTABLE_SCHED_CLOCK | ||
| 1554 | static inline void sched_clock_tick(void) | 1558 | static inline void sched_clock_tick(void) |
| 1555 | { | 1559 | { |
| 1556 | } | 1560 | } |
| @@ -1562,28 +1566,11 @@ static inline void sched_clock_idle_sleep_event(void) | |||
| 1562 | static inline void sched_clock_idle_wakeup_event(u64 delta_ns) | 1566 | static inline void sched_clock_idle_wakeup_event(u64 delta_ns) |
| 1563 | { | 1567 | { |
| 1564 | } | 1568 | } |
| 1565 | 1569 | #else | |
| 1566 | #ifdef CONFIG_NO_HZ | ||
| 1567 | static inline void sched_clock_tick_stop(int cpu) | ||
| 1568 | { | ||
| 1569 | } | ||
| 1570 | |||
| 1571 | static inline void sched_clock_tick_start(int cpu) | ||
| 1572 | { | ||
| 1573 | } | ||
| 1574 | #endif | ||
| 1575 | |||
| 1576 | #else /* CONFIG_HAVE_UNSTABLE_SCHED_CLOCK */ | ||
| 1577 | extern void sched_clock_init(void); | ||
| 1578 | extern u64 sched_clock_cpu(int cpu); | ||
| 1579 | extern void sched_clock_tick(void); | 1570 | extern void sched_clock_tick(void); |
| 1580 | extern void sched_clock_idle_sleep_event(void); | 1571 | extern void sched_clock_idle_sleep_event(void); |
| 1581 | extern void sched_clock_idle_wakeup_event(u64 delta_ns); | 1572 | extern void sched_clock_idle_wakeup_event(u64 delta_ns); |
| 1582 | #ifdef CONFIG_NO_HZ | ||
| 1583 | extern void sched_clock_tick_stop(int cpu); | ||
| 1584 | extern void sched_clock_tick_start(int cpu); | ||
| 1585 | #endif | 1573 | #endif |
| 1586 | #endif /* CONFIG_HAVE_UNSTABLE_SCHED_CLOCK */ | ||
| 1587 | 1574 | ||
| 1588 | /* | 1575 | /* |
| 1589 | * For kernel-internal use: high-speed (but slightly incorrect) per-cpu | 1576 | * For kernel-internal use: high-speed (but slightly incorrect) per-cpu |
| @@ -1705,19 +1692,13 @@ extern struct pid_namespace init_pid_ns; | |||
| 1705 | * finds a task by its pid in the specified namespace | 1692 | * finds a task by its pid in the specified namespace |
| 1706 | * find_task_by_vpid(): | 1693 | * find_task_by_vpid(): |
| 1707 | * finds a task by its virtual pid | 1694 | * finds a task by its virtual pid |
| 1708 | * find_task_by_pid(): | ||
| 1709 | * finds a task by its global pid | ||
| 1710 | * | 1695 | * |
| 1711 | * see also find_pid() etc in include/linux/pid.h | 1696 | * see also find_vpid() etc in include/linux/pid.h |
| 1712 | */ | 1697 | */ |
| 1713 | 1698 | ||
| 1714 | extern struct task_struct *find_task_by_pid_type_ns(int type, int pid, | 1699 | extern struct task_struct *find_task_by_pid_type_ns(int type, int pid, |
| 1715 | struct pid_namespace *ns); | 1700 | struct pid_namespace *ns); |
| 1716 | 1701 | ||
| 1717 | static inline struct task_struct *__deprecated find_task_by_pid(pid_t nr) | ||
| 1718 | { | ||
| 1719 | return find_task_by_pid_type_ns(PIDTYPE_PID, nr, &init_pid_ns); | ||
| 1720 | } | ||
| 1721 | extern struct task_struct *find_task_by_vpid(pid_t nr); | 1702 | extern struct task_struct *find_task_by_vpid(pid_t nr); |
| 1722 | extern struct task_struct *find_task_by_pid_ns(pid_t nr, | 1703 | extern struct task_struct *find_task_by_pid_ns(pid_t nr, |
| 1723 | struct pid_namespace *ns); | 1704 | struct pid_namespace *ns); |
| @@ -1785,12 +1766,11 @@ extern int kill_pid_info_as_uid(int, struct siginfo *, struct pid *, uid_t, uid_ | |||
| 1785 | extern int kill_pgrp(struct pid *pid, int sig, int priv); | 1766 | extern int kill_pgrp(struct pid *pid, int sig, int priv); |
| 1786 | extern int kill_pid(struct pid *pid, int sig, int priv); | 1767 | extern int kill_pid(struct pid *pid, int sig, int priv); |
| 1787 | extern int kill_proc_info(int, struct siginfo *, pid_t); | 1768 | extern int kill_proc_info(int, struct siginfo *, pid_t); |
| 1788 | extern void do_notify_parent(struct task_struct *, int); | 1769 | extern int do_notify_parent(struct task_struct *, int); |
| 1789 | extern void force_sig(int, struct task_struct *); | 1770 | extern void force_sig(int, struct task_struct *); |
| 1790 | extern void force_sig_specific(int, struct task_struct *); | 1771 | extern void force_sig_specific(int, struct task_struct *); |
| 1791 | extern int send_sig(int, struct task_struct *, int); | 1772 | extern int send_sig(int, struct task_struct *, int); |
| 1792 | extern void zap_other_threads(struct task_struct *p); | 1773 | extern void zap_other_threads(struct task_struct *p); |
| 1793 | extern int kill_proc(pid_t, int, int); | ||
| 1794 | extern struct sigqueue *sigqueue_alloc(void); | 1774 | extern struct sigqueue *sigqueue_alloc(void); |
| 1795 | extern void sigqueue_free(struct sigqueue *); | 1775 | extern void sigqueue_free(struct sigqueue *); |
| 1796 | extern int send_sigqueue(struct sigqueue *, struct task_struct *, int group); | 1776 | extern int send_sigqueue(struct sigqueue *, struct task_struct *, int group); |
| @@ -1872,9 +1852,13 @@ extern void set_task_comm(struct task_struct *tsk, char *from); | |||
| 1872 | extern char *get_task_comm(char *to, struct task_struct *tsk); | 1852 | extern char *get_task_comm(char *to, struct task_struct *tsk); |
| 1873 | 1853 | ||
| 1874 | #ifdef CONFIG_SMP | 1854 | #ifdef CONFIG_SMP |
| 1875 | extern void wait_task_inactive(struct task_struct * p); | 1855 | extern unsigned long wait_task_inactive(struct task_struct *, long match_state); |
| 1876 | #else | 1856 | #else |
| 1877 | #define wait_task_inactive(p) do { } while (0) | 1857 | static inline unsigned long wait_task_inactive(struct task_struct *p, |
| 1858 | long match_state) | ||
| 1859 | { | ||
| 1860 | return 1; | ||
| 1861 | } | ||
| 1878 | #endif | 1862 | #endif |
| 1879 | 1863 | ||
| 1880 | #define next_task(p) list_entry(rcu_dereference((p)->tasks.next), struct task_struct, tasks) | 1864 | #define next_task(p) list_entry(rcu_dereference((p)->tasks.next), struct task_struct, tasks) |
| @@ -1973,6 +1957,13 @@ static inline unsigned long *end_of_stack(struct task_struct *p) | |||
| 1973 | 1957 | ||
| 1974 | #endif | 1958 | #endif |
| 1975 | 1959 | ||
| 1960 | static inline int object_is_on_stack(void *obj) | ||
| 1961 | { | ||
| 1962 | void *stack = task_stack_page(current); | ||
| 1963 | |||
| 1964 | return (obj >= stack) && (obj < (stack + THREAD_SIZE)); | ||
| 1965 | } | ||
| 1966 | |||
| 1976 | extern void thread_info_cache_init(void); | 1967 | extern void thread_info_cache_init(void); |
| 1977 | 1968 | ||
| 1978 | /* set thread flags in other task's structures | 1969 | /* set thread flags in other task's structures |
| @@ -2037,9 +2028,6 @@ static inline int signal_pending_state(long state, struct task_struct *p) | |||
| 2037 | if (!signal_pending(p)) | 2028 | if (!signal_pending(p)) |
| 2038 | return 0; | 2029 | return 0; |
| 2039 | 2030 | ||
| 2040 | if (state & (__TASK_STOPPED | __TASK_TRACED)) | ||
| 2041 | return 0; | ||
| 2042 | |||
| 2043 | return (state & TASK_INTERRUPTIBLE) || __fatal_signal_pending(p); | 2031 | return (state & TASK_INTERRUPTIBLE) || __fatal_signal_pending(p); |
| 2044 | } | 2032 | } |
| 2045 | 2033 | ||
| @@ -2124,16 +2112,7 @@ static inline void set_task_cpu(struct task_struct *p, unsigned int cpu) | |||
| 2124 | 2112 | ||
| 2125 | #endif /* CONFIG_SMP */ | 2113 | #endif /* CONFIG_SMP */ |
| 2126 | 2114 | ||
| 2127 | #ifdef HAVE_ARCH_PICK_MMAP_LAYOUT | ||
| 2128 | extern void arch_pick_mmap_layout(struct mm_struct *mm); | 2115 | extern void arch_pick_mmap_layout(struct mm_struct *mm); |
| 2129 | #else | ||
| 2130 | static inline void arch_pick_mmap_layout(struct mm_struct *mm) | ||
| 2131 | { | ||
| 2132 | mm->mmap_base = TASK_UNMAPPED_BASE; | ||
| 2133 | mm->get_unmapped_area = arch_get_unmapped_area; | ||
| 2134 | mm->unmap_area = arch_unmap_area; | ||
| 2135 | } | ||
| 2136 | #endif | ||
| 2137 | 2116 | ||
| 2138 | #ifdef CONFIG_TRACING | 2117 | #ifdef CONFIG_TRACING |
| 2139 | extern void | 2118 | extern void |
| @@ -2181,22 +2160,22 @@ extern long sched_group_rt_period(struct task_group *tg); | |||
| 2181 | #ifdef CONFIG_TASK_XACCT | 2160 | #ifdef CONFIG_TASK_XACCT |
| 2182 | static inline void add_rchar(struct task_struct *tsk, ssize_t amt) | 2161 | static inline void add_rchar(struct task_struct *tsk, ssize_t amt) |
| 2183 | { | 2162 | { |
| 2184 | tsk->rchar += amt; | 2163 | tsk->ioac.rchar += amt; |
| 2185 | } | 2164 | } |
| 2186 | 2165 | ||
| 2187 | static inline void add_wchar(struct task_struct *tsk, ssize_t amt) | 2166 | static inline void add_wchar(struct task_struct *tsk, ssize_t amt) |
| 2188 | { | 2167 | { |
| 2189 | tsk->wchar += amt; | 2168 | tsk->ioac.wchar += amt; |
| 2190 | } | 2169 | } |
| 2191 | 2170 | ||
| 2192 | static inline void inc_syscr(struct task_struct *tsk) | 2171 | static inline void inc_syscr(struct task_struct *tsk) |
| 2193 | { | 2172 | { |
| 2194 | tsk->syscr++; | 2173 | tsk->ioac.syscr++; |
| 2195 | } | 2174 | } |
| 2196 | 2175 | ||
| 2197 | static inline void inc_syscw(struct task_struct *tsk) | 2176 | static inline void inc_syscw(struct task_struct *tsk) |
| 2198 | { | 2177 | { |
| 2199 | tsk->syscw++; | 2178 | tsk->ioac.syscw++; |
| 2200 | } | 2179 | } |
| 2201 | #else | 2180 | #else |
| 2202 | static inline void add_rchar(struct task_struct *tsk, ssize_t amt) | 2181 | static inline void add_rchar(struct task_struct *tsk, ssize_t amt) |
| @@ -2216,14 +2195,6 @@ static inline void inc_syscw(struct task_struct *tsk) | |||
| 2216 | } | 2195 | } |
| 2217 | #endif | 2196 | #endif |
| 2218 | 2197 | ||
| 2219 | #ifdef CONFIG_SMP | ||
| 2220 | void migration_init(void); | ||
| 2221 | #else | ||
| 2222 | static inline void migration_init(void) | ||
| 2223 | { | ||
| 2224 | } | ||
| 2225 | #endif | ||
| 2226 | |||
| 2227 | #ifndef TASK_SIZE_OF | 2198 | #ifndef TASK_SIZE_OF |
| 2228 | #define TASK_SIZE_OF(tsk) TASK_SIZE | 2199 | #define TASK_SIZE_OF(tsk) TASK_SIZE |
| 2229 | #endif | 2200 | #endif |
diff --git a/include/linux/security.h b/include/linux/security.h index 31c8851ec5d0..fd96e7f8a6f9 100644 --- a/include/linux/security.h +++ b/include/linux/security.h | |||
| @@ -102,9 +102,7 @@ extern unsigned long mmap_min_addr; | |||
| 102 | #define LSM_SETID_FS 8 | 102 | #define LSM_SETID_FS 8 |
| 103 | 103 | ||
| 104 | /* forward declares to avoid warnings */ | 104 | /* forward declares to avoid warnings */ |
| 105 | struct nfsctl_arg; | ||
| 106 | struct sched_param; | 105 | struct sched_param; |
| 107 | struct swap_info_struct; | ||
| 108 | struct request_sock; | 106 | struct request_sock; |
| 109 | 107 | ||
| 110 | /* bprm_apply_creds unsafe reasons */ | 108 | /* bprm_apply_creds unsafe reasons */ |
| @@ -1364,7 +1362,7 @@ struct security_operations { | |||
| 1364 | struct inode *new_dir, struct dentry *new_dentry); | 1362 | struct inode *new_dir, struct dentry *new_dentry); |
| 1365 | int (*inode_readlink) (struct dentry *dentry); | 1363 | int (*inode_readlink) (struct dentry *dentry); |
| 1366 | int (*inode_follow_link) (struct dentry *dentry, struct nameidata *nd); | 1364 | int (*inode_follow_link) (struct dentry *dentry, struct nameidata *nd); |
| 1367 | int (*inode_permission) (struct inode *inode, int mask, struct nameidata *nd); | 1365 | int (*inode_permission) (struct inode *inode, int mask); |
| 1368 | int (*inode_setattr) (struct dentry *dentry, struct iattr *attr); | 1366 | int (*inode_setattr) (struct dentry *dentry, struct iattr *attr); |
| 1369 | int (*inode_getattr) (struct vfsmount *mnt, struct dentry *dentry); | 1367 | int (*inode_getattr) (struct vfsmount *mnt, struct dentry *dentry); |
| 1370 | void (*inode_delete) (struct inode *inode); | 1368 | void (*inode_delete) (struct inode *inode); |
| @@ -1630,7 +1628,7 @@ int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
| 1630 | struct inode *new_dir, struct dentry *new_dentry); | 1628 | struct inode *new_dir, struct dentry *new_dentry); |
| 1631 | int security_inode_readlink(struct dentry *dentry); | 1629 | int security_inode_readlink(struct dentry *dentry); |
| 1632 | int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd); | 1630 | int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd); |
| 1633 | int security_inode_permission(struct inode *inode, int mask, struct nameidata *nd); | 1631 | int security_inode_permission(struct inode *inode, int mask); |
| 1634 | int security_inode_setattr(struct dentry *dentry, struct iattr *attr); | 1632 | int security_inode_setattr(struct dentry *dentry, struct iattr *attr); |
| 1635 | int security_inode_getattr(struct vfsmount *mnt, struct dentry *dentry); | 1633 | int security_inode_getattr(struct vfsmount *mnt, struct dentry *dentry); |
| 1636 | void security_inode_delete(struct inode *inode); | 1634 | void security_inode_delete(struct inode *inode); |
| @@ -2023,8 +2021,7 @@ static inline int security_inode_follow_link(struct dentry *dentry, | |||
| 2023 | return 0; | 2021 | return 0; |
| 2024 | } | 2022 | } |
| 2025 | 2023 | ||
| 2026 | static inline int security_inode_permission(struct inode *inode, int mask, | 2024 | static inline int security_inode_permission(struct inode *inode, int mask) |
| 2027 | struct nameidata *nd) | ||
| 2028 | { | 2025 | { |
| 2029 | return 0; | 2026 | return 0; |
| 2030 | } | 2027 | } |
diff --git a/include/linux/sem.h b/include/linux/sem.h index c8eaad9e4b72..1b191c176bcd 100644 --- a/include/linux/sem.h +++ b/include/linux/sem.h | |||
| @@ -78,6 +78,7 @@ struct seminfo { | |||
| 78 | 78 | ||
| 79 | #ifdef __KERNEL__ | 79 | #ifdef __KERNEL__ |
| 80 | #include <asm/atomic.h> | 80 | #include <asm/atomic.h> |
| 81 | #include <linux/rcupdate.h> | ||
| 81 | 82 | ||
| 82 | struct task_struct; | 83 | struct task_struct; |
| 83 | 84 | ||
| @@ -93,23 +94,19 @@ struct sem_array { | |||
| 93 | time_t sem_otime; /* last semop time */ | 94 | time_t sem_otime; /* last semop time */ |
| 94 | time_t sem_ctime; /* last change time */ | 95 | time_t sem_ctime; /* last change time */ |
| 95 | struct sem *sem_base; /* ptr to first semaphore in array */ | 96 | struct sem *sem_base; /* ptr to first semaphore in array */ |
| 96 | struct sem_queue *sem_pending; /* pending operations to be processed */ | 97 | struct list_head sem_pending; /* pending operations to be processed */ |
| 97 | struct sem_queue **sem_pending_last; /* last pending operation */ | 98 | struct list_head list_id; /* undo requests on this array */ |
| 98 | struct sem_undo *undo; /* undo requests on this array */ | ||
| 99 | unsigned long sem_nsems; /* no. of semaphores in array */ | 99 | unsigned long sem_nsems; /* no. of semaphores in array */ |
| 100 | }; | 100 | }; |
| 101 | 101 | ||
| 102 | /* One queue for each sleeping process in the system. */ | 102 | /* One queue for each sleeping process in the system. */ |
| 103 | struct sem_queue { | 103 | struct sem_queue { |
| 104 | struct sem_queue * next; /* next entry in the queue */ | 104 | struct list_head list; /* queue of pending operations */ |
| 105 | struct sem_queue ** prev; /* previous entry in the queue, *(q->prev) == q */ | 105 | struct task_struct *sleeper; /* this process */ |
| 106 | struct task_struct* sleeper; /* this process */ | 106 | struct sem_undo *undo; /* undo structure */ |
| 107 | struct sem_undo * undo; /* undo structure */ | ||
| 108 | int pid; /* process id of requesting process */ | 107 | int pid; /* process id of requesting process */ |
| 109 | int status; /* completion status of operation */ | 108 | int status; /* completion status of operation */ |
| 110 | struct sem_array * sma; /* semaphore array for operations */ | 109 | struct sembuf *sops; /* array of pending operations */ |
| 111 | int id; /* internal sem id */ | ||
| 112 | struct sembuf * sops; /* array of pending operations */ | ||
| 113 | int nsops; /* number of operations */ | 110 | int nsops; /* number of operations */ |
| 114 | int alter; /* does the operation alter the array? */ | 111 | int alter; /* does the operation alter the array? */ |
| 115 | }; | 112 | }; |
| @@ -118,8 +115,11 @@ struct sem_queue { | |||
| 118 | * when the process exits. | 115 | * when the process exits. |
| 119 | */ | 116 | */ |
| 120 | struct sem_undo { | 117 | struct sem_undo { |
| 121 | struct sem_undo * proc_next; /* next entry on this process */ | 118 | struct list_head list_proc; /* per-process list: all undos from one process. */ |
| 122 | struct sem_undo * id_next; /* next entry on this semaphore set */ | 119 | /* rcu protected */ |
| 120 | struct rcu_head rcu; /* rcu struct for sem_undo() */ | ||
| 121 | struct sem_undo_list *ulp; /* sem_undo_list for the process */ | ||
| 122 | struct list_head list_id; /* per semaphore array list: all undos for one array */ | ||
| 123 | int semid; /* semaphore set identifier */ | 123 | int semid; /* semaphore set identifier */ |
| 124 | short * semadj; /* array of adjustments, one per semaphore */ | 124 | short * semadj; /* array of adjustments, one per semaphore */ |
| 125 | }; | 125 | }; |
| @@ -128,9 +128,9 @@ struct sem_undo { | |||
| 128 | * that may be shared among all a CLONE_SYSVSEM task group. | 128 | * that may be shared among all a CLONE_SYSVSEM task group. |
| 129 | */ | 129 | */ |
| 130 | struct sem_undo_list { | 130 | struct sem_undo_list { |
| 131 | atomic_t refcnt; | 131 | atomic_t refcnt; |
| 132 | spinlock_t lock; | 132 | spinlock_t lock; |
| 133 | struct sem_undo *proc_list; | 133 | struct list_head list_proc; |
| 134 | }; | 134 | }; |
| 135 | 135 | ||
| 136 | struct sysv_sem { | 136 | struct sysv_sem { |
diff --git a/include/linux/semaphore.h b/include/linux/semaphore.h index 9cae64b00d6b..7415839ac890 100644 --- a/include/linux/semaphore.h +++ b/include/linux/semaphore.h | |||
| @@ -26,10 +26,8 @@ struct semaphore { | |||
| 26 | .wait_list = LIST_HEAD_INIT((name).wait_list), \ | 26 | .wait_list = LIST_HEAD_INIT((name).wait_list), \ |
| 27 | } | 27 | } |
| 28 | 28 | ||
| 29 | #define __DECLARE_SEMAPHORE_GENERIC(name, count) \ | 29 | #define DECLARE_MUTEX(name) \ |
| 30 | struct semaphore name = __SEMAPHORE_INITIALIZER(name, count) | 30 | struct semaphore name = __SEMAPHORE_INITIALIZER(name, 1) |
| 31 | |||
| 32 | #define DECLARE_MUTEX(name) __DECLARE_SEMAPHORE_GENERIC(name, 1) | ||
| 33 | 31 | ||
| 34 | static inline void sema_init(struct semaphore *sem, int val) | 32 | static inline void sema_init(struct semaphore *sem, int val) |
| 35 | { | 33 | { |
diff --git a/include/linux/seq_file.h b/include/linux/seq_file.h index a66304a09955..a1783b229ef4 100644 --- a/include/linux/seq_file.h +++ b/include/linux/seq_file.h | |||
| @@ -4,6 +4,8 @@ | |||
| 4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
| 5 | #include <linux/string.h> | 5 | #include <linux/string.h> |
| 6 | #include <linux/mutex.h> | 6 | #include <linux/mutex.h> |
| 7 | #include <linux/cpumask.h> | ||
| 8 | #include <linux/nodemask.h> | ||
| 7 | 9 | ||
| 8 | struct seq_operations; | 10 | struct seq_operations; |
| 9 | struct file; | 11 | struct file; |
| @@ -47,6 +49,16 @@ int seq_path(struct seq_file *, struct path *, char *); | |||
| 47 | int seq_dentry(struct seq_file *, struct dentry *, char *); | 49 | int seq_dentry(struct seq_file *, struct dentry *, char *); |
| 48 | int seq_path_root(struct seq_file *m, struct path *path, struct path *root, | 50 | int seq_path_root(struct seq_file *m, struct path *path, struct path *root, |
| 49 | char *esc); | 51 | char *esc); |
| 52 | int seq_bitmap(struct seq_file *m, unsigned long *bits, unsigned int nr_bits); | ||
| 53 | static inline int seq_cpumask(struct seq_file *m, cpumask_t *mask) | ||
| 54 | { | ||
| 55 | return seq_bitmap(m, mask->bits, NR_CPUS); | ||
| 56 | } | ||
| 57 | |||
| 58 | static inline int seq_nodemask(struct seq_file *m, nodemask_t *mask) | ||
| 59 | { | ||
| 60 | return seq_bitmap(m, mask->bits, MAX_NUMNODES); | ||
| 61 | } | ||
| 50 | 62 | ||
| 51 | int single_open(struct file *, int (*)(struct seq_file *, void *), void *); | 63 | int single_open(struct file *, int (*)(struct seq_file *, void *), void *); |
| 52 | int single_release(struct inode *, struct file *); | 64 | int single_release(struct inode *, struct file *); |
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index f3a1c0e45021..3b2f6c04855e 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h | |||
| @@ -59,9 +59,6 @@ | |||
| 59 | #define PORT_SUNZILOG 38 | 59 | #define PORT_SUNZILOG 38 |
| 60 | #define PORT_SUNSAB 39 | 60 | #define PORT_SUNSAB 39 |
| 61 | 61 | ||
| 62 | /* NEC v850. */ | ||
| 63 | #define PORT_V850E_UART 40 | ||
| 64 | |||
| 65 | /* DEC */ | 62 | /* DEC */ |
| 66 | #define PORT_DZ 46 | 63 | #define PORT_DZ 46 |
| 67 | #define PORT_ZS 47 | 64 | #define PORT_ZS 47 |
diff --git a/include/linux/serio.h b/include/linux/serio.h index e72716cca577..25641d9e0ea8 100644 --- a/include/linux/serio.h +++ b/include/linux/serio.h | |||
| @@ -87,11 +87,10 @@ void serio_unregister_port(struct serio *serio); | |||
| 87 | void serio_unregister_child_port(struct serio *serio); | 87 | void serio_unregister_child_port(struct serio *serio); |
| 88 | 88 | ||
| 89 | int __serio_register_driver(struct serio_driver *drv, struct module *owner, const char *mod_name); | 89 | int __serio_register_driver(struct serio_driver *drv, struct module *owner, const char *mod_name); |
| 90 | static inline int serio_register_driver(struct serio_driver *drv) | 90 | static inline int __must_check serio_register_driver(struct serio_driver *drv) |
| 91 | { | 91 | { |
| 92 | return __serio_register_driver(drv, THIS_MODULE, KBUILD_MODNAME); | 92 | return __serio_register_driver(drv, THIS_MODULE, KBUILD_MODNAME); |
| 93 | } | 93 | } |
| 94 | int serio_register_driver(struct serio_driver *drv); | ||
| 95 | void serio_unregister_driver(struct serio_driver *drv); | 94 | void serio_unregister_driver(struct serio_driver *drv); |
| 96 | 95 | ||
| 97 | static inline int serio_write(struct serio *serio, unsigned char data) | 96 | static inline int serio_write(struct serio *serio, unsigned char data) |
diff --git a/include/linux/shmem_fs.h b/include/linux/shmem_fs.h index f2d12d5a21b8..fd83f2584b15 100644 --- a/include/linux/shmem_fs.h +++ b/include/linux/shmem_fs.h | |||
| @@ -43,7 +43,7 @@ static inline struct shmem_inode_info *SHMEM_I(struct inode *inode) | |||
| 43 | } | 43 | } |
| 44 | 44 | ||
| 45 | #ifdef CONFIG_TMPFS_POSIX_ACL | 45 | #ifdef CONFIG_TMPFS_POSIX_ACL |
| 46 | int shmem_permission(struct inode *, int, struct nameidata *); | 46 | int shmem_permission(struct inode *, int); |
| 47 | int shmem_acl_init(struct inode *, struct inode *); | 47 | int shmem_acl_init(struct inode *, struct inode *); |
| 48 | void shmem_acl_destroy_inode(struct inode *); | 48 | void shmem_acl_destroy_inode(struct inode *); |
| 49 | 49 | ||
diff --git a/include/linux/signalfd.h b/include/linux/signalfd.h index ea037f28df91..bef0c46d4713 100644 --- a/include/linux/signalfd.h +++ b/include/linux/signalfd.h | |||
| @@ -8,6 +8,12 @@ | |||
| 8 | #ifndef _LINUX_SIGNALFD_H | 8 | #ifndef _LINUX_SIGNALFD_H |
| 9 | #define _LINUX_SIGNALFD_H | 9 | #define _LINUX_SIGNALFD_H |
| 10 | 10 | ||
| 11 | /* For O_CLOEXEC and O_NONBLOCK */ | ||
| 12 | #include <linux/fcntl.h> | ||
| 13 | |||
| 14 | /* Flags for signalfd4. */ | ||
| 15 | #define SFD_CLOEXEC O_CLOEXEC | ||
| 16 | #define SFD_NONBLOCK O_NONBLOCK | ||
| 11 | 17 | ||
| 12 | struct signalfd_siginfo { | 18 | struct signalfd_siginfo { |
| 13 | __u32 ssi_signo; | 19 | __u32 ssi_signo; |
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 7ea44f6621f2..cfcc45b3bef0 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
| @@ -243,6 +243,7 @@ typedef unsigned char *sk_buff_data_t; | |||
| 243 | * @tc_index: Traffic control index | 243 | * @tc_index: Traffic control index |
| 244 | * @tc_verd: traffic control verdict | 244 | * @tc_verd: traffic control verdict |
| 245 | * @ndisc_nodetype: router type (from link layer) | 245 | * @ndisc_nodetype: router type (from link layer) |
| 246 | * @do_not_encrypt: set to prevent encryption of this frame | ||
| 246 | * @dma_cookie: a cookie to one of several possible DMA operations | 247 | * @dma_cookie: a cookie to one of several possible DMA operations |
| 247 | * done by skb DMA functions | 248 | * done by skb DMA functions |
| 248 | * @secmark: security marking | 249 | * @secmark: security marking |
| @@ -316,7 +317,10 @@ struct sk_buff { | |||
| 316 | #ifdef CONFIG_IPV6_NDISC_NODETYPE | 317 | #ifdef CONFIG_IPV6_NDISC_NODETYPE |
| 317 | __u8 ndisc_nodetype:2; | 318 | __u8 ndisc_nodetype:2; |
| 318 | #endif | 319 | #endif |
| 319 | /* 14 bit hole */ | 320 | #if defined(CONFIG_MAC80211) || defined(CONFIG_MAC80211_MODULE) |
| 321 | __u8 do_not_encrypt:1; | ||
| 322 | #endif | ||
| 323 | /* 0/13/14 bit hole */ | ||
| 320 | 324 | ||
| 321 | #ifdef CONFIG_NET_DMA | 325 | #ifdef CONFIG_NET_DMA |
| 322 | dma_cookie_t dma_cookie; | 326 | dma_cookie_t dma_cookie; |
diff --git a/include/linux/slab.h b/include/linux/slab.h index 9aa90a6f20e0..5ff9676c1e2c 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h | |||
| @@ -58,7 +58,7 @@ int slab_is_available(void); | |||
| 58 | 58 | ||
| 59 | struct kmem_cache *kmem_cache_create(const char *, size_t, size_t, | 59 | struct kmem_cache *kmem_cache_create(const char *, size_t, size_t, |
| 60 | unsigned long, | 60 | unsigned long, |
| 61 | void (*)(struct kmem_cache *, void *)); | 61 | void (*)(void *)); |
| 62 | void kmem_cache_destroy(struct kmem_cache *); | 62 | void kmem_cache_destroy(struct kmem_cache *); |
| 63 | int kmem_cache_shrink(struct kmem_cache *); | 63 | int kmem_cache_shrink(struct kmem_cache *); |
| 64 | void kmem_cache_free(struct kmem_cache *, void *); | 64 | void kmem_cache_free(struct kmem_cache *, void *); |
| @@ -96,6 +96,7 @@ int kmem_ptr_validate(struct kmem_cache *cachep, const void *ptr); | |||
| 96 | /* | 96 | /* |
| 97 | * Common kmalloc functions provided by all allocators | 97 | * Common kmalloc functions provided by all allocators |
| 98 | */ | 98 | */ |
| 99 | void * __must_check __krealloc(const void *, size_t, gfp_t); | ||
| 99 | void * __must_check krealloc(const void *, size_t, gfp_t); | 100 | void * __must_check krealloc(const void *, size_t, gfp_t); |
| 100 | void kfree(const void *); | 101 | void kfree(const void *); |
| 101 | size_t ksize(const void *); | 102 | size_t ksize(const void *); |
| @@ -180,7 +181,7 @@ size_t ksize(const void *); | |||
| 180 | */ | 181 | */ |
| 181 | static inline void *kcalloc(size_t n, size_t size, gfp_t flags) | 182 | static inline void *kcalloc(size_t n, size_t size, gfp_t flags) |
| 182 | { | 183 | { |
| 183 | if (n != 0 && size > ULONG_MAX / n) | 184 | if (size != 0 && n > ULONG_MAX / size) |
| 184 | return NULL; | 185 | return NULL; |
| 185 | return __kmalloc(n * size, flags | __GFP_ZERO); | 186 | return __kmalloc(n * size, flags | __GFP_ZERO); |
| 186 | } | 187 | } |
diff --git a/include/linux/slub_def.h b/include/linux/slub_def.h index d117ea2825a9..2f5c16b1aacd 100644 --- a/include/linux/slub_def.h +++ b/include/linux/slub_def.h | |||
| @@ -46,6 +46,7 @@ struct kmem_cache_cpu { | |||
| 46 | struct kmem_cache_node { | 46 | struct kmem_cache_node { |
| 47 | spinlock_t list_lock; /* Protect partial list and nr_partial */ | 47 | spinlock_t list_lock; /* Protect partial list and nr_partial */ |
| 48 | unsigned long nr_partial; | 48 | unsigned long nr_partial; |
| 49 | unsigned long min_partial; | ||
| 49 | struct list_head partial; | 50 | struct list_head partial; |
| 50 | #ifdef CONFIG_SLUB_DEBUG | 51 | #ifdef CONFIG_SLUB_DEBUG |
| 51 | atomic_long_t nr_slabs; | 52 | atomic_long_t nr_slabs; |
| @@ -85,7 +86,7 @@ struct kmem_cache { | |||
| 85 | struct kmem_cache_order_objects min; | 86 | struct kmem_cache_order_objects min; |
| 86 | gfp_t allocflags; /* gfp flags to use on each alloc */ | 87 | gfp_t allocflags; /* gfp flags to use on each alloc */ |
| 87 | int refcount; /* Refcount for slab cache destroy */ | 88 | int refcount; /* Refcount for slab cache destroy */ |
| 88 | void (*ctor)(struct kmem_cache *, void *); | 89 | void (*ctor)(void *); |
| 89 | int inuse; /* Offset to metadata */ | 90 | int inuse; /* Offset to metadata */ |
| 90 | int align; /* Alignment */ | 91 | int align; /* Alignment */ |
| 91 | const char *name; /* Name (only for display!) */ | 92 | const char *name; /* Name (only for display!) */ |
diff --git a/include/linux/sm501.h b/include/linux/sm501.h index 95c1c39ba445..214f93209b8c 100644 --- a/include/linux/sm501.h +++ b/include/linux/sm501.h | |||
| @@ -46,24 +46,6 @@ extern unsigned long sm501_modify_reg(struct device *dev, | |||
| 46 | unsigned long set, | 46 | unsigned long set, |
| 47 | unsigned long clear); | 47 | unsigned long clear); |
| 48 | 48 | ||
| 49 | /* sm501_gpio_set | ||
| 50 | * | ||
| 51 | * set the state of the given GPIO line | ||
| 52 | */ | ||
| 53 | |||
| 54 | extern void sm501_gpio_set(struct device *dev, | ||
| 55 | unsigned long gpio, | ||
| 56 | unsigned int to, | ||
| 57 | unsigned int dir); | ||
| 58 | |||
| 59 | /* sm501_gpio_get | ||
| 60 | * | ||
| 61 | * get the state of the given GPIO line | ||
| 62 | */ | ||
| 63 | |||
| 64 | extern unsigned long sm501_gpio_get(struct device *dev, | ||
| 65 | unsigned long gpio); | ||
| 66 | |||
| 67 | 49 | ||
| 68 | /* Platform data definitions */ | 50 | /* Platform data definitions */ |
| 69 | 51 | ||
| @@ -73,6 +55,8 @@ extern unsigned long sm501_gpio_get(struct device *dev, | |||
| 73 | #define SM501FB_FLAG_USE_HWACCEL (1<<3) | 55 | #define SM501FB_FLAG_USE_HWACCEL (1<<3) |
| 74 | #define SM501FB_FLAG_PANEL_NO_FPEN (1<<4) | 56 | #define SM501FB_FLAG_PANEL_NO_FPEN (1<<4) |
| 75 | #define SM501FB_FLAG_PANEL_NO_VBIASEN (1<<5) | 57 | #define SM501FB_FLAG_PANEL_NO_VBIASEN (1<<5) |
| 58 | #define SM501FB_FLAG_PANEL_INV_FPEN (1<<6) | ||
| 59 | #define SM501FB_FLAG_PANEL_INV_VBIASEN (1<<7) | ||
| 76 | 60 | ||
| 77 | struct sm501_platdata_fbsub { | 61 | struct sm501_platdata_fbsub { |
| 78 | struct fb_videomode *def_mode; | 62 | struct fb_videomode *def_mode; |
| @@ -102,11 +86,19 @@ struct sm501_platdata_fb { | |||
| 102 | struct sm501_platdata_fbsub *fb_pnl; | 86 | struct sm501_platdata_fbsub *fb_pnl; |
| 103 | }; | 87 | }; |
| 104 | 88 | ||
| 105 | /* gpio i2c */ | 89 | /* gpio i2c |
| 90 | * | ||
| 91 | * Note, we have to pass in the bus number, as the number used will be | ||
| 92 | * passed to the i2c-gpio driver's platform_device.id, subsequently used | ||
| 93 | * to register the i2c bus. | ||
| 94 | */ | ||
| 106 | 95 | ||
| 107 | struct sm501_platdata_gpio_i2c { | 96 | struct sm501_platdata_gpio_i2c { |
| 97 | unsigned int bus_num; | ||
| 108 | unsigned int pin_sda; | 98 | unsigned int pin_sda; |
| 109 | unsigned int pin_scl; | 99 | unsigned int pin_scl; |
| 100 | int udelay; | ||
| 101 | int timeout; | ||
| 110 | }; | 102 | }; |
| 111 | 103 | ||
| 112 | /* sm501_initdata | 104 | /* sm501_initdata |
| @@ -129,6 +121,7 @@ struct sm501_reg_init { | |||
| 129 | #define SM501_USE_FBACCEL (1<<6) | 121 | #define SM501_USE_FBACCEL (1<<6) |
| 130 | #define SM501_USE_AC97 (1<<7) | 122 | #define SM501_USE_AC97 (1<<7) |
| 131 | #define SM501_USE_I2S (1<<8) | 123 | #define SM501_USE_I2S (1<<8) |
| 124 | #define SM501_USE_GPIO (1<<9) | ||
| 132 | 125 | ||
| 133 | #define SM501_USE_ALL (0xffffffff) | 126 | #define SM501_USE_ALL (0xffffffff) |
| 134 | 127 | ||
| @@ -155,6 +148,8 @@ struct sm501_init_gpio { | |||
| 155 | struct sm501_reg_init gpio_ddr_high; | 148 | struct sm501_reg_init gpio_ddr_high; |
| 156 | }; | 149 | }; |
| 157 | 150 | ||
| 151 | #define SM501_FLAG_SUSPEND_OFF (1<<4) | ||
| 152 | |||
| 158 | /* sm501_platdata | 153 | /* sm501_platdata |
| 159 | * | 154 | * |
| 160 | * This is passed with the platform device to allow the board | 155 | * This is passed with the platform device to allow the board |
| @@ -168,6 +163,12 @@ struct sm501_platdata { | |||
| 168 | struct sm501_init_gpio *init_gpiop; | 163 | struct sm501_init_gpio *init_gpiop; |
| 169 | struct sm501_platdata_fb *fb; | 164 | struct sm501_platdata_fb *fb; |
| 170 | 165 | ||
| 166 | int flags; | ||
| 167 | int gpio_base; | ||
| 168 | |||
| 169 | int (*get_power)(struct device *dev); | ||
| 170 | int (*set_power)(struct device *dev, unsigned int on); | ||
| 171 | |||
| 171 | struct sm501_platdata_gpio_i2c *gpio_i2c; | 172 | struct sm501_platdata_gpio_i2c *gpio_i2c; |
| 172 | unsigned int gpio_i2c_nr; | 173 | unsigned int gpio_i2c_nr; |
| 173 | }; | 174 | }; |
diff --git a/include/linux/smb_fs.h b/include/linux/smb_fs.h index 2c5cd55f44ff..923cd8a247b1 100644 --- a/include/linux/smb_fs.h +++ b/include/linux/smb_fs.h | |||
| @@ -43,18 +43,13 @@ static inline struct smb_inode_info *SMB_I(struct inode *inode) | |||
| 43 | } | 43 | } |
| 44 | 44 | ||
| 45 | /* macro names are short for word, double-word, long value (?) */ | 45 | /* macro names are short for word, double-word, long value (?) */ |
| 46 | #define WVAL(buf,pos) \ | 46 | #define WVAL(buf, pos) (get_unaligned_le16((u8 *)(buf) + (pos))) |
| 47 | (le16_to_cpu(get_unaligned((__le16 *)((u8 *)(buf) + (pos))))) | 47 | #define DVAL(buf, pos) (get_unaligned_le32((u8 *)(buf) + (pos))) |
| 48 | #define DVAL(buf,pos) \ | 48 | #define LVAL(buf, pos) (get_unaligned_le64((u8 *)(buf) + (pos))) |
| 49 | (le32_to_cpu(get_unaligned((__le32 *)((u8 *)(buf) + (pos))))) | 49 | |
| 50 | #define LVAL(buf,pos) \ | 50 | #define WSET(buf, pos, val) put_unaligned_le16((val), (u8 *)(buf) + (pos)) |
| 51 | (le64_to_cpu(get_unaligned((__le64 *)((u8 *)(buf) + (pos))))) | 51 | #define DSET(buf, pos, val) put_unaligned_le32((val), (u8 *)(buf) + (pos)) |
| 52 | #define WSET(buf,pos,val) \ | 52 | #define LSET(buf, pos, val) put_unaligned_le64((val), (u8 *)(buf) + (pos)) |
| 53 | put_unaligned(cpu_to_le16((u16)(val)), (__le16 *)((u8 *)(buf) + (pos))) | ||
| 54 | #define DSET(buf,pos,val) \ | ||
| 55 | put_unaligned(cpu_to_le32((u32)(val)), (__le32 *)((u8 *)(buf) + (pos))) | ||
| 56 | #define LSET(buf,pos,val) \ | ||
| 57 | put_unaligned(cpu_to_le64((u64)(val)), (__le64 *)((u8 *)(buf) + (pos))) | ||
| 58 | 53 | ||
| 59 | /* where to find the base of the SMB packet proper */ | 54 | /* where to find the base of the SMB packet proper */ |
| 60 | #define smb_base(buf) ((u8 *)(((u8 *)(buf))+4)) | 55 | #define smb_base(buf) ((u8 *)(((u8 *)(buf))+4)) |
diff --git a/include/linux/smc91x.h b/include/linux/smc91x.h index 8e0556b8781c..3827b922ba1f 100644 --- a/include/linux/smc91x.h +++ b/include/linux/smc91x.h | |||
| @@ -5,9 +5,19 @@ | |||
| 5 | #define SMC91X_USE_16BIT (1 << 1) | 5 | #define SMC91X_USE_16BIT (1 << 1) |
| 6 | #define SMC91X_USE_32BIT (1 << 2) | 6 | #define SMC91X_USE_32BIT (1 << 2) |
| 7 | 7 | ||
| 8 | #define SMC91X_NOWAIT (1 << 3) | ||
| 9 | |||
| 10 | /* two bits for IO_SHIFT, let's hope later designs will keep this sane */ | ||
| 11 | #define SMC91X_IO_SHIFT_0 (0 << 4) | ||
| 12 | #define SMC91X_IO_SHIFT_1 (1 << 4) | ||
| 13 | #define SMC91X_IO_SHIFT_2 (2 << 4) | ||
| 14 | #define SMC91X_IO_SHIFT_3 (3 << 4) | ||
| 15 | #define SMC91X_IO_SHIFT(x) (((x) >> 4) & 0x3) | ||
| 16 | |||
| 17 | #define SMC91X_USE_DMA (1 << 6) | ||
| 18 | |||
| 8 | struct smc91x_platdata { | 19 | struct smc91x_platdata { |
| 9 | unsigned long flags; | 20 | unsigned long flags; |
| 10 | unsigned long irq_flags; /* IRQF_... */ | ||
| 11 | }; | 21 | }; |
| 12 | 22 | ||
| 13 | #endif /* __SMC91X_H__ */ | 23 | #endif /* __SMC91X_H__ */ |
diff --git a/include/linux/smp.h b/include/linux/smp.h index 48262f86c969..66484d4a8459 100644 --- a/include/linux/smp.h +++ b/include/linux/smp.h | |||
| @@ -74,15 +74,10 @@ void __smp_call_function_single(int cpuid, struct call_single_data *data); | |||
| 74 | #ifdef CONFIG_USE_GENERIC_SMP_HELPERS | 74 | #ifdef CONFIG_USE_GENERIC_SMP_HELPERS |
| 75 | void generic_smp_call_function_single_interrupt(void); | 75 | void generic_smp_call_function_single_interrupt(void); |
| 76 | void generic_smp_call_function_interrupt(void); | 76 | void generic_smp_call_function_interrupt(void); |
| 77 | void init_call_single_data(void); | ||
| 78 | void ipi_call_lock(void); | 77 | void ipi_call_lock(void); |
| 79 | void ipi_call_unlock(void); | 78 | void ipi_call_unlock(void); |
| 80 | void ipi_call_lock_irq(void); | 79 | void ipi_call_lock_irq(void); |
| 81 | void ipi_call_unlock_irq(void); | 80 | void ipi_call_unlock_irq(void); |
| 82 | #else | ||
| 83 | static inline void init_call_single_data(void) | ||
| 84 | { | ||
| 85 | } | ||
| 86 | #endif | 81 | #endif |
| 87 | 82 | ||
| 88 | /* | 83 | /* |
diff --git a/include/linux/snmp.h b/include/linux/snmp.h index 5df62ef1280c..7a6e6bba4a71 100644 --- a/include/linux/snmp.h +++ b/include/linux/snmp.h | |||
| @@ -214,6 +214,8 @@ enum | |||
| 214 | LINUX_MIB_TCPDSACKIGNOREDOLD, /* TCPSACKIgnoredOld */ | 214 | LINUX_MIB_TCPDSACKIGNOREDOLD, /* TCPSACKIgnoredOld */ |
| 215 | LINUX_MIB_TCPDSACKIGNOREDNOUNDO, /* TCPSACKIgnoredNoUndo */ | 215 | LINUX_MIB_TCPDSACKIGNOREDNOUNDO, /* TCPSACKIgnoredNoUndo */ |
| 216 | LINUX_MIB_TCPSPURIOUSRTOS, /* TCPSpuriousRTOs */ | 216 | LINUX_MIB_TCPSPURIOUSRTOS, /* TCPSpuriousRTOs */ |
| 217 | LINUX_MIB_TCPMD5NOTFOUND, /* TCPMD5NotFound */ | ||
| 218 | LINUX_MIB_TCPMD5UNEXPECTED, /* TCPMD5Unexpected */ | ||
| 217 | __LINUX_MIB_MAX | 219 | __LINUX_MIB_MAX |
| 218 | }; | 220 | }; |
| 219 | 221 | ||
diff --git a/include/linux/socket.h b/include/linux/socket.h index 950af631e7fb..dc5086fe7736 100644 --- a/include/linux/socket.h +++ b/include/linux/socket.h | |||
| @@ -189,7 +189,8 @@ struct ucred { | |||
| 189 | #define AF_BLUETOOTH 31 /* Bluetooth sockets */ | 189 | #define AF_BLUETOOTH 31 /* Bluetooth sockets */ |
| 190 | #define AF_IUCV 32 /* IUCV sockets */ | 190 | #define AF_IUCV 32 /* IUCV sockets */ |
| 191 | #define AF_RXRPC 33 /* RxRPC sockets */ | 191 | #define AF_RXRPC 33 /* RxRPC sockets */ |
| 192 | #define AF_MAX 34 /* For now.. */ | 192 | #define AF_ISDN 34 /* mISDN sockets */ |
| 193 | #define AF_MAX 35 /* For now.. */ | ||
| 193 | 194 | ||
| 194 | /* Protocol families, same as address families. */ | 195 | /* Protocol families, same as address families. */ |
| 195 | #define PF_UNSPEC AF_UNSPEC | 196 | #define PF_UNSPEC AF_UNSPEC |
| @@ -225,6 +226,7 @@ struct ucred { | |||
| 225 | #define PF_BLUETOOTH AF_BLUETOOTH | 226 | #define PF_BLUETOOTH AF_BLUETOOTH |
| 226 | #define PF_IUCV AF_IUCV | 227 | #define PF_IUCV AF_IUCV |
| 227 | #define PF_RXRPC AF_RXRPC | 228 | #define PF_RXRPC AF_RXRPC |
| 229 | #define PF_ISDN AF_ISDN | ||
| 228 | #define PF_MAX AF_MAX | 230 | #define PF_MAX AF_MAX |
| 229 | 231 | ||
| 230 | /* Maximum queue length specifiable by listen. */ | 232 | /* Maximum queue length specifiable by listen. */ |
diff --git a/include/linux/spi/ds1305.h b/include/linux/spi/ds1305.h new file mode 100644 index 000000000000..287ec830eab7 --- /dev/null +++ b/include/linux/spi/ds1305.h | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | #ifndef __LINUX_SPI_DS1305_H | ||
| 2 | #define __LINUX_SPI_DS1305_H | ||
| 3 | |||
| 4 | /* | ||
| 5 | * One-time configuration for ds1305 and ds1306 RTC chips. | ||
| 6 | * | ||
| 7 | * Put a pointer to this in spi_board_info.platform_data if you want to | ||
| 8 | * be sure that Linux (re)initializes this as needed ... after losing | ||
| 9 | * backup power, and potentially on the first boot. | ||
| 10 | */ | ||
| 11 | struct ds1305_platform_data { | ||
| 12 | |||
| 13 | /* Trickle charge configuration: it's OK to leave out the MAGIC | ||
| 14 | * bitmask; mask in either DS1 or DS2, and then one of 2K/4k/8K. | ||
| 15 | */ | ||
| 16 | #define DS1305_TRICKLE_MAGIC 0xa0 | ||
| 17 | #define DS1305_TRICKLE_DS2 0x08 /* two diodes */ | ||
| 18 | #define DS1305_TRICKLE_DS1 0x04 /* one diode */ | ||
| 19 | #define DS1305_TRICKLE_2K 0x01 /* 2 KOhm resistance */ | ||
| 20 | #define DS1305_TRICKLE_4K 0x02 /* 4 KOhm resistance */ | ||
| 21 | #define DS1305_TRICKLE_8K 0x03 /* 8 KOhm resistance */ | ||
| 22 | u8 trickle; | ||
| 23 | |||
| 24 | /* set only on ds1306 parts */ | ||
| 25 | bool is_ds1306; | ||
| 26 | |||
| 27 | /* ds1306 only: enable 1 Hz output */ | ||
| 28 | bool en_1hz; | ||
| 29 | |||
| 30 | /* REVISIT: the driver currently expects nINT0 to be wired | ||
| 31 | * as the alarm IRQ. ALM1 may also need to be set up ... | ||
| 32 | */ | ||
| 33 | }; | ||
| 34 | |||
| 35 | #endif /* __LINUX_SPI_DS1305_H */ | ||
diff --git a/include/linux/spi/max7301.h b/include/linux/spi/max7301.h new file mode 100644 index 000000000000..6dfd83f19b4b --- /dev/null +++ b/include/linux/spi/max7301.h | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | #ifndef LINUX_SPI_MAX7301_H | ||
| 2 | #define LINUX_SPI_MAX7301_H | ||
| 3 | |||
| 4 | struct max7301_platform_data { | ||
| 5 | /* number assigned to the first GPIO */ | ||
| 6 | unsigned base; | ||
| 7 | }; | ||
| 8 | |||
| 9 | #endif | ||
diff --git a/include/linux/spi/mcp23s08.h b/include/linux/spi/mcp23s08.h index 835ddf47d45c..22ef107d7704 100644 --- a/include/linux/spi/mcp23s08.h +++ b/include/linux/spi/mcp23s08.h | |||
| @@ -1,18 +1,25 @@ | |||
| 1 | 1 | ||
| 2 | /* FIXME driver should be able to handle all four slaves that | 2 | /* FIXME driver should be able to handle IRQs... */ |
| 3 | * can be hooked up to each chipselect, as well as IRQs... | 3 | |
| 4 | */ | 4 | struct mcp23s08_chip_info { |
| 5 | bool is_present; /* true iff populated */ | ||
| 6 | u8 pullups; /* BIT(x) means enable pullup x */ | ||
| 7 | }; | ||
| 5 | 8 | ||
| 6 | struct mcp23s08_platform_data { | 9 | struct mcp23s08_platform_data { |
| 7 | /* four slaves can share one SPI chipselect */ | 10 | /* Four slaves (numbered 0..3) can share one SPI chipselect, and |
| 8 | u8 slave; | 11 | * will provide 8..32 GPIOs using 1..4 gpio_chip instances. |
| 12 | */ | ||
| 13 | struct mcp23s08_chip_info chip[4]; | ||
| 9 | 14 | ||
| 10 | /* number assigned to the first GPIO */ | 15 | /* "base" is the number of the first GPIO. Dynamic assignment is |
| 16 | * not currently supported, and even if there are gaps in chip | ||
| 17 | * addressing the GPIO numbers are sequential .. so for example | ||
| 18 | * if only slaves 0 and 3 are present, their GPIOs range from | ||
| 19 | * base to base+15. | ||
| 20 | */ | ||
| 11 | unsigned base; | 21 | unsigned base; |
| 12 | 22 | ||
| 13 | /* pins with pullups */ | ||
| 14 | u8 pullups; | ||
| 15 | |||
| 16 | void *context; /* param to setup/teardown */ | 23 | void *context; /* param to setup/teardown */ |
| 17 | 24 | ||
| 18 | int (*setup)(struct spi_device *spi, | 25 | int (*setup)(struct spi_device *spi, |
diff --git a/include/linux/spi/orion_spi.h b/include/linux/spi/orion_spi.h new file mode 100644 index 000000000000..b4d9fa6f797c --- /dev/null +++ b/include/linux/spi/orion_spi.h | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | /* | ||
| 2 | * orion_spi.h | ||
| 3 | * | ||
| 4 | * This file is licensed under the terms of the GNU General Public | ||
| 5 | * License version 2. This program is licensed "as is" without any | ||
| 6 | * warranty of any kind, whether express or implied. | ||
| 7 | */ | ||
| 8 | |||
| 9 | #ifndef __LINUX_SPI_ORION_SPI_H | ||
| 10 | #define __LINUX_SPI_ORION_SPI_H | ||
| 11 | |||
| 12 | struct orion_spi_info { | ||
| 13 | u32 tclk; /* no <linux/clk.h> support yet */ | ||
| 14 | }; | ||
| 15 | |||
| 16 | |||
| 17 | #endif | ||
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index 387e428f1cdf..4be01bb44377 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h | |||
| @@ -82,7 +82,7 @@ struct spi_device { | |||
| 82 | int irq; | 82 | int irq; |
| 83 | void *controller_state; | 83 | void *controller_state; |
| 84 | void *controller_data; | 84 | void *controller_data; |
| 85 | const char *modalias; | 85 | char modalias[32]; |
| 86 | 86 | ||
| 87 | /* | 87 | /* |
| 88 | * likely need more hooks for more protocol options affecting how | 88 | * likely need more hooks for more protocol options affecting how |
| @@ -733,7 +733,7 @@ struct spi_board_info { | |||
| 733 | * controller_data goes to spi_device.controller_data, | 733 | * controller_data goes to spi_device.controller_data, |
| 734 | * irq is copied too | 734 | * irq is copied too |
| 735 | */ | 735 | */ |
| 736 | char modalias[KOBJ_NAME_LEN]; | 736 | char modalias[32]; |
| 737 | const void *platform_data; | 737 | const void *platform_data; |
| 738 | void *controller_data; | 738 | void *controller_data; |
| 739 | int irq; | 739 | int irq; |
| @@ -778,8 +778,20 @@ spi_register_board_info(struct spi_board_info const *info, unsigned n) | |||
| 778 | * use spi_new_device() to describe each device. You can also call | 778 | * use spi_new_device() to describe each device. You can also call |
| 779 | * spi_unregister_device() to start making that device vanish, but | 779 | * spi_unregister_device() to start making that device vanish, but |
| 780 | * normally that would be handled by spi_unregister_master(). | 780 | * normally that would be handled by spi_unregister_master(). |
| 781 | * | ||
| 782 | * You can also use spi_alloc_device() and spi_add_device() to use a two | ||
| 783 | * stage registration sequence for each spi_device. This gives the caller | ||
| 784 | * some more control over the spi_device structure before it is registered, | ||
| 785 | * but requires that caller to initialize fields that would otherwise | ||
| 786 | * be defined using the board info. | ||
| 781 | */ | 787 | */ |
| 782 | extern struct spi_device * | 788 | extern struct spi_device * |
| 789 | spi_alloc_device(struct spi_master *master); | ||
| 790 | |||
| 791 | extern int | ||
| 792 | spi_add_device(struct spi_device *spi); | ||
| 793 | |||
| 794 | extern struct spi_device * | ||
| 783 | spi_new_device(struct spi_master *, struct spi_board_info *); | 795 | spi_new_device(struct spi_master *, struct spi_board_info *); |
| 784 | 796 | ||
| 785 | static inline void | 797 | static inline void |
diff --git a/include/linux/spinlock.h b/include/linux/spinlock.h index d311a090fae7..e0c0fccced46 100644 --- a/include/linux/spinlock.h +++ b/include/linux/spinlock.h | |||
| @@ -46,6 +46,7 @@ | |||
| 46 | * linux/spinlock.h: builds the final spin_*() APIs. | 46 | * linux/spinlock.h: builds the final spin_*() APIs. |
| 47 | */ | 47 | */ |
| 48 | 48 | ||
| 49 | #include <linux/typecheck.h> | ||
| 49 | #include <linux/preempt.h> | 50 | #include <linux/preempt.h> |
| 50 | #include <linux/linkage.h> | 51 | #include <linux/linkage.h> |
| 51 | #include <linux/compiler.h> | 52 | #include <linux/compiler.h> |
| @@ -182,8 +183,14 @@ do { \ | |||
| 182 | 183 | ||
| 183 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 184 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 184 | # define spin_lock_nested(lock, subclass) _spin_lock_nested(lock, subclass) | 185 | # define spin_lock_nested(lock, subclass) _spin_lock_nested(lock, subclass) |
| 186 | # define spin_lock_nest_lock(lock, nest_lock) \ | ||
| 187 | do { \ | ||
| 188 | typecheck(struct lockdep_map *, &(nest_lock)->dep_map);\ | ||
| 189 | _spin_lock_nest_lock(lock, &(nest_lock)->dep_map); \ | ||
| 190 | } while (0) | ||
| 185 | #else | 191 | #else |
| 186 | # define spin_lock_nested(lock, subclass) _spin_lock(lock) | 192 | # define spin_lock_nested(lock, subclass) _spin_lock(lock) |
| 193 | # define spin_lock_nest_lock(lock, nest_lock) _spin_lock(lock) | ||
| 187 | #endif | 194 | #endif |
| 188 | 195 | ||
| 189 | #define write_lock(lock) _write_lock(lock) | 196 | #define write_lock(lock) _write_lock(lock) |
| @@ -191,23 +198,53 @@ do { \ | |||
| 191 | 198 | ||
| 192 | #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) | 199 | #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) |
| 193 | 200 | ||
| 194 | #define spin_lock_irqsave(lock, flags) flags = _spin_lock_irqsave(lock) | 201 | #define spin_lock_irqsave(lock, flags) \ |
| 195 | #define read_lock_irqsave(lock, flags) flags = _read_lock_irqsave(lock) | 202 | do { \ |
| 196 | #define write_lock_irqsave(lock, flags) flags = _write_lock_irqsave(lock) | 203 | typecheck(unsigned long, flags); \ |
| 204 | flags = _spin_lock_irqsave(lock); \ | ||
| 205 | } while (0) | ||
| 206 | #define read_lock_irqsave(lock, flags) \ | ||
| 207 | do { \ | ||
| 208 | typecheck(unsigned long, flags); \ | ||
| 209 | flags = _read_lock_irqsave(lock); \ | ||
| 210 | } while (0) | ||
| 211 | #define write_lock_irqsave(lock, flags) \ | ||
| 212 | do { \ | ||
| 213 | typecheck(unsigned long, flags); \ | ||
| 214 | flags = _write_lock_irqsave(lock); \ | ||
| 215 | } while (0) | ||
| 197 | 216 | ||
| 198 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 217 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 199 | #define spin_lock_irqsave_nested(lock, flags, subclass) \ | 218 | #define spin_lock_irqsave_nested(lock, flags, subclass) \ |
| 200 | flags = _spin_lock_irqsave_nested(lock, subclass) | 219 | do { \ |
| 220 | typecheck(unsigned long, flags); \ | ||
| 221 | flags = _spin_lock_irqsave_nested(lock, subclass); \ | ||
| 222 | } while (0) | ||
| 201 | #else | 223 | #else |
| 202 | #define spin_lock_irqsave_nested(lock, flags, subclass) \ | 224 | #define spin_lock_irqsave_nested(lock, flags, subclass) \ |
| 203 | flags = _spin_lock_irqsave(lock) | 225 | do { \ |
| 226 | typecheck(unsigned long, flags); \ | ||
| 227 | flags = _spin_lock_irqsave(lock); \ | ||
| 228 | } while (0) | ||
| 204 | #endif | 229 | #endif |
| 205 | 230 | ||
| 206 | #else | 231 | #else |
| 207 | 232 | ||
| 208 | #define spin_lock_irqsave(lock, flags) _spin_lock_irqsave(lock, flags) | 233 | #define spin_lock_irqsave(lock, flags) \ |
| 209 | #define read_lock_irqsave(lock, flags) _read_lock_irqsave(lock, flags) | 234 | do { \ |
| 210 | #define write_lock_irqsave(lock, flags) _write_lock_irqsave(lock, flags) | 235 | typecheck(unsigned long, flags); \ |
| 236 | _spin_lock_irqsave(lock, flags); \ | ||
| 237 | } while (0) | ||
| 238 | #define read_lock_irqsave(lock, flags) \ | ||
| 239 | do { \ | ||
| 240 | typecheck(unsigned long, flags); \ | ||
| 241 | _read_lock_irqsave(lock, flags); \ | ||
| 242 | } while (0) | ||
| 243 | #define write_lock_irqsave(lock, flags) \ | ||
| 244 | do { \ | ||
| 245 | typecheck(unsigned long, flags); \ | ||
| 246 | _write_lock_irqsave(lock, flags); \ | ||
| 247 | } while (0) | ||
| 211 | #define spin_lock_irqsave_nested(lock, flags, subclass) \ | 248 | #define spin_lock_irqsave_nested(lock, flags, subclass) \ |
| 212 | spin_lock_irqsave(lock, flags) | 249 | spin_lock_irqsave(lock, flags) |
| 213 | 250 | ||
| @@ -260,16 +297,25 @@ do { \ | |||
| 260 | } while (0) | 297 | } while (0) |
| 261 | #endif | 298 | #endif |
| 262 | 299 | ||
| 263 | #define spin_unlock_irqrestore(lock, flags) \ | 300 | #define spin_unlock_irqrestore(lock, flags) \ |
| 264 | _spin_unlock_irqrestore(lock, flags) | 301 | do { \ |
| 302 | typecheck(unsigned long, flags); \ | ||
| 303 | _spin_unlock_irqrestore(lock, flags); \ | ||
| 304 | } while (0) | ||
| 265 | #define spin_unlock_bh(lock) _spin_unlock_bh(lock) | 305 | #define spin_unlock_bh(lock) _spin_unlock_bh(lock) |
| 266 | 306 | ||
| 267 | #define read_unlock_irqrestore(lock, flags) \ | 307 | #define read_unlock_irqrestore(lock, flags) \ |
| 268 | _read_unlock_irqrestore(lock, flags) | 308 | do { \ |
| 309 | typecheck(unsigned long, flags); \ | ||
| 310 | _read_unlock_irqrestore(lock, flags); \ | ||
| 311 | } while (0) | ||
| 269 | #define read_unlock_bh(lock) _read_unlock_bh(lock) | 312 | #define read_unlock_bh(lock) _read_unlock_bh(lock) |
| 270 | 313 | ||
| 271 | #define write_unlock_irqrestore(lock, flags) \ | 314 | #define write_unlock_irqrestore(lock, flags) \ |
| 272 | _write_unlock_irqrestore(lock, flags) | 315 | do { \ |
| 316 | typecheck(unsigned long, flags); \ | ||
| 317 | _write_unlock_irqrestore(lock, flags); \ | ||
| 318 | } while (0) | ||
| 273 | #define write_unlock_bh(lock) _write_unlock_bh(lock) | 319 | #define write_unlock_bh(lock) _write_unlock_bh(lock) |
| 274 | 320 | ||
| 275 | #define spin_trylock_bh(lock) __cond_lock(lock, _spin_trylock_bh(lock)) | 321 | #define spin_trylock_bh(lock) __cond_lock(lock, _spin_trylock_bh(lock)) |
diff --git a/include/linux/spinlock_api_smp.h b/include/linux/spinlock_api_smp.h index 8a2307ce7296..d79845d034b5 100644 --- a/include/linux/spinlock_api_smp.h +++ b/include/linux/spinlock_api_smp.h | |||
| @@ -22,6 +22,8 @@ int in_lock_functions(unsigned long addr); | |||
| 22 | void __lockfunc _spin_lock(spinlock_t *lock) __acquires(lock); | 22 | void __lockfunc _spin_lock(spinlock_t *lock) __acquires(lock); |
| 23 | void __lockfunc _spin_lock_nested(spinlock_t *lock, int subclass) | 23 | void __lockfunc _spin_lock_nested(spinlock_t *lock, int subclass) |
| 24 | __acquires(lock); | 24 | __acquires(lock); |
| 25 | void __lockfunc _spin_lock_nest_lock(spinlock_t *lock, struct lockdep_map *map) | ||
| 26 | __acquires(lock); | ||
| 25 | void __lockfunc _read_lock(rwlock_t *lock) __acquires(lock); | 27 | void __lockfunc _read_lock(rwlock_t *lock) __acquires(lock); |
| 26 | void __lockfunc _write_lock(rwlock_t *lock) __acquires(lock); | 28 | void __lockfunc _write_lock(rwlock_t *lock) __acquires(lock); |
| 27 | void __lockfunc _spin_lock_bh(spinlock_t *lock) __acquires(lock); | 29 | void __lockfunc _spin_lock_bh(spinlock_t *lock) __acquires(lock); |
diff --git a/include/linux/ssb/ssb.h b/include/linux/ssb/ssb.h index 4bf8cade9dbc..e530026eedf7 100644 --- a/include/linux/ssb/ssb.h +++ b/include/linux/ssb/ssb.h | |||
| @@ -427,9 +427,9 @@ static inline int ssb_dma_mapping_error(struct ssb_device *dev, dma_addr_t addr) | |||
| 427 | { | 427 | { |
| 428 | switch (dev->bus->bustype) { | 428 | switch (dev->bus->bustype) { |
| 429 | case SSB_BUSTYPE_PCI: | 429 | case SSB_BUSTYPE_PCI: |
| 430 | return pci_dma_mapping_error(addr); | 430 | return pci_dma_mapping_error(dev->bus->host_pci, addr); |
| 431 | case SSB_BUSTYPE_SSB: | 431 | case SSB_BUSTYPE_SSB: |
| 432 | return dma_mapping_error(addr); | 432 | return dma_mapping_error(dev->dev, addr); |
| 433 | default: | 433 | default: |
| 434 | __ssb_dma_not_implemented(dev); | 434 | __ssb_dma_not_implemented(dev); |
| 435 | } | 435 | } |
diff --git a/include/linux/stop_machine.h b/include/linux/stop_machine.h index 5bfc553bdb21..f1cb0ba6d715 100644 --- a/include/linux/stop_machine.h +++ b/include/linux/stop_machine.h | |||
| @@ -5,41 +5,43 @@ | |||
| 5 | (and more). So the "read" side to such a lock is anything which | 5 | (and more). So the "read" side to such a lock is anything which |
| 6 | diables preeempt. */ | 6 | diables preeempt. */ |
| 7 | #include <linux/cpu.h> | 7 | #include <linux/cpu.h> |
| 8 | #include <linux/cpumask.h> | ||
| 8 | #include <asm/system.h> | 9 | #include <asm/system.h> |
| 9 | 10 | ||
| 10 | #if defined(CONFIG_STOP_MACHINE) && defined(CONFIG_SMP) | 11 | #if defined(CONFIG_STOP_MACHINE) && defined(CONFIG_SMP) |
| 12 | |||
| 13 | /* Deprecated, but useful for transition. */ | ||
| 14 | #define ALL_CPUS ~0U | ||
| 15 | |||
| 11 | /** | 16 | /** |
| 12 | * stop_machine_run: freeze the machine on all CPUs and run this function | 17 | * stop_machine: freeze the machine on all CPUs and run this function |
| 13 | * @fn: the function to run | 18 | * @fn: the function to run |
| 14 | * @data: the data ptr for the @fn() | 19 | * @data: the data ptr for the @fn() |
| 15 | * @cpu: the cpu to run @fn() on (or any, if @cpu == NR_CPUS. | 20 | * @cpus: the cpus to run the @fn() on (NULL = any online cpu) |
| 16 | * | 21 | * |
| 17 | * Description: This causes a thread to be scheduled on every other cpu, | 22 | * Description: This causes a thread to be scheduled on every cpu, |
| 18 | * each of which disables interrupts, and finally interrupts are disabled | 23 | * each of which disables interrupts. The result is that noone is |
| 19 | * on the current CPU. The result is that noone is holding a spinlock | 24 | * holding a spinlock or inside any other preempt-disabled region when |
| 20 | * or inside any other preempt-disabled region when @fn() runs. | 25 | * @fn() runs. |
| 21 | * | 26 | * |
| 22 | * This can be thought of as a very heavy write lock, equivalent to | 27 | * This can be thought of as a very heavy write lock, equivalent to |
| 23 | * grabbing every spinlock in the kernel. */ | 28 | * grabbing every spinlock in the kernel. */ |
| 24 | int stop_machine_run(int (*fn)(void *), void *data, unsigned int cpu); | 29 | int stop_machine(int (*fn)(void *), void *data, const cpumask_t *cpus); |
| 25 | 30 | ||
| 26 | /** | 31 | /** |
| 27 | * __stop_machine_run: freeze the machine on all CPUs and run this function | 32 | * __stop_machine: freeze the machine on all CPUs and run this function |
| 28 | * @fn: the function to run | 33 | * @fn: the function to run |
| 29 | * @data: the data ptr for the @fn | 34 | * @data: the data ptr for the @fn |
| 30 | * @cpu: the cpu to run @fn on (or any, if @cpu == NR_CPUS. | 35 | * @cpus: the cpus to run the @fn() on (NULL = any online cpu) |
| 31 | * | 36 | * |
| 32 | * Description: This is a special version of the above, which returns the | 37 | * Description: This is a special version of the above, which assumes cpus |
| 33 | * thread which has run @fn(): kthread_stop will return the return value | 38 | * won't come or go while it's being called. Used by hotplug cpu. |
| 34 | * of @fn(). Used by hotplug cpu. | ||
| 35 | */ | 39 | */ |
| 36 | struct task_struct *__stop_machine_run(int (*fn)(void *), void *data, | 40 | int __stop_machine(int (*fn)(void *), void *data, const cpumask_t *cpus); |
| 37 | unsigned int cpu); | ||
| 38 | |||
| 39 | #else | 41 | #else |
| 40 | 42 | ||
| 41 | static inline int stop_machine_run(int (*fn)(void *), void *data, | 43 | static inline int stop_machine(int (*fn)(void *), void *data, |
| 42 | unsigned int cpu) | 44 | const cpumask_t *cpus) |
| 43 | { | 45 | { |
| 44 | int ret; | 46 | int ret; |
| 45 | local_irq_disable(); | 47 | local_irq_disable(); |
| @@ -48,4 +50,18 @@ static inline int stop_machine_run(int (*fn)(void *), void *data, | |||
| 48 | return ret; | 50 | return ret; |
| 49 | } | 51 | } |
| 50 | #endif /* CONFIG_SMP */ | 52 | #endif /* CONFIG_SMP */ |
| 53 | |||
| 54 | static inline int __deprecated stop_machine_run(int (*fn)(void *), void *data, | ||
| 55 | unsigned int cpu) | ||
| 56 | { | ||
| 57 | /* If they don't care which cpu fn runs on, just pick one. */ | ||
| 58 | if (cpu == NR_CPUS) | ||
| 59 | return stop_machine(fn, data, NULL); | ||
| 60 | else if (cpu == ~0U) | ||
| 61 | return stop_machine(fn, data, &cpu_possible_map); | ||
| 62 | else { | ||
| 63 | cpumask_t cpus = cpumask_of_cpu(cpu); | ||
| 64 | return stop_machine(fn, data, &cpus); | ||
| 65 | } | ||
| 66 | } | ||
| 51 | #endif /* _LINUX_STOP_MACHINE */ | 67 | #endif /* _LINUX_STOP_MACHINE */ |
diff --git a/include/linux/string.h b/include/linux/string.h index efdc44593b52..810d80df0a1d 100644 --- a/include/linux/string.h +++ b/include/linux/string.h | |||
| @@ -111,5 +111,8 @@ extern void argv_free(char **argv); | |||
| 111 | 111 | ||
| 112 | extern bool sysfs_streq(const char *s1, const char *s2); | 112 | extern bool sysfs_streq(const char *s1, const char *s2); |
| 113 | 113 | ||
| 114 | extern ssize_t memory_read_from_buffer(void *to, size_t count, loff_t *ppos, | ||
| 115 | const void *from, size_t available); | ||
| 116 | |||
| 114 | #endif | 117 | #endif |
| 115 | #endif /* _LINUX_STRING_H_ */ | 118 | #endif /* _LINUX_STRING_H_ */ |
diff --git a/include/linux/suspend.h b/include/linux/suspend.h index e8e69159af71..c63435095970 100644 --- a/include/linux/suspend.h +++ b/include/linux/suspend.h | |||
| @@ -278,4 +278,6 @@ static inline void register_nosave_region_late(unsigned long b, unsigned long e) | |||
| 278 | } | 278 | } |
| 279 | #endif | 279 | #endif |
| 280 | 280 | ||
| 281 | extern struct mutex pm_mutex; | ||
| 282 | |||
| 281 | #endif /* _LINUX_SUSPEND_H */ | 283 | #endif /* _LINUX_SUSPEND_H */ |
diff --git a/include/linux/swab.h b/include/linux/swab.h new file mode 100644 index 000000000000..270d5c208a89 --- /dev/null +++ b/include/linux/swab.h | |||
| @@ -0,0 +1,309 @@ | |||
| 1 | #ifndef _LINUX_SWAB_H | ||
| 2 | #define _LINUX_SWAB_H | ||
| 3 | |||
| 4 | #include <linux/types.h> | ||
| 5 | #include <linux/compiler.h> | ||
| 6 | #include <asm/byteorder.h> | ||
| 7 | |||
| 8 | /* | ||
| 9 | * casts are necessary for constants, because we never know how for sure | ||
| 10 | * how U/UL/ULL map to __u16, __u32, __u64. At least not in a portable way. | ||
| 11 | */ | ||
| 12 | #define __const_swab16(x) ((__u16)( \ | ||
| 13 | (((__u16)(x) & (__u16)0x00ffU) << 8) | \ | ||
| 14 | (((__u16)(x) & (__u16)0xff00U) >> 8))) | ||
| 15 | |||
| 16 | #define __const_swab32(x) ((__u32)( \ | ||
| 17 | (((__u32)(x) & (__u32)0x000000ffUL) << 24) | \ | ||
| 18 | (((__u32)(x) & (__u32)0x0000ff00UL) << 8) | \ | ||
| 19 | (((__u32)(x) & (__u32)0x00ff0000UL) >> 8) | \ | ||
| 20 | (((__u32)(x) & (__u32)0xff000000UL) >> 24))) | ||
| 21 | |||
| 22 | #define __const_swab64(x) ((__u64)( \ | ||
| 23 | (((__u64)(x) & (__u64)0x00000000000000ffULL) << 56) | \ | ||
| 24 | (((__u64)(x) & (__u64)0x000000000000ff00ULL) << 40) | \ | ||
| 25 | (((__u64)(x) & (__u64)0x0000000000ff0000ULL) << 24) | \ | ||
| 26 | (((__u64)(x) & (__u64)0x00000000ff000000ULL) << 8) | \ | ||
| 27 | (((__u64)(x) & (__u64)0x000000ff00000000ULL) >> 8) | \ | ||
| 28 | (((__u64)(x) & (__u64)0x0000ff0000000000ULL) >> 24) | \ | ||
| 29 | (((__u64)(x) & (__u64)0x00ff000000000000ULL) >> 40) | \ | ||
| 30 | (((__u64)(x) & (__u64)0xff00000000000000ULL) >> 56))) | ||
| 31 | |||
| 32 | #define __const_swahw32(x) ((__u32)( \ | ||
| 33 | (((__u32)(x) & (__u32)0x0000ffffUL) << 16) | \ | ||
| 34 | (((__u32)(x) & (__u32)0xffff0000UL) >> 16))) | ||
| 35 | |||
| 36 | #define __const_swahb32(x) ((__u32)( \ | ||
| 37 | (((__u32)(x) & (__u32)0x00ff00ffUL) << 8) | \ | ||
| 38 | (((__u32)(x) & (__u32)0xff00ff00UL) >> 8))) | ||
| 39 | |||
| 40 | /* | ||
| 41 | * Implement the following as inlines, but define the interface using | ||
| 42 | * macros to allow constant folding when possible: | ||
| 43 | * ___swab16, ___swab32, ___swab64, ___swahw32, ___swahb32 | ||
| 44 | */ | ||
| 45 | |||
| 46 | static inline __attribute_const__ __u16 ___swab16(__u16 val) | ||
| 47 | { | ||
| 48 | #ifdef __arch_swab16 | ||
| 49 | return __arch_swab16(val); | ||
| 50 | #elif defined(__arch_swab16p) | ||
| 51 | return __arch_swab16p(&val); | ||
| 52 | #else | ||
| 53 | return __const_swab16(val); | ||
| 54 | #endif | ||
| 55 | } | ||
| 56 | |||
| 57 | static inline __attribute_const__ __u32 ___swab32(__u32 val) | ||
| 58 | { | ||
| 59 | #ifdef __arch_swab32 | ||
| 60 | return __arch_swab32(val); | ||
| 61 | #elif defined(__arch_swab32p) | ||
| 62 | return __arch_swab32p(&val); | ||
| 63 | #else | ||
| 64 | return __const_swab32(val); | ||
| 65 | #endif | ||
| 66 | } | ||
| 67 | |||
| 68 | static inline __attribute_const__ __u64 ___swab64(__u64 val) | ||
| 69 | { | ||
| 70 | #ifdef __arch_swab64 | ||
| 71 | return __arch_swab64(val); | ||
| 72 | #elif defined(__arch_swab64p) | ||
| 73 | return __arch_swab64p(&val); | ||
| 74 | #elif defined(__SWAB_64_THRU_32__) | ||
| 75 | __u32 h = val >> 32; | ||
| 76 | __u32 l = val & ((1ULL << 32) - 1); | ||
| 77 | return (((__u64)___swab32(l)) << 32) | ((__u64)(___swab32(h))); | ||
| 78 | #else | ||
| 79 | return __const_swab64(val); | ||
| 80 | #endif | ||
| 81 | } | ||
| 82 | |||
| 83 | static inline __attribute_const__ __u32 ___swahw32(__u32 val) | ||
| 84 | { | ||
| 85 | #ifdef __arch_swahw32 | ||
| 86 | return __arch_swahw32(val); | ||
| 87 | #elif defined(__arch_swahw32p) | ||
| 88 | return __arch_swahw32p(&val); | ||
| 89 | #else | ||
| 90 | return __const_swahw32(val); | ||
| 91 | #endif | ||
| 92 | } | ||
| 93 | |||
| 94 | static inline __attribute_const__ __u32 ___swahb32(__u32 val) | ||
| 95 | { | ||
| 96 | #ifdef __arch_swahb32 | ||
| 97 | return __arch_swahb32(val); | ||
| 98 | #elif defined(__arch_swahb32p) | ||
| 99 | return __arch_swahb32p(&val); | ||
| 100 | #else | ||
| 101 | return __const_swahb32(val); | ||
| 102 | #endif | ||
| 103 | } | ||
| 104 | |||
| 105 | /** | ||
| 106 | * __swab16 - return a byteswapped 16-bit value | ||
| 107 | * @x: value to byteswap | ||
| 108 | */ | ||
| 109 | #define __swab16(x) \ | ||
| 110 | (__builtin_constant_p((__u16)(x)) ? \ | ||
| 111 | __const_swab16((x)) : \ | ||
| 112 | ___swab16((x))) | ||
| 113 | |||
| 114 | /** | ||
| 115 | * __swab32 - return a byteswapped 32-bit value | ||
| 116 | * @x: value to byteswap | ||
| 117 | */ | ||
| 118 | #define __swab32(x) \ | ||
| 119 | (__builtin_constant_p((__u32)(x)) ? \ | ||
| 120 | __const_swab32((x)) : \ | ||
| 121 | ___swab32((x))) | ||
| 122 | |||
| 123 | /** | ||
| 124 | * __swab64 - return a byteswapped 64-bit value | ||
| 125 | * @x: value to byteswap | ||
| 126 | */ | ||
| 127 | #define __swab64(x) \ | ||
| 128 | (__builtin_constant_p((__u64)(x)) ? \ | ||
| 129 | __const_swab64((x)) : \ | ||
| 130 | ___swab64((x))) | ||
| 131 | |||
| 132 | /** | ||
| 133 | * __swahw32 - return a word-swapped 32-bit value | ||
| 134 | * @x: value to wordswap | ||
| 135 | * | ||
| 136 | * __swahw32(0x12340000) is 0x00001234 | ||
| 137 | */ | ||
| 138 | #define __swahw32(x) \ | ||
| 139 | (__builtin_constant_p((__u32)(x)) ? \ | ||
| 140 | __const_swahw32((x)) : \ | ||
| 141 | ___swahw32((x))) | ||
| 142 | |||
| 143 | /** | ||
| 144 | * __swahb32 - return a high and low byte-swapped 32-bit value | ||
| 145 | * @x: value to byteswap | ||
| 146 | * | ||
| 147 | * __swahb32(0x12345678) is 0x34127856 | ||
| 148 | */ | ||
| 149 | #define __swahb32(x) \ | ||
| 150 | (__builtin_constant_p((__u32)(x)) ? \ | ||
| 151 | __const_swahb32((x)) : \ | ||
| 152 | ___swahb32((x))) | ||
| 153 | |||
| 154 | /** | ||
| 155 | * __swab16p - return a byteswapped 16-bit value from a pointer | ||
| 156 | * @p: pointer to a naturally-aligned 16-bit value | ||
| 157 | */ | ||
| 158 | static inline __u16 __swab16p(const __u16 *p) | ||
| 159 | { | ||
| 160 | #ifdef __arch_swab16p | ||
| 161 | return __arch_swab16p(p); | ||
| 162 | #else | ||
| 163 | return __swab16(*p); | ||
| 164 | #endif | ||
| 165 | } | ||
| 166 | |||
| 167 | /** | ||
| 168 | * __swab32p - return a byteswapped 32-bit value from a pointer | ||
| 169 | * @p: pointer to a naturally-aligned 32-bit value | ||
| 170 | */ | ||
| 171 | static inline __u32 __swab32p(const __u32 *p) | ||
| 172 | { | ||
| 173 | #ifdef __arch_swab32p | ||
| 174 | return __arch_swab32p(p); | ||
| 175 | #else | ||
| 176 | return __swab32(*p); | ||
| 177 | #endif | ||
| 178 | } | ||
| 179 | |||
| 180 | /** | ||
| 181 | * __swab64p - return a byteswapped 64-bit value from a pointer | ||
| 182 | * @p: pointer to a naturally-aligned 64-bit value | ||
| 183 | */ | ||
| 184 | static inline __u64 __swab64p(const __u64 *p) | ||
| 185 | { | ||
| 186 | #ifdef __arch_swab64p | ||
| 187 | return __arch_swab64p(p); | ||
| 188 | #else | ||
| 189 | return __swab64(*p); | ||
| 190 | #endif | ||
| 191 | } | ||
| 192 | |||
| 193 | /** | ||
| 194 | * __swahw32p - return a wordswapped 32-bit value from a pointer | ||
| 195 | * @p: pointer to a naturally-aligned 32-bit value | ||
| 196 | * | ||
| 197 | * See __swahw32() for details of wordswapping. | ||
| 198 | */ | ||
| 199 | static inline __u32 __swahw32p(const __u32 *p) | ||
| 200 | { | ||
| 201 | #ifdef __arch_swahw32p | ||
| 202 | return __arch_swahw32p(p); | ||
| 203 | #else | ||
| 204 | return __swahw32(*p); | ||
| 205 | #endif | ||
| 206 | } | ||
| 207 | |||
| 208 | /** | ||
| 209 | * __swahb32p - return a high and low byteswapped 32-bit value from a pointer | ||
| 210 | * @p: pointer to a naturally-aligned 32-bit value | ||
| 211 | * | ||
| 212 | * See __swahb32() for details of high/low byteswapping. | ||
| 213 | */ | ||
| 214 | static inline __u32 __swahb32p(const __u32 *p) | ||
| 215 | { | ||
| 216 | #ifdef __arch_swahb32p | ||
| 217 | return __arch_swahb32p(p); | ||
| 218 | #else | ||
| 219 | return __swahb32(*p); | ||
| 220 | #endif | ||
| 221 | } | ||
| 222 | |||
| 223 | /** | ||
| 224 | * __swab16s - byteswap a 16-bit value in-place | ||
| 225 | * @p: pointer to a naturally-aligned 16-bit value | ||
| 226 | */ | ||
| 227 | static inline void __swab16s(__u16 *p) | ||
| 228 | { | ||
| 229 | #ifdef __arch_swab16s | ||
| 230 | __arch_swab16s(p); | ||
| 231 | #else | ||
| 232 | *p = __swab16p(p); | ||
| 233 | #endif | ||
| 234 | } | ||
| 235 | /** | ||
| 236 | * __swab32s - byteswap a 32-bit value in-place | ||
| 237 | * @p: pointer to a naturally-aligned 32-bit value | ||
| 238 | */ | ||
| 239 | static inline void __swab32s(__u32 *p) | ||
| 240 | { | ||
| 241 | #ifdef __arch_swab32s | ||
| 242 | __arch_swab32s(p); | ||
| 243 | #else | ||
| 244 | *p = __swab32p(p); | ||
| 245 | #endif | ||
| 246 | } | ||
| 247 | |||
| 248 | /** | ||
| 249 | * __swab64s - byteswap a 64-bit value in-place | ||
| 250 | * @p: pointer to a naturally-aligned 64-bit value | ||
| 251 | */ | ||
| 252 | static inline void __swab64s(__u64 *p) | ||
| 253 | { | ||
| 254 | #ifdef __arch_swab64s | ||
| 255 | __arch_swab64s(p); | ||
| 256 | #else | ||
| 257 | *p = __swab64p(p); | ||
| 258 | #endif | ||
| 259 | } | ||
| 260 | |||
| 261 | /** | ||
| 262 | * __swahw32s - wordswap a 32-bit value in-place | ||
| 263 | * @p: pointer to a naturally-aligned 32-bit value | ||
| 264 | * | ||
| 265 | * See __swahw32() for details of wordswapping | ||
| 266 | */ | ||
| 267 | static inline void __swahw32s(__u32 *p) | ||
| 268 | { | ||
| 269 | #ifdef __arch_swahw32s | ||
| 270 | __arch_swahw32s(p); | ||
| 271 | #else | ||
| 272 | *p = __swahw32p(p); | ||
| 273 | #endif | ||
| 274 | } | ||
| 275 | |||
| 276 | /** | ||
| 277 | * __swahb32s - high and low byteswap a 32-bit value in-place | ||
| 278 | * @p: pointer to a naturally-aligned 32-bit value | ||
| 279 | * | ||
| 280 | * See __swahb32() for details of high and low byte swapping | ||
| 281 | */ | ||
| 282 | static inline void __swahb32s(__u32 *p) | ||
| 283 | { | ||
| 284 | #ifdef __arch_swahb32s | ||
| 285 | __arch_swahb32s(p); | ||
| 286 | #else | ||
| 287 | *p = __swahb32p(p); | ||
| 288 | #endif | ||
| 289 | } | ||
| 290 | |||
| 291 | #ifdef __KERNEL__ | ||
| 292 | # define swab16 __swab16 | ||
| 293 | # define swab32 __swab32 | ||
| 294 | # define swab64 __swab64 | ||
| 295 | # define swahw32 __swahw32 | ||
| 296 | # define swahb32 __swahb32 | ||
| 297 | # define swab16p __swab16p | ||
| 298 | # define swab32p __swab32p | ||
| 299 | # define swab64p __swab64p | ||
| 300 | # define swahw32p __swahw32p | ||
| 301 | # define swahb32p __swahb32p | ||
| 302 | # define swab16s __swab16s | ||
| 303 | # define swab32s __swab32s | ||
| 304 | # define swab64s __swab64s | ||
| 305 | # define swahw32s __swahw32s | ||
| 306 | # define swahb32s __swahb32s | ||
| 307 | #endif /* __KERNEL__ */ | ||
| 308 | |||
| 309 | #endif /* _LINUX_SWAB_H */ | ||
diff --git a/include/linux/swap.h b/include/linux/swap.h index 0b3377650c85..de40f169a4e4 100644 --- a/include/linux/swap.h +++ b/include/linux/swap.h | |||
| @@ -237,7 +237,6 @@ extern struct page *swapin_readahead(swp_entry_t, gfp_t, | |||
| 237 | 237 | ||
| 238 | /* linux/mm/swapfile.c */ | 238 | /* linux/mm/swapfile.c */ |
| 239 | extern long total_swap_pages; | 239 | extern long total_swap_pages; |
| 240 | extern unsigned int nr_swapfiles; | ||
| 241 | extern void si_swapinfo(struct sysinfo *); | 240 | extern void si_swapinfo(struct sysinfo *); |
| 242 | extern swp_entry_t get_swap_page(void); | 241 | extern swp_entry_t get_swap_page(void); |
| 243 | extern swp_entry_t get_swap_page_of_type(int); | 242 | extern swp_entry_t get_swap_page_of_type(int); |
| @@ -254,8 +253,6 @@ extern int can_share_swap_page(struct page *); | |||
| 254 | extern int remove_exclusive_swap_page(struct page *); | 253 | extern int remove_exclusive_swap_page(struct page *); |
| 255 | struct backing_dev_info; | 254 | struct backing_dev_info; |
| 256 | 255 | ||
| 257 | extern spinlock_t swap_lock; | ||
| 258 | |||
| 259 | /* linux/mm/thrash.c */ | 256 | /* linux/mm/thrash.c */ |
| 260 | extern struct mm_struct * swap_token_mm; | 257 | extern struct mm_struct * swap_token_mm; |
| 261 | extern void grab_swap_token(void); | 258 | extern void grab_swap_token(void); |
diff --git a/include/linux/synclink.h b/include/linux/synclink.h index 45f6bc82d317..c844a229acc9 100644 --- a/include/linux/synclink.h +++ b/include/linux/synclink.h | |||
| @@ -136,6 +136,7 @@ | |||
| 136 | #define MGSL_INTERFACE_RTS_EN 0x10 | 136 | #define MGSL_INTERFACE_RTS_EN 0x10 |
| 137 | #define MGSL_INTERFACE_LL 0x20 | 137 | #define MGSL_INTERFACE_LL 0x20 |
| 138 | #define MGSL_INTERFACE_RL 0x40 | 138 | #define MGSL_INTERFACE_RL 0x40 |
| 139 | #define MGSL_INTERFACE_MSB_FIRST 0x80 | ||
| 139 | 140 | ||
| 140 | typedef struct _MGSL_PARAMS | 141 | typedef struct _MGSL_PARAMS |
| 141 | { | 142 | { |
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index 0522f368f9d7..d6ff145919ca 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
| @@ -305,6 +305,7 @@ asmlinkage long sys_fcntl64(unsigned int fd, | |||
| 305 | #endif | 305 | #endif |
| 306 | asmlinkage long sys_dup(unsigned int fildes); | 306 | asmlinkage long sys_dup(unsigned int fildes); |
| 307 | asmlinkage long sys_dup2(unsigned int oldfd, unsigned int newfd); | 307 | asmlinkage long sys_dup2(unsigned int oldfd, unsigned int newfd); |
| 308 | asmlinkage long sys_dup3(unsigned int oldfd, unsigned int newfd, int flags); | ||
| 308 | asmlinkage long sys_ioperm(unsigned long from, unsigned long num, int on); | 309 | asmlinkage long sys_ioperm(unsigned long from, unsigned long num, int on); |
| 309 | asmlinkage long sys_ioctl(unsigned int fd, unsigned int cmd, | 310 | asmlinkage long sys_ioctl(unsigned int fd, unsigned int cmd, |
| 310 | unsigned long arg); | 311 | unsigned long arg); |
| @@ -409,6 +410,8 @@ asmlinkage long sys_getsockopt(int fd, int level, int optname, | |||
| 409 | asmlinkage long sys_bind(int, struct sockaddr __user *, int); | 410 | asmlinkage long sys_bind(int, struct sockaddr __user *, int); |
| 410 | asmlinkage long sys_connect(int, struct sockaddr __user *, int); | 411 | asmlinkage long sys_connect(int, struct sockaddr __user *, int); |
| 411 | asmlinkage long sys_accept(int, struct sockaddr __user *, int __user *); | 412 | asmlinkage long sys_accept(int, struct sockaddr __user *, int __user *); |
| 413 | asmlinkage long sys_paccept(int, struct sockaddr __user *, int __user *, | ||
| 414 | const __user sigset_t *, size_t, int); | ||
| 412 | asmlinkage long sys_getsockname(int, struct sockaddr __user *, int __user *); | 415 | asmlinkage long sys_getsockname(int, struct sockaddr __user *, int __user *); |
| 413 | asmlinkage long sys_getpeername(int, struct sockaddr __user *, int __user *); | 416 | asmlinkage long sys_getpeername(int, struct sockaddr __user *, int __user *); |
| 414 | asmlinkage long sys_send(int, void __user *, size_t, unsigned); | 417 | asmlinkage long sys_send(int, void __user *, size_t, unsigned); |
| @@ -428,6 +431,7 @@ asmlinkage long sys_poll(struct pollfd __user *ufds, unsigned int nfds, | |||
| 428 | asmlinkage long sys_select(int n, fd_set __user *inp, fd_set __user *outp, | 431 | asmlinkage long sys_select(int n, fd_set __user *inp, fd_set __user *outp, |
| 429 | fd_set __user *exp, struct timeval __user *tvp); | 432 | fd_set __user *exp, struct timeval __user *tvp); |
| 430 | asmlinkage long sys_epoll_create(int size); | 433 | asmlinkage long sys_epoll_create(int size); |
| 434 | asmlinkage long sys_epoll_create1(int flags); | ||
| 431 | asmlinkage long sys_epoll_ctl(int epfd, int op, int fd, | 435 | asmlinkage long sys_epoll_ctl(int epfd, int op, int fd, |
| 432 | struct epoll_event __user *event); | 436 | struct epoll_event __user *event); |
| 433 | asmlinkage long sys_epoll_wait(int epfd, struct epoll_event __user *events, | 437 | asmlinkage long sys_epoll_wait(int epfd, struct epoll_event __user *events, |
| @@ -443,7 +447,7 @@ asmlinkage long sys_newuname(struct new_utsname __user *name); | |||
| 443 | 447 | ||
| 444 | asmlinkage long sys_getrlimit(unsigned int resource, | 448 | asmlinkage long sys_getrlimit(unsigned int resource, |
| 445 | struct rlimit __user *rlim); | 449 | struct rlimit __user *rlim); |
| 446 | #if defined(COMPAT_RLIM_OLD_INFINITY) || !(defined(CONFIG_IA64) || defined(CONFIG_V850)) | 450 | #if defined(COMPAT_RLIM_OLD_INFINITY) || !(defined(CONFIG_IA64)) |
| 447 | asmlinkage long sys_old_getrlimit(unsigned int resource, struct rlimit __user *rlim); | 451 | asmlinkage long sys_old_getrlimit(unsigned int resource, struct rlimit __user *rlim); |
| 448 | #endif | 452 | #endif |
| 449 | asmlinkage long sys_setrlimit(unsigned int resource, | 453 | asmlinkage long sys_setrlimit(unsigned int resource, |
| @@ -543,6 +547,7 @@ asmlinkage long sys_get_mempolicy(int __user *policy, | |||
| 543 | unsigned long addr, unsigned long flags); | 547 | unsigned long addr, unsigned long flags); |
| 544 | 548 | ||
| 545 | asmlinkage long sys_inotify_init(void); | 549 | asmlinkage long sys_inotify_init(void); |
| 550 | asmlinkage long sys_inotify_init1(int flags); | ||
| 546 | asmlinkage long sys_inotify_add_watch(int fd, const char __user *path, | 551 | asmlinkage long sys_inotify_add_watch(int fd, const char __user *path, |
| 547 | u32 mask); | 552 | u32 mask); |
| 548 | asmlinkage long sys_inotify_rm_watch(int fd, u32 wd); | 553 | asmlinkage long sys_inotify_rm_watch(int fd, u32 wd); |
| @@ -608,12 +613,14 @@ asmlinkage long sys_set_robust_list(struct robust_list_head __user *head, | |||
| 608 | size_t len); | 613 | size_t len); |
| 609 | asmlinkage long sys_getcpu(unsigned __user *cpu, unsigned __user *node, struct getcpu_cache __user *cache); | 614 | asmlinkage long sys_getcpu(unsigned __user *cpu, unsigned __user *node, struct getcpu_cache __user *cache); |
| 610 | asmlinkage long sys_signalfd(int ufd, sigset_t __user *user_mask, size_t sizemask); | 615 | asmlinkage long sys_signalfd(int ufd, sigset_t __user *user_mask, size_t sizemask); |
| 616 | asmlinkage long sys_signalfd4(int ufd, sigset_t __user *user_mask, size_t sizemask, int flags); | ||
| 611 | asmlinkage long sys_timerfd_create(int clockid, int flags); | 617 | asmlinkage long sys_timerfd_create(int clockid, int flags); |
| 612 | asmlinkage long sys_timerfd_settime(int ufd, int flags, | 618 | asmlinkage long sys_timerfd_settime(int ufd, int flags, |
| 613 | const struct itimerspec __user *utmr, | 619 | const struct itimerspec __user *utmr, |
| 614 | struct itimerspec __user *otmr); | 620 | struct itimerspec __user *otmr); |
| 615 | asmlinkage long sys_timerfd_gettime(int ufd, struct itimerspec __user *otmr); | 621 | asmlinkage long sys_timerfd_gettime(int ufd, struct itimerspec __user *otmr); |
| 616 | asmlinkage long sys_eventfd(unsigned int count); | 622 | asmlinkage long sys_eventfd(unsigned int count); |
| 623 | asmlinkage long sys_eventfd2(unsigned int count, int flags); | ||
| 617 | asmlinkage long sys_fallocate(int fd, int mode, loff_t offset, loff_t len); | 624 | asmlinkage long sys_fallocate(int fd, int mode, loff_t offset, loff_t len); |
| 618 | 625 | ||
| 619 | int kernel_execve(const char *filename, char *const argv[], char *const envp[]); | 626 | int kernel_execve(const char *filename, char *const argv[], char *const envp[]); |
diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h index 24141b4d1a11..d0437f36921f 100644 --- a/include/linux/sysctl.h +++ b/include/linux/sysctl.h | |||
| @@ -947,6 +947,22 @@ struct ctl_table; | |||
| 947 | struct nsproxy; | 947 | struct nsproxy; |
| 948 | struct ctl_table_root; | 948 | struct ctl_table_root; |
| 949 | 949 | ||
| 950 | struct ctl_table_set { | ||
| 951 | struct list_head list; | ||
| 952 | struct ctl_table_set *parent; | ||
| 953 | int (*is_seen)(struct ctl_table_set *); | ||
| 954 | }; | ||
| 955 | |||
| 956 | extern void setup_sysctl_set(struct ctl_table_set *p, | ||
| 957 | struct ctl_table_set *parent, | ||
| 958 | int (*is_seen)(struct ctl_table_set *)); | ||
| 959 | |||
| 960 | struct ctl_table_header; | ||
| 961 | |||
| 962 | extern void sysctl_head_get(struct ctl_table_header *); | ||
| 963 | extern void sysctl_head_put(struct ctl_table_header *); | ||
| 964 | extern int sysctl_is_seen(struct ctl_table_header *); | ||
| 965 | extern struct ctl_table_header *sysctl_head_grab(struct ctl_table_header *); | ||
| 950 | extern struct ctl_table_header *sysctl_head_next(struct ctl_table_header *prev); | 966 | extern struct ctl_table_header *sysctl_head_next(struct ctl_table_header *prev); |
| 951 | extern struct ctl_table_header *__sysctl_head_next(struct nsproxy *namespaces, | 967 | extern struct ctl_table_header *__sysctl_head_next(struct nsproxy *namespaces, |
| 952 | struct ctl_table_header *prev); | 968 | struct ctl_table_header *prev); |
| @@ -1049,8 +1065,8 @@ struct ctl_table | |||
| 1049 | 1065 | ||
| 1050 | struct ctl_table_root { | 1066 | struct ctl_table_root { |
| 1051 | struct list_head root_list; | 1067 | struct list_head root_list; |
| 1052 | struct list_head header_list; | 1068 | struct ctl_table_set default_set; |
| 1053 | struct list_head *(*lookup)(struct ctl_table_root *root, | 1069 | struct ctl_table_set *(*lookup)(struct ctl_table_root *root, |
| 1054 | struct nsproxy *namespaces); | 1070 | struct nsproxy *namespaces); |
| 1055 | int (*permissions)(struct ctl_table_root *root, | 1071 | int (*permissions)(struct ctl_table_root *root, |
| 1056 | struct nsproxy *namespaces, struct ctl_table *table); | 1072 | struct nsproxy *namespaces, struct ctl_table *table); |
| @@ -1063,9 +1079,14 @@ struct ctl_table_header | |||
| 1063 | struct ctl_table *ctl_table; | 1079 | struct ctl_table *ctl_table; |
| 1064 | struct list_head ctl_entry; | 1080 | struct list_head ctl_entry; |
| 1065 | int used; | 1081 | int used; |
| 1082 | int count; | ||
| 1066 | struct completion *unregistering; | 1083 | struct completion *unregistering; |
| 1067 | struct ctl_table *ctl_table_arg; | 1084 | struct ctl_table *ctl_table_arg; |
| 1068 | struct ctl_table_root *root; | 1085 | struct ctl_table_root *root; |
| 1086 | struct ctl_table_set *set; | ||
| 1087 | struct ctl_table *attached_by; | ||
| 1088 | struct ctl_table *attached_to; | ||
| 1089 | struct ctl_table_header *parent; | ||
| 1069 | }; | 1090 | }; |
| 1070 | 1091 | ||
| 1071 | /* struct ctl_path describes where in the hierarchy a table is added */ | 1092 | /* struct ctl_path describes where in the hierarchy a table is added */ |
diff --git a/include/linux/sysdev.h b/include/linux/sysdev.h index f2767bc6b735..f395bb3fa2f2 100644 --- a/include/linux/sysdev.h +++ b/include/linux/sysdev.h | |||
| @@ -99,8 +99,9 @@ extern void sysdev_unregister(struct sys_device *); | |||
| 99 | 99 | ||
| 100 | struct sysdev_attribute { | 100 | struct sysdev_attribute { |
| 101 | struct attribute attr; | 101 | struct attribute attr; |
| 102 | ssize_t (*show)(struct sys_device *, char *); | 102 | ssize_t (*show)(struct sys_device *, struct sysdev_attribute *, char *); |
| 103 | ssize_t (*store)(struct sys_device *, const char *, size_t); | 103 | ssize_t (*store)(struct sys_device *, struct sysdev_attribute *, |
| 104 | const char *, size_t); | ||
| 104 | }; | 105 | }; |
| 105 | 106 | ||
| 106 | 107 | ||
| @@ -118,4 +119,38 @@ struct sysdev_attribute { | |||
| 118 | extern int sysdev_create_file(struct sys_device *, struct sysdev_attribute *); | 119 | extern int sysdev_create_file(struct sys_device *, struct sysdev_attribute *); |
| 119 | extern void sysdev_remove_file(struct sys_device *, struct sysdev_attribute *); | 120 | extern void sysdev_remove_file(struct sys_device *, struct sysdev_attribute *); |
| 120 | 121 | ||
| 122 | struct sysdev_ext_attribute { | ||
| 123 | struct sysdev_attribute attr; | ||
| 124 | void *var; | ||
| 125 | }; | ||
| 126 | |||
| 127 | /* | ||
| 128 | * Support for simple variable sysdev attributes. | ||
| 129 | * The pointer to the variable is stored in a sysdev_ext_attribute | ||
| 130 | */ | ||
| 131 | |||
| 132 | /* Add more types as needed */ | ||
| 133 | |||
| 134 | extern ssize_t sysdev_show_ulong(struct sys_device *, struct sysdev_attribute *, | ||
| 135 | char *); | ||
| 136 | extern ssize_t sysdev_store_ulong(struct sys_device *, | ||
| 137 | struct sysdev_attribute *, const char *, size_t); | ||
| 138 | extern ssize_t sysdev_show_int(struct sys_device *, struct sysdev_attribute *, | ||
| 139 | char *); | ||
| 140 | extern ssize_t sysdev_store_int(struct sys_device *, | ||
| 141 | struct sysdev_attribute *, const char *, size_t); | ||
| 142 | |||
| 143 | #define _SYSDEV_ULONG_ATTR(_name, _mode, _var) \ | ||
| 144 | { _SYSDEV_ATTR(_name, _mode, sysdev_show_ulong, sysdev_store_ulong), \ | ||
| 145 | &(_var) } | ||
| 146 | #define SYSDEV_ULONG_ATTR(_name, _mode, _var) \ | ||
| 147 | struct sysdev_ext_attribute attr_##_name = \ | ||
| 148 | _SYSDEV_ULONG_ATTR(_name, _mode, _var); | ||
| 149 | #define _SYSDEV_INT_ATTR(_name, _mode, _var) \ | ||
| 150 | { _SYSDEV_ATTR(_name, _mode, sysdev_show_int, sysdev_store_int), \ | ||
| 151 | &(_var) } | ||
| 152 | #define SYSDEV_INT_ATTR(_name, _mode, _var) \ | ||
| 153 | struct sysdev_ext_attribute attr_##_name = \ | ||
| 154 | _SYSDEV_INT_ATTR(_name, _mode, _var); | ||
| 155 | |||
| 121 | #endif /* _SYSDEV_H_ */ | 156 | #endif /* _SYSDEV_H_ */ |
diff --git a/include/linux/sysfs.h b/include/linux/sysfs.h index 7858eac40aa7..37fa24152bd8 100644 --- a/include/linux/sysfs.h +++ b/include/linux/sysfs.h | |||
| @@ -101,6 +101,9 @@ void sysfs_remove_bin_file(struct kobject *kobj, struct bin_attribute *attr); | |||
| 101 | 101 | ||
| 102 | int __must_check sysfs_create_link(struct kobject *kobj, struct kobject *target, | 102 | int __must_check sysfs_create_link(struct kobject *kobj, struct kobject *target, |
| 103 | const char *name); | 103 | const char *name); |
| 104 | int __must_check sysfs_create_link_nowarn(struct kobject *kobj, | ||
| 105 | struct kobject *target, | ||
| 106 | const char *name); | ||
| 104 | void sysfs_remove_link(struct kobject *kobj, const char *name); | 107 | void sysfs_remove_link(struct kobject *kobj, const char *name); |
| 105 | 108 | ||
| 106 | int __must_check sysfs_create_group(struct kobject *kobj, | 109 | int __must_check sysfs_create_group(struct kobject *kobj, |
| @@ -180,6 +183,13 @@ static inline int sysfs_create_link(struct kobject *kobj, | |||
| 180 | return 0; | 183 | return 0; |
| 181 | } | 184 | } |
| 182 | 185 | ||
| 186 | static inline int sysfs_create_link_nowarn(struct kobject *kobj, | ||
| 187 | struct kobject *target, | ||
| 188 | const char *name) | ||
| 189 | { | ||
| 190 | return 0; | ||
| 191 | } | ||
| 192 | |||
| 183 | static inline void sysfs_remove_link(struct kobject *kobj, const char *name) | 193 | static inline void sysfs_remove_link(struct kobject *kobj, const char *name) |
| 184 | { | 194 | { |
| 185 | } | 195 | } |
diff --git a/include/linux/task_io_accounting.h b/include/linux/task_io_accounting.h index 44d00e9cceea..5e88afc9a2fb 100644 --- a/include/linux/task_io_accounting.h +++ b/include/linux/task_io_accounting.h | |||
| @@ -8,8 +8,19 @@ | |||
| 8 | * Blame akpm@osdl.org for all this. | 8 | * Blame akpm@osdl.org for all this. |
| 9 | */ | 9 | */ |
| 10 | 10 | ||
| 11 | #ifdef CONFIG_TASK_IO_ACCOUNTING | ||
| 12 | struct task_io_accounting { | 11 | struct task_io_accounting { |
| 12 | #ifdef CONFIG_TASK_XACCT | ||
| 13 | /* bytes read */ | ||
| 14 | u64 rchar; | ||
| 15 | /* bytes written */ | ||
| 16 | u64 wchar; | ||
| 17 | /* # of read syscalls */ | ||
| 18 | u64 syscr; | ||
| 19 | /* # of write syscalls */ | ||
| 20 | u64 syscw; | ||
| 21 | #endif /* CONFIG_TASK_XACCT */ | ||
| 22 | |||
| 23 | #ifdef CONFIG_TASK_IO_ACCOUNTING | ||
| 13 | /* | 24 | /* |
| 14 | * The number of bytes which this task has caused to be read from | 25 | * The number of bytes which this task has caused to be read from |
| 15 | * storage. | 26 | * storage. |
| @@ -30,8 +41,5 @@ struct task_io_accounting { | |||
| 30 | * information loss in doing that. | 41 | * information loss in doing that. |
| 31 | */ | 42 | */ |
| 32 | u64 cancelled_write_bytes; | 43 | u64 cancelled_write_bytes; |
| 44 | #endif /* CONFIG_TASK_IO_ACCOUNTING */ | ||
| 33 | }; | 45 | }; |
| 34 | #else | ||
| 35 | struct task_io_accounting { | ||
| 36 | }; | ||
| 37 | #endif | ||
diff --git a/include/linux/task_io_accounting_ops.h b/include/linux/task_io_accounting_ops.h index ff46c6fad79d..4d090f9ee608 100644 --- a/include/linux/task_io_accounting_ops.h +++ b/include/linux/task_io_accounting_ops.h | |||
| @@ -40,9 +40,17 @@ static inline void task_io_account_cancelled_write(size_t bytes) | |||
| 40 | current->ioac.cancelled_write_bytes += bytes; | 40 | current->ioac.cancelled_write_bytes += bytes; |
| 41 | } | 41 | } |
| 42 | 42 | ||
| 43 | static inline void task_io_accounting_init(struct task_struct *tsk) | 43 | static inline void task_io_accounting_init(struct task_io_accounting *ioac) |
| 44 | { | 44 | { |
| 45 | memset(&tsk->ioac, 0, sizeof(tsk->ioac)); | 45 | memset(ioac, 0, sizeof(*ioac)); |
| 46 | } | ||
| 47 | |||
| 48 | static inline void task_blk_io_accounting_add(struct task_io_accounting *dst, | ||
| 49 | struct task_io_accounting *src) | ||
| 50 | { | ||
| 51 | dst->read_bytes += src->read_bytes; | ||
| 52 | dst->write_bytes += src->write_bytes; | ||
| 53 | dst->cancelled_write_bytes += src->cancelled_write_bytes; | ||
| 46 | } | 54 | } |
| 47 | 55 | ||
| 48 | #else | 56 | #else |
| @@ -69,9 +77,37 @@ static inline void task_io_account_cancelled_write(size_t bytes) | |||
| 69 | { | 77 | { |
| 70 | } | 78 | } |
| 71 | 79 | ||
| 72 | static inline void task_io_accounting_init(struct task_struct *tsk) | 80 | static inline void task_io_accounting_init(struct task_io_accounting *ioac) |
| 81 | { | ||
| 82 | } | ||
| 83 | |||
| 84 | static inline void task_blk_io_accounting_add(struct task_io_accounting *dst, | ||
| 85 | struct task_io_accounting *src) | ||
| 73 | { | 86 | { |
| 74 | } | 87 | } |
| 75 | 88 | ||
| 76 | #endif /* CONFIG_TASK_IO_ACCOUNTING */ | 89 | #endif /* CONFIG_TASK_IO_ACCOUNTING */ |
| 77 | #endif /* __TASK_IO_ACCOUNTING_OPS_INCLUDED */ | 90 | |
| 91 | #ifdef CONFIG_TASK_XACCT | ||
| 92 | static inline void task_chr_io_accounting_add(struct task_io_accounting *dst, | ||
| 93 | struct task_io_accounting *src) | ||
| 94 | { | ||
| 95 | dst->rchar += src->rchar; | ||
| 96 | dst->wchar += src->wchar; | ||
| 97 | dst->syscr += src->syscr; | ||
| 98 | dst->syscw += src->syscw; | ||
| 99 | } | ||
| 100 | #else | ||
| 101 | static inline void task_chr_io_accounting_add(struct task_io_accounting *dst, | ||
| 102 | struct task_io_accounting *src) | ||
| 103 | { | ||
| 104 | } | ||
| 105 | #endif /* CONFIG_TASK_XACCT */ | ||
| 106 | |||
| 107 | static inline void task_io_accounting_add(struct task_io_accounting *dst, | ||
| 108 | struct task_io_accounting *src) | ||
| 109 | { | ||
| 110 | task_chr_io_accounting_add(dst, src); | ||
| 111 | task_blk_io_accounting_add(dst, src); | ||
| 112 | } | ||
| 113 | #endif /* __TASK_IO_ACCOUNTING_OPS_INCLUDED */ | ||
diff --git a/include/linux/taskstats.h b/include/linux/taskstats.h index 5d69c0744fff..18269e956a71 100644 --- a/include/linux/taskstats.h +++ b/include/linux/taskstats.h | |||
| @@ -31,7 +31,7 @@ | |||
| 31 | */ | 31 | */ |
| 32 | 32 | ||
| 33 | 33 | ||
| 34 | #define TASKSTATS_VERSION 6 | 34 | #define TASKSTATS_VERSION 7 |
| 35 | #define TS_COMM_LEN 32 /* should be >= TASK_COMM_LEN | 35 | #define TS_COMM_LEN 32 /* should be >= TASK_COMM_LEN |
| 36 | * in linux/sched.h */ | 36 | * in linux/sched.h */ |
| 37 | 37 | ||
| @@ -157,6 +157,10 @@ struct taskstats { | |||
| 157 | __u64 ac_utimescaled; /* utime scaled on frequency etc */ | 157 | __u64 ac_utimescaled; /* utime scaled on frequency etc */ |
| 158 | __u64 ac_stimescaled; /* stime scaled on frequency etc */ | 158 | __u64 ac_stimescaled; /* stime scaled on frequency etc */ |
| 159 | __u64 cpu_scaled_run_real_total; /* scaled cpu_run_real_total */ | 159 | __u64 cpu_scaled_run_real_total; /* scaled cpu_run_real_total */ |
| 160 | |||
| 161 | /* Delay waiting for memory reclaim */ | ||
| 162 | __u64 freepages_count; | ||
| 163 | __u64 freepages_delay_total; | ||
| 160 | }; | 164 | }; |
| 161 | 165 | ||
| 162 | 166 | ||
diff --git a/include/linux/tick.h b/include/linux/tick.h index a881c652f7e9..d3c02695dc5d 100644 --- a/include/linux/tick.h +++ b/include/linux/tick.h | |||
| @@ -49,6 +49,7 @@ struct tick_sched { | |||
| 49 | unsigned long check_clocks; | 49 | unsigned long check_clocks; |
| 50 | enum tick_nohz_mode nohz_mode; | 50 | enum tick_nohz_mode nohz_mode; |
| 51 | ktime_t idle_tick; | 51 | ktime_t idle_tick; |
| 52 | int inidle; | ||
| 52 | int tick_stopped; | 53 | int tick_stopped; |
| 53 | unsigned long idle_jiffies; | 54 | unsigned long idle_jiffies; |
| 54 | unsigned long idle_calls; | 55 | unsigned long idle_calls; |
| @@ -105,14 +106,14 @@ static inline int tick_check_oneshot_change(int allow_nohz) { return 0; } | |||
| 105 | #endif /* !CONFIG_GENERIC_CLOCKEVENTS */ | 106 | #endif /* !CONFIG_GENERIC_CLOCKEVENTS */ |
| 106 | 107 | ||
| 107 | # ifdef CONFIG_NO_HZ | 108 | # ifdef CONFIG_NO_HZ |
| 108 | extern void tick_nohz_stop_sched_tick(void); | 109 | extern void tick_nohz_stop_sched_tick(int inidle); |
| 109 | extern void tick_nohz_restart_sched_tick(void); | 110 | extern void tick_nohz_restart_sched_tick(void); |
| 110 | extern void tick_nohz_update_jiffies(void); | 111 | extern void tick_nohz_update_jiffies(void); |
| 111 | extern ktime_t tick_nohz_get_sleep_length(void); | 112 | extern ktime_t tick_nohz_get_sleep_length(void); |
| 112 | extern void tick_nohz_stop_idle(int cpu); | 113 | extern void tick_nohz_stop_idle(int cpu); |
| 113 | extern u64 get_cpu_idle_time_us(int cpu, u64 *last_update_time); | 114 | extern u64 get_cpu_idle_time_us(int cpu, u64 *last_update_time); |
| 114 | # else | 115 | # else |
| 115 | static inline void tick_nohz_stop_sched_tick(void) { } | 116 | static inline void tick_nohz_stop_sched_tick(int inidle) { } |
| 116 | static inline void tick_nohz_restart_sched_tick(void) { } | 117 | static inline void tick_nohz_restart_sched_tick(void) { } |
| 117 | static inline void tick_nohz_update_jiffies(void) { } | 118 | static inline void tick_nohz_update_jiffies(void) { } |
| 118 | static inline ktime_t tick_nohz_get_sleep_length(void) | 119 | static inline ktime_t tick_nohz_get_sleep_length(void) |
diff --git a/include/linux/timerfd.h b/include/linux/timerfd.h index cf2b10d75731..86cb0501d3e2 100644 --- a/include/linux/timerfd.h +++ b/include/linux/timerfd.h | |||
| @@ -8,9 +8,15 @@ | |||
| 8 | #ifndef _LINUX_TIMERFD_H | 8 | #ifndef _LINUX_TIMERFD_H |
| 9 | #define _LINUX_TIMERFD_H | 9 | #define _LINUX_TIMERFD_H |
| 10 | 10 | ||
| 11 | /* For O_CLOEXEC and O_NONBLOCK */ | ||
| 12 | #include <linux/fcntl.h> | ||
| 11 | 13 | ||
| 14 | /* Flags for timerfd_settime. */ | ||
| 12 | #define TFD_TIMER_ABSTIME (1 << 0) | 15 | #define TFD_TIMER_ABSTIME (1 << 0) |
| 13 | 16 | ||
| 17 | /* Flags for timerfd_create. */ | ||
| 18 | #define TFD_CLOEXEC O_CLOEXEC | ||
| 19 | #define TFD_NONBLOCK O_NONBLOCK | ||
| 14 | 20 | ||
| 15 | 21 | ||
| 16 | #endif /* _LINUX_TIMERFD_H */ | 22 | #endif /* _LINUX_TIMERFD_H */ |
diff --git a/include/linux/tracehook.h b/include/linux/tracehook.h new file mode 100644 index 000000000000..b48d81969574 --- /dev/null +++ b/include/linux/tracehook.h | |||
| @@ -0,0 +1,582 @@ | |||
| 1 | /* | ||
| 2 | * Tracing hooks | ||
| 3 | * | ||
| 4 | * Copyright (C) 2008 Red Hat, Inc. All rights reserved. | ||
| 5 | * | ||
| 6 | * This copyrighted material is made available to anyone wishing to use, | ||
| 7 | * modify, copy, or redistribute it subject to the terms and conditions | ||
| 8 | * of the GNU General Public License v.2. | ||
| 9 | * | ||
| 10 | * This file defines hook entry points called by core code where | ||
| 11 | * user tracing/debugging support might need to do something. These | ||
| 12 | * entry points are called tracehook_*(). Each hook declared below | ||
| 13 | * has a detailed kerneldoc comment giving the context (locking et | ||
| 14 | * al) from which it is called, and the meaning of its return value. | ||
| 15 | * | ||
| 16 | * Each function here typically has only one call site, so it is ok | ||
| 17 | * to have some nontrivial tracehook_*() inlines. In all cases, the | ||
| 18 | * fast path when no tracing is enabled should be very short. | ||
| 19 | * | ||
| 20 | * The purpose of this file and the tracehook_* layer is to consolidate | ||
| 21 | * the interface that the kernel core and arch code uses to enable any | ||
| 22 | * user debugging or tracing facility (such as ptrace). The interfaces | ||
| 23 | * here are carefully documented so that maintainers of core and arch | ||
| 24 | * code do not need to think about the implementation details of the | ||
| 25 | * tracing facilities. Likewise, maintainers of the tracing code do not | ||
| 26 | * need to understand all the calling core or arch code in detail, just | ||
| 27 | * documented circumstances of each call, such as locking conditions. | ||
| 28 | * | ||
| 29 | * If the calling core code changes so that locking is different, then | ||
| 30 | * it is ok to change the interface documented here. The maintainer of | ||
| 31 | * core code changing should notify the maintainers of the tracing code | ||
| 32 | * that they need to work out the change. | ||
| 33 | * | ||
| 34 | * Some tracehook_*() inlines take arguments that the current tracing | ||
| 35 | * implementations might not necessarily use. These function signatures | ||
| 36 | * are chosen to pass in all the information that is on hand in the | ||
| 37 | * caller and might conceivably be relevant to a tracer, so that the | ||
| 38 | * core code won't have to be updated when tracing adds more features. | ||
| 39 | * If a call site changes so that some of those parameters are no longer | ||
| 40 | * already on hand without extra work, then the tracehook_* interface | ||
| 41 | * can change so there is no make-work burden on the core code. The | ||
| 42 | * maintainer of core code changing should notify the maintainers of the | ||
| 43 | * tracing code that they need to work out the change. | ||
| 44 | */ | ||
| 45 | |||
| 46 | #ifndef _LINUX_TRACEHOOK_H | ||
| 47 | #define _LINUX_TRACEHOOK_H 1 | ||
| 48 | |||
| 49 | #include <linux/sched.h> | ||
| 50 | #include <linux/ptrace.h> | ||
| 51 | #include <linux/security.h> | ||
| 52 | struct linux_binprm; | ||
| 53 | |||
| 54 | /** | ||
| 55 | * tracehook_expect_breakpoints - guess if task memory might be touched | ||
| 56 | * @task: current task, making a new mapping | ||
| 57 | * | ||
| 58 | * Return nonzero if @task is expected to want breakpoint insertion in | ||
| 59 | * its memory at some point. A zero return is no guarantee it won't | ||
| 60 | * be done, but this is a hint that it's known to be likely. | ||
| 61 | * | ||
| 62 | * May be called with @task->mm->mmap_sem held for writing. | ||
| 63 | */ | ||
| 64 | static inline int tracehook_expect_breakpoints(struct task_struct *task) | ||
| 65 | { | ||
| 66 | return (task_ptrace(task) & PT_PTRACED) != 0; | ||
| 67 | } | ||
| 68 | |||
| 69 | /* | ||
| 70 | * ptrace report for syscall entry and exit looks identical. | ||
| 71 | */ | ||
| 72 | static inline void ptrace_report_syscall(struct pt_regs *regs) | ||
| 73 | { | ||
| 74 | int ptrace = task_ptrace(current); | ||
| 75 | |||
| 76 | if (!(ptrace & PT_PTRACED)) | ||
| 77 | return; | ||
| 78 | |||
| 79 | ptrace_notify(SIGTRAP | ((ptrace & PT_TRACESYSGOOD) ? 0x80 : 0)); | ||
| 80 | |||
| 81 | /* | ||
| 82 | * this isn't the same as continuing with a signal, but it will do | ||
| 83 | * for normal use. strace only continues with a signal if the | ||
| 84 | * stopping signal is not SIGTRAP. -brl | ||
| 85 | */ | ||
| 86 | if (current->exit_code) { | ||
| 87 | send_sig(current->exit_code, current, 1); | ||
| 88 | current->exit_code = 0; | ||
| 89 | } | ||
| 90 | } | ||
| 91 | |||
| 92 | /** | ||
| 93 | * tracehook_report_syscall_entry - task is about to attempt a system call | ||
| 94 | * @regs: user register state of current task | ||
| 95 | * | ||
| 96 | * This will be called if %TIF_SYSCALL_TRACE has been set, when the | ||
| 97 | * current task has just entered the kernel for a system call. | ||
| 98 | * Full user register state is available here. Changing the values | ||
| 99 | * in @regs can affect the system call number and arguments to be tried. | ||
| 100 | * It is safe to block here, preventing the system call from beginning. | ||
| 101 | * | ||
| 102 | * Returns zero normally, or nonzero if the calling arch code should abort | ||
| 103 | * the system call. That must prevent normal entry so no system call is | ||
| 104 | * made. If @task ever returns to user mode after this, its register state | ||
| 105 | * is unspecified, but should be something harmless like an %ENOSYS error | ||
| 106 | * return. It should preserve enough information so that syscall_rollback() | ||
| 107 | * can work (see asm-generic/syscall.h). | ||
| 108 | * | ||
| 109 | * Called without locks, just after entering kernel mode. | ||
| 110 | */ | ||
| 111 | static inline __must_check int tracehook_report_syscall_entry( | ||
| 112 | struct pt_regs *regs) | ||
| 113 | { | ||
| 114 | ptrace_report_syscall(regs); | ||
| 115 | return 0; | ||
| 116 | } | ||
| 117 | |||
| 118 | /** | ||
| 119 | * tracehook_report_syscall_exit - task has just finished a system call | ||
| 120 | * @regs: user register state of current task | ||
| 121 | * @step: nonzero if simulating single-step or block-step | ||
| 122 | * | ||
| 123 | * This will be called if %TIF_SYSCALL_TRACE has been set, when the | ||
| 124 | * current task has just finished an attempted system call. Full | ||
| 125 | * user register state is available here. It is safe to block here, | ||
| 126 | * preventing signals from being processed. | ||
| 127 | * | ||
| 128 | * If @step is nonzero, this report is also in lieu of the normal | ||
| 129 | * trap that would follow the system call instruction because | ||
| 130 | * user_enable_block_step() or user_enable_single_step() was used. | ||
| 131 | * In this case, %TIF_SYSCALL_TRACE might not be set. | ||
| 132 | * | ||
| 133 | * Called without locks, just before checking for pending signals. | ||
| 134 | */ | ||
| 135 | static inline void tracehook_report_syscall_exit(struct pt_regs *regs, int step) | ||
| 136 | { | ||
| 137 | ptrace_report_syscall(regs); | ||
| 138 | } | ||
| 139 | |||
| 140 | /** | ||
| 141 | * tracehook_unsafe_exec - check for exec declared unsafe due to tracing | ||
| 142 | * @task: current task doing exec | ||
| 143 | * | ||
| 144 | * Return %LSM_UNSAFE_* bits applied to an exec because of tracing. | ||
| 145 | * | ||
| 146 | * Called with task_lock() held on @task. | ||
| 147 | */ | ||
| 148 | static inline int tracehook_unsafe_exec(struct task_struct *task) | ||
| 149 | { | ||
| 150 | int unsafe = 0; | ||
| 151 | int ptrace = task_ptrace(task); | ||
| 152 | if (ptrace & PT_PTRACED) { | ||
| 153 | if (ptrace & PT_PTRACE_CAP) | ||
| 154 | unsafe |= LSM_UNSAFE_PTRACE_CAP; | ||
| 155 | else | ||
| 156 | unsafe |= LSM_UNSAFE_PTRACE; | ||
| 157 | } | ||
| 158 | return unsafe; | ||
| 159 | } | ||
| 160 | |||
| 161 | /** | ||
| 162 | * tracehook_tracer_task - return the task that is tracing the given task | ||
| 163 | * @tsk: task to consider | ||
| 164 | * | ||
| 165 | * Returns NULL if noone is tracing @task, or the &struct task_struct | ||
| 166 | * pointer to its tracer. | ||
| 167 | * | ||
| 168 | * Must called under rcu_read_lock(). The pointer returned might be kept | ||
| 169 | * live only by RCU. During exec, this may be called with task_lock() | ||
| 170 | * held on @task, still held from when tracehook_unsafe_exec() was called. | ||
| 171 | */ | ||
| 172 | static inline struct task_struct *tracehook_tracer_task(struct task_struct *tsk) | ||
| 173 | { | ||
| 174 | if (task_ptrace(tsk) & PT_PTRACED) | ||
| 175 | return rcu_dereference(tsk->parent); | ||
| 176 | return NULL; | ||
| 177 | } | ||
| 178 | |||
| 179 | /** | ||
| 180 | * tracehook_report_exec - a successful exec was completed | ||
| 181 | * @fmt: &struct linux_binfmt that performed the exec | ||
| 182 | * @bprm: &struct linux_binprm containing exec details | ||
| 183 | * @regs: user-mode register state | ||
| 184 | * | ||
| 185 | * An exec just completed, we are shortly going to return to user mode. | ||
| 186 | * The freshly initialized register state can be seen and changed in @regs. | ||
| 187 | * The name, file and other pointers in @bprm are still on hand to be | ||
| 188 | * inspected, but will be freed as soon as this returns. | ||
| 189 | * | ||
| 190 | * Called with no locks, but with some kernel resources held live | ||
| 191 | * and a reference on @fmt->module. | ||
| 192 | */ | ||
| 193 | static inline void tracehook_report_exec(struct linux_binfmt *fmt, | ||
| 194 | struct linux_binprm *bprm, | ||
| 195 | struct pt_regs *regs) | ||
| 196 | { | ||
| 197 | if (!ptrace_event(PT_TRACE_EXEC, PTRACE_EVENT_EXEC, 0) && | ||
| 198 | unlikely(task_ptrace(current) & PT_PTRACED)) | ||
| 199 | send_sig(SIGTRAP, current, 0); | ||
| 200 | } | ||
| 201 | |||
| 202 | /** | ||
| 203 | * tracehook_report_exit - task has begun to exit | ||
| 204 | * @exit_code: pointer to value destined for @current->exit_code | ||
| 205 | * | ||
| 206 | * @exit_code points to the value passed to do_exit(), which tracing | ||
| 207 | * might change here. This is almost the first thing in do_exit(), | ||
| 208 | * before freeing any resources or setting the %PF_EXITING flag. | ||
| 209 | * | ||
| 210 | * Called with no locks held. | ||
| 211 | */ | ||
| 212 | static inline void tracehook_report_exit(long *exit_code) | ||
| 213 | { | ||
| 214 | ptrace_event(PT_TRACE_EXIT, PTRACE_EVENT_EXIT, *exit_code); | ||
| 215 | } | ||
| 216 | |||
| 217 | /** | ||
| 218 | * tracehook_prepare_clone - prepare for new child to be cloned | ||
| 219 | * @clone_flags: %CLONE_* flags from clone/fork/vfork system call | ||
| 220 | * | ||
| 221 | * This is called before a new user task is to be cloned. | ||
| 222 | * Its return value will be passed to tracehook_finish_clone(). | ||
| 223 | * | ||
| 224 | * Called with no locks held. | ||
| 225 | */ | ||
| 226 | static inline int tracehook_prepare_clone(unsigned clone_flags) | ||
| 227 | { | ||
| 228 | if (clone_flags & CLONE_UNTRACED) | ||
| 229 | return 0; | ||
| 230 | |||
| 231 | if (clone_flags & CLONE_VFORK) { | ||
| 232 | if (current->ptrace & PT_TRACE_VFORK) | ||
| 233 | return PTRACE_EVENT_VFORK; | ||
| 234 | } else if ((clone_flags & CSIGNAL) != SIGCHLD) { | ||
| 235 | if (current->ptrace & PT_TRACE_CLONE) | ||
| 236 | return PTRACE_EVENT_CLONE; | ||
| 237 | } else if (current->ptrace & PT_TRACE_FORK) | ||
| 238 | return PTRACE_EVENT_FORK; | ||
| 239 | |||
| 240 | return 0; | ||
| 241 | } | ||
| 242 | |||
| 243 | /** | ||
| 244 | * tracehook_finish_clone - new child created and being attached | ||
| 245 | * @child: new child task | ||
| 246 | * @clone_flags: %CLONE_* flags from clone/fork/vfork system call | ||
| 247 | * @trace: return value from tracehook_prepare_clone() | ||
| 248 | * | ||
| 249 | * This is called immediately after adding @child to its parent's children list. | ||
| 250 | * The @trace value is that returned by tracehook_prepare_clone(). | ||
| 251 | * | ||
| 252 | * Called with current's siglock and write_lock_irq(&tasklist_lock) held. | ||
| 253 | */ | ||
| 254 | static inline void tracehook_finish_clone(struct task_struct *child, | ||
| 255 | unsigned long clone_flags, int trace) | ||
| 256 | { | ||
| 257 | ptrace_init_task(child, (clone_flags & CLONE_PTRACE) || trace); | ||
| 258 | } | ||
| 259 | |||
| 260 | /** | ||
| 261 | * tracehook_report_clone - in parent, new child is about to start running | ||
| 262 | * @trace: return value from tracehook_prepare_clone() | ||
| 263 | * @regs: parent's user register state | ||
| 264 | * @clone_flags: flags from parent's system call | ||
| 265 | * @pid: new child's PID in the parent's namespace | ||
| 266 | * @child: new child task | ||
| 267 | * | ||
| 268 | * Called after a child is set up, but before it has been started | ||
| 269 | * running. @trace is the value returned by tracehook_prepare_clone(). | ||
| 270 | * This is not a good place to block, because the child has not started | ||
| 271 | * yet. Suspend the child here if desired, and then block in | ||
| 272 | * tracehook_report_clone_complete(). This must prevent the child from | ||
| 273 | * self-reaping if tracehook_report_clone_complete() uses the @child | ||
| 274 | * pointer; otherwise it might have died and been released by the time | ||
| 275 | * tracehook_report_report_clone_complete() is called. | ||
| 276 | * | ||
| 277 | * Called with no locks held, but the child cannot run until this returns. | ||
| 278 | */ | ||
| 279 | static inline void tracehook_report_clone(int trace, struct pt_regs *regs, | ||
| 280 | unsigned long clone_flags, | ||
| 281 | pid_t pid, struct task_struct *child) | ||
| 282 | { | ||
| 283 | if (unlikely(trace) || unlikely(clone_flags & CLONE_PTRACE)) { | ||
| 284 | /* | ||
| 285 | * The child starts up with an immediate SIGSTOP. | ||
| 286 | */ | ||
| 287 | sigaddset(&child->pending.signal, SIGSTOP); | ||
| 288 | set_tsk_thread_flag(child, TIF_SIGPENDING); | ||
| 289 | } | ||
| 290 | } | ||
| 291 | |||
| 292 | /** | ||
| 293 | * tracehook_report_clone_complete - new child is running | ||
| 294 | * @trace: return value from tracehook_prepare_clone() | ||
| 295 | * @regs: parent's user register state | ||
| 296 | * @clone_flags: flags from parent's system call | ||
| 297 | * @pid: new child's PID in the parent's namespace | ||
| 298 | * @child: child task, already running | ||
| 299 | * | ||
| 300 | * This is called just after the child has started running. This is | ||
| 301 | * just before the clone/fork syscall returns, or blocks for vfork | ||
| 302 | * child completion if @clone_flags has the %CLONE_VFORK bit set. | ||
| 303 | * The @child pointer may be invalid if a self-reaping child died and | ||
| 304 | * tracehook_report_clone() took no action to prevent it from self-reaping. | ||
| 305 | * | ||
| 306 | * Called with no locks held. | ||
| 307 | */ | ||
| 308 | static inline void tracehook_report_clone_complete(int trace, | ||
| 309 | struct pt_regs *regs, | ||
| 310 | unsigned long clone_flags, | ||
| 311 | pid_t pid, | ||
| 312 | struct task_struct *child) | ||
| 313 | { | ||
| 314 | if (unlikely(trace)) | ||
| 315 | ptrace_event(0, trace, pid); | ||
| 316 | } | ||
| 317 | |||
| 318 | /** | ||
| 319 | * tracehook_report_vfork_done - vfork parent's child has exited or exec'd | ||
| 320 | * @child: child task, already running | ||
| 321 | * @pid: new child's PID in the parent's namespace | ||
| 322 | * | ||
| 323 | * Called after a %CLONE_VFORK parent has waited for the child to complete. | ||
| 324 | * The clone/vfork system call will return immediately after this. | ||
| 325 | * The @child pointer may be invalid if a self-reaping child died and | ||
| 326 | * tracehook_report_clone() took no action to prevent it from self-reaping. | ||
| 327 | * | ||
| 328 | * Called with no locks held. | ||
| 329 | */ | ||
| 330 | static inline void tracehook_report_vfork_done(struct task_struct *child, | ||
| 331 | pid_t pid) | ||
| 332 | { | ||
| 333 | ptrace_event(PT_TRACE_VFORK_DONE, PTRACE_EVENT_VFORK_DONE, pid); | ||
| 334 | } | ||
| 335 | |||
| 336 | /** | ||
| 337 | * tracehook_prepare_release_task - task is being reaped, clean up tracing | ||
| 338 | * @task: task in %EXIT_DEAD state | ||
| 339 | * | ||
| 340 | * This is called in release_task() just before @task gets finally reaped | ||
| 341 | * and freed. This would be the ideal place to remove and clean up any | ||
| 342 | * tracing-related state for @task. | ||
| 343 | * | ||
| 344 | * Called with no locks held. | ||
| 345 | */ | ||
| 346 | static inline void tracehook_prepare_release_task(struct task_struct *task) | ||
| 347 | { | ||
| 348 | } | ||
| 349 | |||
| 350 | /** | ||
| 351 | * tracehook_finish_release_task - final tracing clean-up | ||
| 352 | * @task: task in %EXIT_DEAD state | ||
| 353 | * | ||
| 354 | * This is called in release_task() when @task is being in the middle of | ||
| 355 | * being reaped. After this, there must be no tracing entanglements. | ||
| 356 | * | ||
| 357 | * Called with write_lock_irq(&tasklist_lock) held. | ||
| 358 | */ | ||
| 359 | static inline void tracehook_finish_release_task(struct task_struct *task) | ||
| 360 | { | ||
| 361 | ptrace_release_task(task); | ||
| 362 | } | ||
| 363 | |||
| 364 | /** | ||
| 365 | * tracehook_signal_handler - signal handler setup is complete | ||
| 366 | * @sig: number of signal being delivered | ||
| 367 | * @info: siginfo_t of signal being delivered | ||
| 368 | * @ka: sigaction setting that chose the handler | ||
| 369 | * @regs: user register state | ||
| 370 | * @stepping: nonzero if debugger single-step or block-step in use | ||
| 371 | * | ||
| 372 | * Called by the arch code after a signal handler has been set up. | ||
| 373 | * Register and stack state reflects the user handler about to run. | ||
| 374 | * Signal mask changes have already been made. | ||
| 375 | * | ||
| 376 | * Called without locks, shortly before returning to user mode | ||
| 377 | * (or handling more signals). | ||
| 378 | */ | ||
| 379 | static inline void tracehook_signal_handler(int sig, siginfo_t *info, | ||
| 380 | const struct k_sigaction *ka, | ||
| 381 | struct pt_regs *regs, int stepping) | ||
| 382 | { | ||
| 383 | if (stepping) | ||
| 384 | ptrace_notify(SIGTRAP); | ||
| 385 | } | ||
| 386 | |||
| 387 | /** | ||
| 388 | * tracehook_consider_ignored_signal - suppress short-circuit of ignored signal | ||
| 389 | * @task: task receiving the signal | ||
| 390 | * @sig: signal number being sent | ||
| 391 | * @handler: %SIG_IGN or %SIG_DFL | ||
| 392 | * | ||
| 393 | * Return zero iff tracing doesn't care to examine this ignored signal, | ||
| 394 | * so it can short-circuit normal delivery and never even get queued. | ||
| 395 | * Either @handler is %SIG_DFL and @sig's default is ignore, or it's %SIG_IGN. | ||
| 396 | * | ||
| 397 | * Called with @task->sighand->siglock held. | ||
| 398 | */ | ||
| 399 | static inline int tracehook_consider_ignored_signal(struct task_struct *task, | ||
| 400 | int sig, | ||
| 401 | void __user *handler) | ||
| 402 | { | ||
| 403 | return (task_ptrace(task) & PT_PTRACED) != 0; | ||
| 404 | } | ||
| 405 | |||
| 406 | /** | ||
| 407 | * tracehook_consider_fatal_signal - suppress special handling of fatal signal | ||
| 408 | * @task: task receiving the signal | ||
| 409 | * @sig: signal number being sent | ||
| 410 | * @handler: %SIG_DFL or %SIG_IGN | ||
| 411 | * | ||
| 412 | * Return nonzero to prevent special handling of this termination signal. | ||
| 413 | * Normally @handler is %SIG_DFL. It can be %SIG_IGN if @sig is ignored, | ||
| 414 | * in which case force_sig() is about to reset it to %SIG_DFL. | ||
| 415 | * When this returns zero, this signal might cause a quick termination | ||
| 416 | * that does not give the debugger a chance to intercept the signal. | ||
| 417 | * | ||
| 418 | * Called with or without @task->sighand->siglock held. | ||
| 419 | */ | ||
| 420 | static inline int tracehook_consider_fatal_signal(struct task_struct *task, | ||
| 421 | int sig, | ||
| 422 | void __user *handler) | ||
| 423 | { | ||
| 424 | return (task_ptrace(task) & PT_PTRACED) != 0; | ||
| 425 | } | ||
| 426 | |||
| 427 | /** | ||
| 428 | * tracehook_force_sigpending - let tracing force signal_pending(current) on | ||
| 429 | * | ||
| 430 | * Called when recomputing our signal_pending() flag. Return nonzero | ||
| 431 | * to force the signal_pending() flag on, so that tracehook_get_signal() | ||
| 432 | * will be called before the next return to user mode. | ||
| 433 | * | ||
| 434 | * Called with @current->sighand->siglock held. | ||
| 435 | */ | ||
| 436 | static inline int tracehook_force_sigpending(void) | ||
| 437 | { | ||
| 438 | return 0; | ||
| 439 | } | ||
| 440 | |||
| 441 | /** | ||
| 442 | * tracehook_get_signal - deliver synthetic signal to traced task | ||
| 443 | * @task: @current | ||
| 444 | * @regs: task_pt_regs(@current) | ||
| 445 | * @info: details of synthetic signal | ||
| 446 | * @return_ka: sigaction for synthetic signal | ||
| 447 | * | ||
| 448 | * Return zero to check for a real pending signal normally. | ||
| 449 | * Return -1 after releasing the siglock to repeat the check. | ||
| 450 | * Return a signal number to induce an artifical signal delivery, | ||
| 451 | * setting *@info and *@return_ka to specify its details and behavior. | ||
| 452 | * | ||
| 453 | * The @return_ka->sa_handler value controls the disposition of the | ||
| 454 | * signal, no matter the signal number. For %SIG_DFL, the return value | ||
| 455 | * is a representative signal to indicate the behavior (e.g. %SIGTERM | ||
| 456 | * for death, %SIGQUIT for core dump, %SIGSTOP for job control stop, | ||
| 457 | * %SIGTSTP for stop unless in an orphaned pgrp), but the signal number | ||
| 458 | * reported will be @info->si_signo instead. | ||
| 459 | * | ||
| 460 | * Called with @task->sighand->siglock held, before dequeuing pending signals. | ||
| 461 | */ | ||
| 462 | static inline int tracehook_get_signal(struct task_struct *task, | ||
| 463 | struct pt_regs *regs, | ||
| 464 | siginfo_t *info, | ||
| 465 | struct k_sigaction *return_ka) | ||
| 466 | { | ||
| 467 | return 0; | ||
| 468 | } | ||
| 469 | |||
| 470 | /** | ||
| 471 | * tracehook_notify_jctl - report about job control stop/continue | ||
| 472 | * @notify: nonzero if this is the last thread in the group to stop | ||
| 473 | * @why: %CLD_STOPPED or %CLD_CONTINUED | ||
| 474 | * | ||
| 475 | * This is called when we might call do_notify_parent_cldstop(). | ||
| 476 | * It's called when about to stop for job control; we are already in | ||
| 477 | * %TASK_STOPPED state, about to call schedule(). It's also called when | ||
| 478 | * a delayed %CLD_STOPPED or %CLD_CONTINUED report is ready to be made. | ||
| 479 | * | ||
| 480 | * Return nonzero to generate a %SIGCHLD with @why, which is | ||
| 481 | * normal if @notify is nonzero. | ||
| 482 | * | ||
| 483 | * Called with no locks held. | ||
| 484 | */ | ||
| 485 | static inline int tracehook_notify_jctl(int notify, int why) | ||
| 486 | { | ||
| 487 | return notify || (current->ptrace & PT_PTRACED); | ||
| 488 | } | ||
| 489 | |||
| 490 | #define DEATH_REAP -1 | ||
| 491 | #define DEATH_DELAYED_GROUP_LEADER -2 | ||
| 492 | |||
| 493 | /** | ||
| 494 | * tracehook_notify_death - task is dead, ready to notify parent | ||
| 495 | * @task: @current task now exiting | ||
| 496 | * @death_cookie: value to pass to tracehook_report_death() | ||
| 497 | * @group_dead: nonzero if this was the last thread in the group to die | ||
| 498 | * | ||
| 499 | * A return value >= 0 means call do_notify_parent() with that signal | ||
| 500 | * number. Negative return value can be %DEATH_REAP to self-reap right | ||
| 501 | * now, or %DEATH_DELAYED_GROUP_LEADER to a zombie without notifying our | ||
| 502 | * parent. Note that a return value of 0 means a do_notify_parent() call | ||
| 503 | * that sends no signal, but still wakes up a parent blocked in wait*(). | ||
| 504 | * | ||
| 505 | * Called with write_lock_irq(&tasklist_lock) held. | ||
| 506 | */ | ||
| 507 | static inline int tracehook_notify_death(struct task_struct *task, | ||
| 508 | void **death_cookie, int group_dead) | ||
| 509 | { | ||
| 510 | if (task->exit_signal == -1) | ||
| 511 | return task->ptrace ? SIGCHLD : DEATH_REAP; | ||
| 512 | |||
| 513 | /* | ||
| 514 | * If something other than our normal parent is ptracing us, then | ||
| 515 | * send it a SIGCHLD instead of honoring exit_signal. exit_signal | ||
| 516 | * only has special meaning to our real parent. | ||
| 517 | */ | ||
| 518 | if (thread_group_empty(task) && !ptrace_reparented(task)) | ||
| 519 | return task->exit_signal; | ||
| 520 | |||
| 521 | return task->ptrace ? SIGCHLD : DEATH_DELAYED_GROUP_LEADER; | ||
| 522 | } | ||
| 523 | |||
| 524 | /** | ||
| 525 | * tracehook_report_death - task is dead and ready to be reaped | ||
| 526 | * @task: @current task now exiting | ||
| 527 | * @signal: return value from tracheook_notify_death() | ||
| 528 | * @death_cookie: value passed back from tracehook_notify_death() | ||
| 529 | * @group_dead: nonzero if this was the last thread in the group to die | ||
| 530 | * | ||
| 531 | * Thread has just become a zombie or is about to self-reap. If positive, | ||
| 532 | * @signal is the signal number just sent to the parent (usually %SIGCHLD). | ||
| 533 | * If @signal is %DEATH_REAP, this thread will self-reap. If @signal is | ||
| 534 | * %DEATH_DELAYED_GROUP_LEADER, this is a delayed_group_leader() zombie. | ||
| 535 | * The @death_cookie was passed back by tracehook_notify_death(). | ||
| 536 | * | ||
| 537 | * If normal reaping is not inhibited, @task->exit_state might be changing | ||
| 538 | * in parallel. | ||
| 539 | * | ||
| 540 | * Called without locks. | ||
| 541 | */ | ||
| 542 | static inline void tracehook_report_death(struct task_struct *task, | ||
| 543 | int signal, void *death_cookie, | ||
| 544 | int group_dead) | ||
| 545 | { | ||
| 546 | } | ||
| 547 | |||
| 548 | #ifdef TIF_NOTIFY_RESUME | ||
| 549 | /** | ||
| 550 | * set_notify_resume - cause tracehook_notify_resume() to be called | ||
| 551 | * @task: task that will call tracehook_notify_resume() | ||
| 552 | * | ||
| 553 | * Calling this arranges that @task will call tracehook_notify_resume() | ||
| 554 | * before returning to user mode. If it's already running in user mode, | ||
| 555 | * it will enter the kernel and call tracehook_notify_resume() soon. | ||
| 556 | * If it's blocked, it will not be woken. | ||
| 557 | */ | ||
| 558 | static inline void set_notify_resume(struct task_struct *task) | ||
| 559 | { | ||
| 560 | if (!test_and_set_tsk_thread_flag(task, TIF_NOTIFY_RESUME)) | ||
| 561 | kick_process(task); | ||
| 562 | } | ||
| 563 | |||
| 564 | /** | ||
| 565 | * tracehook_notify_resume - report when about to return to user mode | ||
| 566 | * @regs: user-mode registers of @current task | ||
| 567 | * | ||
| 568 | * This is called when %TIF_NOTIFY_RESUME has been set. Now we are | ||
| 569 | * about to return to user mode, and the user state in @regs can be | ||
| 570 | * inspected or adjusted. The caller in arch code has cleared | ||
| 571 | * %TIF_NOTIFY_RESUME before the call. If the flag gets set again | ||
| 572 | * asynchronously, this will be called again before we return to | ||
| 573 | * user mode. | ||
| 574 | * | ||
| 575 | * Called without locks. | ||
| 576 | */ | ||
| 577 | static inline void tracehook_notify_resume(struct pt_regs *regs) | ||
| 578 | { | ||
| 579 | } | ||
| 580 | #endif /* TIF_NOTIFY_RESUME */ | ||
| 581 | |||
| 582 | #endif /* <linux/tracehook.h> */ | ||
diff --git a/include/linux/tty.h b/include/linux/tty.h index 4e5833073aa6..e3579cb086e0 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h | |||
| @@ -317,8 +317,6 @@ extern void tty_wait_until_sent(struct tty_struct *tty, long timeout); | |||
| 317 | extern int tty_check_change(struct tty_struct *tty); | 317 | extern int tty_check_change(struct tty_struct *tty); |
| 318 | extern void stop_tty(struct tty_struct *tty); | 318 | extern void stop_tty(struct tty_struct *tty); |
| 319 | extern void start_tty(struct tty_struct *tty); | 319 | extern void start_tty(struct tty_struct *tty); |
| 320 | extern int tty_register_ldisc(int disc, struct tty_ldisc_ops *new_ldisc); | ||
| 321 | extern int tty_unregister_ldisc(int disc); | ||
| 322 | extern int tty_register_driver(struct tty_driver *driver); | 320 | extern int tty_register_driver(struct tty_driver *driver); |
| 323 | extern int tty_unregister_driver(struct tty_driver *driver); | 321 | extern int tty_unregister_driver(struct tty_driver *driver); |
| 324 | extern struct device *tty_register_device(struct tty_driver *driver, | 322 | extern struct device *tty_register_device(struct tty_driver *driver, |
| @@ -383,6 +381,15 @@ extern void tty_port_init(struct tty_port *port); | |||
| 383 | extern int tty_port_alloc_xmit_buf(struct tty_port *port); | 381 | extern int tty_port_alloc_xmit_buf(struct tty_port *port); |
| 384 | extern void tty_port_free_xmit_buf(struct tty_port *port); | 382 | extern void tty_port_free_xmit_buf(struct tty_port *port); |
| 385 | 383 | ||
| 384 | extern int tty_register_ldisc(int disc, struct tty_ldisc_ops *new_ldisc); | ||
| 385 | extern int tty_unregister_ldisc(int disc); | ||
| 386 | extern int tty_set_ldisc(struct tty_struct *tty, int ldisc); | ||
| 387 | extern int tty_ldisc_setup(struct tty_struct *tty, struct tty_struct *o_tty); | ||
| 388 | extern void tty_ldisc_release(struct tty_struct *tty, struct tty_struct *o_tty); | ||
| 389 | extern void tty_ldisc_init(struct tty_struct *tty); | ||
| 390 | extern void tty_ldisc_begin(void); | ||
| 391 | /* This last one is just for the tty layer internals and shouldn't be used elsewhere */ | ||
| 392 | extern void tty_ldisc_enable(struct tty_struct *tty); | ||
| 386 | 393 | ||
| 387 | 394 | ||
| 388 | /* n_tty.c */ | 395 | /* n_tty.c */ |
diff --git a/include/linux/tty_driver.h b/include/linux/tty_driver.h index d2a003586761..e1065ac0d922 100644 --- a/include/linux/tty_driver.h +++ b/include/linux/tty_driver.h | |||
| @@ -135,7 +135,7 @@ | |||
| 135 | * | 135 | * |
| 136 | * Optional: | 136 | * Optional: |
| 137 | * | 137 | * |
| 138 | * void (*break_ctl)(struct tty_stuct *tty, int state); | 138 | * int (*break_ctl)(struct tty_stuct *tty, int state); |
| 139 | * | 139 | * |
| 140 | * This optional routine requests the tty driver to turn on or | 140 | * This optional routine requests the tty driver to turn on or |
| 141 | * off BREAK status on the RS-232 port. If state is -1, | 141 | * off BREAK status on the RS-232 port. If state is -1, |
| @@ -146,6 +146,10 @@ | |||
| 146 | * handle the following ioctls: TCSBRK, TCSBRKP, TIOCSBRK, | 146 | * handle the following ioctls: TCSBRK, TCSBRKP, TIOCSBRK, |
| 147 | * TIOCCBRK. | 147 | * TIOCCBRK. |
| 148 | * | 148 | * |
| 149 | * If the driver sets TTY_DRIVER_HARDWARE_BREAK then the interface | ||
| 150 | * will also be called with actual times and the hardware is expected | ||
| 151 | * to do the delay work itself. 0 and -1 are still used for on/off. | ||
| 152 | * | ||
| 149 | * Optional: Required for TCSBRK/BRKP/etc handling. | 153 | * Optional: Required for TCSBRK/BRKP/etc handling. |
| 150 | * | 154 | * |
| 151 | * void (*wait_until_sent)(struct tty_struct *tty, int timeout); | 155 | * void (*wait_until_sent)(struct tty_struct *tty, int timeout); |
| @@ -192,7 +196,7 @@ struct tty_operations { | |||
| 192 | void (*stop)(struct tty_struct *tty); | 196 | void (*stop)(struct tty_struct *tty); |
| 193 | void (*start)(struct tty_struct *tty); | 197 | void (*start)(struct tty_struct *tty); |
| 194 | void (*hangup)(struct tty_struct *tty); | 198 | void (*hangup)(struct tty_struct *tty); |
| 195 | void (*break_ctl)(struct tty_struct *tty, int state); | 199 | int (*break_ctl)(struct tty_struct *tty, int state); |
| 196 | void (*flush_buffer)(struct tty_struct *tty); | 200 | void (*flush_buffer)(struct tty_struct *tty); |
| 197 | void (*set_ldisc)(struct tty_struct *tty); | 201 | void (*set_ldisc)(struct tty_struct *tty); |
| 198 | void (*wait_until_sent)(struct tty_struct *tty, int timeout); | 202 | void (*wait_until_sent)(struct tty_struct *tty, int timeout); |
| @@ -285,12 +289,18 @@ extern struct tty_driver *tty_find_polling_driver(char *name, int *line); | |||
| 285 | * TTY_DRIVER_DEVPTS_MEM -- don't use the standard arrays, instead | 289 | * TTY_DRIVER_DEVPTS_MEM -- don't use the standard arrays, instead |
| 286 | * use dynamic memory keyed through the devpts filesystem. This | 290 | * use dynamic memory keyed through the devpts filesystem. This |
| 287 | * is only applicable to the pty driver. | 291 | * is only applicable to the pty driver. |
| 292 | * | ||
| 293 | * TTY_DRIVER_HARDWARE_BREAK -- hardware handles break signals. Pass | ||
| 294 | * the requested timeout to the caller instead of using a simple | ||
| 295 | * on/off interface. | ||
| 296 | * | ||
| 288 | */ | 297 | */ |
| 289 | #define TTY_DRIVER_INSTALLED 0x0001 | 298 | #define TTY_DRIVER_INSTALLED 0x0001 |
| 290 | #define TTY_DRIVER_RESET_TERMIOS 0x0002 | 299 | #define TTY_DRIVER_RESET_TERMIOS 0x0002 |
| 291 | #define TTY_DRIVER_REAL_RAW 0x0004 | 300 | #define TTY_DRIVER_REAL_RAW 0x0004 |
| 292 | #define TTY_DRIVER_DYNAMIC_DEV 0x0008 | 301 | #define TTY_DRIVER_DYNAMIC_DEV 0x0008 |
| 293 | #define TTY_DRIVER_DEVPTS_MEM 0x0010 | 302 | #define TTY_DRIVER_DEVPTS_MEM 0x0010 |
| 303 | #define TTY_DRIVER_HARDWARE_BREAK 0x0020 | ||
| 294 | 304 | ||
| 295 | /* tty driver types */ | 305 | /* tty driver types */ |
| 296 | #define TTY_DRIVER_TYPE_SYSTEM 0x0001 | 306 | #define TTY_DRIVER_TYPE_SYSTEM 0x0001 |
diff --git a/include/linux/typecheck.h b/include/linux/typecheck.h new file mode 100644 index 000000000000..eb5b74a575be --- /dev/null +++ b/include/linux/typecheck.h | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | #ifndef TYPECHECK_H_INCLUDED | ||
| 2 | #define TYPECHECK_H_INCLUDED | ||
| 3 | |||
| 4 | /* | ||
| 5 | * Check at compile time that something is of a particular type. | ||
| 6 | * Always evaluates to 1 so you may use it easily in comparisons. | ||
| 7 | */ | ||
| 8 | #define typecheck(type,x) \ | ||
| 9 | ({ type __dummy; \ | ||
| 10 | typeof(x) __dummy2; \ | ||
| 11 | (void)(&__dummy == &__dummy2); \ | ||
| 12 | 1; \ | ||
| 13 | }) | ||
| 14 | |||
| 15 | /* | ||
| 16 | * Check at compile time that 'function' is a certain type, or is a pointer | ||
| 17 | * to that type (needs to use typedef for the function type.) | ||
| 18 | */ | ||
| 19 | #define typecheck_fn(type,function) \ | ||
| 20 | ({ typeof(type) __tmp = function; \ | ||
| 21 | (void)__tmp; \ | ||
| 22 | }) | ||
| 23 | |||
| 24 | #endif /* TYPECHECK_H_INCLUDED */ | ||
diff --git a/include/linux/uio_driver.h b/include/linux/uio_driver.h index 973386d439da..cdf338d94b7f 100644 --- a/include/linux/uio_driver.h +++ b/include/linux/uio_driver.h | |||
| @@ -36,7 +36,7 @@ struct uio_mem { | |||
| 36 | struct uio_map *map; | 36 | struct uio_map *map; |
| 37 | }; | 37 | }; |
| 38 | 38 | ||
| 39 | #define MAX_UIO_MAPS 5 | 39 | #define MAX_UIO_MAPS 5 |
| 40 | 40 | ||
| 41 | struct uio_device; | 41 | struct uio_device; |
| 42 | 42 | ||
| @@ -53,6 +53,7 @@ struct uio_device; | |||
| 53 | * @mmap: mmap operation for this uio device | 53 | * @mmap: mmap operation for this uio device |
| 54 | * @open: open operation for this uio device | 54 | * @open: open operation for this uio device |
| 55 | * @release: release operation for this uio device | 55 | * @release: release operation for this uio device |
| 56 | * @irqcontrol: disable/enable irqs when 0/1 is written to /dev/uioX | ||
| 56 | */ | 57 | */ |
| 57 | struct uio_info { | 58 | struct uio_info { |
| 58 | struct uio_device *uio_dev; | 59 | struct uio_device *uio_dev; |
| @@ -66,6 +67,7 @@ struct uio_info { | |||
| 66 | int (*mmap)(struct uio_info *info, struct vm_area_struct *vma); | 67 | int (*mmap)(struct uio_info *info, struct vm_area_struct *vma); |
| 67 | int (*open)(struct uio_info *info, struct inode *inode); | 68 | int (*open)(struct uio_info *info, struct inode *inode); |
| 68 | int (*release)(struct uio_info *info, struct inode *inode); | 69 | int (*release)(struct uio_info *info, struct inode *inode); |
| 70 | int (*irqcontrol)(struct uio_info *info, s32 irq_on); | ||
| 69 | }; | 71 | }; |
| 70 | 72 | ||
| 71 | extern int __must_check | 73 | extern int __must_check |
| @@ -80,11 +82,11 @@ static inline int __must_check | |||
| 80 | extern void uio_unregister_device(struct uio_info *info); | 82 | extern void uio_unregister_device(struct uio_info *info); |
| 81 | extern void uio_event_notify(struct uio_info *info); | 83 | extern void uio_event_notify(struct uio_info *info); |
| 82 | 84 | ||
| 83 | /* defines for uio_device->irq */ | 85 | /* defines for uio_info->irq */ |
| 84 | #define UIO_IRQ_CUSTOM -1 | 86 | #define UIO_IRQ_CUSTOM -1 |
| 85 | #define UIO_IRQ_NONE -2 | 87 | #define UIO_IRQ_NONE -2 |
| 86 | 88 | ||
| 87 | /* defines for uio_device->memtype */ | 89 | /* defines for uio_mem->memtype */ |
| 88 | #define UIO_MEM_NONE 0 | 90 | #define UIO_MEM_NONE 0 |
| 89 | #define UIO_MEM_PHYS 1 | 91 | #define UIO_MEM_PHYS 1 |
| 90 | #define UIO_MEM_LOGICAL 2 | 92 | #define UIO_MEM_LOGICAL 2 |
diff --git a/include/linux/usb/composite.h b/include/linux/usb/composite.h index 747c3a49cdc9..c932390c6da0 100644 --- a/include/linux/usb/composite.h +++ b/include/linux/usb/composite.h | |||
| @@ -330,7 +330,7 @@ extern int usb_string_id(struct usb_composite_dev *c); | |||
| 330 | dev_vdbg(&(d)->gadget->dev , fmt , ## args) | 330 | dev_vdbg(&(d)->gadget->dev , fmt , ## args) |
| 331 | #define ERROR(d, fmt, args...) \ | 331 | #define ERROR(d, fmt, args...) \ |
| 332 | dev_err(&(d)->gadget->dev , fmt , ## args) | 332 | dev_err(&(d)->gadget->dev , fmt , ## args) |
| 333 | #define WARN(d, fmt, args...) \ | 333 | #define WARNING(d, fmt, args...) \ |
| 334 | dev_warn(&(d)->gadget->dev , fmt , ## args) | 334 | dev_warn(&(d)->gadget->dev , fmt , ## args) |
| 335 | #define INFO(d, fmt, args...) \ | 335 | #define INFO(d, fmt, args...) \ |
| 336 | dev_info(&(d)->gadget->dev , fmt , ## args) | 336 | dev_info(&(d)->gadget->dev , fmt , ## args) |
diff --git a/include/linux/usb/serial.h b/include/linux/usb/serial.h index 8f891cbaf9ab..09a3e6a7518f 100644 --- a/include/linux/usb/serial.h +++ b/include/linux/usb/serial.h | |||
| @@ -62,7 +62,7 @@ | |||
| 62 | */ | 62 | */ |
| 63 | struct usb_serial_port { | 63 | struct usb_serial_port { |
| 64 | struct usb_serial *serial; | 64 | struct usb_serial *serial; |
| 65 | struct tty_struct *tty; | 65 | struct tty_port port; |
| 66 | spinlock_t lock; | 66 | spinlock_t lock; |
| 67 | struct mutex mutex; | 67 | struct mutex mutex; |
| 68 | unsigned char number; | 68 | unsigned char number; |
| @@ -89,7 +89,6 @@ struct usb_serial_port { | |||
| 89 | 89 | ||
| 90 | wait_queue_head_t write_wait; | 90 | wait_queue_head_t write_wait; |
| 91 | struct work_struct work; | 91 | struct work_struct work; |
| 92 | int open_count; | ||
| 93 | char throttled; | 92 | char throttled; |
| 94 | char throttle_req; | 93 | char throttle_req; |
| 95 | char console; | 94 | char console; |
| @@ -217,22 +216,27 @@ struct usb_serial_driver { | |||
| 217 | int (*resume)(struct usb_serial *serial); | 216 | int (*resume)(struct usb_serial *serial); |
| 218 | 217 | ||
| 219 | /* serial function calls */ | 218 | /* serial function calls */ |
| 220 | int (*open)(struct usb_serial_port *port, struct file *filp); | 219 | /* Called by console with tty = NULL and by tty */ |
| 221 | void (*close)(struct usb_serial_port *port, struct file *filp); | 220 | int (*open)(struct tty_struct *tty, |
| 222 | int (*write)(struct usb_serial_port *port, const unsigned char *buf, | 221 | struct usb_serial_port *port, struct file *filp); |
| 223 | int count); | 222 | void (*close)(struct tty_struct *tty, |
| 224 | int (*write_room)(struct usb_serial_port *port); | 223 | struct usb_serial_port *port, struct file *filp); |
| 225 | int (*ioctl)(struct usb_serial_port *port, struct file *file, | 224 | int (*write)(struct tty_struct *tty, struct usb_serial_port *port, |
| 225 | const unsigned char *buf, int count); | ||
| 226 | /* Called only by the tty layer */ | ||
| 227 | int (*write_room)(struct tty_struct *tty); | ||
| 228 | int (*ioctl)(struct tty_struct *tty, struct file *file, | ||
| 226 | unsigned int cmd, unsigned long arg); | 229 | unsigned int cmd, unsigned long arg); |
| 227 | void (*set_termios)(struct usb_serial_port *port, struct ktermios *old); | 230 | void (*set_termios)(struct tty_struct *tty, |
| 228 | void (*break_ctl)(struct usb_serial_port *port, int break_state); | 231 | struct usb_serial_port *port, struct ktermios *old); |
| 229 | int (*chars_in_buffer)(struct usb_serial_port *port); | 232 | void (*break_ctl)(struct tty_struct *tty, int break_state); |
| 230 | void (*throttle)(struct usb_serial_port *port); | 233 | int (*chars_in_buffer)(struct tty_struct *tty); |
| 231 | void (*unthrottle)(struct usb_serial_port *port); | 234 | void (*throttle)(struct tty_struct *tty); |
| 232 | int (*tiocmget)(struct usb_serial_port *port, struct file *file); | 235 | void (*unthrottle)(struct tty_struct *tty); |
| 233 | int (*tiocmset)(struct usb_serial_port *port, struct file *file, | 236 | int (*tiocmget)(struct tty_struct *tty, struct file *file); |
| 237 | int (*tiocmset)(struct tty_struct *tty, struct file *file, | ||
| 234 | unsigned int set, unsigned int clear); | 238 | unsigned int set, unsigned int clear); |
| 235 | 239 | /* USB events */ | |
| 236 | void (*read_int_callback)(struct urb *urb); | 240 | void (*read_int_callback)(struct urb *urb); |
| 237 | void (*write_int_callback)(struct urb *urb); | 241 | void (*write_int_callback)(struct urb *urb); |
| 238 | void (*read_bulk_callback)(struct urb *urb); | 242 | void (*read_bulk_callback)(struct urb *urb); |
| @@ -270,19 +274,19 @@ static inline void usb_serial_console_disconnect(struct usb_serial *serial) {} | |||
| 270 | /* Functions needed by other parts of the usbserial core */ | 274 | /* Functions needed by other parts of the usbserial core */ |
| 271 | extern struct usb_serial *usb_serial_get_by_index(unsigned int minor); | 275 | extern struct usb_serial *usb_serial_get_by_index(unsigned int minor); |
| 272 | extern void usb_serial_put(struct usb_serial *serial); | 276 | extern void usb_serial_put(struct usb_serial *serial); |
| 273 | extern int usb_serial_generic_open(struct usb_serial_port *port, | 277 | extern int usb_serial_generic_open(struct tty_struct *tty, |
| 274 | struct file *filp); | 278 | struct usb_serial_port *port, struct file *filp); |
| 275 | extern int usb_serial_generic_write(struct usb_serial_port *port, | 279 | extern int usb_serial_generic_write(struct tty_struct *tty, |
| 276 | const unsigned char *buf, int count); | 280 | struct usb_serial_port *port, const unsigned char *buf, int count); |
| 277 | extern void usb_serial_generic_close(struct usb_serial_port *port, | 281 | extern void usb_serial_generic_close(struct tty_struct *tty, |
| 278 | struct file *filp); | 282 | struct usb_serial_port *port, struct file *filp); |
| 279 | extern int usb_serial_generic_resume(struct usb_serial *serial); | 283 | extern int usb_serial_generic_resume(struct usb_serial *serial); |
| 280 | extern int usb_serial_generic_write_room(struct usb_serial_port *port); | 284 | extern int usb_serial_generic_write_room(struct tty_struct *tty); |
| 281 | extern int usb_serial_generic_chars_in_buffer(struct usb_serial_port *port); | 285 | extern int usb_serial_generic_chars_in_buffer(struct tty_struct *tty); |
| 282 | extern void usb_serial_generic_read_bulk_callback(struct urb *urb); | 286 | extern void usb_serial_generic_read_bulk_callback(struct urb *urb); |
| 283 | extern void usb_serial_generic_write_bulk_callback(struct urb *urb); | 287 | extern void usb_serial_generic_write_bulk_callback(struct urb *urb); |
| 284 | extern void usb_serial_generic_throttle(struct usb_serial_port *port); | 288 | extern void usb_serial_generic_throttle(struct tty_struct *tty); |
| 285 | extern void usb_serial_generic_unthrottle(struct usb_serial_port *port); | 289 | extern void usb_serial_generic_unthrottle(struct tty_struct *tty); |
| 286 | extern void usb_serial_generic_shutdown(struct usb_serial *serial); | 290 | extern void usb_serial_generic_shutdown(struct usb_serial *serial); |
| 287 | extern int usb_serial_generic_register(int debug); | 291 | extern int usb_serial_generic_register(int debug); |
| 288 | extern void usb_serial_generic_deregister(void); | 292 | extern void usb_serial_generic_deregister(void); |
diff --git a/include/linux/videodev.h b/include/linux/videodev.h index 9385a566aed8..15a653d41132 100644 --- a/include/linux/videodev.h +++ b/include/linux/videodev.h | |||
| @@ -17,6 +17,21 @@ | |||
| 17 | 17 | ||
| 18 | #if defined(CONFIG_VIDEO_V4L1_COMPAT) || !defined (__KERNEL__) | 18 | #if defined(CONFIG_VIDEO_V4L1_COMPAT) || !defined (__KERNEL__) |
| 19 | 19 | ||
| 20 | #define VID_TYPE_CAPTURE 1 /* Can capture */ | ||
| 21 | #define VID_TYPE_TUNER 2 /* Can tune */ | ||
| 22 | #define VID_TYPE_TELETEXT 4 /* Does teletext */ | ||
| 23 | #define VID_TYPE_OVERLAY 8 /* Overlay onto frame buffer */ | ||
| 24 | #define VID_TYPE_CHROMAKEY 16 /* Overlay by chromakey */ | ||
| 25 | #define VID_TYPE_CLIPPING 32 /* Can clip */ | ||
| 26 | #define VID_TYPE_FRAMERAM 64 /* Uses the frame buffer memory */ | ||
| 27 | #define VID_TYPE_SCALES 128 /* Scalable */ | ||
| 28 | #define VID_TYPE_MONOCHROME 256 /* Monochrome only */ | ||
| 29 | #define VID_TYPE_SUBCAPTURE 512 /* Can capture subareas of the image */ | ||
| 30 | #define VID_TYPE_MPEG_DECODER 1024 /* Can decode MPEG streams */ | ||
| 31 | #define VID_TYPE_MPEG_ENCODER 2048 /* Can encode MPEG streams */ | ||
| 32 | #define VID_TYPE_MJPEG_DECODER 4096 /* Can decode MJPEG streams */ | ||
| 33 | #define VID_TYPE_MJPEG_ENCODER 8192 /* Can encode MJPEG streams */ | ||
| 34 | |||
| 20 | struct video_capability | 35 | struct video_capability |
| 21 | { | 36 | { |
| 22 | char name[32]; | 37 | char name[32]; |
diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h index 2e66a95e8d32..e466bd54a50e 100644 --- a/include/linux/videodev2.h +++ b/include/linux/videodev2.h | |||
| @@ -71,6 +71,11 @@ | |||
| 71 | */ | 71 | */ |
| 72 | #define VIDEO_MAX_FRAME 32 | 72 | #define VIDEO_MAX_FRAME 32 |
| 73 | 73 | ||
| 74 | #ifndef __KERNEL__ | ||
| 75 | |||
| 76 | /* These defines are V4L1 specific and should not be used with the V4L2 API! | ||
| 77 | They will be removed from this header in the future. */ | ||
| 78 | |||
| 74 | #define VID_TYPE_CAPTURE 1 /* Can capture */ | 79 | #define VID_TYPE_CAPTURE 1 /* Can capture */ |
| 75 | #define VID_TYPE_TUNER 2 /* Can tune */ | 80 | #define VID_TYPE_TUNER 2 /* Can tune */ |
| 76 | #define VID_TYPE_TELETEXT 4 /* Does teletext */ | 81 | #define VID_TYPE_TELETEXT 4 /* Does teletext */ |
| @@ -85,14 +90,15 @@ | |||
| 85 | #define VID_TYPE_MPEG_ENCODER 2048 /* Can encode MPEG streams */ | 90 | #define VID_TYPE_MPEG_ENCODER 2048 /* Can encode MPEG streams */ |
| 86 | #define VID_TYPE_MJPEG_DECODER 4096 /* Can decode MJPEG streams */ | 91 | #define VID_TYPE_MJPEG_DECODER 4096 /* Can decode MJPEG streams */ |
| 87 | #define VID_TYPE_MJPEG_ENCODER 8192 /* Can encode MJPEG streams */ | 92 | #define VID_TYPE_MJPEG_ENCODER 8192 /* Can encode MJPEG streams */ |
| 93 | #endif | ||
| 88 | 94 | ||
| 89 | /* | 95 | /* |
| 90 | * M I S C E L L A N E O U S | 96 | * M I S C E L L A N E O U S |
| 91 | */ | 97 | */ |
| 92 | 98 | ||
| 93 | /* Four-character-code (FOURCC) */ | 99 | /* Four-character-code (FOURCC) */ |
| 94 | #define v4l2_fourcc(a,b,c,d)\ | 100 | #define v4l2_fourcc(a, b, c, d)\ |
| 95 | (((__u32)(a)<<0)|((__u32)(b)<<8)|((__u32)(c)<<16)|((__u32)(d)<<24)) | 101 | ((__u32)(a) | ((__u32)(b) << 8) | ((__u32)(c) << 16) | ((__u32)(d) << 24)) |
| 96 | 102 | ||
| 97 | /* | 103 | /* |
| 98 | * E N U M S | 104 | * E N U M S |
| @@ -226,8 +232,7 @@ struct v4l2_fract { | |||
| 226 | /* | 232 | /* |
| 227 | * D R I V E R C A P A B I L I T I E S | 233 | * D R I V E R C A P A B I L I T I E S |
| 228 | */ | 234 | */ |
| 229 | struct v4l2_capability | 235 | struct v4l2_capability { |
| 230 | { | ||
| 231 | __u8 driver[16]; /* i.e. "bttv" */ | 236 | __u8 driver[16]; /* i.e. "bttv" */ |
| 232 | __u8 card[32]; /* i.e. "Hauppauge WinTV" */ | 237 | __u8 card[32]; /* i.e. "Hauppauge WinTV" */ |
| 233 | __u8 bus_info[32]; /* "PCI:" + pci_name(pci_dev) */ | 238 | __u8 bus_info[32]; /* "PCI:" + pci_name(pci_dev) */ |
| @@ -259,8 +264,7 @@ struct v4l2_capability | |||
| 259 | /* | 264 | /* |
| 260 | * V I D E O I M A G E F O R M A T | 265 | * V I D E O I M A G E F O R M A T |
| 261 | */ | 266 | */ |
| 262 | struct v4l2_pix_format | 267 | struct v4l2_pix_format { |
| 263 | { | ||
| 264 | __u32 width; | 268 | __u32 width; |
| 265 | __u32 height; | 269 | __u32 height; |
| 266 | __u32 pixelformat; | 270 | __u32 pixelformat; |
| @@ -272,68 +276,69 @@ struct v4l2_pix_format | |||
| 272 | }; | 276 | }; |
| 273 | 277 | ||
| 274 | /* Pixel format FOURCC depth Description */ | 278 | /* Pixel format FOURCC depth Description */ |
| 275 | #define V4L2_PIX_FMT_RGB332 v4l2_fourcc('R','G','B','1') /* 8 RGB-3-3-2 */ | 279 | #define V4L2_PIX_FMT_RGB332 v4l2_fourcc('R', 'G', 'B', '1') /* 8 RGB-3-3-2 */ |
| 276 | #define V4L2_PIX_FMT_RGB444 v4l2_fourcc('R','4','4','4') /* 16 xxxxrrrr ggggbbbb */ | 280 | #define V4L2_PIX_FMT_RGB444 v4l2_fourcc('R', '4', '4', '4') /* 16 xxxxrrrr ggggbbbb */ |
| 277 | #define V4L2_PIX_FMT_RGB555 v4l2_fourcc('R','G','B','O') /* 16 RGB-5-5-5 */ | 281 | #define V4L2_PIX_FMT_RGB555 v4l2_fourcc('R', 'G', 'B', 'O') /* 16 RGB-5-5-5 */ |
| 278 | #define V4L2_PIX_FMT_RGB565 v4l2_fourcc('R','G','B','P') /* 16 RGB-5-6-5 */ | 282 | #define V4L2_PIX_FMT_RGB565 v4l2_fourcc('R', 'G', 'B', 'P') /* 16 RGB-5-6-5 */ |
| 279 | #define V4L2_PIX_FMT_RGB555X v4l2_fourcc('R','G','B','Q') /* 16 RGB-5-5-5 BE */ | 283 | #define V4L2_PIX_FMT_RGB555X v4l2_fourcc('R', 'G', 'B', 'Q') /* 16 RGB-5-5-5 BE */ |
| 280 | #define V4L2_PIX_FMT_RGB565X v4l2_fourcc('R','G','B','R') /* 16 RGB-5-6-5 BE */ | 284 | #define V4L2_PIX_FMT_RGB565X v4l2_fourcc('R', 'G', 'B', 'R') /* 16 RGB-5-6-5 BE */ |
| 281 | #define V4L2_PIX_FMT_BGR24 v4l2_fourcc('B','G','R','3') /* 24 BGR-8-8-8 */ | 285 | #define V4L2_PIX_FMT_BGR24 v4l2_fourcc('B', 'G', 'R', '3') /* 24 BGR-8-8-8 */ |
| 282 | #define V4L2_PIX_FMT_RGB24 v4l2_fourcc('R','G','B','3') /* 24 RGB-8-8-8 */ | 286 | #define V4L2_PIX_FMT_RGB24 v4l2_fourcc('R', 'G', 'B', '3') /* 24 RGB-8-8-8 */ |
| 283 | #define V4L2_PIX_FMT_BGR32 v4l2_fourcc('B','G','R','4') /* 32 BGR-8-8-8-8 */ | 287 | #define V4L2_PIX_FMT_BGR32 v4l2_fourcc('B', 'G', 'R', '4') /* 32 BGR-8-8-8-8 */ |
| 284 | #define V4L2_PIX_FMT_RGB32 v4l2_fourcc('R','G','B','4') /* 32 RGB-8-8-8-8 */ | 288 | #define V4L2_PIX_FMT_RGB32 v4l2_fourcc('R', 'G', 'B', '4') /* 32 RGB-8-8-8-8 */ |
| 285 | #define V4L2_PIX_FMT_GREY v4l2_fourcc('G','R','E','Y') /* 8 Greyscale */ | 289 | #define V4L2_PIX_FMT_GREY v4l2_fourcc('G', 'R', 'E', 'Y') /* 8 Greyscale */ |
| 286 | #define V4L2_PIX_FMT_Y16 v4l2_fourcc('Y','1','6',' ') /* 16 Greyscale */ | 290 | #define V4L2_PIX_FMT_Y16 v4l2_fourcc('Y', '1', '6', ' ') /* 16 Greyscale */ |
| 287 | #define V4L2_PIX_FMT_PAL8 v4l2_fourcc('P','A','L','8') /* 8 8-bit palette */ | 291 | #define V4L2_PIX_FMT_PAL8 v4l2_fourcc('P', 'A', 'L', '8') /* 8 8-bit palette */ |
| 288 | #define V4L2_PIX_FMT_YVU410 v4l2_fourcc('Y','V','U','9') /* 9 YVU 4:1:0 */ | 292 | #define V4L2_PIX_FMT_YVU410 v4l2_fourcc('Y', 'V', 'U', '9') /* 9 YVU 4:1:0 */ |
| 289 | #define V4L2_PIX_FMT_YVU420 v4l2_fourcc('Y','V','1','2') /* 12 YVU 4:2:0 */ | 293 | #define V4L2_PIX_FMT_YVU420 v4l2_fourcc('Y', 'V', '1', '2') /* 12 YVU 4:2:0 */ |
| 290 | #define V4L2_PIX_FMT_YUYV v4l2_fourcc('Y','U','Y','V') /* 16 YUV 4:2:2 */ | 294 | #define V4L2_PIX_FMT_YUYV v4l2_fourcc('Y', 'U', 'Y', 'V') /* 16 YUV 4:2:2 */ |
| 291 | #define V4L2_PIX_FMT_UYVY v4l2_fourcc('U','Y','V','Y') /* 16 YUV 4:2:2 */ | 295 | #define V4L2_PIX_FMT_UYVY v4l2_fourcc('U', 'Y', 'V', 'Y') /* 16 YUV 4:2:2 */ |
| 292 | #define V4L2_PIX_FMT_YUV422P v4l2_fourcc('4','2','2','P') /* 16 YVU422 planar */ | 296 | #define V4L2_PIX_FMT_YUV422P v4l2_fourcc('4', '2', '2', 'P') /* 16 YVU422 planar */ |
| 293 | #define V4L2_PIX_FMT_YUV411P v4l2_fourcc('4','1','1','P') /* 16 YVU411 planar */ | 297 | #define V4L2_PIX_FMT_YUV411P v4l2_fourcc('4', '1', '1', 'P') /* 16 YVU411 planar */ |
| 294 | #define V4L2_PIX_FMT_Y41P v4l2_fourcc('Y','4','1','P') /* 12 YUV 4:1:1 */ | 298 | #define V4L2_PIX_FMT_Y41P v4l2_fourcc('Y', '4', '1', 'P') /* 12 YUV 4:1:1 */ |
| 295 | #define V4L2_PIX_FMT_YUV444 v4l2_fourcc('Y','4','4','4') /* 16 xxxxyyyy uuuuvvvv */ | 299 | #define V4L2_PIX_FMT_YUV444 v4l2_fourcc('Y', '4', '4', '4') /* 16 xxxxyyyy uuuuvvvv */ |
| 296 | #define V4L2_PIX_FMT_YUV555 v4l2_fourcc('Y','U','V','O') /* 16 YUV-5-5-5 */ | 300 | #define V4L2_PIX_FMT_YUV555 v4l2_fourcc('Y', 'U', 'V', 'O') /* 16 YUV-5-5-5 */ |
| 297 | #define V4L2_PIX_FMT_YUV565 v4l2_fourcc('Y','U','V','P') /* 16 YUV-5-6-5 */ | 301 | #define V4L2_PIX_FMT_YUV565 v4l2_fourcc('Y', 'U', 'V', 'P') /* 16 YUV-5-6-5 */ |
| 298 | #define V4L2_PIX_FMT_YUV32 v4l2_fourcc('Y','U','V','4') /* 32 YUV-8-8-8-8 */ | 302 | #define V4L2_PIX_FMT_YUV32 v4l2_fourcc('Y', 'U', 'V', '4') /* 32 YUV-8-8-8-8 */ |
| 299 | 303 | ||
| 300 | /* two planes -- one Y, one Cr + Cb interleaved */ | 304 | /* two planes -- one Y, one Cr + Cb interleaved */ |
| 301 | #define V4L2_PIX_FMT_NV12 v4l2_fourcc('N','V','1','2') /* 12 Y/CbCr 4:2:0 */ | 305 | #define V4L2_PIX_FMT_NV12 v4l2_fourcc('N', 'V', '1', '2') /* 12 Y/CbCr 4:2:0 */ |
| 302 | #define V4L2_PIX_FMT_NV21 v4l2_fourcc('N','V','2','1') /* 12 Y/CrCb 4:2:0 */ | 306 | #define V4L2_PIX_FMT_NV21 v4l2_fourcc('N', 'V', '2', '1') /* 12 Y/CrCb 4:2:0 */ |
| 303 | 307 | ||
| 304 | /* The following formats are not defined in the V4L2 specification */ | 308 | /* The following formats are not defined in the V4L2 specification */ |
| 305 | #define V4L2_PIX_FMT_YUV410 v4l2_fourcc('Y','U','V','9') /* 9 YUV 4:1:0 */ | 309 | #define V4L2_PIX_FMT_YUV410 v4l2_fourcc('Y', 'U', 'V', '9') /* 9 YUV 4:1:0 */ |
| 306 | #define V4L2_PIX_FMT_YUV420 v4l2_fourcc('Y','U','1','2') /* 12 YUV 4:2:0 */ | 310 | #define V4L2_PIX_FMT_YUV420 v4l2_fourcc('Y', 'U', '1', '2') /* 12 YUV 4:2:0 */ |
| 307 | #define V4L2_PIX_FMT_YYUV v4l2_fourcc('Y','Y','U','V') /* 16 YUV 4:2:2 */ | 311 | #define V4L2_PIX_FMT_YYUV v4l2_fourcc('Y', 'Y', 'U', 'V') /* 16 YUV 4:2:2 */ |
| 308 | #define V4L2_PIX_FMT_HI240 v4l2_fourcc('H','I','2','4') /* 8 8-bit color */ | 312 | #define V4L2_PIX_FMT_HI240 v4l2_fourcc('H', 'I', '2', '4') /* 8 8-bit color */ |
| 309 | #define V4L2_PIX_FMT_HM12 v4l2_fourcc('H','M','1','2') /* 8 YUV 4:2:0 16x16 macroblocks */ | 313 | #define V4L2_PIX_FMT_HM12 v4l2_fourcc('H', 'M', '1', '2') /* 8 YUV 4:2:0 16x16 macroblocks */ |
| 310 | 314 | ||
| 311 | /* see http://www.siliconimaging.com/RGB%20Bayer.htm */ | 315 | /* see http://www.siliconimaging.com/RGB%20Bayer.htm */ |
| 312 | #define V4L2_PIX_FMT_SBGGR8 v4l2_fourcc('B','A','8','1') /* 8 BGBG.. GRGR.. */ | 316 | #define V4L2_PIX_FMT_SBGGR8 v4l2_fourcc('B', 'A', '8', '1') /* 8 BGBG.. GRGR.. */ |
| 313 | #define V4L2_PIX_FMT_SGBRG8 v4l2_fourcc('G','B','R','G') /* 8 GBGB.. RGRG.. */ | 317 | #define V4L2_PIX_FMT_SGBRG8 v4l2_fourcc('G', 'B', 'R', 'G') /* 8 GBGB.. RGRG.. */ |
| 314 | #define V4L2_PIX_FMT_SBGGR16 v4l2_fourcc('B','Y','R','2') /* 16 BGBG.. GRGR.. */ | 318 | #define V4L2_PIX_FMT_SBGGR16 v4l2_fourcc('B', 'Y', 'R', '2') /* 16 BGBG.. GRGR.. */ |
| 315 | 319 | ||
| 316 | /* compressed formats */ | 320 | /* compressed formats */ |
| 317 | #define V4L2_PIX_FMT_MJPEG v4l2_fourcc('M','J','P','G') /* Motion-JPEG */ | 321 | #define V4L2_PIX_FMT_MJPEG v4l2_fourcc('M', 'J', 'P', 'G') /* Motion-JPEG */ |
| 318 | #define V4L2_PIX_FMT_JPEG v4l2_fourcc('J','P','E','G') /* JFIF JPEG */ | 322 | #define V4L2_PIX_FMT_JPEG v4l2_fourcc('J', 'P', 'E', 'G') /* JFIF JPEG */ |
| 319 | #define V4L2_PIX_FMT_DV v4l2_fourcc('d','v','s','d') /* 1394 */ | 323 | #define V4L2_PIX_FMT_DV v4l2_fourcc('d', 'v', 's', 'd') /* 1394 */ |
| 320 | #define V4L2_PIX_FMT_MPEG v4l2_fourcc('M','P','E','G') /* MPEG-1/2/4 */ | 324 | #define V4L2_PIX_FMT_MPEG v4l2_fourcc('M', 'P', 'E', 'G') /* MPEG-1/2/4 */ |
| 321 | 325 | ||
| 322 | /* Vendor-specific formats */ | 326 | /* Vendor-specific formats */ |
| 323 | #define V4L2_PIX_FMT_WNVA v4l2_fourcc('W','N','V','A') /* Winnov hw compress */ | 327 | #define V4L2_PIX_FMT_WNVA v4l2_fourcc('W', 'N', 'V', 'A') /* Winnov hw compress */ |
| 324 | #define V4L2_PIX_FMT_SN9C10X v4l2_fourcc('S','9','1','0') /* SN9C10x compression */ | 328 | #define V4L2_PIX_FMT_SN9C10X v4l2_fourcc('S', '9', '1', '0') /* SN9C10x compression */ |
| 325 | #define V4L2_PIX_FMT_PWC1 v4l2_fourcc('P','W','C','1') /* pwc older webcam */ | 329 | #define V4L2_PIX_FMT_PWC1 v4l2_fourcc('P', 'W', 'C', '1') /* pwc older webcam */ |
| 326 | #define V4L2_PIX_FMT_PWC2 v4l2_fourcc('P','W','C','2') /* pwc newer webcam */ | 330 | #define V4L2_PIX_FMT_PWC2 v4l2_fourcc('P', 'W', 'C', '2') /* pwc newer webcam */ |
| 327 | #define V4L2_PIX_FMT_ET61X251 v4l2_fourcc('E','6','2','5') /* ET61X251 compression */ | 331 | #define V4L2_PIX_FMT_ET61X251 v4l2_fourcc('E', '6', '2', '5') /* ET61X251 compression */ |
| 328 | #define V4L2_PIX_FMT_SPCA501 v4l2_fourcc('S','5','0','1') /* YUYV per line */ | 332 | #define V4L2_PIX_FMT_SPCA501 v4l2_fourcc('S', '5', '0', '1') /* YUYV per line */ |
| 329 | #define V4L2_PIX_FMT_SPCA561 v4l2_fourcc('S','5','6','1') /* compressed GBRG bayer */ | 333 | #define V4L2_PIX_FMT_SPCA505 v4l2_fourcc('S', '5', '0', '5') /* YYUV per line */ |
| 330 | #define V4L2_PIX_FMT_PAC207 v4l2_fourcc('P','2','0','7') /* compressed BGGR bayer */ | 334 | #define V4L2_PIX_FMT_SPCA508 v4l2_fourcc('S', '5', '0', '8') /* YUVY per line */ |
| 335 | #define V4L2_PIX_FMT_SPCA561 v4l2_fourcc('S', '5', '6', '1') /* compressed GBRG bayer */ | ||
| 336 | #define V4L2_PIX_FMT_PAC207 v4l2_fourcc('P', '2', '0', '7') /* compressed BGGR bayer */ | ||
| 331 | 337 | ||
| 332 | /* | 338 | /* |
| 333 | * F O R M A T E N U M E R A T I O N | 339 | * F O R M A T E N U M E R A T I O N |
| 334 | */ | 340 | */ |
| 335 | struct v4l2_fmtdesc | 341 | struct v4l2_fmtdesc { |
| 336 | { | ||
| 337 | __u32 index; /* Format number */ | 342 | __u32 index; /* Format number */ |
| 338 | enum v4l2_buf_type type; /* buffer type */ | 343 | enum v4l2_buf_type type; /* buffer type */ |
| 339 | __u32 flags; | 344 | __u32 flags; |
| @@ -349,21 +354,18 @@ struct v4l2_fmtdesc | |||
| 349 | /* | 354 | /* |
| 350 | * F R A M E S I Z E E N U M E R A T I O N | 355 | * F R A M E S I Z E E N U M E R A T I O N |
| 351 | */ | 356 | */ |
| 352 | enum v4l2_frmsizetypes | 357 | enum v4l2_frmsizetypes { |
| 353 | { | ||
| 354 | V4L2_FRMSIZE_TYPE_DISCRETE = 1, | 358 | V4L2_FRMSIZE_TYPE_DISCRETE = 1, |
| 355 | V4L2_FRMSIZE_TYPE_CONTINUOUS = 2, | 359 | V4L2_FRMSIZE_TYPE_CONTINUOUS = 2, |
| 356 | V4L2_FRMSIZE_TYPE_STEPWISE = 3, | 360 | V4L2_FRMSIZE_TYPE_STEPWISE = 3, |
| 357 | }; | 361 | }; |
| 358 | 362 | ||
| 359 | struct v4l2_frmsize_discrete | 363 | struct v4l2_frmsize_discrete { |
| 360 | { | ||
| 361 | __u32 width; /* Frame width [pixel] */ | 364 | __u32 width; /* Frame width [pixel] */ |
| 362 | __u32 height; /* Frame height [pixel] */ | 365 | __u32 height; /* Frame height [pixel] */ |
| 363 | }; | 366 | }; |
| 364 | 367 | ||
| 365 | struct v4l2_frmsize_stepwise | 368 | struct v4l2_frmsize_stepwise { |
| 366 | { | ||
| 367 | __u32 min_width; /* Minimum frame width [pixel] */ | 369 | __u32 min_width; /* Minimum frame width [pixel] */ |
| 368 | __u32 max_width; /* Maximum frame width [pixel] */ | 370 | __u32 max_width; /* Maximum frame width [pixel] */ |
| 369 | __u32 step_width; /* Frame width step size [pixel] */ | 371 | __u32 step_width; /* Frame width step size [pixel] */ |
| @@ -372,8 +374,7 @@ struct v4l2_frmsize_stepwise | |||
| 372 | __u32 step_height; /* Frame height step size [pixel] */ | 374 | __u32 step_height; /* Frame height step size [pixel] */ |
| 373 | }; | 375 | }; |
| 374 | 376 | ||
| 375 | struct v4l2_frmsizeenum | 377 | struct v4l2_frmsizeenum { |
| 376 | { | ||
| 377 | __u32 index; /* Frame size number */ | 378 | __u32 index; /* Frame size number */ |
| 378 | __u32 pixel_format; /* Pixel format */ | 379 | __u32 pixel_format; /* Pixel format */ |
| 379 | __u32 type; /* Frame size type the device supports. */ | 380 | __u32 type; /* Frame size type the device supports. */ |
| @@ -389,22 +390,19 @@ struct v4l2_frmsizeenum | |||
| 389 | /* | 390 | /* |
| 390 | * F R A M E R A T E E N U M E R A T I O N | 391 | * F R A M E R A T E E N U M E R A T I O N |
| 391 | */ | 392 | */ |
| 392 | enum v4l2_frmivaltypes | 393 | enum v4l2_frmivaltypes { |
| 393 | { | ||
| 394 | V4L2_FRMIVAL_TYPE_DISCRETE = 1, | 394 | V4L2_FRMIVAL_TYPE_DISCRETE = 1, |
| 395 | V4L2_FRMIVAL_TYPE_CONTINUOUS = 2, | 395 | V4L2_FRMIVAL_TYPE_CONTINUOUS = 2, |
| 396 | V4L2_FRMIVAL_TYPE_STEPWISE = 3, | 396 | V4L2_FRMIVAL_TYPE_STEPWISE = 3, |
| 397 | }; | 397 | }; |
| 398 | 398 | ||
| 399 | struct v4l2_frmival_stepwise | 399 | struct v4l2_frmival_stepwise { |
| 400 | { | ||
| 401 | struct v4l2_fract min; /* Minimum frame interval [s] */ | 400 | struct v4l2_fract min; /* Minimum frame interval [s] */ |
| 402 | struct v4l2_fract max; /* Maximum frame interval [s] */ | 401 | struct v4l2_fract max; /* Maximum frame interval [s] */ |
| 403 | struct v4l2_fract step; /* Frame interval step size [s] */ | 402 | struct v4l2_fract step; /* Frame interval step size [s] */ |
| 404 | }; | 403 | }; |
| 405 | 404 | ||
| 406 | struct v4l2_frmivalenum | 405 | struct v4l2_frmivalenum { |
| 407 | { | ||
| 408 | __u32 index; /* Frame format index */ | 406 | __u32 index; /* Frame format index */ |
| 409 | __u32 pixel_format; /* Pixel format */ | 407 | __u32 pixel_format; /* Pixel format */ |
| 410 | __u32 width; /* Frame width */ | 408 | __u32 width; /* Frame width */ |
| @@ -423,8 +421,7 @@ struct v4l2_frmivalenum | |||
| 423 | /* | 421 | /* |
| 424 | * T I M E C O D E | 422 | * T I M E C O D E |
| 425 | */ | 423 | */ |
| 426 | struct v4l2_timecode | 424 | struct v4l2_timecode { |
| 427 | { | ||
| 428 | __u32 type; | 425 | __u32 type; |
| 429 | __u32 flags; | 426 | __u32 flags; |
| 430 | __u8 frames; | 427 | __u8 frames; |
| @@ -449,8 +446,7 @@ struct v4l2_timecode | |||
| 449 | #define V4L2_TC_USERBITS_8BITCHARS 0x0008 | 446 | #define V4L2_TC_USERBITS_8BITCHARS 0x0008 |
| 450 | /* The above is based on SMPTE timecodes */ | 447 | /* The above is based on SMPTE timecodes */ |
| 451 | 448 | ||
| 452 | struct v4l2_jpegcompression | 449 | struct v4l2_jpegcompression { |
| 453 | { | ||
| 454 | int quality; | 450 | int quality; |
| 455 | 451 | ||
| 456 | int APPn; /* Number of APP segment to be written, | 452 | int APPn; /* Number of APP segment to be written, |
| @@ -482,16 +478,14 @@ struct v4l2_jpegcompression | |||
| 482 | /* | 478 | /* |
| 483 | * M E M O R Y - M A P P I N G B U F F E R S | 479 | * M E M O R Y - M A P P I N G B U F F E R S |
| 484 | */ | 480 | */ |
| 485 | struct v4l2_requestbuffers | 481 | struct v4l2_requestbuffers { |
| 486 | { | ||
| 487 | __u32 count; | 482 | __u32 count; |
| 488 | enum v4l2_buf_type type; | 483 | enum v4l2_buf_type type; |
| 489 | enum v4l2_memory memory; | 484 | enum v4l2_memory memory; |
| 490 | __u32 reserved[2]; | 485 | __u32 reserved[2]; |
| 491 | }; | 486 | }; |
| 492 | 487 | ||
| 493 | struct v4l2_buffer | 488 | struct v4l2_buffer { |
| 494 | { | ||
| 495 | __u32 index; | 489 | __u32 index; |
| 496 | enum v4l2_buf_type type; | 490 | enum v4l2_buf_type type; |
| 497 | __u32 bytesused; | 491 | __u32 bytesused; |
| @@ -525,13 +519,12 @@ struct v4l2_buffer | |||
| 525 | /* | 519 | /* |
| 526 | * O V E R L A Y P R E V I E W | 520 | * O V E R L A Y P R E V I E W |
| 527 | */ | 521 | */ |
| 528 | struct v4l2_framebuffer | 522 | struct v4l2_framebuffer { |
| 529 | { | ||
| 530 | __u32 capability; | 523 | __u32 capability; |
| 531 | __u32 flags; | 524 | __u32 flags; |
| 532 | /* FIXME: in theory we should pass something like PCI device + memory | 525 | /* FIXME: in theory we should pass something like PCI device + memory |
| 533 | * region + offset instead of some physical address */ | 526 | * region + offset instead of some physical address */ |
| 534 | void* base; | 527 | void *base; |
| 535 | struct v4l2_pix_format fmt; | 528 | struct v4l2_pix_format fmt; |
| 536 | }; | 529 | }; |
| 537 | /* Flags for the 'capability' field. Read only */ | 530 | /* Flags for the 'capability' field. Read only */ |
| @@ -550,14 +543,12 @@ struct v4l2_framebuffer | |||
| 550 | #define V4L2_FBUF_FLAG_GLOBAL_ALPHA 0x0010 | 543 | #define V4L2_FBUF_FLAG_GLOBAL_ALPHA 0x0010 |
| 551 | #define V4L2_FBUF_FLAG_LOCAL_INV_ALPHA 0x0020 | 544 | #define V4L2_FBUF_FLAG_LOCAL_INV_ALPHA 0x0020 |
| 552 | 545 | ||
| 553 | struct v4l2_clip | 546 | struct v4l2_clip { |
| 554 | { | ||
| 555 | struct v4l2_rect c; | 547 | struct v4l2_rect c; |
| 556 | struct v4l2_clip __user *next; | 548 | struct v4l2_clip __user *next; |
| 557 | }; | 549 | }; |
| 558 | 550 | ||
| 559 | struct v4l2_window | 551 | struct v4l2_window { |
| 560 | { | ||
| 561 | struct v4l2_rect w; | 552 | struct v4l2_rect w; |
| 562 | enum v4l2_field field; | 553 | enum v4l2_field field; |
| 563 | __u32 chromakey; | 554 | __u32 chromakey; |
| @@ -570,8 +561,7 @@ struct v4l2_window | |||
| 570 | /* | 561 | /* |
| 571 | * C A P T U R E P A R A M E T E R S | 562 | * C A P T U R E P A R A M E T E R S |
| 572 | */ | 563 | */ |
| 573 | struct v4l2_captureparm | 564 | struct v4l2_captureparm { |
| 574 | { | ||
| 575 | __u32 capability; /* Supported modes */ | 565 | __u32 capability; /* Supported modes */ |
| 576 | __u32 capturemode; /* Current mode */ | 566 | __u32 capturemode; /* Current mode */ |
| 577 | struct v4l2_fract timeperframe; /* Time per frame in .1us units */ | 567 | struct v4l2_fract timeperframe; /* Time per frame in .1us units */ |
| @@ -584,8 +574,7 @@ struct v4l2_captureparm | |||
| 584 | #define V4L2_MODE_HIGHQUALITY 0x0001 /* High quality imaging mode */ | 574 | #define V4L2_MODE_HIGHQUALITY 0x0001 /* High quality imaging mode */ |
| 585 | #define V4L2_CAP_TIMEPERFRAME 0x1000 /* timeperframe field is supported */ | 575 | #define V4L2_CAP_TIMEPERFRAME 0x1000 /* timeperframe field is supported */ |
| 586 | 576 | ||
| 587 | struct v4l2_outputparm | 577 | struct v4l2_outputparm { |
| 588 | { | ||
| 589 | __u32 capability; /* Supported modes */ | 578 | __u32 capability; /* Supported modes */ |
| 590 | __u32 outputmode; /* Current mode */ | 579 | __u32 outputmode; /* Current mode */ |
| 591 | struct v4l2_fract timeperframe; /* Time per frame in seconds */ | 580 | struct v4l2_fract timeperframe; /* Time per frame in seconds */ |
| @@ -702,8 +691,7 @@ typedef __u64 v4l2_std_id; | |||
| 702 | #define V4L2_STD_ALL (V4L2_STD_525_60 |\ | 691 | #define V4L2_STD_ALL (V4L2_STD_525_60 |\ |
| 703 | V4L2_STD_625_50) | 692 | V4L2_STD_625_50) |
| 704 | 693 | ||
| 705 | struct v4l2_standard | 694 | struct v4l2_standard { |
| 706 | { | ||
| 707 | __u32 index; | 695 | __u32 index; |
| 708 | v4l2_std_id id; | 696 | v4l2_std_id id; |
| 709 | __u8 name[24]; | 697 | __u8 name[24]; |
| @@ -715,8 +703,7 @@ struct v4l2_standard | |||
| 715 | /* | 703 | /* |
| 716 | * V I D E O I N P U T S | 704 | * V I D E O I N P U T S |
| 717 | */ | 705 | */ |
| 718 | struct v4l2_input | 706 | struct v4l2_input { |
| 719 | { | ||
| 720 | __u32 index; /* Which input */ | 707 | __u32 index; /* Which input */ |
| 721 | __u8 name[32]; /* Label */ | 708 | __u8 name[32]; /* Label */ |
| 722 | __u32 type; /* Type of input */ | 709 | __u32 type; /* Type of input */ |
| @@ -753,8 +740,7 @@ struct v4l2_input | |||
| 753 | /* | 740 | /* |
| 754 | * V I D E O O U T P U T S | 741 | * V I D E O O U T P U T S |
| 755 | */ | 742 | */ |
| 756 | struct v4l2_output | 743 | struct v4l2_output { |
| 757 | { | ||
| 758 | __u32 index; /* Which output */ | 744 | __u32 index; /* Which output */ |
| 759 | __u8 name[32]; /* Label */ | 745 | __u8 name[32]; /* Label */ |
| 760 | __u32 type; /* Type of output */ | 746 | __u32 type; /* Type of output */ |
| @@ -771,14 +757,12 @@ struct v4l2_output | |||
| 771 | /* | 757 | /* |
| 772 | * C O N T R O L S | 758 | * C O N T R O L S |
| 773 | */ | 759 | */ |
| 774 | struct v4l2_control | 760 | struct v4l2_control { |
| 775 | { | ||
| 776 | __u32 id; | 761 | __u32 id; |
| 777 | __s32 value; | 762 | __s32 value; |
| 778 | }; | 763 | }; |
| 779 | 764 | ||
| 780 | struct v4l2_ext_control | 765 | struct v4l2_ext_control { |
| 781 | { | ||
| 782 | __u32 id; | 766 | __u32 id; |
| 783 | __u32 reserved2[2]; | 767 | __u32 reserved2[2]; |
| 784 | union { | 768 | union { |
| @@ -788,8 +772,7 @@ struct v4l2_ext_control | |||
| 788 | }; | 772 | }; |
| 789 | } __attribute__ ((packed)); | 773 | } __attribute__ ((packed)); |
| 790 | 774 | ||
| 791 | struct v4l2_ext_controls | 775 | struct v4l2_ext_controls { |
| 792 | { | ||
| 793 | __u32 ctrl_class; | 776 | __u32 ctrl_class; |
| 794 | __u32 count; | 777 | __u32 count; |
| 795 | __u32 error_idx; | 778 | __u32 error_idx; |
| @@ -807,8 +790,7 @@ struct v4l2_ext_controls | |||
| 807 | #define V4L2_CTRL_DRIVER_PRIV(id) (((id) & 0xffff) >= 0x1000) | 790 | #define V4L2_CTRL_DRIVER_PRIV(id) (((id) & 0xffff) >= 0x1000) |
| 808 | 791 | ||
| 809 | /* Used in the VIDIOC_QUERYCTRL ioctl for querying controls */ | 792 | /* Used in the VIDIOC_QUERYCTRL ioctl for querying controls */ |
| 810 | struct v4l2_queryctrl | 793 | struct v4l2_queryctrl { |
| 811 | { | ||
| 812 | __u32 id; | 794 | __u32 id; |
| 813 | enum v4l2_ctrl_type type; | 795 | enum v4l2_ctrl_type type; |
| 814 | __u8 name[32]; /* Whatever */ | 796 | __u8 name[32]; /* Whatever */ |
| @@ -821,8 +803,7 @@ struct v4l2_queryctrl | |||
| 821 | }; | 803 | }; |
| 822 | 804 | ||
| 823 | /* Used in the VIDIOC_QUERYMENU ioctl for querying menu items */ | 805 | /* Used in the VIDIOC_QUERYMENU ioctl for querying menu items */ |
| 824 | struct v4l2_querymenu | 806 | struct v4l2_querymenu { |
| 825 | { | ||
| 826 | __u32 id; | 807 | __u32 id; |
| 827 | __u32 index; | 808 | __u32 index; |
| 828 | __u8 name[32]; /* Whatever */ | 809 | __u8 name[32]; /* Whatever */ |
| @@ -1104,8 +1085,7 @@ enum v4l2_exposure_auto_type { | |||
| 1104 | /* | 1085 | /* |
| 1105 | * T U N I N G | 1086 | * T U N I N G |
| 1106 | */ | 1087 | */ |
| 1107 | struct v4l2_tuner | 1088 | struct v4l2_tuner { |
| 1108 | { | ||
| 1109 | __u32 index; | 1089 | __u32 index; |
| 1110 | __u8 name[32]; | 1090 | __u8 name[32]; |
| 1111 | enum v4l2_tuner_type type; | 1091 | enum v4l2_tuner_type type; |
| @@ -1119,8 +1099,7 @@ struct v4l2_tuner | |||
| 1119 | __u32 reserved[4]; | 1099 | __u32 reserved[4]; |
| 1120 | }; | 1100 | }; |
| 1121 | 1101 | ||
| 1122 | struct v4l2_modulator | 1102 | struct v4l2_modulator { |
| 1123 | { | ||
| 1124 | __u32 index; | 1103 | __u32 index; |
| 1125 | __u8 name[32]; | 1104 | __u8 name[32]; |
| 1126 | __u32 capability; | 1105 | __u32 capability; |
| @@ -1153,8 +1132,7 @@ struct v4l2_modulator | |||
| 1153 | #define V4L2_TUNER_MODE_LANG1 0x0003 | 1132 | #define V4L2_TUNER_MODE_LANG1 0x0003 |
| 1154 | #define V4L2_TUNER_MODE_LANG1_LANG2 0x0004 | 1133 | #define V4L2_TUNER_MODE_LANG1_LANG2 0x0004 |
| 1155 | 1134 | ||
| 1156 | struct v4l2_frequency | 1135 | struct v4l2_frequency { |
| 1157 | { | ||
| 1158 | __u32 tuner; | 1136 | __u32 tuner; |
| 1159 | enum v4l2_tuner_type type; | 1137 | enum v4l2_tuner_type type; |
| 1160 | __u32 frequency; | 1138 | __u32 frequency; |
| @@ -1172,8 +1150,7 @@ struct v4l2_hw_freq_seek { | |||
| 1172 | /* | 1150 | /* |
| 1173 | * A U D I O | 1151 | * A U D I O |
| 1174 | */ | 1152 | */ |
| 1175 | struct v4l2_audio | 1153 | struct v4l2_audio { |
| 1176 | { | ||
| 1177 | __u32 index; | 1154 | __u32 index; |
| 1178 | __u8 name[32]; | 1155 | __u8 name[32]; |
| 1179 | __u32 capability; | 1156 | __u32 capability; |
| @@ -1188,8 +1165,7 @@ struct v4l2_audio | |||
| 1188 | /* Flags for the 'mode' field */ | 1165 | /* Flags for the 'mode' field */ |
| 1189 | #define V4L2_AUDMODE_AVL 0x00001 | 1166 | #define V4L2_AUDMODE_AVL 0x00001 |
| 1190 | 1167 | ||
| 1191 | struct v4l2_audioout | 1168 | struct v4l2_audioout { |
| 1192 | { | ||
| 1193 | __u32 index; | 1169 | __u32 index; |
| 1194 | __u8 name[32]; | 1170 | __u8 name[32]; |
| 1195 | __u32 capability; | 1171 | __u32 capability; |
| @@ -1253,8 +1229,7 @@ struct v4l2_encoder_cmd { | |||
| 1253 | */ | 1229 | */ |
| 1254 | 1230 | ||
| 1255 | /* Raw VBI */ | 1231 | /* Raw VBI */ |
| 1256 | struct v4l2_vbi_format | 1232 | struct v4l2_vbi_format { |
| 1257 | { | ||
| 1258 | __u32 sampling_rate; /* in 1 Hz */ | 1233 | __u32 sampling_rate; /* in 1 Hz */ |
| 1259 | __u32 offset; | 1234 | __u32 offset; |
| 1260 | __u32 samples_per_line; | 1235 | __u32 samples_per_line; |
| @@ -1266,8 +1241,8 @@ struct v4l2_vbi_format | |||
| 1266 | }; | 1241 | }; |
| 1267 | 1242 | ||
| 1268 | /* VBI flags */ | 1243 | /* VBI flags */ |
| 1269 | #define V4L2_VBI_UNSYNC (1<< 0) | 1244 | #define V4L2_VBI_UNSYNC (1 << 0) |
| 1270 | #define V4L2_VBI_INTERLACED (1<< 1) | 1245 | #define V4L2_VBI_INTERLACED (1 << 1) |
| 1271 | 1246 | ||
| 1272 | /* Sliced VBI | 1247 | /* Sliced VBI |
| 1273 | * | 1248 | * |
| @@ -1276,8 +1251,7 @@ struct v4l2_vbi_format | |||
| 1276 | * notice in the definitive implementation. | 1251 | * notice in the definitive implementation. |
| 1277 | */ | 1252 | */ |
| 1278 | 1253 | ||
| 1279 | struct v4l2_sliced_vbi_format | 1254 | struct v4l2_sliced_vbi_format { |
| 1280 | { | ||
| 1281 | __u16 service_set; | 1255 | __u16 service_set; |
| 1282 | /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field | 1256 | /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field |
| 1283 | service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field | 1257 | service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field |
| @@ -1301,8 +1275,7 @@ struct v4l2_sliced_vbi_format | |||
| 1301 | #define V4L2_SLICED_VBI_525 (V4L2_SLICED_CAPTION_525) | 1275 | #define V4L2_SLICED_VBI_525 (V4L2_SLICED_CAPTION_525) |
| 1302 | #define V4L2_SLICED_VBI_625 (V4L2_SLICED_TELETEXT_B | V4L2_SLICED_VPS | V4L2_SLICED_WSS_625) | 1276 | #define V4L2_SLICED_VBI_625 (V4L2_SLICED_TELETEXT_B | V4L2_SLICED_VPS | V4L2_SLICED_WSS_625) |
| 1303 | 1277 | ||
| 1304 | struct v4l2_sliced_vbi_cap | 1278 | struct v4l2_sliced_vbi_cap { |
| 1305 | { | ||
| 1306 | __u16 service_set; | 1279 | __u16 service_set; |
| 1307 | /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field | 1280 | /* service_lines[0][...] specifies lines 0-23 (1-23 used) of the first field |
| 1308 | service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field | 1281 | service_lines[1][...] specifies lines 0-23 (1-23 used) of the second field |
| @@ -1313,8 +1286,7 @@ struct v4l2_sliced_vbi_cap | |||
| 1313 | __u32 reserved[3]; /* must be 0 */ | 1286 | __u32 reserved[3]; /* must be 0 */ |
| 1314 | }; | 1287 | }; |
| 1315 | 1288 | ||
| 1316 | struct v4l2_sliced_vbi_data | 1289 | struct v4l2_sliced_vbi_data { |
| 1317 | { | ||
| 1318 | __u32 id; | 1290 | __u32 id; |
| 1319 | __u32 field; /* 0: first field, 1: second field */ | 1291 | __u32 field; /* 0: first field, 1: second field */ |
| 1320 | __u32 line; /* 1-23 */ | 1292 | __u32 line; /* 1-23 */ |
| @@ -1328,27 +1300,23 @@ struct v4l2_sliced_vbi_data | |||
| 1328 | 1300 | ||
| 1329 | /* Stream data format | 1301 | /* Stream data format |
| 1330 | */ | 1302 | */ |
| 1331 | struct v4l2_format | 1303 | struct v4l2_format { |
| 1332 | { | ||
| 1333 | enum v4l2_buf_type type; | 1304 | enum v4l2_buf_type type; |
| 1334 | union | 1305 | union { |
| 1335 | { | 1306 | struct v4l2_pix_format pix; /* V4L2_BUF_TYPE_VIDEO_CAPTURE */ |
| 1336 | struct v4l2_pix_format pix; // V4L2_BUF_TYPE_VIDEO_CAPTURE | 1307 | struct v4l2_window win; /* V4L2_BUF_TYPE_VIDEO_OVERLAY */ |
| 1337 | struct v4l2_window win; // V4L2_BUF_TYPE_VIDEO_OVERLAY | 1308 | struct v4l2_vbi_format vbi; /* V4L2_BUF_TYPE_VBI_CAPTURE */ |
| 1338 | struct v4l2_vbi_format vbi; // V4L2_BUF_TYPE_VBI_CAPTURE | 1309 | struct v4l2_sliced_vbi_format sliced; /* V4L2_BUF_TYPE_SLICED_VBI_CAPTURE */ |
| 1339 | struct v4l2_sliced_vbi_format sliced; // V4L2_BUF_TYPE_SLICED_VBI_CAPTURE | 1310 | __u8 raw_data[200]; /* user-defined */ |
| 1340 | __u8 raw_data[200]; // user-defined | ||
| 1341 | } fmt; | 1311 | } fmt; |
| 1342 | }; | 1312 | }; |
| 1343 | 1313 | ||
| 1344 | 1314 | ||
| 1345 | /* Stream type-dependent parameters | 1315 | /* Stream type-dependent parameters |
| 1346 | */ | 1316 | */ |
| 1347 | struct v4l2_streamparm | 1317 | struct v4l2_streamparm { |
| 1348 | { | ||
| 1349 | enum v4l2_buf_type type; | 1318 | enum v4l2_buf_type type; |
| 1350 | union | 1319 | union { |
| 1351 | { | ||
| 1352 | struct v4l2_captureparm capture; | 1320 | struct v4l2_captureparm capture; |
| 1353 | struct v4l2_outputparm output; | 1321 | struct v4l2_outputparm output; |
| 1354 | __u8 raw_data[200]; /* user-defined */ | 1322 | __u8 raw_data[200]; /* user-defined */ |
| @@ -1386,92 +1354,86 @@ struct v4l2_chip_ident { | |||
| 1386 | * I O C T L C O D E S F O R V I D E O D E V I C E S | 1354 | * I O C T L C O D E S F O R V I D E O D E V I C E S |
| 1387 | * | 1355 | * |
| 1388 | */ | 1356 | */ |
| 1389 | #define VIDIOC_QUERYCAP _IOR ('V', 0, struct v4l2_capability) | 1357 | #define VIDIOC_QUERYCAP _IOR('V', 0, struct v4l2_capability) |
| 1390 | #define VIDIOC_RESERVED _IO ('V', 1) | 1358 | #define VIDIOC_RESERVED _IO('V', 1) |
| 1391 | #define VIDIOC_ENUM_FMT _IOWR ('V', 2, struct v4l2_fmtdesc) | 1359 | #define VIDIOC_ENUM_FMT _IOWR('V', 2, struct v4l2_fmtdesc) |
| 1392 | #define VIDIOC_G_FMT _IOWR ('V', 4, struct v4l2_format) | 1360 | #define VIDIOC_G_FMT _IOWR('V', 4, struct v4l2_format) |
| 1393 | #define VIDIOC_S_FMT _IOWR ('V', 5, struct v4l2_format) | 1361 | #define VIDIOC_S_FMT _IOWR('V', 5, struct v4l2_format) |
| 1394 | #define VIDIOC_REQBUFS _IOWR ('V', 8, struct v4l2_requestbuffers) | 1362 | #define VIDIOC_REQBUFS _IOWR('V', 8, struct v4l2_requestbuffers) |
| 1395 | #define VIDIOC_QUERYBUF _IOWR ('V', 9, struct v4l2_buffer) | 1363 | #define VIDIOC_QUERYBUF _IOWR('V', 9, struct v4l2_buffer) |
| 1396 | #define VIDIOC_G_FBUF _IOR ('V', 10, struct v4l2_framebuffer) | 1364 | #define VIDIOC_G_FBUF _IOR('V', 10, struct v4l2_framebuffer) |
| 1397 | #define VIDIOC_S_FBUF _IOW ('V', 11, struct v4l2_framebuffer) | 1365 | #define VIDIOC_S_FBUF _IOW('V', 11, struct v4l2_framebuffer) |
| 1398 | #define VIDIOC_OVERLAY _IOW ('V', 14, int) | 1366 | #define VIDIOC_OVERLAY _IOW('V', 14, int) |
| 1399 | #define VIDIOC_QBUF _IOWR ('V', 15, struct v4l2_buffer) | 1367 | #define VIDIOC_QBUF _IOWR('V', 15, struct v4l2_buffer) |
| 1400 | #define VIDIOC_DQBUF _IOWR ('V', 17, struct v4l2_buffer) | 1368 | #define VIDIOC_DQBUF _IOWR('V', 17, struct v4l2_buffer) |
| 1401 | #define VIDIOC_STREAMON _IOW ('V', 18, int) | 1369 | #define VIDIOC_STREAMON _IOW('V', 18, int) |
| 1402 | #define VIDIOC_STREAMOFF _IOW ('V', 19, int) | 1370 | #define VIDIOC_STREAMOFF _IOW('V', 19, int) |
| 1403 | #define VIDIOC_G_PARM _IOWR ('V', 21, struct v4l2_streamparm) | 1371 | #define VIDIOC_G_PARM _IOWR('V', 21, struct v4l2_streamparm) |
| 1404 | #define VIDIOC_S_PARM _IOWR ('V', 22, struct v4l2_streamparm) | 1372 | #define VIDIOC_S_PARM _IOWR('V', 22, struct v4l2_streamparm) |
| 1405 | #define VIDIOC_G_STD _IOR ('V', 23, v4l2_std_id) | 1373 | #define VIDIOC_G_STD _IOR('V', 23, v4l2_std_id) |
| 1406 | #define VIDIOC_S_STD _IOW ('V', 24, v4l2_std_id) | 1374 | #define VIDIOC_S_STD _IOW('V', 24, v4l2_std_id) |
| 1407 | #define VIDIOC_ENUMSTD _IOWR ('V', 25, struct v4l2_standard) | 1375 | #define VIDIOC_ENUMSTD _IOWR('V', 25, struct v4l2_standard) |
| 1408 | #define VIDIOC_ENUMINPUT _IOWR ('V', 26, struct v4l2_input) | 1376 | #define VIDIOC_ENUMINPUT _IOWR('V', 26, struct v4l2_input) |
| 1409 | #define VIDIOC_G_CTRL _IOWR ('V', 27, struct v4l2_control) | 1377 | #define VIDIOC_G_CTRL _IOWR('V', 27, struct v4l2_control) |
| 1410 | #define VIDIOC_S_CTRL _IOWR ('V', 28, struct v4l2_control) | 1378 | #define VIDIOC_S_CTRL _IOWR('V', 28, struct v4l2_control) |
| 1411 | #define VIDIOC_G_TUNER _IOWR ('V', 29, struct v4l2_tuner) | 1379 | #define VIDIOC_G_TUNER _IOWR('V', 29, struct v4l2_tuner) |
| 1412 | #define VIDIOC_S_TUNER _IOW ('V', 30, struct v4l2_tuner) | 1380 | #define VIDIOC_S_TUNER _IOW('V', 30, struct v4l2_tuner) |
| 1413 | #define VIDIOC_G_AUDIO _IOR ('V', 33, struct v4l2_audio) | 1381 | #define VIDIOC_G_AUDIO _IOR('V', 33, struct v4l2_audio) |
| 1414 | #define VIDIOC_S_AUDIO _IOW ('V', 34, struct v4l2_audio) | 1382 | #define VIDIOC_S_AUDIO _IOW('V', 34, struct v4l2_audio) |
| 1415 | #define VIDIOC_QUERYCTRL _IOWR ('V', 36, struct v4l2_queryctrl) | 1383 | #define VIDIOC_QUERYCTRL _IOWR('V', 36, struct v4l2_queryctrl) |
| 1416 | #define VIDIOC_QUERYMENU _IOWR ('V', 37, struct v4l2_querymenu) | 1384 | #define VIDIOC_QUERYMENU _IOWR('V', 37, struct v4l2_querymenu) |
| 1417 | #define VIDIOC_G_INPUT _IOR ('V', 38, int) | 1385 | #define VIDIOC_G_INPUT _IOR('V', 38, int) |
| 1418 | #define VIDIOC_S_INPUT _IOWR ('V', 39, int) | 1386 | #define VIDIOC_S_INPUT _IOWR('V', 39, int) |
| 1419 | #define VIDIOC_G_OUTPUT _IOR ('V', 46, int) | 1387 | #define VIDIOC_G_OUTPUT _IOR('V', 46, int) |
| 1420 | #define VIDIOC_S_OUTPUT _IOWR ('V', 47, int) | 1388 | #define VIDIOC_S_OUTPUT _IOWR('V', 47, int) |
| 1421 | #define VIDIOC_ENUMOUTPUT _IOWR ('V', 48, struct v4l2_output) | 1389 | #define VIDIOC_ENUMOUTPUT _IOWR('V', 48, struct v4l2_output) |
| 1422 | #define VIDIOC_G_AUDOUT _IOR ('V', 49, struct v4l2_audioout) | 1390 | #define VIDIOC_G_AUDOUT _IOR('V', 49, struct v4l2_audioout) |
| 1423 | #define VIDIOC_S_AUDOUT _IOW ('V', 50, struct v4l2_audioout) | 1391 | #define VIDIOC_S_AUDOUT _IOW('V', 50, struct v4l2_audioout) |
| 1424 | #define VIDIOC_G_MODULATOR _IOWR ('V', 54, struct v4l2_modulator) | 1392 | #define VIDIOC_G_MODULATOR _IOWR('V', 54, struct v4l2_modulator) |
| 1425 | #define VIDIOC_S_MODULATOR _IOW ('V', 55, struct v4l2_modulator) | 1393 | #define VIDIOC_S_MODULATOR _IOW('V', 55, struct v4l2_modulator) |
| 1426 | #define VIDIOC_G_FREQUENCY _IOWR ('V', 56, struct v4l2_frequency) | 1394 | #define VIDIOC_G_FREQUENCY _IOWR('V', 56, struct v4l2_frequency) |
| 1427 | #define VIDIOC_S_FREQUENCY _IOW ('V', 57, struct v4l2_frequency) | 1395 | #define VIDIOC_S_FREQUENCY _IOW('V', 57, struct v4l2_frequency) |
| 1428 | #define VIDIOC_CROPCAP _IOWR ('V', 58, struct v4l2_cropcap) | 1396 | #define VIDIOC_CROPCAP _IOWR('V', 58, struct v4l2_cropcap) |
| 1429 | #define VIDIOC_G_CROP _IOWR ('V', 59, struct v4l2_crop) | 1397 | #define VIDIOC_G_CROP _IOWR('V', 59, struct v4l2_crop) |
| 1430 | #define VIDIOC_S_CROP _IOW ('V', 60, struct v4l2_crop) | 1398 | #define VIDIOC_S_CROP _IOW('V', 60, struct v4l2_crop) |
| 1431 | #define VIDIOC_G_JPEGCOMP _IOR ('V', 61, struct v4l2_jpegcompression) | 1399 | #define VIDIOC_G_JPEGCOMP _IOR('V', 61, struct v4l2_jpegcompression) |
| 1432 | #define VIDIOC_S_JPEGCOMP _IOW ('V', 62, struct v4l2_jpegcompression) | 1400 | #define VIDIOC_S_JPEGCOMP _IOW('V', 62, struct v4l2_jpegcompression) |
| 1433 | #define VIDIOC_QUERYSTD _IOR ('V', 63, v4l2_std_id) | 1401 | #define VIDIOC_QUERYSTD _IOR('V', 63, v4l2_std_id) |
| 1434 | #define VIDIOC_TRY_FMT _IOWR ('V', 64, struct v4l2_format) | 1402 | #define VIDIOC_TRY_FMT _IOWR('V', 64, struct v4l2_format) |
| 1435 | #define VIDIOC_ENUMAUDIO _IOWR ('V', 65, struct v4l2_audio) | 1403 | #define VIDIOC_ENUMAUDIO _IOWR('V', 65, struct v4l2_audio) |
| 1436 | #define VIDIOC_ENUMAUDOUT _IOWR ('V', 66, struct v4l2_audioout) | 1404 | #define VIDIOC_ENUMAUDOUT _IOWR('V', 66, struct v4l2_audioout) |
| 1437 | #define VIDIOC_G_PRIORITY _IOR ('V', 67, enum v4l2_priority) | 1405 | #define VIDIOC_G_PRIORITY _IOR('V', 67, enum v4l2_priority) |
| 1438 | #define VIDIOC_S_PRIORITY _IOW ('V', 68, enum v4l2_priority) | 1406 | #define VIDIOC_S_PRIORITY _IOW('V', 68, enum v4l2_priority) |
| 1439 | #define VIDIOC_G_SLICED_VBI_CAP _IOWR ('V', 69, struct v4l2_sliced_vbi_cap) | 1407 | #define VIDIOC_G_SLICED_VBI_CAP _IOWR('V', 69, struct v4l2_sliced_vbi_cap) |
| 1440 | #define VIDIOC_LOG_STATUS _IO ('V', 70) | 1408 | #define VIDIOC_LOG_STATUS _IO('V', 70) |
| 1441 | #define VIDIOC_G_EXT_CTRLS _IOWR ('V', 71, struct v4l2_ext_controls) | 1409 | #define VIDIOC_G_EXT_CTRLS _IOWR('V', 71, struct v4l2_ext_controls) |
| 1442 | #define VIDIOC_S_EXT_CTRLS _IOWR ('V', 72, struct v4l2_ext_controls) | 1410 | #define VIDIOC_S_EXT_CTRLS _IOWR('V', 72, struct v4l2_ext_controls) |
| 1443 | #define VIDIOC_TRY_EXT_CTRLS _IOWR ('V', 73, struct v4l2_ext_controls) | 1411 | #define VIDIOC_TRY_EXT_CTRLS _IOWR('V', 73, struct v4l2_ext_controls) |
| 1444 | #if 1 | 1412 | #if 1 |
| 1445 | #define VIDIOC_ENUM_FRAMESIZES _IOWR ('V', 74, struct v4l2_frmsizeenum) | 1413 | #define VIDIOC_ENUM_FRAMESIZES _IOWR('V', 74, struct v4l2_frmsizeenum) |
| 1446 | #define VIDIOC_ENUM_FRAMEINTERVALS _IOWR ('V', 75, struct v4l2_frmivalenum) | 1414 | #define VIDIOC_ENUM_FRAMEINTERVALS _IOWR('V', 75, struct v4l2_frmivalenum) |
| 1447 | #define VIDIOC_G_ENC_INDEX _IOR ('V', 76, struct v4l2_enc_idx) | 1415 | #define VIDIOC_G_ENC_INDEX _IOR('V', 76, struct v4l2_enc_idx) |
| 1448 | #define VIDIOC_ENCODER_CMD _IOWR ('V', 77, struct v4l2_encoder_cmd) | 1416 | #define VIDIOC_ENCODER_CMD _IOWR('V', 77, struct v4l2_encoder_cmd) |
| 1449 | #define VIDIOC_TRY_ENCODER_CMD _IOWR ('V', 78, struct v4l2_encoder_cmd) | 1417 | #define VIDIOC_TRY_ENCODER_CMD _IOWR('V', 78, struct v4l2_encoder_cmd) |
| 1450 | 1418 | ||
| 1451 | /* Experimental, only implemented if CONFIG_VIDEO_ADV_DEBUG is defined */ | 1419 | /* Experimental, only implemented if CONFIG_VIDEO_ADV_DEBUG is defined */ |
| 1452 | #define VIDIOC_DBG_S_REGISTER _IOW ('V', 79, struct v4l2_register) | 1420 | #define VIDIOC_DBG_S_REGISTER _IOW('V', 79, struct v4l2_register) |
| 1453 | #define VIDIOC_DBG_G_REGISTER _IOWR ('V', 80, struct v4l2_register) | 1421 | #define VIDIOC_DBG_G_REGISTER _IOWR('V', 80, struct v4l2_register) |
| 1454 | 1422 | ||
| 1455 | #define VIDIOC_G_CHIP_IDENT _IOWR ('V', 81, struct v4l2_chip_ident) | 1423 | #define VIDIOC_G_CHIP_IDENT _IOWR('V', 81, struct v4l2_chip_ident) |
| 1456 | #endif | 1424 | #endif |
| 1457 | #define VIDIOC_S_HW_FREQ_SEEK _IOW ('V', 82, struct v4l2_hw_freq_seek) | 1425 | #define VIDIOC_S_HW_FREQ_SEEK _IOW('V', 82, struct v4l2_hw_freq_seek) |
| 1458 | 1426 | ||
| 1459 | #ifdef __OLD_VIDIOC_ | 1427 | #ifdef __OLD_VIDIOC_ |
| 1460 | /* for compatibility, will go away some day */ | 1428 | /* for compatibility, will go away some day */ |
| 1461 | #define VIDIOC_OVERLAY_OLD _IOWR ('V', 14, int) | 1429 | #define VIDIOC_OVERLAY_OLD _IOWR('V', 14, int) |
| 1462 | #define VIDIOC_S_PARM_OLD _IOW ('V', 22, struct v4l2_streamparm) | 1430 | #define VIDIOC_S_PARM_OLD _IOW('V', 22, struct v4l2_streamparm) |
| 1463 | #define VIDIOC_S_CTRL_OLD _IOW ('V', 28, struct v4l2_control) | 1431 | #define VIDIOC_S_CTRL_OLD _IOW('V', 28, struct v4l2_control) |
| 1464 | #define VIDIOC_G_AUDIO_OLD _IOWR ('V', 33, struct v4l2_audio) | 1432 | #define VIDIOC_G_AUDIO_OLD _IOWR('V', 33, struct v4l2_audio) |
| 1465 | #define VIDIOC_G_AUDOUT_OLD _IOWR ('V', 49, struct v4l2_audioout) | 1433 | #define VIDIOC_G_AUDOUT_OLD _IOWR('V', 49, struct v4l2_audioout) |
| 1466 | #define VIDIOC_CROPCAP_OLD _IOR ('V', 58, struct v4l2_cropcap) | 1434 | #define VIDIOC_CROPCAP_OLD _IOR('V', 58, struct v4l2_cropcap) |
| 1467 | #endif | 1435 | #endif |
| 1468 | 1436 | ||
| 1469 | #define BASE_VIDIOC_PRIVATE 192 /* 192-255 are private */ | 1437 | #define BASE_VIDIOC_PRIVATE 192 /* 192-255 are private */ |
| 1470 | 1438 | ||
| 1471 | #endif /* __LINUX_VIDEODEV2_H */ | 1439 | #endif /* __LINUX_VIDEODEV2_H */ |
| 1472 | |||
| 1473 | /* | ||
| 1474 | * Local variables: | ||
| 1475 | * c-basic-offset: 8 | ||
| 1476 | * End: | ||
| 1477 | */ | ||
diff --git a/include/linux/videotext.h b/include/linux/videotext.h index 018f92047ff8..3e68c8d1c7f7 100644 --- a/include/linux/videotext.h +++ b/include/linux/videotext.h | |||
| @@ -45,10 +45,10 @@ | |||
| 45 | #define VTXIOCCLRCACHE_OLD 0x710b /* clear cache on VTX-interface (if avail.) */ | 45 | #define VTXIOCCLRCACHE_OLD 0x710b /* clear cache on VTX-interface (if avail.) */ |
| 46 | #define VTXIOCSETVIRT_OLD 0x710c /* turn on virtual mode (this disables TV-display) */ | 46 | #define VTXIOCSETVIRT_OLD 0x710c /* turn on virtual mode (this disables TV-display) */ |
| 47 | 47 | ||
| 48 | /* | 48 | /* |
| 49 | * Definitions for VTXIOCGETINFO | 49 | * Definitions for VTXIOCGETINFO |
| 50 | */ | 50 | */ |
| 51 | 51 | ||
| 52 | #define SAA5243 0 | 52 | #define SAA5243 0 |
| 53 | #define SAA5246 1 | 53 | #define SAA5246 1 |
| 54 | #define SAA5249 2 | 54 | #define SAA5249 2 |
| @@ -57,10 +57,10 @@ | |||
| 57 | 57 | ||
| 58 | typedef struct { | 58 | typedef struct { |
| 59 | int version_major, version_minor; /* version of driver; if version_major changes, driver */ | 59 | int version_major, version_minor; /* version of driver; if version_major changes, driver */ |
| 60 | /* is not backward compatible!!! CHECK THIS!!! */ | 60 | /* is not backward compatible!!! CHECK THIS!!! */ |
| 61 | int numpages; /* number of page-buffers of vtx-chipset */ | 61 | int numpages; /* number of page-buffers of vtx-chipset */ |
| 62 | int cct_type; /* type of vtx-chipset (SAA5243, SAA5246, SAA5248 or | 62 | int cct_type; /* type of vtx-chipset (SAA5243, SAA5246, SAA5248 or |
| 63 | * SAA5249) */ | 63 | * SAA5249) */ |
| 64 | } | 64 | } |
| 65 | vtx_info_t; | 65 | vtx_info_t; |
| 66 | 66 | ||
| @@ -81,7 +81,7 @@ vtx_info_t; | |||
| 81 | #define PGMASK_HOUR (HR_TEN | HR_UNIT) | 81 | #define PGMASK_HOUR (HR_TEN | HR_UNIT) |
| 82 | #define PGMASK_MINUTE (MIN_TEN | MIN_UNIT) | 82 | #define PGMASK_MINUTE (MIN_TEN | MIN_UNIT) |
| 83 | 83 | ||
| 84 | typedef struct | 84 | typedef struct |
| 85 | { | 85 | { |
| 86 | int page; /* number of requested page (hexadecimal) */ | 86 | int page; /* number of requested page (hexadecimal) */ |
| 87 | int hour; /* requested hour (hexadecimal) */ | 87 | int hour; /* requested hour (hexadecimal) */ |
| @@ -98,11 +98,11 @@ vtx_pagereq_t; | |||
| 98 | /* | 98 | /* |
| 99 | * Definitions for VTXIOC{GETSTAT,PUTSTAT} | 99 | * Definitions for VTXIOC{GETSTAT,PUTSTAT} |
| 100 | */ | 100 | */ |
| 101 | 101 | ||
| 102 | #define VTX_PAGESIZE (40 * 24) | 102 | #define VTX_PAGESIZE (40 * 24) |
| 103 | #define VTX_VIRTUALSIZE (40 * 49) | 103 | #define VTX_VIRTUALSIZE (40 * 49) |
| 104 | 104 | ||
| 105 | typedef struct | 105 | typedef struct |
| 106 | { | 106 | { |
| 107 | int pagenum; /* number of page (hexadecimal) */ | 107 | int pagenum; /* number of page (hexadecimal) */ |
| 108 | int hour; /* hour (hexadecimal) */ | 108 | int hour; /* hour (hexadecimal) */ |
| @@ -121,5 +121,5 @@ typedef struct | |||
| 121 | unsigned hamming : 1; /* hamming-error occurred */ | 121 | unsigned hamming : 1; /* hamming-error occurred */ |
| 122 | } | 122 | } |
| 123 | vtx_pageinfo_t; | 123 | vtx_pageinfo_t; |
| 124 | 124 | ||
| 125 | #endif /* _VTX_H */ | 125 | #endif /* _VTX_H */ |
diff --git a/include/linux/virtio_9p.h b/include/linux/virtio_9p.h index 8eff0b53910b..b3c4a60ceeb3 100644 --- a/include/linux/virtio_9p.h +++ b/include/linux/virtio_9p.h | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | #ifndef _LINUX_VIRTIO_9P_H | 1 | #ifndef _LINUX_VIRTIO_9P_H |
| 2 | #define _LINUX_VIRTIO_9P_H | 2 | #define _LINUX_VIRTIO_9P_H |
| 3 | /* This header is BSD licensed so anyone can use the definitions to implement | ||
| 4 | * compatible drivers/servers. */ | ||
| 3 | #include <linux/virtio_config.h> | 5 | #include <linux/virtio_config.h> |
| 4 | 6 | ||
| 5 | /* The ID for virtio console */ | 7 | /* The ID for virtio console */ |
diff --git a/include/linux/virtio_balloon.h b/include/linux/virtio_balloon.h index 979524ee75b7..c30c7bfbf39b 100644 --- a/include/linux/virtio_balloon.h +++ b/include/linux/virtio_balloon.h | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | #ifndef _LINUX_VIRTIO_BALLOON_H | 1 | #ifndef _LINUX_VIRTIO_BALLOON_H |
| 2 | #define _LINUX_VIRTIO_BALLOON_H | 2 | #define _LINUX_VIRTIO_BALLOON_H |
| 3 | /* This header is BSD licensed so anyone can use the definitions to implement | ||
| 4 | * compatible drivers/servers. */ | ||
| 3 | #include <linux/virtio_config.h> | 5 | #include <linux/virtio_config.h> |
| 4 | 6 | ||
| 5 | /* The ID for virtio_balloon */ | 7 | /* The ID for virtio_balloon */ |
diff --git a/include/linux/virtio_blk.h b/include/linux/virtio_blk.h index 5f79a5f9de79..c1aef85243bf 100644 --- a/include/linux/virtio_blk.h +++ b/include/linux/virtio_blk.h | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | #ifndef _LINUX_VIRTIO_BLK_H | 1 | #ifndef _LINUX_VIRTIO_BLK_H |
| 2 | #define _LINUX_VIRTIO_BLK_H | 2 | #define _LINUX_VIRTIO_BLK_H |
| 3 | /* This header is BSD licensed so anyone can use the definitions to implement | ||
| 4 | * compatible drivers/servers. */ | ||
| 3 | #include <linux/virtio_config.h> | 5 | #include <linux/virtio_config.h> |
| 4 | 6 | ||
| 5 | /* The ID for virtio_block */ | 7 | /* The ID for virtio_block */ |
| @@ -11,6 +13,7 @@ | |||
| 11 | #define VIRTIO_BLK_F_SEG_MAX 2 /* Indicates maximum # of segments */ | 13 | #define VIRTIO_BLK_F_SEG_MAX 2 /* Indicates maximum # of segments */ |
| 12 | #define VIRTIO_BLK_F_GEOMETRY 4 /* Legacy geometry available */ | 14 | #define VIRTIO_BLK_F_GEOMETRY 4 /* Legacy geometry available */ |
| 13 | #define VIRTIO_BLK_F_RO 5 /* Disk is read-only */ | 15 | #define VIRTIO_BLK_F_RO 5 /* Disk is read-only */ |
| 16 | #define VIRTIO_BLK_F_BLK_SIZE 6 /* Block size of disk is available*/ | ||
| 14 | 17 | ||
| 15 | struct virtio_blk_config | 18 | struct virtio_blk_config |
| 16 | { | 19 | { |
| @@ -26,6 +29,8 @@ struct virtio_blk_config | |||
| 26 | __u8 heads; | 29 | __u8 heads; |
| 27 | __u8 sectors; | 30 | __u8 sectors; |
| 28 | } geometry; | 31 | } geometry; |
| 32 | /* block size of device (if VIRTIO_BLK_F_BLK_SIZE) */ | ||
| 33 | __u32 blk_size; | ||
| 29 | } __attribute__((packed)); | 34 | } __attribute__((packed)); |
| 30 | 35 | ||
| 31 | /* These two define direction. */ | 36 | /* These two define direction. */ |
diff --git a/include/linux/virtio_config.h b/include/linux/virtio_config.h index f364bbf63c34..bf8ec283b232 100644 --- a/include/linux/virtio_config.h +++ b/include/linux/virtio_config.h | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | #ifndef _LINUX_VIRTIO_CONFIG_H | 1 | #ifndef _LINUX_VIRTIO_CONFIG_H |
| 2 | #define _LINUX_VIRTIO_CONFIG_H | 2 | #define _LINUX_VIRTIO_CONFIG_H |
| 3 | /* This header, excluding the #ifdef __KERNEL__ part, is BSD licensed so | ||
| 4 | * anyone can use the definitions to implement compatible drivers/servers. */ | ||
| 5 | |||
| 3 | /* Virtio devices use a standardized configuration space to define their | 6 | /* Virtio devices use a standardized configuration space to define their |
| 4 | * features and pass configuration information, but each implementation can | 7 | * features and pass configuration information, but each implementation can |
| 5 | * store and access that space differently. */ | 8 | * store and access that space differently. */ |
| @@ -15,6 +18,12 @@ | |||
| 15 | /* We've given up on this device. */ | 18 | /* We've given up on this device. */ |
| 16 | #define VIRTIO_CONFIG_S_FAILED 0x80 | 19 | #define VIRTIO_CONFIG_S_FAILED 0x80 |
| 17 | 20 | ||
| 21 | /* Some virtio feature bits (currently bits 28 through 31) are reserved for the | ||
| 22 | * transport being used (eg. virtio_ring), the rest are per-device feature | ||
| 23 | * bits. */ | ||
| 24 | #define VIRTIO_TRANSPORT_F_START 28 | ||
| 25 | #define VIRTIO_TRANSPORT_F_END 32 | ||
| 26 | |||
| 18 | /* Do we get callbacks when the ring is completely used, even if we've | 27 | /* Do we get callbacks when the ring is completely used, even if we've |
| 19 | * suppressed them? */ | 28 | * suppressed them? */ |
| 20 | #define VIRTIO_F_NOTIFY_ON_EMPTY 24 | 29 | #define VIRTIO_F_NOTIFY_ON_EMPTY 24 |
| @@ -52,9 +61,10 @@ | |||
| 52 | * @get_features: get the array of feature bits for this device. | 61 | * @get_features: get the array of feature bits for this device. |
| 53 | * vdev: the virtio_device | 62 | * vdev: the virtio_device |
| 54 | * Returns the first 32 feature bits (all we currently need). | 63 | * Returns the first 32 feature bits (all we currently need). |
| 55 | * @set_features: confirm what device features we'll be using. | 64 | * @finalize_features: confirm what device features we'll be using. |
| 56 | * vdev: the virtio_device | 65 | * vdev: the virtio_device |
| 57 | * feature: the first 32 feature bits | 66 | * This gives the final feature bits for the device: it can change |
| 67 | * the dev->feature bits if it wants. | ||
| 58 | */ | 68 | */ |
| 59 | struct virtio_config_ops | 69 | struct virtio_config_ops |
| 60 | { | 70 | { |
| @@ -70,7 +80,7 @@ struct virtio_config_ops | |||
| 70 | void (*callback)(struct virtqueue *)); | 80 | void (*callback)(struct virtqueue *)); |
| 71 | void (*del_vq)(struct virtqueue *vq); | 81 | void (*del_vq)(struct virtqueue *vq); |
| 72 | u32 (*get_features)(struct virtio_device *vdev); | 82 | u32 (*get_features)(struct virtio_device *vdev); |
| 73 | void (*set_features)(struct virtio_device *vdev, u32 features); | 83 | void (*finalize_features)(struct virtio_device *vdev); |
| 74 | }; | 84 | }; |
| 75 | 85 | ||
| 76 | /* If driver didn't advertise the feature, it will never appear. */ | 86 | /* If driver didn't advertise the feature, it will never appear. */ |
diff --git a/include/linux/virtio_console.h b/include/linux/virtio_console.h index ed2d4ead7eb7..19a0da0dba41 100644 --- a/include/linux/virtio_console.h +++ b/include/linux/virtio_console.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef _LINUX_VIRTIO_CONSOLE_H | 1 | #ifndef _LINUX_VIRTIO_CONSOLE_H |
| 2 | #define _LINUX_VIRTIO_CONSOLE_H | 2 | #define _LINUX_VIRTIO_CONSOLE_H |
| 3 | #include <linux/virtio_config.h> | 3 | #include <linux/virtio_config.h> |
| 4 | /* This header, excluding the #ifdef __KERNEL__ part, is BSD licensed so | ||
| 5 | * anyone can use the definitions to implement compatible drivers/servers. */ | ||
| 4 | 6 | ||
| 5 | /* The ID for virtio console */ | 7 | /* The ID for virtio console */ |
| 6 | #define VIRTIO_ID_CONSOLE 3 | 8 | #define VIRTIO_ID_CONSOLE 3 |
diff --git a/include/linux/virtio_net.h b/include/linux/virtio_net.h index 38c0571820fb..5e33761b9b8a 100644 --- a/include/linux/virtio_net.h +++ b/include/linux/virtio_net.h | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | #ifndef _LINUX_VIRTIO_NET_H | 1 | #ifndef _LINUX_VIRTIO_NET_H |
| 2 | #define _LINUX_VIRTIO_NET_H | 2 | #define _LINUX_VIRTIO_NET_H |
| 3 | /* This header is BSD licensed so anyone can use the definitions to implement | ||
| 4 | * compatible drivers/servers. */ | ||
| 3 | #include <linux/virtio_config.h> | 5 | #include <linux/virtio_config.h> |
| 4 | 6 | ||
| 5 | /* The ID for virtio_net */ | 7 | /* The ID for virtio_net */ |
diff --git a/include/linux/virtio_pci.h b/include/linux/virtio_pci.h index b3151659cf49..cdef35742932 100644 --- a/include/linux/virtio_pci.h +++ b/include/linux/virtio_pci.h | |||
| @@ -9,9 +9,8 @@ | |||
| 9 | * Authors: | 9 | * Authors: |
| 10 | * Anthony Liguori <aliguori@us.ibm.com> | 10 | * Anthony Liguori <aliguori@us.ibm.com> |
| 11 | * | 11 | * |
| 12 | * This work is licensed under the terms of the GNU GPL, version 2 or later. | 12 | * This header is BSD licensed so anyone can use the definitions to implement |
| 13 | * See the COPYING file in the top-level directory. | 13 | * compatible drivers/servers. |
| 14 | * | ||
| 15 | */ | 14 | */ |
| 16 | 15 | ||
| 17 | #ifndef _LINUX_VIRTIO_PCI_H | 16 | #ifndef _LINUX_VIRTIO_PCI_H |
diff --git a/include/linux/virtio_ring.h b/include/linux/virtio_ring.h index abe481ed990e..c4a598fb3826 100644 --- a/include/linux/virtio_ring.h +++ b/include/linux/virtio_ring.h | |||
| @@ -120,6 +120,8 @@ struct virtqueue *vring_new_virtqueue(unsigned int num, | |||
| 120 | void (*notify)(struct virtqueue *vq), | 120 | void (*notify)(struct virtqueue *vq), |
| 121 | void (*callback)(struct virtqueue *vq)); | 121 | void (*callback)(struct virtqueue *vq)); |
| 122 | void vring_del_virtqueue(struct virtqueue *vq); | 122 | void vring_del_virtqueue(struct virtqueue *vq); |
| 123 | /* Filter out transport-specific feature bits. */ | ||
| 124 | void vring_transport_features(struct virtio_device *vdev); | ||
| 123 | 125 | ||
| 124 | irqreturn_t vring_interrupt(int irq, void *_vq); | 126 | irqreturn_t vring_interrupt(int irq, void *_vq); |
| 125 | #endif /* __KERNEL__ */ | 127 | #endif /* __KERNEL__ */ |
diff --git a/include/linux/virtio_rng.h b/include/linux/virtio_rng.h index 331afb6c9f62..1a85dab8a940 100644 --- a/include/linux/virtio_rng.h +++ b/include/linux/virtio_rng.h | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | #ifndef _LINUX_VIRTIO_RNG_H | 1 | #ifndef _LINUX_VIRTIO_RNG_H |
| 2 | #define _LINUX_VIRTIO_RNG_H | 2 | #define _LINUX_VIRTIO_RNG_H |
| 3 | /* This header is BSD licensed so anyone can use the definitions to implement | ||
| 4 | * compatible drivers/servers. */ | ||
| 3 | #include <linux/virtio_config.h> | 5 | #include <linux/virtio_config.h> |
| 4 | 6 | ||
| 5 | /* The ID for virtio_rng */ | 7 | /* The ID for virtio_rng */ |
diff --git a/include/linux/vmstat.h b/include/linux/vmstat.h index e83b69346d23..58334d439516 100644 --- a/include/linux/vmstat.h +++ b/include/linux/vmstat.h | |||
| @@ -44,6 +44,12 @@ enum vm_event_item { PGPGIN, PGPGOUT, PSWPIN, PSWPOUT, | |||
| 44 | NR_VM_EVENT_ITEMS | 44 | NR_VM_EVENT_ITEMS |
| 45 | }; | 45 | }; |
| 46 | 46 | ||
| 47 | extern const struct seq_operations fragmentation_op; | ||
| 48 | extern const struct seq_operations pagetypeinfo_op; | ||
| 49 | extern const struct seq_operations zoneinfo_op; | ||
| 50 | extern const struct seq_operations vmstat_op; | ||
| 51 | extern int sysctl_stat_interval; | ||
| 52 | |||
| 47 | #ifdef CONFIG_VM_EVENT_COUNTERS | 53 | #ifdef CONFIG_VM_EVENT_COUNTERS |
| 48 | /* | 54 | /* |
| 49 | * Light weight per cpu counter implementation. | 55 | * Light weight per cpu counter implementation. |
diff --git a/include/linux/vt_kern.h b/include/linux/vt_kern.h index 9448ffbdcbf6..1c78d56c57e5 100644 --- a/include/linux/vt_kern.h +++ b/include/linux/vt_kern.h | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | #include <linux/mutex.h> | 12 | #include <linux/mutex.h> |
| 13 | #include <linux/console_struct.h> | 13 | #include <linux/console_struct.h> |
| 14 | #include <linux/mm.h> | 14 | #include <linux/mm.h> |
| 15 | #include <linux/consolemap.h> | ||
| 15 | 16 | ||
| 16 | /* | 17 | /* |
| 17 | * Presently, a lot of graphics programs do not restore the contents of | 18 | * Presently, a lot of graphics programs do not restore the contents of |
| @@ -54,6 +55,7 @@ void redraw_screen(struct vc_data *vc, int is_switch); | |||
| 54 | struct tty_struct; | 55 | struct tty_struct; |
| 55 | int tioclinux(struct tty_struct *tty, unsigned long arg); | 56 | int tioclinux(struct tty_struct *tty, unsigned long arg); |
| 56 | 57 | ||
| 58 | #ifdef CONFIG_CONSOLE_TRANSLATIONS | ||
| 57 | /* consolemap.c */ | 59 | /* consolemap.c */ |
| 58 | 60 | ||
| 59 | struct unimapinit; | 61 | struct unimapinit; |
| @@ -71,6 +73,24 @@ void con_free_unimap(struct vc_data *vc); | |||
| 71 | void con_protect_unimap(struct vc_data *vc, int rdonly); | 73 | void con_protect_unimap(struct vc_data *vc, int rdonly); |
| 72 | int con_copy_unimap(struct vc_data *dst_vc, struct vc_data *src_vc); | 74 | int con_copy_unimap(struct vc_data *dst_vc, struct vc_data *src_vc); |
| 73 | 75 | ||
| 76 | #define vc_translate(vc, c) ((vc)->vc_translate[(c) | \ | ||
| 77 | ((vc)->vc_toggle_meta ? 0x80 : 0)]) | ||
| 78 | #else | ||
| 79 | #define con_set_trans_old(arg) (0) | ||
| 80 | #define con_get_trans_old(arg) (-EINVAL) | ||
| 81 | #define con_set_trans_new(arg) (0) | ||
| 82 | #define con_get_trans_new(arg) (-EINVAL) | ||
| 83 | #define con_clear_unimap(vc, ui) (0) | ||
| 84 | #define con_set_unimap(vc, ct, list) (0) | ||
| 85 | #define con_set_default_unimap(vc) (0) | ||
| 86 | #define con_copy_unimap(d, s) (0) | ||
| 87 | #define con_get_unimap(vc, ct, uct, list) (-EINVAL) | ||
| 88 | #define con_free_unimap(vc) do { ; } while (0) | ||
| 89 | #define con_protect_unimap(vc, rdonly) do { ; } while (0) | ||
| 90 | |||
| 91 | #define vc_translate(vc, c) (c) | ||
| 92 | #endif | ||
| 93 | |||
| 74 | /* vt.c */ | 94 | /* vt.c */ |
| 75 | int vt_waitactive(int vt); | 95 | int vt_waitactive(int vt); |
| 76 | void change_console(struct vc_data *new_vc); | 96 | void change_console(struct vc_data *new_vc); |
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index 542526c6e8ef..5c158c477ac7 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h | |||
| @@ -179,6 +179,8 @@ __create_workqueue_key(const char *name, int singlethread, | |||
| 179 | extern void destroy_workqueue(struct workqueue_struct *wq); | 179 | extern void destroy_workqueue(struct workqueue_struct *wq); |
| 180 | 180 | ||
| 181 | extern int queue_work(struct workqueue_struct *wq, struct work_struct *work); | 181 | extern int queue_work(struct workqueue_struct *wq, struct work_struct *work); |
| 182 | extern int queue_work_on(int cpu, struct workqueue_struct *wq, | ||
| 183 | struct work_struct *work); | ||
| 182 | extern int queue_delayed_work(struct workqueue_struct *wq, | 184 | extern int queue_delayed_work(struct workqueue_struct *wq, |
| 183 | struct delayed_work *work, unsigned long delay); | 185 | struct delayed_work *work, unsigned long delay); |
| 184 | extern int queue_delayed_work_on(int cpu, struct workqueue_struct *wq, | 186 | extern int queue_delayed_work_on(int cpu, struct workqueue_struct *wq, |
| @@ -188,6 +190,7 @@ extern void flush_workqueue(struct workqueue_struct *wq); | |||
| 188 | extern void flush_scheduled_work(void); | 190 | extern void flush_scheduled_work(void); |
| 189 | 191 | ||
| 190 | extern int schedule_work(struct work_struct *work); | 192 | extern int schedule_work(struct work_struct *work); |
| 193 | extern int schedule_work_on(int cpu, struct work_struct *work); | ||
| 191 | extern int schedule_delayed_work(struct delayed_work *work, unsigned long delay); | 194 | extern int schedule_delayed_work(struct delayed_work *work, unsigned long delay); |
| 192 | extern int schedule_delayed_work_on(int cpu, struct delayed_work *work, | 195 | extern int schedule_delayed_work_on(int cpu, struct delayed_work *work, |
| 193 | unsigned long delay); | 196 | unsigned long delay); |
| @@ -198,6 +201,8 @@ extern int keventd_up(void); | |||
| 198 | extern void init_workqueues(void); | 201 | extern void init_workqueues(void); |
| 199 | int execute_in_process_context(work_func_t fn, struct execute_work *); | 202 | int execute_in_process_context(work_func_t fn, struct execute_work *); |
| 200 | 203 | ||
| 204 | extern int flush_work(struct work_struct *work); | ||
| 205 | |||
| 201 | extern int cancel_work_sync(struct work_struct *work); | 206 | extern int cancel_work_sync(struct work_struct *work); |
| 202 | 207 | ||
| 203 | /* | 208 | /* |
