diff options
| author | James Morris <jmorris@namei.org> | 2009-02-05 19:01:45 -0500 |
|---|---|---|
| committer | James Morris <jmorris@namei.org> | 2009-02-05 19:01:45 -0500 |
| commit | cb5629b10d64a8006622ce3a52bc887d91057d69 (patch) | |
| tree | 7c06d8f30783115e3384721046258ce615b129c5 /include/linux | |
| parent | 8920d5ad6ba74ae8ab020e90cc4d976980e68701 (diff) | |
| parent | f01d1d546abb2f4028b5299092f529eefb01253a (diff) | |
Merge branch 'master' into next
Conflicts:
fs/namei.c
Manually merged per:
diff --cc fs/namei.c
index 734f2b5,bbc15c2..0000000
--- a/fs/namei.c
+++ b/fs/namei.c
@@@ -860,9 -848,8 +849,10 @@@ static int __link_path_walk(const char
nd->flags |= LOOKUP_CONTINUE;
err = exec_permission_lite(inode);
if (err == -EAGAIN)
- err = vfs_permission(nd, MAY_EXEC);
+ err = inode_permission(nd->path.dentry->d_inode,
+ MAY_EXEC);
+ if (!err)
+ err = ima_path_check(&nd->path, MAY_EXEC);
if (err)
break;
@@@ -1525,14 -1506,9 +1509,14 @@@ int may_open(struct path *path, int acc
flag &= ~O_TRUNC;
}
- error = vfs_permission(nd, acc_mode);
+ error = inode_permission(inode, acc_mode);
if (error)
return error;
+
- error = ima_path_check(&nd->path,
++ error = ima_path_check(path,
+ acc_mode & (MAY_READ | MAY_WRITE | MAY_EXEC));
+ if (error)
+ return error;
/*
* An append-only file must be opened in append mode for writing.
*/
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'include/linux')
325 files changed, 6286 insertions, 3042 deletions
diff --git a/include/linux/8250_pci.h b/include/linux/8250_pci.h index 3209dd46ea7d..b24ff086a662 100644 --- a/include/linux/8250_pci.h +++ b/include/linux/8250_pci.h | |||
| @@ -31,7 +31,7 @@ struct pciserial_board { | |||
| 31 | struct serial_private; | 31 | struct serial_private; |
| 32 | 32 | ||
| 33 | struct serial_private * | 33 | struct serial_private * |
| 34 | pciserial_init_ports(struct pci_dev *dev, struct pciserial_board *board); | 34 | pciserial_init_ports(struct pci_dev *dev, const struct pciserial_board *board); |
| 35 | void pciserial_remove_ports(struct serial_private *priv); | 35 | void pciserial_remove_ports(struct serial_private *priv); |
| 36 | void pciserial_suspend_ports(struct serial_private *priv); | 36 | void pciserial_suspend_ports(struct serial_private *priv); |
| 37 | void pciserial_resume_ports(struct serial_private *priv); | 37 | void pciserial_resume_ports(struct serial_private *priv); |
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index 95ac82340c3b..b97cdc516a8f 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild | |||
| @@ -41,6 +41,7 @@ header-y += baycom.h | |||
| 41 | header-y += bfs_fs.h | 41 | header-y += bfs_fs.h |
| 42 | header-y += blkpg.h | 42 | header-y += blkpg.h |
| 43 | header-y += bpqether.h | 43 | header-y += bpqether.h |
| 44 | header-y += bsg.h | ||
| 44 | header-y += can.h | 45 | header-y += can.h |
| 45 | header-y += cdk.h | 46 | header-y += cdk.h |
| 46 | header-y += chio.h | 47 | header-y += chio.h |
| @@ -56,8 +57,6 @@ header-y += dlm_device.h | |||
| 56 | header-y += dlm_netlink.h | 57 | header-y += dlm_netlink.h |
| 57 | header-y += dm-ioctl.h | 58 | header-y += dm-ioctl.h |
| 58 | header-y += dn.h | 59 | header-y += dn.h |
| 59 | header-y += dqblk_v1.h | ||
| 60 | header-y += dqblk_v2.h | ||
| 61 | header-y += dqblk_xfs.h | 60 | header-y += dqblk_xfs.h |
| 62 | header-y += efs_fs_sb.h | 61 | header-y += efs_fs_sb.h |
| 63 | header-y += elf-fdpic.h | 62 | header-y += elf-fdpic.h |
| @@ -91,7 +90,6 @@ header-y += if_ppp.h | |||
| 91 | header-y += if_slip.h | 90 | header-y += if_slip.h |
| 92 | header-y += if_strip.h | 91 | header-y += if_strip.h |
| 93 | header-y += if_tun.h | 92 | header-y += if_tun.h |
| 94 | header-y += if_tunnel.h | ||
| 95 | header-y += in_route.h | 93 | header-y += in_route.h |
| 96 | header-y += ioctl.h | 94 | header-y += ioctl.h |
| 97 | header-y += ip6_tunnel.h | 95 | header-y += ip6_tunnel.h |
| @@ -134,8 +132,6 @@ header-y += posix_types.h | |||
| 134 | header-y += ppdev.h | 132 | header-y += ppdev.h |
| 135 | header-y += prctl.h | 133 | header-y += prctl.h |
| 136 | header-y += qnxtypes.h | 134 | header-y += qnxtypes.h |
| 137 | header-y += quotaio_v1.h | ||
| 138 | header-y += quotaio_v2.h | ||
| 139 | header-y += radeonfb.h | 135 | header-y += radeonfb.h |
| 140 | header-y += raw.h | 136 | header-y += raw.h |
| 141 | header-y += resource.h | 137 | header-y += resource.h |
| @@ -183,7 +179,6 @@ unifdef-y += auto_fs.h | |||
| 183 | unifdef-y += auxvec.h | 179 | unifdef-y += auxvec.h |
| 184 | unifdef-y += binfmts.h | 180 | unifdef-y += binfmts.h |
| 185 | unifdef-y += blktrace_api.h | 181 | unifdef-y += blktrace_api.h |
| 186 | unifdef-y += byteorder.h | ||
| 187 | unifdef-y += capability.h | 182 | unifdef-y += capability.h |
| 188 | unifdef-y += capi.h | 183 | unifdef-y += capi.h |
| 189 | unifdef-y += cciss_ioctl.h | 184 | unifdef-y += cciss_ioctl.h |
| @@ -240,6 +235,7 @@ unifdef-y += if_phonet.h | |||
| 240 | unifdef-y += if_pppol2tp.h | 235 | unifdef-y += if_pppol2tp.h |
| 241 | unifdef-y += if_pppox.h | 236 | unifdef-y += if_pppox.h |
| 242 | unifdef-y += if_tr.h | 237 | unifdef-y += if_tr.h |
| 238 | unifdef-y += if_tunnel.h | ||
| 243 | unifdef-y += if_vlan.h | 239 | unifdef-y += if_vlan.h |
| 244 | unifdef-y += igmp.h | 240 | unifdef-y += igmp.h |
| 245 | unifdef-y += inet_diag.h | 241 | unifdef-y += inet_diag.h |
| @@ -376,3 +372,5 @@ unifdef-y += xattr.h | |||
| 376 | unifdef-y += xfrm.h | 372 | unifdef-y += xfrm.h |
| 377 | 373 | ||
| 378 | objhdr-y += version.h | 374 | objhdr-y += version.h |
| 375 | header-y += wimax.h | ||
| 376 | header-y += wimax/ | ||
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index fba8051fb297..6fce2fc2d124 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h | |||
| @@ -131,22 +131,6 @@ extern int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity); | |||
| 131 | */ | 131 | */ |
| 132 | void acpi_unregister_gsi (u32 gsi); | 132 | void acpi_unregister_gsi (u32 gsi); |
| 133 | 133 | ||
| 134 | struct acpi_prt_entry { | ||
| 135 | struct list_head node; | ||
| 136 | struct acpi_pci_id id; | ||
| 137 | u8 pin; | ||
| 138 | struct { | ||
| 139 | acpi_handle handle; | ||
| 140 | u32 index; | ||
| 141 | } link; | ||
| 142 | u32 irq; | ||
| 143 | }; | ||
| 144 | |||
| 145 | struct acpi_prt_list { | ||
| 146 | int count; | ||
| 147 | struct list_head entries; | ||
| 148 | }; | ||
| 149 | |||
| 150 | struct pci_dev; | 134 | struct pci_dev; |
| 151 | 135 | ||
| 152 | int acpi_pci_irq_enable (struct pci_dev *dev); | 136 | int acpi_pci_irq_enable (struct pci_dev *dev); |
| @@ -270,6 +254,7 @@ int acpi_check_mem_region(resource_size_t start, resource_size_t n, | |||
| 270 | #ifdef CONFIG_PM_SLEEP | 254 | #ifdef CONFIG_PM_SLEEP |
| 271 | void __init acpi_no_s4_hw_signature(void); | 255 | void __init acpi_no_s4_hw_signature(void); |
| 272 | void __init acpi_old_suspend_ordering(void); | 256 | void __init acpi_old_suspend_ordering(void); |
| 257 | void __init acpi_s4_no_nvs(void); | ||
| 273 | #endif /* CONFIG_PM_SLEEP */ | 258 | #endif /* CONFIG_PM_SLEEP */ |
| 274 | #else /* CONFIG_ACPI */ | 259 | #else /* CONFIG_ACPI */ |
| 275 | 260 | ||
diff --git a/include/linux/agpgart.h b/include/linux/agpgart.h index c8fdb6e658e1..110c600c885f 100644 --- a/include/linux/agpgart.h +++ b/include/linux/agpgart.h | |||
| @@ -52,7 +52,6 @@ | |||
| 52 | 52 | ||
| 53 | #ifndef __KERNEL__ | 53 | #ifndef __KERNEL__ |
| 54 | #include <linux/types.h> | 54 | #include <linux/types.h> |
| 55 | #include <asm/types.h> | ||
| 56 | 55 | ||
| 57 | struct agp_version { | 56 | struct agp_version { |
| 58 | __u16 major; | 57 | __u16 major; |
diff --git a/include/linux/aio_abi.h b/include/linux/aio_abi.h index 9e0172931315..2c8731664180 100644 --- a/include/linux/aio_abi.h +++ b/include/linux/aio_abi.h | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | #ifndef __LINUX__AIO_ABI_H | 27 | #ifndef __LINUX__AIO_ABI_H |
| 28 | #define __LINUX__AIO_ABI_H | 28 | #define __LINUX__AIO_ABI_H |
| 29 | 29 | ||
| 30 | #include <linux/types.h> | ||
| 30 | #include <asm/byteorder.h> | 31 | #include <asm/byteorder.h> |
| 31 | 32 | ||
| 32 | typedef unsigned long aio_context_t; | 33 | typedef unsigned long aio_context_t; |
diff --git a/include/linux/async.h b/include/linux/async.h new file mode 100644 index 000000000000..c4ecacd0b327 --- /dev/null +++ b/include/linux/async.h | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | /* | ||
| 2 | * async.h: Asynchronous function calls for boot performance | ||
| 3 | * | ||
| 4 | * (C) Copyright 2009 Intel Corporation | ||
| 5 | * Author: Arjan van de Ven <arjan@linux.intel.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or | ||
| 8 | * modify it under the terms of the GNU General Public License | ||
| 9 | * as published by the Free Software Foundation; version 2 | ||
| 10 | * of the License. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #include <linux/types.h> | ||
| 14 | #include <linux/list.h> | ||
| 15 | |||
| 16 | typedef u64 async_cookie_t; | ||
| 17 | typedef void (async_func_ptr) (void *data, async_cookie_t cookie); | ||
| 18 | |||
| 19 | extern async_cookie_t async_schedule(async_func_ptr *ptr, void *data); | ||
| 20 | extern async_cookie_t async_schedule_special(async_func_ptr *ptr, void *data, struct list_head *list); | ||
| 21 | extern void async_synchronize_full(void); | ||
| 22 | extern void async_synchronize_full_special(struct list_head *list); | ||
| 23 | extern void async_synchronize_cookie(async_cookie_t cookie); | ||
| 24 | extern void async_synchronize_cookie_special(async_cookie_t cookie, struct list_head *list); | ||
| 25 | |||
diff --git a/include/linux/async_tx.h b/include/linux/async_tx.h index 0f50d4cc4360..45f6297821bd 100644 --- a/include/linux/async_tx.h +++ b/include/linux/async_tx.h | |||
| @@ -59,9 +59,7 @@ enum async_tx_flags { | |||
| 59 | }; | 59 | }; |
| 60 | 60 | ||
| 61 | #ifdef CONFIG_DMA_ENGINE | 61 | #ifdef CONFIG_DMA_ENGINE |
| 62 | void async_tx_issue_pending_all(void); | 62 | #define async_tx_issue_pending_all dma_issue_pending_all |
| 63 | enum dma_status dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx); | ||
| 64 | void async_tx_run_dependencies(struct dma_async_tx_descriptor *tx); | ||
| 65 | #ifdef CONFIG_ARCH_HAS_ASYNC_TX_FIND_CHANNEL | 63 | #ifdef CONFIG_ARCH_HAS_ASYNC_TX_FIND_CHANNEL |
| 66 | #include <asm/async_tx.h> | 64 | #include <asm/async_tx.h> |
| 67 | #else | 65 | #else |
| @@ -77,19 +75,6 @@ static inline void async_tx_issue_pending_all(void) | |||
| 77 | do { } while (0); | 75 | do { } while (0); |
| 78 | } | 76 | } |
| 79 | 77 | ||
| 80 | static inline enum dma_status | ||
| 81 | dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx) | ||
| 82 | { | ||
| 83 | return DMA_SUCCESS; | ||
| 84 | } | ||
| 85 | |||
| 86 | static inline void | ||
| 87 | async_tx_run_dependencies(struct dma_async_tx_descriptor *tx, | ||
| 88 | struct dma_chan *host_chan) | ||
| 89 | { | ||
| 90 | do { } while (0); | ||
| 91 | } | ||
| 92 | |||
| 93 | static inline struct dma_chan * | 78 | static inline struct dma_chan * |
| 94 | async_tx_find_channel(struct dma_async_tx_descriptor *depend_tx, | 79 | async_tx_find_channel(struct dma_async_tx_descriptor *depend_tx, |
| 95 | enum dma_transaction_type tx_type, struct page **dst, int dst_count, | 80 | enum dma_transaction_type tx_type, struct page **dst, int dst_count, |
diff --git a/include/linux/ata.h b/include/linux/ata.h index a53318b8cbd0..08a86d5cdf1b 100644 --- a/include/linux/ata.h +++ b/include/linux/ata.h | |||
| @@ -731,12 +731,17 @@ static inline int ata_id_current_chs_valid(const u16 *id) | |||
| 731 | 731 | ||
| 732 | static inline int ata_id_is_cfa(const u16 *id) | 732 | static inline int ata_id_is_cfa(const u16 *id) |
| 733 | { | 733 | { |
| 734 | if (id[ATA_ID_CONFIG] == 0x848A) /* Standard CF */ | 734 | if (id[ATA_ID_CONFIG] == 0x848A) /* Traditional CF */ |
| 735 | return 1; | 735 | return 1; |
| 736 | /* Could be CF hiding as standard ATA */ | 736 | /* |
| 737 | if (ata_id_major_version(id) >= 3 && | 737 | * CF specs don't require specific value in the word 0 anymore and yet |
| 738 | id[ATA_ID_COMMAND_SET_1] != 0xFFFF && | 738 | * they forbid to report the ATA version in the word 80 and require the |
| 739 | (id[ATA_ID_COMMAND_SET_1] & (1 << 2))) | 739 | * CFA feature set support to be indicated in the word 83 in this case. |
| 740 | * Unfortunately, some cards only follow either of this requirements, | ||
| 741 | * and while those that don't indicate CFA feature support need some | ||
| 742 | * sort of quirk list, it seems impractical for the ones that do... | ||
| 743 | */ | ||
| 744 | if ((id[ATA_ID_COMMAND_SET_2] & 0xC004) == 0x4004) | ||
| 740 | return 1; | 745 | return 1; |
| 741 | return 0; | 746 | return 0; |
| 742 | } | 747 | } |
diff --git a/include/linux/atalk.h b/include/linux/atalk.h index e9ebac2e2ecc..d34c187432ed 100644 --- a/include/linux/atalk.h +++ b/include/linux/atalk.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __LINUX_ATALK_H__ | 1 | #ifndef __LINUX_ATALK_H__ |
| 2 | #define __LINUX_ATALK_H__ | 2 | #define __LINUX_ATALK_H__ |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <asm/byteorder.h> | 5 | #include <asm/byteorder.h> |
| 5 | 6 | ||
| 6 | /* | 7 | /* |
diff --git a/include/linux/atm_idt77105.h b/include/linux/atm_idt77105.h index 05621cf20709..8b724000aa50 100644 --- a/include/linux/atm_idt77105.h +++ b/include/linux/atm_idt77105.h | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | #ifndef LINUX_ATM_IDT77105_H | 7 | #ifndef LINUX_ATM_IDT77105_H |
| 8 | #define LINUX_ATM_IDT77105_H | 8 | #define LINUX_ATM_IDT77105_H |
| 9 | 9 | ||
| 10 | #include <asm/types.h> | 10 | #include <linux/types.h> |
| 11 | #include <linux/atmioc.h> | 11 | #include <linux/atmioc.h> |
| 12 | #include <linux/atmdev.h> | 12 | #include <linux/atmdev.h> |
| 13 | 13 | ||
diff --git a/include/linux/atmbr2684.h b/include/linux/atmbr2684.h index 52bf72affbba..fdb2629b6189 100644 --- a/include/linux/atmbr2684.h +++ b/include/linux/atmbr2684.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef _LINUX_ATMBR2684_H | 1 | #ifndef _LINUX_ATMBR2684_H |
| 2 | #define _LINUX_ATMBR2684_H | 2 | #define _LINUX_ATMBR2684_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/atm.h> | 5 | #include <linux/atm.h> |
| 5 | #include <linux/if.h> /* For IFNAMSIZ */ | 6 | #include <linux/if.h> /* For IFNAMSIZ */ |
| 6 | 7 | ||
diff --git a/include/linux/atmel-mci.h b/include/linux/atmel-mci.h new file mode 100644 index 000000000000..2f1f95737acb --- /dev/null +++ b/include/linux/atmel-mci.h | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | #ifndef __LINUX_ATMEL_MCI_H | ||
| 2 | #define __LINUX_ATMEL_MCI_H | ||
| 3 | |||
| 4 | #define ATMEL_MCI_MAX_NR_SLOTS 2 | ||
| 5 | |||
| 6 | #include <linux/dw_dmac.h> | ||
| 7 | |||
| 8 | /** | ||
| 9 | * struct mci_slot_pdata - board-specific per-slot configuration | ||
| 10 | * @bus_width: Number of data lines wired up the slot | ||
| 11 | * @detect_pin: GPIO pin wired to the card detect switch | ||
| 12 | * @wp_pin: GPIO pin wired to the write protect sensor | ||
| 13 | * | ||
| 14 | * If a given slot is not present on the board, @bus_width should be | ||
| 15 | * set to 0. The other fields are ignored in this case. | ||
| 16 | * | ||
| 17 | * Any pins that aren't available should be set to a negative value. | ||
| 18 | * | ||
| 19 | * Note that support for multiple slots is experimental -- some cards | ||
| 20 | * might get upset if we don't get the clock management exactly right. | ||
| 21 | * But in most cases, it should work just fine. | ||
| 22 | */ | ||
| 23 | struct mci_slot_pdata { | ||
| 24 | unsigned int bus_width; | ||
| 25 | int detect_pin; | ||
| 26 | int wp_pin; | ||
| 27 | }; | ||
| 28 | |||
| 29 | /** | ||
| 30 | * struct mci_platform_data - board-specific MMC/SDcard configuration | ||
| 31 | * @dma_slave: DMA slave interface to use in data transfers. | ||
| 32 | * @slot: Per-slot configuration data. | ||
| 33 | */ | ||
| 34 | struct mci_platform_data { | ||
| 35 | struct dw_dma_slave dma_slave; | ||
| 36 | struct mci_slot_pdata slot[ATMEL_MCI_MAX_NR_SLOTS]; | ||
| 37 | }; | ||
| 38 | |||
| 39 | #endif /* __LINUX_ATMEL_MCI_H */ | ||
diff --git a/include/linux/audit.h b/include/linux/audit.h index 8d1f67789b53..930939abfbc6 100644 --- a/include/linux/audit.h +++ b/include/linux/audit.h | |||
| @@ -252,6 +252,18 @@ | |||
| 252 | #define AUDIT_GREATER_THAN_OR_EQUAL (AUDIT_GREATER_THAN|AUDIT_EQUAL) | 252 | #define AUDIT_GREATER_THAN_OR_EQUAL (AUDIT_GREATER_THAN|AUDIT_EQUAL) |
| 253 | #define AUDIT_OPERATORS (AUDIT_EQUAL|AUDIT_NOT_EQUAL|AUDIT_BIT_MASK) | 253 | #define AUDIT_OPERATORS (AUDIT_EQUAL|AUDIT_NOT_EQUAL|AUDIT_BIT_MASK) |
| 254 | 254 | ||
| 255 | enum { | ||
| 256 | Audit_equal, | ||
| 257 | Audit_not_equal, | ||
| 258 | Audit_bitmask, | ||
| 259 | Audit_bittest, | ||
| 260 | Audit_lt, | ||
| 261 | Audit_gt, | ||
| 262 | Audit_le, | ||
| 263 | Audit_ge, | ||
| 264 | Audit_bad | ||
| 265 | }; | ||
| 266 | |||
| 255 | /* Status symbols */ | 267 | /* Status symbols */ |
| 256 | /* Mask values */ | 268 | /* Mask values */ |
| 257 | #define AUDIT_STATUS_ENABLED 0x0001 | 269 | #define AUDIT_STATUS_ENABLED 0x0001 |
| @@ -378,6 +390,8 @@ struct audit_krule { | |||
| 378 | struct audit_watch *watch; /* associated watch */ | 390 | struct audit_watch *watch; /* associated watch */ |
| 379 | struct audit_tree *tree; /* associated watched tree */ | 391 | struct audit_tree *tree; /* associated watched tree */ |
| 380 | struct list_head rlist; /* entry in audit_{watch,tree}.rules list */ | 392 | struct list_head rlist; /* entry in audit_{watch,tree}.rules list */ |
| 393 | struct list_head list; /* for AUDIT_LIST* purposes only */ | ||
| 394 | u64 prio; | ||
| 381 | }; | 395 | }; |
| 382 | 396 | ||
| 383 | struct audit_field { | 397 | struct audit_field { |
| @@ -448,70 +462,56 @@ extern int audit_set_loginuid(struct task_struct *task, uid_t loginuid); | |||
| 448 | #define audit_get_loginuid(t) ((t)->loginuid) | 462 | #define audit_get_loginuid(t) ((t)->loginuid) |
| 449 | #define audit_get_sessionid(t) ((t)->sessionid) | 463 | #define audit_get_sessionid(t) ((t)->sessionid) |
| 450 | extern void audit_log_task_context(struct audit_buffer *ab); | 464 | extern void audit_log_task_context(struct audit_buffer *ab); |
| 451 | extern int __audit_ipc_obj(struct kern_ipc_perm *ipcp); | 465 | extern void __audit_ipc_obj(struct kern_ipc_perm *ipcp); |
| 452 | extern int __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode); | 466 | extern void __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode); |
| 453 | extern int audit_bprm(struct linux_binprm *bprm); | 467 | extern int audit_bprm(struct linux_binprm *bprm); |
| 454 | extern int audit_socketcall(int nargs, unsigned long *args); | 468 | extern void audit_socketcall(int nargs, unsigned long *args); |
| 455 | extern int audit_sockaddr(int len, void *addr); | 469 | extern int audit_sockaddr(int len, void *addr); |
| 456 | extern int __audit_fd_pair(int fd1, int fd2); | 470 | extern void __audit_fd_pair(int fd1, int fd2); |
| 457 | extern int audit_set_macxattr(const char *name); | 471 | extern int audit_set_macxattr(const char *name); |
| 458 | extern int __audit_mq_open(int oflag, mode_t mode, struct mq_attr __user *u_attr); | 472 | extern void __audit_mq_open(int oflag, mode_t mode, struct mq_attr *attr); |
| 459 | extern int __audit_mq_timedsend(mqd_t mqdes, size_t msg_len, unsigned int msg_prio, const struct timespec __user *u_abs_timeout); | 473 | extern void __audit_mq_sendrecv(mqd_t mqdes, size_t msg_len, unsigned int msg_prio, const struct timespec *abs_timeout); |
| 460 | extern int __audit_mq_timedreceive(mqd_t mqdes, size_t msg_len, unsigned int __user *u_msg_prio, const struct timespec __user *u_abs_timeout); | 474 | extern void __audit_mq_notify(mqd_t mqdes, const struct sigevent *notification); |
| 461 | extern int __audit_mq_notify(mqd_t mqdes, const struct sigevent __user *u_notification); | 475 | extern void __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat); |
| 462 | extern int __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat); | ||
| 463 | extern int __audit_log_bprm_fcaps(struct linux_binprm *bprm, | 476 | extern int __audit_log_bprm_fcaps(struct linux_binprm *bprm, |
| 464 | const struct cred *new, | 477 | const struct cred *new, |
| 465 | const struct cred *old); | 478 | const struct cred *old); |
| 466 | extern int __audit_log_capset(pid_t pid, const struct cred *new, const struct cred *old); | 479 | extern void __audit_log_capset(pid_t pid, const struct cred *new, const struct cred *old); |
| 467 | 480 | ||
| 468 | static inline int audit_ipc_obj(struct kern_ipc_perm *ipcp) | 481 | static inline void audit_ipc_obj(struct kern_ipc_perm *ipcp) |
| 469 | { | 482 | { |
| 470 | if (unlikely(!audit_dummy_context())) | 483 | if (unlikely(!audit_dummy_context())) |
| 471 | return __audit_ipc_obj(ipcp); | 484 | __audit_ipc_obj(ipcp); |
| 472 | return 0; | ||
| 473 | } | ||
| 474 | static inline int audit_fd_pair(int fd1, int fd2) | ||
| 475 | { | ||
| 476 | if (unlikely(!audit_dummy_context())) | ||
| 477 | return __audit_fd_pair(fd1, fd2); | ||
| 478 | return 0; | ||
| 479 | } | 485 | } |
| 480 | static inline int audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode) | 486 | static inline void audit_fd_pair(int fd1, int fd2) |
| 481 | { | 487 | { |
| 482 | if (unlikely(!audit_dummy_context())) | 488 | if (unlikely(!audit_dummy_context())) |
| 483 | return __audit_ipc_set_perm(qbytes, uid, gid, mode); | 489 | __audit_fd_pair(fd1, fd2); |
| 484 | return 0; | ||
| 485 | } | 490 | } |
| 486 | static inline int audit_mq_open(int oflag, mode_t mode, struct mq_attr __user *u_attr) | 491 | static inline void audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, mode_t mode) |
| 487 | { | 492 | { |
| 488 | if (unlikely(!audit_dummy_context())) | 493 | if (unlikely(!audit_dummy_context())) |
| 489 | return __audit_mq_open(oflag, mode, u_attr); | 494 | __audit_ipc_set_perm(qbytes, uid, gid, mode); |
| 490 | return 0; | ||
| 491 | } | 495 | } |
| 492 | static inline int audit_mq_timedsend(mqd_t mqdes, size_t msg_len, unsigned int msg_prio, const struct timespec __user *u_abs_timeout) | 496 | static inline void audit_mq_open(int oflag, mode_t mode, struct mq_attr *attr) |
| 493 | { | 497 | { |
| 494 | if (unlikely(!audit_dummy_context())) | 498 | if (unlikely(!audit_dummy_context())) |
| 495 | return __audit_mq_timedsend(mqdes, msg_len, msg_prio, u_abs_timeout); | 499 | __audit_mq_open(oflag, mode, attr); |
| 496 | return 0; | ||
| 497 | } | 500 | } |
| 498 | static inline int audit_mq_timedreceive(mqd_t mqdes, size_t msg_len, unsigned int __user *u_msg_prio, const struct timespec __user *u_abs_timeout) | 501 | static inline void audit_mq_sendrecv(mqd_t mqdes, size_t msg_len, unsigned int msg_prio, const struct timespec *abs_timeout) |
| 499 | { | 502 | { |
| 500 | if (unlikely(!audit_dummy_context())) | 503 | if (unlikely(!audit_dummy_context())) |
| 501 | return __audit_mq_timedreceive(mqdes, msg_len, u_msg_prio, u_abs_timeout); | 504 | __audit_mq_sendrecv(mqdes, msg_len, msg_prio, abs_timeout); |
| 502 | return 0; | ||
| 503 | } | 505 | } |
| 504 | static inline int audit_mq_notify(mqd_t mqdes, const struct sigevent __user *u_notification) | 506 | static inline void audit_mq_notify(mqd_t mqdes, const struct sigevent *notification) |
| 505 | { | 507 | { |
| 506 | if (unlikely(!audit_dummy_context())) | 508 | if (unlikely(!audit_dummy_context())) |
| 507 | return __audit_mq_notify(mqdes, u_notification); | 509 | __audit_mq_notify(mqdes, notification); |
| 508 | return 0; | ||
| 509 | } | 510 | } |
| 510 | static inline int audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat) | 511 | static inline void audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat) |
| 511 | { | 512 | { |
| 512 | if (unlikely(!audit_dummy_context())) | 513 | if (unlikely(!audit_dummy_context())) |
| 513 | return __audit_mq_getsetattr(mqdes, mqstat); | 514 | __audit_mq_getsetattr(mqdes, mqstat); |
| 514 | return 0; | ||
| 515 | } | 515 | } |
| 516 | 516 | ||
| 517 | static inline int audit_log_bprm_fcaps(struct linux_binprm *bprm, | 517 | static inline int audit_log_bprm_fcaps(struct linux_binprm *bprm, |
| @@ -523,12 +523,11 @@ static inline int audit_log_bprm_fcaps(struct linux_binprm *bprm, | |||
| 523 | return 0; | 523 | return 0; |
| 524 | } | 524 | } |
| 525 | 525 | ||
| 526 | static inline int audit_log_capset(pid_t pid, const struct cred *new, | 526 | static inline void audit_log_capset(pid_t pid, const struct cred *new, |
| 527 | const struct cred *old) | 527 | const struct cred *old) |
| 528 | { | 528 | { |
| 529 | if (unlikely(!audit_dummy_context())) | 529 | if (unlikely(!audit_dummy_context())) |
| 530 | return __audit_log_capset(pid, new, old); | 530 | __audit_log_capset(pid, new, old); |
| 531 | return 0; | ||
| 532 | } | 531 | } |
| 533 | 532 | ||
| 534 | extern int audit_n_rules; | 533 | extern int audit_n_rules; |
| @@ -551,20 +550,19 @@ extern int audit_signals; | |||
| 551 | #define audit_get_loginuid(t) (-1) | 550 | #define audit_get_loginuid(t) (-1) |
| 552 | #define audit_get_sessionid(t) (-1) | 551 | #define audit_get_sessionid(t) (-1) |
| 553 | #define audit_log_task_context(b) do { ; } while (0) | 552 | #define audit_log_task_context(b) do { ; } while (0) |
| 554 | #define audit_ipc_obj(i) ({ 0; }) | 553 | #define audit_ipc_obj(i) ((void)0) |
| 555 | #define audit_ipc_set_perm(q,u,g,m) ({ 0; }) | 554 | #define audit_ipc_set_perm(q,u,g,m) ((void)0) |
| 556 | #define audit_bprm(p) ({ 0; }) | 555 | #define audit_bprm(p) ({ 0; }) |
| 557 | #define audit_socketcall(n,a) ({ 0; }) | 556 | #define audit_socketcall(n,a) ((void)0) |
| 558 | #define audit_fd_pair(n,a) ({ 0; }) | 557 | #define audit_fd_pair(n,a) ((void)0) |
| 559 | #define audit_sockaddr(len, addr) ({ 0; }) | 558 | #define audit_sockaddr(len, addr) ({ 0; }) |
| 560 | #define audit_set_macxattr(n) do { ; } while (0) | 559 | #define audit_set_macxattr(n) do { ; } while (0) |
| 561 | #define audit_mq_open(o,m,a) ({ 0; }) | 560 | #define audit_mq_open(o,m,a) ((void)0) |
| 562 | #define audit_mq_timedsend(d,l,p,t) ({ 0; }) | 561 | #define audit_mq_sendrecv(d,l,p,t) ((void)0) |
| 563 | #define audit_mq_timedreceive(d,l,p,t) ({ 0; }) | 562 | #define audit_mq_notify(d,n) ((void)0) |
| 564 | #define audit_mq_notify(d,n) ({ 0; }) | 563 | #define audit_mq_getsetattr(d,s) ((void)0) |
| 565 | #define audit_mq_getsetattr(d,s) ({ 0; }) | ||
| 566 | #define audit_log_bprm_fcaps(b, ncr, ocr) ({ 0; }) | 564 | #define audit_log_bprm_fcaps(b, ncr, ocr) ({ 0; }) |
| 567 | #define audit_log_capset(pid, ncr, ocr) ({ 0; }) | 565 | #define audit_log_capset(pid, ncr, ocr) ((void)0) |
| 568 | #define audit_ptrace(t) ((void)0) | 566 | #define audit_ptrace(t) ((void)0) |
| 569 | #define audit_n_rules 0 | 567 | #define audit_n_rules 0 |
| 570 | #define audit_signals 0 | 568 | #define audit_signals 0 |
diff --git a/include/linux/auto_dev-ioctl.h b/include/linux/auto_dev-ioctl.h index f4d05ccd731f..91a773993a5c 100644 --- a/include/linux/auto_dev-ioctl.h +++ b/include/linux/auto_dev-ioctl.h | |||
| @@ -10,6 +10,7 @@ | |||
| 10 | #ifndef _LINUX_AUTO_DEV_IOCTL_H | 10 | #ifndef _LINUX_AUTO_DEV_IOCTL_H |
| 11 | #define _LINUX_AUTO_DEV_IOCTL_H | 11 | #define _LINUX_AUTO_DEV_IOCTL_H |
| 12 | 12 | ||
| 13 | #include <linux/string.h> | ||
| 13 | #include <linux/types.h> | 14 | #include <linux/types.h> |
| 14 | 15 | ||
| 15 | #define AUTOFS_DEVICE_NAME "autofs" | 16 | #define AUTOFS_DEVICE_NAME "autofs" |
| @@ -25,6 +26,60 @@ | |||
| 25 | * An ioctl interface for autofs mount point control. | 26 | * An ioctl interface for autofs mount point control. |
| 26 | */ | 27 | */ |
| 27 | 28 | ||
| 29 | struct args_protover { | ||
| 30 | __u32 version; | ||
| 31 | }; | ||
| 32 | |||
| 33 | struct args_protosubver { | ||
| 34 | __u32 sub_version; | ||
| 35 | }; | ||
| 36 | |||
| 37 | struct args_openmount { | ||
| 38 | __u32 devid; | ||
| 39 | }; | ||
| 40 | |||
| 41 | struct args_ready { | ||
| 42 | __u32 token; | ||
| 43 | }; | ||
| 44 | |||
| 45 | struct args_fail { | ||
| 46 | __u32 token; | ||
| 47 | __s32 status; | ||
| 48 | }; | ||
| 49 | |||
| 50 | struct args_setpipefd { | ||
| 51 | __s32 pipefd; | ||
| 52 | }; | ||
| 53 | |||
| 54 | struct args_timeout { | ||
| 55 | __u64 timeout; | ||
| 56 | }; | ||
| 57 | |||
| 58 | struct args_requester { | ||
| 59 | __u32 uid; | ||
| 60 | __u32 gid; | ||
| 61 | }; | ||
| 62 | |||
| 63 | struct args_expire { | ||
| 64 | __u32 how; | ||
| 65 | }; | ||
| 66 | |||
| 67 | struct args_askumount { | ||
| 68 | __u32 may_umount; | ||
| 69 | }; | ||
| 70 | |||
| 71 | struct args_ismountpoint { | ||
| 72 | union { | ||
| 73 | struct args_in { | ||
| 74 | __u32 type; | ||
| 75 | } in; | ||
| 76 | struct args_out { | ||
| 77 | __u32 devid; | ||
| 78 | __u32 magic; | ||
| 79 | } out; | ||
| 80 | }; | ||
| 81 | }; | ||
| 82 | |||
| 28 | /* | 83 | /* |
| 29 | * All the ioctls use this structure. | 84 | * All the ioctls use this structure. |
| 30 | * When sending a path size must account for the total length | 85 | * When sending a path size must account for the total length |
| @@ -39,20 +94,32 @@ struct autofs_dev_ioctl { | |||
| 39 | * including this struct */ | 94 | * including this struct */ |
| 40 | __s32 ioctlfd; /* automount command fd */ | 95 | __s32 ioctlfd; /* automount command fd */ |
| 41 | 96 | ||
| 42 | __u32 arg1; /* Command parameters */ | 97 | /* Command parameters */ |
| 43 | __u32 arg2; | 98 | |
| 99 | union { | ||
| 100 | struct args_protover protover; | ||
| 101 | struct args_protosubver protosubver; | ||
| 102 | struct args_openmount openmount; | ||
| 103 | struct args_ready ready; | ||
| 104 | struct args_fail fail; | ||
| 105 | struct args_setpipefd setpipefd; | ||
| 106 | struct args_timeout timeout; | ||
| 107 | struct args_requester requester; | ||
| 108 | struct args_expire expire; | ||
| 109 | struct args_askumount askumount; | ||
| 110 | struct args_ismountpoint ismountpoint; | ||
| 111 | }; | ||
| 44 | 112 | ||
| 45 | char path[0]; | 113 | char path[0]; |
| 46 | }; | 114 | }; |
| 47 | 115 | ||
| 48 | static inline void init_autofs_dev_ioctl(struct autofs_dev_ioctl *in) | 116 | static inline void init_autofs_dev_ioctl(struct autofs_dev_ioctl *in) |
| 49 | { | 117 | { |
| 118 | memset(in, 0, sizeof(struct autofs_dev_ioctl)); | ||
| 50 | in->ver_major = AUTOFS_DEV_IOCTL_VERSION_MAJOR; | 119 | in->ver_major = AUTOFS_DEV_IOCTL_VERSION_MAJOR; |
| 51 | in->ver_minor = AUTOFS_DEV_IOCTL_VERSION_MINOR; | 120 | in->ver_minor = AUTOFS_DEV_IOCTL_VERSION_MINOR; |
| 52 | in->size = sizeof(struct autofs_dev_ioctl); | 121 | in->size = sizeof(struct autofs_dev_ioctl); |
| 53 | in->ioctlfd = -1; | 122 | in->ioctlfd = -1; |
| 54 | in->arg1 = 0; | ||
| 55 | in->arg2 = 0; | ||
| 56 | return; | 123 | return; |
| 57 | } | 124 | } |
| 58 | 125 | ||
diff --git a/include/linux/auto_fs4.h b/include/linux/auto_fs4.h index 2253716d4b92..8b49ac48a5b7 100644 --- a/include/linux/auto_fs4.h +++ b/include/linux/auto_fs4.h | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | #define _LINUX_AUTO_FS4_H | 12 | #define _LINUX_AUTO_FS4_H |
| 13 | 13 | ||
| 14 | /* Include common v3 definitions */ | 14 | /* Include common v3 definitions */ |
| 15 | #include <linux/types.h> | ||
| 15 | #include <linux/auto_fs.h> | 16 | #include <linux/auto_fs.h> |
| 16 | 17 | ||
| 17 | /* autofs v4 definitions */ | 18 | /* autofs v4 definitions */ |
| @@ -29,10 +30,64 @@ | |||
| 29 | #define AUTOFS_EXP_IMMEDIATE 1 | 30 | #define AUTOFS_EXP_IMMEDIATE 1 |
| 30 | #define AUTOFS_EXP_LEAVES 2 | 31 | #define AUTOFS_EXP_LEAVES 2 |
| 31 | 32 | ||
| 32 | #define AUTOFS_TYPE_ANY 0x0000 | 33 | #define AUTOFS_TYPE_ANY 0U |
| 33 | #define AUTOFS_TYPE_INDIRECT 0x0001 | 34 | #define AUTOFS_TYPE_INDIRECT 1U |
| 34 | #define AUTOFS_TYPE_DIRECT 0x0002 | 35 | #define AUTOFS_TYPE_DIRECT 2U |
| 35 | #define AUTOFS_TYPE_OFFSET 0x0004 | 36 | #define AUTOFS_TYPE_OFFSET 4U |
| 37 | |||
| 38 | static inline void set_autofs_type_indirect(unsigned int *type) | ||
| 39 | { | ||
| 40 | *type = AUTOFS_TYPE_INDIRECT; | ||
| 41 | return; | ||
| 42 | } | ||
| 43 | |||
| 44 | static inline unsigned int autofs_type_indirect(unsigned int type) | ||
| 45 | { | ||
| 46 | return (type == AUTOFS_TYPE_INDIRECT); | ||
| 47 | } | ||
| 48 | |||
| 49 | static inline void set_autofs_type_direct(unsigned int *type) | ||
| 50 | { | ||
| 51 | *type = AUTOFS_TYPE_DIRECT; | ||
| 52 | return; | ||
| 53 | } | ||
| 54 | |||
| 55 | static inline unsigned int autofs_type_direct(unsigned int type) | ||
| 56 | { | ||
| 57 | return (type == AUTOFS_TYPE_DIRECT); | ||
| 58 | } | ||
| 59 | |||
| 60 | static inline void set_autofs_type_offset(unsigned int *type) | ||
| 61 | { | ||
| 62 | *type = AUTOFS_TYPE_OFFSET; | ||
| 63 | return; | ||
| 64 | } | ||
| 65 | |||
| 66 | static inline unsigned int autofs_type_offset(unsigned int type) | ||
| 67 | { | ||
| 68 | return (type == AUTOFS_TYPE_OFFSET); | ||
| 69 | } | ||
| 70 | |||
| 71 | static inline unsigned int autofs_type_trigger(unsigned int type) | ||
| 72 | { | ||
| 73 | return (type == AUTOFS_TYPE_DIRECT || type == AUTOFS_TYPE_OFFSET); | ||
| 74 | } | ||
| 75 | |||
| 76 | /* | ||
| 77 | * This isn't really a type as we use it to say "no type set" to | ||
| 78 | * indicate we want to search for "any" mount in the | ||
| 79 | * autofs_dev_ioctl_ismountpoint() device ioctl function. | ||
| 80 | */ | ||
| 81 | static inline void set_autofs_type_any(unsigned int *type) | ||
| 82 | { | ||
| 83 | *type = AUTOFS_TYPE_ANY; | ||
| 84 | return; | ||
| 85 | } | ||
| 86 | |||
| 87 | static inline unsigned int autofs_type_any(unsigned int type) | ||
| 88 | { | ||
| 89 | return (type == AUTOFS_TYPE_ANY); | ||
| 90 | } | ||
| 36 | 91 | ||
| 37 | /* Daemon notification packet types */ | 92 | /* Daemon notification packet types */ |
| 38 | enum autofs_notify { | 93 | enum autofs_notify { |
diff --git a/include/linux/auxvec.h b/include/linux/auxvec.h index d7afa9dd6635..f3b5d4e3a2ac 100644 --- a/include/linux/auxvec.h +++ b/include/linux/auxvec.h | |||
| @@ -23,16 +23,16 @@ | |||
| 23 | #define AT_PLATFORM 15 /* string identifying CPU for optimizations */ | 23 | #define AT_PLATFORM 15 /* string identifying CPU for optimizations */ |
| 24 | #define AT_HWCAP 16 /* arch dependent hints at CPU capabilities */ | 24 | #define AT_HWCAP 16 /* arch dependent hints at CPU capabilities */ |
| 25 | #define AT_CLKTCK 17 /* frequency at which times() increments */ | 25 | #define AT_CLKTCK 17 /* frequency at which times() increments */ |
| 26 | 26 | /* AT_* values 18 through 22 are reserved */ | |
| 27 | #define AT_SECURE 23 /* secure mode boolean */ | 27 | #define AT_SECURE 23 /* secure mode boolean */ |
| 28 | |||
| 29 | #define AT_BASE_PLATFORM 24 /* string identifying real platform, may | 28 | #define AT_BASE_PLATFORM 24 /* string identifying real platform, may |
| 30 | * differ from AT_PLATFORM. */ | 29 | * differ from AT_PLATFORM. */ |
| 30 | #define AT_RANDOM 25 /* address of 16 random bytes */ | ||
| 31 | 31 | ||
| 32 | #define AT_EXECFN 31 /* filename of program */ | 32 | #define AT_EXECFN 31 /* filename of program */ |
| 33 | 33 | ||
| 34 | #ifdef __KERNEL__ | 34 | #ifdef __KERNEL__ |
| 35 | #define AT_VECTOR_SIZE_BASE 18 /* NEW_AUX_ENT entries in auxiliary table */ | 35 | #define AT_VECTOR_SIZE_BASE 19 /* NEW_AUX_ENT entries in auxiliary table */ |
| 36 | /* number of "#define AT_.*" above, minus {AT_NULL, AT_IGNORE, AT_NOTELF} */ | 36 | /* number of "#define AT_.*" above, minus {AT_NULL, AT_IGNORE, AT_NOTELF} */ |
| 37 | #endif | 37 | #endif |
| 38 | 38 | ||
diff --git a/include/linux/backlight.h b/include/linux/backlight.h index 1ee9488ca2e4..79ca2da81c87 100644 --- a/include/linux/backlight.h +++ b/include/linux/backlight.h | |||
| @@ -31,6 +31,10 @@ struct backlight_device; | |||
| 31 | struct fb_info; | 31 | struct fb_info; |
| 32 | 32 | ||
| 33 | struct backlight_ops { | 33 | struct backlight_ops { |
| 34 | unsigned int options; | ||
| 35 | |||
| 36 | #define BL_CORE_SUSPENDRESUME (1 << 0) | ||
| 37 | |||
| 34 | /* Notify the backlight driver some property has changed */ | 38 | /* Notify the backlight driver some property has changed */ |
| 35 | int (*update_status)(struct backlight_device *); | 39 | int (*update_status)(struct backlight_device *); |
| 36 | /* Return the current backlight brightness (accounting for power, | 40 | /* Return the current backlight brightness (accounting for power, |
| @@ -51,7 +55,19 @@ struct backlight_properties { | |||
| 51 | modes; 4: full off), see FB_BLANK_XXX */ | 55 | modes; 4: full off), see FB_BLANK_XXX */ |
| 52 | int power; | 56 | int power; |
| 53 | /* FB Blanking active? (values as for power) */ | 57 | /* FB Blanking active? (values as for power) */ |
| 58 | /* Due to be removed, please use (state & BL_CORE_FBBLANK) */ | ||
| 54 | int fb_blank; | 59 | int fb_blank; |
| 60 | /* Flags used to signal drivers of state changes */ | ||
| 61 | /* Upper 4 bits are reserved for driver internal use */ | ||
| 62 | unsigned int state; | ||
| 63 | |||
| 64 | #define BL_CORE_SUSPENDED (1 << 0) /* backlight is suspended */ | ||
| 65 | #define BL_CORE_FBBLANK (1 << 1) /* backlight is under an fb blank event */ | ||
| 66 | #define BL_CORE_DRIVER4 (1 << 28) /* reserved for driver specific use */ | ||
| 67 | #define BL_CORE_DRIVER3 (1 << 29) /* reserved for driver specific use */ | ||
| 68 | #define BL_CORE_DRIVER2 (1 << 30) /* reserved for driver specific use */ | ||
| 69 | #define BL_CORE_DRIVER1 (1 << 31) /* reserved for driver specific use */ | ||
| 70 | |||
| 55 | }; | 71 | }; |
| 56 | 72 | ||
| 57 | struct backlight_device { | 73 | struct backlight_device { |
diff --git a/include/linux/bfs_fs.h b/include/linux/bfs_fs.h index 8ed6dfdcd783..1c0b355aa515 100644 --- a/include/linux/bfs_fs.h +++ b/include/linux/bfs_fs.h | |||
| @@ -6,6 +6,8 @@ | |||
| 6 | #ifndef _LINUX_BFS_FS_H | 6 | #ifndef _LINUX_BFS_FS_H |
| 7 | #define _LINUX_BFS_FS_H | 7 | #define _LINUX_BFS_FS_H |
| 8 | 8 | ||
| 9 | #include <linux/types.h> | ||
| 10 | |||
| 9 | #define BFS_BSIZE_BITS 9 | 11 | #define BFS_BSIZE_BITS 9 |
| 10 | #define BFS_BSIZE (1<<BFS_BSIZE_BITS) | 12 | #define BFS_BSIZE (1<<BFS_BSIZE_BITS) |
| 11 | 13 | ||
| @@ -17,7 +19,6 @@ | |||
| 17 | #define BFS_VDIR 2L | 19 | #define BFS_VDIR 2L |
| 18 | #define BFS_VREG 1L | 20 | #define BFS_VREG 1L |
| 19 | 21 | ||
| 20 | |||
| 21 | /* BFS inode layout on disk */ | 22 | /* BFS inode layout on disk */ |
| 22 | struct bfs_inode { | 23 | struct bfs_inode { |
| 23 | __le16 i_ino; | 24 | __le16 i_ino; |
diff --git a/include/linux/binfmts.h b/include/linux/binfmts.h index 6cbfbe297180..77b4a9e46004 100644 --- a/include/linux/binfmts.h +++ b/include/linux/binfmts.h | |||
| @@ -18,6 +18,7 @@ struct pt_regs; | |||
| 18 | #define BINPRM_BUF_SIZE 128 | 18 | #define BINPRM_BUF_SIZE 128 |
| 19 | 19 | ||
| 20 | #ifdef __KERNEL__ | 20 | #ifdef __KERNEL__ |
| 21 | #include <linux/list.h> | ||
| 21 | 22 | ||
| 22 | #define CORENAME_MAX_SIZE 128 | 23 | #define CORENAME_MAX_SIZE 128 |
| 23 | 24 | ||
| @@ -106,7 +107,7 @@ extern int setup_arg_pages(struct linux_binprm * bprm, | |||
| 106 | extern int bprm_mm_init(struct linux_binprm *bprm); | 107 | extern int bprm_mm_init(struct linux_binprm *bprm); |
| 107 | extern int copy_strings_kernel(int argc,char ** argv,struct linux_binprm *bprm); | 108 | extern int copy_strings_kernel(int argc,char ** argv,struct linux_binprm *bprm); |
| 108 | extern void install_exec_creds(struct linux_binprm *bprm); | 109 | extern void install_exec_creds(struct linux_binprm *bprm); |
| 109 | extern int do_coredump(long signr, int exit_code, struct pt_regs * regs); | 110 | extern void do_coredump(long signr, int exit_code, struct pt_regs *regs); |
| 110 | extern int set_binfmt(struct linux_binfmt *new); | 111 | extern int set_binfmt(struct linux_binfmt *new); |
| 111 | extern void free_bprm(struct linux_binprm *); | 112 | extern void free_bprm(struct linux_binprm *); |
| 112 | 113 | ||
diff --git a/include/linux/bio.h b/include/linux/bio.h index 18462c5b8fff..2aa283ab062b 100644 --- a/include/linux/bio.h +++ b/include/linux/bio.h | |||
| @@ -144,7 +144,7 @@ struct bio { | |||
| 144 | * bit 1 -- rw-ahead when set | 144 | * bit 1 -- rw-ahead when set |
| 145 | * bit 2 -- barrier | 145 | * bit 2 -- barrier |
| 146 | * Insert a serialization point in the IO queue, forcing previously | 146 | * Insert a serialization point in the IO queue, forcing previously |
| 147 | * submitted IO to be completed before this oen is issued. | 147 | * submitted IO to be completed before this one is issued. |
| 148 | * bit 3 -- synchronous I/O hint: the block layer will unplug immediately | 148 | * bit 3 -- synchronous I/O hint: the block layer will unplug immediately |
| 149 | * Note that this does NOT indicate that the IO itself is sync, just | 149 | * Note that this does NOT indicate that the IO itself is sync, just |
| 150 | * that the block layer will not postpone issue of this IO by plugging. | 150 | * that the block layer will not postpone issue of this IO by plugging. |
| @@ -163,12 +163,33 @@ struct bio { | |||
| 163 | #define BIO_RW 0 /* Must match RW in req flags (blkdev.h) */ | 163 | #define BIO_RW 0 /* Must match RW in req flags (blkdev.h) */ |
| 164 | #define BIO_RW_AHEAD 1 /* Must match FAILFAST in req flags */ | 164 | #define BIO_RW_AHEAD 1 /* Must match FAILFAST in req flags */ |
| 165 | #define BIO_RW_BARRIER 2 | 165 | #define BIO_RW_BARRIER 2 |
| 166 | #define BIO_RW_SYNC 3 | 166 | #define BIO_RW_SYNCIO 3 |
| 167 | #define BIO_RW_META 4 | 167 | #define BIO_RW_UNPLUG 4 |
| 168 | #define BIO_RW_DISCARD 5 | 168 | #define BIO_RW_META 5 |
| 169 | #define BIO_RW_FAILFAST_DEV 6 | 169 | #define BIO_RW_DISCARD 6 |
| 170 | #define BIO_RW_FAILFAST_TRANSPORT 7 | 170 | #define BIO_RW_FAILFAST_DEV 7 |
| 171 | #define BIO_RW_FAILFAST_DRIVER 8 | 171 | #define BIO_RW_FAILFAST_TRANSPORT 8 |
| 172 | #define BIO_RW_FAILFAST_DRIVER 9 | ||
| 173 | |||
| 174 | #define BIO_RW_SYNC (BIO_RW_SYNCIO | BIO_RW_UNPLUG) | ||
| 175 | |||
| 176 | #define bio_rw_flagged(bio, flag) ((bio)->bi_rw & (1 << (flag))) | ||
| 177 | |||
| 178 | /* | ||
| 179 | * Old defines, these should eventually be replaced by direct usage of | ||
| 180 | * bio_rw_flagged() | ||
| 181 | */ | ||
| 182 | #define bio_barrier(bio) bio_rw_flagged(bio, BIO_RW_BARRIER) | ||
| 183 | #define bio_sync(bio) bio_rw_flagged(bio, BIO_RW_SYNCIO) | ||
| 184 | #define bio_unplug(bio) bio_rw_flagged(bio, BIO_RW_UNPLUG) | ||
| 185 | #define bio_failfast_dev(bio) bio_rw_flagged(bio, BIO_RW_FAILFAST_DEV) | ||
| 186 | #define bio_failfast_transport(bio) \ | ||
| 187 | bio_rw_flagged(bio, BIO_RW_FAILFAST_TRANSPORT) | ||
| 188 | #define bio_failfast_driver(bio) \ | ||
| 189 | bio_rw_flagged(bio, BIO_RW_FAILFAST_DRIVER) | ||
| 190 | #define bio_rw_ahead(bio) bio_rw_flagged(bio, BIO_RW_AHEAD) | ||
| 191 | #define bio_rw_meta(bio) bio_rw_flagged(bio, BIO_RW_META) | ||
| 192 | #define bio_discard(bio) bio_rw_flagged(bio, BIO_RW_DISCARD) | ||
| 172 | 193 | ||
| 173 | /* | 194 | /* |
| 174 | * upper 16 bits of bi_rw define the io priority of this bio | 195 | * upper 16 bits of bi_rw define the io priority of this bio |
| @@ -193,15 +214,6 @@ struct bio { | |||
| 193 | #define bio_offset(bio) bio_iovec((bio))->bv_offset | 214 | #define bio_offset(bio) bio_iovec((bio))->bv_offset |
| 194 | #define bio_segments(bio) ((bio)->bi_vcnt - (bio)->bi_idx) | 215 | #define bio_segments(bio) ((bio)->bi_vcnt - (bio)->bi_idx) |
| 195 | #define bio_sectors(bio) ((bio)->bi_size >> 9) | 216 | #define bio_sectors(bio) ((bio)->bi_size >> 9) |
| 196 | #define bio_barrier(bio) ((bio)->bi_rw & (1 << BIO_RW_BARRIER)) | ||
| 197 | #define bio_sync(bio) ((bio)->bi_rw & (1 << BIO_RW_SYNC)) | ||
| 198 | #define bio_failfast_dev(bio) ((bio)->bi_rw & (1 << BIO_RW_FAILFAST_DEV)) | ||
| 199 | #define bio_failfast_transport(bio) \ | ||
| 200 | ((bio)->bi_rw & (1 << BIO_RW_FAILFAST_TRANSPORT)) | ||
| 201 | #define bio_failfast_driver(bio) ((bio)->bi_rw & (1 << BIO_RW_FAILFAST_DRIVER)) | ||
| 202 | #define bio_rw_ahead(bio) ((bio)->bi_rw & (1 << BIO_RW_AHEAD)) | ||
| 203 | #define bio_rw_meta(bio) ((bio)->bi_rw & (1 << BIO_RW_META)) | ||
| 204 | #define bio_discard(bio) ((bio)->bi_rw & (1 << BIO_RW_DISCARD)) | ||
| 205 | #define bio_empty_barrier(bio) (bio_barrier(bio) && !bio_has_data(bio) && !bio_discard(bio)) | 217 | #define bio_empty_barrier(bio) (bio_barrier(bio) && !bio_has_data(bio) && !bio_discard(bio)) |
| 206 | 218 | ||
| 207 | static inline unsigned int bio_cur_sectors(struct bio *bio) | 219 | static inline unsigned int bio_cur_sectors(struct bio *bio) |
| @@ -312,7 +324,6 @@ struct bio_integrity_payload { | |||
| 312 | void *bip_buf; /* generated integrity data */ | 324 | void *bip_buf; /* generated integrity data */ |
| 313 | bio_end_io_t *bip_end_io; /* saved I/O completion fn */ | 325 | bio_end_io_t *bip_end_io; /* saved I/O completion fn */ |
| 314 | 326 | ||
| 315 | int bip_error; /* saved I/O error */ | ||
| 316 | unsigned int bip_size; | 327 | unsigned int bip_size; |
| 317 | 328 | ||
| 318 | unsigned short bip_pool; /* pool the ivec came from */ | 329 | unsigned short bip_pool; /* pool the ivec came from */ |
| @@ -440,12 +451,13 @@ extern struct biovec_slab bvec_slabs[BIOVEC_NR_POOLS] __read_mostly; | |||
| 440 | 451 | ||
| 441 | #ifdef CONFIG_HIGHMEM | 452 | #ifdef CONFIG_HIGHMEM |
| 442 | /* | 453 | /* |
| 443 | * remember to add offset! and never ever reenable interrupts between a | 454 | * remember never ever reenable interrupts between a bvec_kmap_irq and |
| 444 | * bvec_kmap_irq and bvec_kunmap_irq!! | 455 | * bvec_kunmap_irq! |
| 445 | * | 456 | * |
| 446 | * This function MUST be inlined - it plays with the CPU interrupt flags. | 457 | * This function MUST be inlined - it plays with the CPU interrupt flags. |
| 447 | */ | 458 | */ |
| 448 | static inline char *bvec_kmap_irq(struct bio_vec *bvec, unsigned long *flags) | 459 | static __always_inline char *bvec_kmap_irq(struct bio_vec *bvec, |
| 460 | unsigned long *flags) | ||
| 449 | { | 461 | { |
| 450 | unsigned long addr; | 462 | unsigned long addr; |
| 451 | 463 | ||
| @@ -461,7 +473,8 @@ static inline char *bvec_kmap_irq(struct bio_vec *bvec, unsigned long *flags) | |||
| 461 | return (char *) addr + bvec->bv_offset; | 473 | return (char *) addr + bvec->bv_offset; |
| 462 | } | 474 | } |
| 463 | 475 | ||
| 464 | static inline void bvec_kunmap_irq(char *buffer, unsigned long *flags) | 476 | static __always_inline void bvec_kunmap_irq(char *buffer, |
| 477 | unsigned long *flags) | ||
| 465 | { | 478 | { |
| 466 | unsigned long ptr = (unsigned long) buffer & PAGE_MASK; | 479 | unsigned long ptr = (unsigned long) buffer & PAGE_MASK; |
| 467 | 480 | ||
diff --git a/include/linux/bitmap.h b/include/linux/bitmap.h index a08c33a26ca9..2878811c6134 100644 --- a/include/linux/bitmap.h +++ b/include/linux/bitmap.h | |||
| @@ -137,9 +137,12 @@ extern void bitmap_copy_le(void *dst, const unsigned long *src, int nbits); | |||
| 137 | (1UL<<((nbits) % BITS_PER_LONG))-1 : ~0UL \ | 137 | (1UL<<((nbits) % BITS_PER_LONG))-1 : ~0UL \ |
| 138 | ) | 138 | ) |
| 139 | 139 | ||
| 140 | #define small_const_nbits(nbits) \ | ||
| 141 | (__builtin_constant_p(nbits) && (nbits) <= BITS_PER_LONG) | ||
| 142 | |||
| 140 | static inline void bitmap_zero(unsigned long *dst, int nbits) | 143 | static inline void bitmap_zero(unsigned long *dst, int nbits) |
| 141 | { | 144 | { |
| 142 | if (nbits <= BITS_PER_LONG) | 145 | if (small_const_nbits(nbits)) |
| 143 | *dst = 0UL; | 146 | *dst = 0UL; |
| 144 | else { | 147 | else { |
| 145 | int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long); | 148 | int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long); |
| @@ -150,7 +153,7 @@ static inline void bitmap_zero(unsigned long *dst, int nbits) | |||
| 150 | static inline void bitmap_fill(unsigned long *dst, int nbits) | 153 | static inline void bitmap_fill(unsigned long *dst, int nbits) |
| 151 | { | 154 | { |
| 152 | size_t nlongs = BITS_TO_LONGS(nbits); | 155 | size_t nlongs = BITS_TO_LONGS(nbits); |
| 153 | if (nlongs > 1) { | 156 | if (!small_const_nbits(nbits)) { |
| 154 | int len = (nlongs - 1) * sizeof(unsigned long); | 157 | int len = (nlongs - 1) * sizeof(unsigned long); |
| 155 | memset(dst, 0xff, len); | 158 | memset(dst, 0xff, len); |
| 156 | } | 159 | } |
| @@ -160,7 +163,7 @@ static inline void bitmap_fill(unsigned long *dst, int nbits) | |||
| 160 | static inline void bitmap_copy(unsigned long *dst, const unsigned long *src, | 163 | static inline void bitmap_copy(unsigned long *dst, const unsigned long *src, |
| 161 | int nbits) | 164 | int nbits) |
| 162 | { | 165 | { |
| 163 | if (nbits <= BITS_PER_LONG) | 166 | if (small_const_nbits(nbits)) |
| 164 | *dst = *src; | 167 | *dst = *src; |
| 165 | else { | 168 | else { |
| 166 | int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long); | 169 | int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long); |
| @@ -171,7 +174,7 @@ static inline void bitmap_copy(unsigned long *dst, const unsigned long *src, | |||
| 171 | static inline void bitmap_and(unsigned long *dst, const unsigned long *src1, | 174 | static inline void bitmap_and(unsigned long *dst, const unsigned long *src1, |
| 172 | const unsigned long *src2, int nbits) | 175 | const unsigned long *src2, int nbits) |
| 173 | { | 176 | { |
| 174 | if (nbits <= BITS_PER_LONG) | 177 | if (small_const_nbits(nbits)) |
| 175 | *dst = *src1 & *src2; | 178 | *dst = *src1 & *src2; |
| 176 | else | 179 | else |
| 177 | __bitmap_and(dst, src1, src2, nbits); | 180 | __bitmap_and(dst, src1, src2, nbits); |
| @@ -180,7 +183,7 @@ static inline void bitmap_and(unsigned long *dst, const unsigned long *src1, | |||
| 180 | static inline void bitmap_or(unsigned long *dst, const unsigned long *src1, | 183 | static inline void bitmap_or(unsigned long *dst, const unsigned long *src1, |
| 181 | const unsigned long *src2, int nbits) | 184 | const unsigned long *src2, int nbits) |
| 182 | { | 185 | { |
| 183 | if (nbits <= BITS_PER_LONG) | 186 | if (small_const_nbits(nbits)) |
| 184 | *dst = *src1 | *src2; | 187 | *dst = *src1 | *src2; |
| 185 | else | 188 | else |
| 186 | __bitmap_or(dst, src1, src2, nbits); | 189 | __bitmap_or(dst, src1, src2, nbits); |
| @@ -189,7 +192,7 @@ static inline void bitmap_or(unsigned long *dst, const unsigned long *src1, | |||
| 189 | static inline void bitmap_xor(unsigned long *dst, const unsigned long *src1, | 192 | static inline void bitmap_xor(unsigned long *dst, const unsigned long *src1, |
| 190 | const unsigned long *src2, int nbits) | 193 | const unsigned long *src2, int nbits) |
| 191 | { | 194 | { |
| 192 | if (nbits <= BITS_PER_LONG) | 195 | if (small_const_nbits(nbits)) |
| 193 | *dst = *src1 ^ *src2; | 196 | *dst = *src1 ^ *src2; |
| 194 | else | 197 | else |
| 195 | __bitmap_xor(dst, src1, src2, nbits); | 198 | __bitmap_xor(dst, src1, src2, nbits); |
| @@ -198,7 +201,7 @@ static inline void bitmap_xor(unsigned long *dst, const unsigned long *src1, | |||
| 198 | static inline void bitmap_andnot(unsigned long *dst, const unsigned long *src1, | 201 | static inline void bitmap_andnot(unsigned long *dst, const unsigned long *src1, |
| 199 | const unsigned long *src2, int nbits) | 202 | const unsigned long *src2, int nbits) |
| 200 | { | 203 | { |
| 201 | if (nbits <= BITS_PER_LONG) | 204 | if (small_const_nbits(nbits)) |
| 202 | *dst = *src1 & ~(*src2); | 205 | *dst = *src1 & ~(*src2); |
| 203 | else | 206 | else |
| 204 | __bitmap_andnot(dst, src1, src2, nbits); | 207 | __bitmap_andnot(dst, src1, src2, nbits); |
| @@ -207,7 +210,7 @@ static inline void bitmap_andnot(unsigned long *dst, const unsigned long *src1, | |||
| 207 | static inline void bitmap_complement(unsigned long *dst, const unsigned long *src, | 210 | static inline void bitmap_complement(unsigned long *dst, const unsigned long *src, |
| 208 | int nbits) | 211 | int nbits) |
| 209 | { | 212 | { |
| 210 | if (nbits <= BITS_PER_LONG) | 213 | if (small_const_nbits(nbits)) |
| 211 | *dst = ~(*src) & BITMAP_LAST_WORD_MASK(nbits); | 214 | *dst = ~(*src) & BITMAP_LAST_WORD_MASK(nbits); |
| 212 | else | 215 | else |
| 213 | __bitmap_complement(dst, src, nbits); | 216 | __bitmap_complement(dst, src, nbits); |
| @@ -216,7 +219,7 @@ static inline void bitmap_complement(unsigned long *dst, const unsigned long *sr | |||
| 216 | static inline int bitmap_equal(const unsigned long *src1, | 219 | static inline int bitmap_equal(const unsigned long *src1, |
| 217 | const unsigned long *src2, int nbits) | 220 | const unsigned long *src2, int nbits) |
| 218 | { | 221 | { |
| 219 | if (nbits <= BITS_PER_LONG) | 222 | if (small_const_nbits(nbits)) |
| 220 | return ! ((*src1 ^ *src2) & BITMAP_LAST_WORD_MASK(nbits)); | 223 | return ! ((*src1 ^ *src2) & BITMAP_LAST_WORD_MASK(nbits)); |
| 221 | else | 224 | else |
| 222 | return __bitmap_equal(src1, src2, nbits); | 225 | return __bitmap_equal(src1, src2, nbits); |
| @@ -225,7 +228,7 @@ static inline int bitmap_equal(const unsigned long *src1, | |||
| 225 | static inline int bitmap_intersects(const unsigned long *src1, | 228 | static inline int bitmap_intersects(const unsigned long *src1, |
| 226 | const unsigned long *src2, int nbits) | 229 | const unsigned long *src2, int nbits) |
| 227 | { | 230 | { |
| 228 | if (nbits <= BITS_PER_LONG) | 231 | if (small_const_nbits(nbits)) |
| 229 | return ((*src1 & *src2) & BITMAP_LAST_WORD_MASK(nbits)) != 0; | 232 | return ((*src1 & *src2) & BITMAP_LAST_WORD_MASK(nbits)) != 0; |
| 230 | else | 233 | else |
| 231 | return __bitmap_intersects(src1, src2, nbits); | 234 | return __bitmap_intersects(src1, src2, nbits); |
| @@ -234,7 +237,7 @@ static inline int bitmap_intersects(const unsigned long *src1, | |||
| 234 | static inline int bitmap_subset(const unsigned long *src1, | 237 | static inline int bitmap_subset(const unsigned long *src1, |
| 235 | const unsigned long *src2, int nbits) | 238 | const unsigned long *src2, int nbits) |
| 236 | { | 239 | { |
| 237 | if (nbits <= BITS_PER_LONG) | 240 | if (small_const_nbits(nbits)) |
| 238 | return ! ((*src1 & ~(*src2)) & BITMAP_LAST_WORD_MASK(nbits)); | 241 | return ! ((*src1 & ~(*src2)) & BITMAP_LAST_WORD_MASK(nbits)); |
| 239 | else | 242 | else |
| 240 | return __bitmap_subset(src1, src2, nbits); | 243 | return __bitmap_subset(src1, src2, nbits); |
| @@ -242,7 +245,7 @@ static inline int bitmap_subset(const unsigned long *src1, | |||
| 242 | 245 | ||
| 243 | static inline int bitmap_empty(const unsigned long *src, int nbits) | 246 | static inline int bitmap_empty(const unsigned long *src, int nbits) |
| 244 | { | 247 | { |
| 245 | if (nbits <= BITS_PER_LONG) | 248 | if (small_const_nbits(nbits)) |
| 246 | return ! (*src & BITMAP_LAST_WORD_MASK(nbits)); | 249 | return ! (*src & BITMAP_LAST_WORD_MASK(nbits)); |
| 247 | else | 250 | else |
| 248 | return __bitmap_empty(src, nbits); | 251 | return __bitmap_empty(src, nbits); |
| @@ -250,7 +253,7 @@ static inline int bitmap_empty(const unsigned long *src, int nbits) | |||
| 250 | 253 | ||
| 251 | static inline int bitmap_full(const unsigned long *src, int nbits) | 254 | static inline int bitmap_full(const unsigned long *src, int nbits) |
| 252 | { | 255 | { |
| 253 | if (nbits <= BITS_PER_LONG) | 256 | if (small_const_nbits(nbits)) |
| 254 | return ! (~(*src) & BITMAP_LAST_WORD_MASK(nbits)); | 257 | return ! (~(*src) & BITMAP_LAST_WORD_MASK(nbits)); |
| 255 | else | 258 | else |
| 256 | return __bitmap_full(src, nbits); | 259 | return __bitmap_full(src, nbits); |
| @@ -258,7 +261,7 @@ static inline int bitmap_full(const unsigned long *src, int nbits) | |||
| 258 | 261 | ||
| 259 | static inline int bitmap_weight(const unsigned long *src, int nbits) | 262 | static inline int bitmap_weight(const unsigned long *src, int nbits) |
| 260 | { | 263 | { |
| 261 | if (nbits <= BITS_PER_LONG) | 264 | if (small_const_nbits(nbits)) |
| 262 | return hweight_long(*src & BITMAP_LAST_WORD_MASK(nbits)); | 265 | return hweight_long(*src & BITMAP_LAST_WORD_MASK(nbits)); |
| 263 | return __bitmap_weight(src, nbits); | 266 | return __bitmap_weight(src, nbits); |
| 264 | } | 267 | } |
| @@ -266,7 +269,7 @@ static inline int bitmap_weight(const unsigned long *src, int nbits) | |||
| 266 | static inline void bitmap_shift_right(unsigned long *dst, | 269 | static inline void bitmap_shift_right(unsigned long *dst, |
| 267 | const unsigned long *src, int n, int nbits) | 270 | const unsigned long *src, int n, int nbits) |
| 268 | { | 271 | { |
| 269 | if (nbits <= BITS_PER_LONG) | 272 | if (small_const_nbits(nbits)) |
| 270 | *dst = *src >> n; | 273 | *dst = *src >> n; |
| 271 | else | 274 | else |
| 272 | __bitmap_shift_right(dst, src, n, nbits); | 275 | __bitmap_shift_right(dst, src, n, nbits); |
| @@ -275,7 +278,7 @@ static inline void bitmap_shift_right(unsigned long *dst, | |||
| 275 | static inline void bitmap_shift_left(unsigned long *dst, | 278 | static inline void bitmap_shift_left(unsigned long *dst, |
| 276 | const unsigned long *src, int n, int nbits) | 279 | const unsigned long *src, int n, int nbits) |
| 277 | { | 280 | { |
| 278 | if (nbits <= BITS_PER_LONG) | 281 | if (small_const_nbits(nbits)) |
| 279 | *dst = (*src << n) & BITMAP_LAST_WORD_MASK(nbits); | 282 | *dst = (*src << n) & BITMAP_LAST_WORD_MASK(nbits); |
| 280 | else | 283 | else |
| 281 | __bitmap_shift_left(dst, src, n, nbits); | 284 | __bitmap_shift_left(dst, src, n, nbits); |
diff --git a/include/linux/bitops.h b/include/linux/bitops.h index 024f2b027244..61829139795a 100644 --- a/include/linux/bitops.h +++ b/include/linux/bitops.h | |||
| @@ -134,9 +134,20 @@ extern unsigned long find_first_bit(const unsigned long *addr, | |||
| 134 | */ | 134 | */ |
| 135 | extern unsigned long find_first_zero_bit(const unsigned long *addr, | 135 | extern unsigned long find_first_zero_bit(const unsigned long *addr, |
| 136 | unsigned long size); | 136 | unsigned long size); |
| 137 | |||
| 138 | #endif /* CONFIG_GENERIC_FIND_FIRST_BIT */ | 137 | #endif /* CONFIG_GENERIC_FIND_FIRST_BIT */ |
| 139 | 138 | ||
| 139 | #ifdef CONFIG_GENERIC_FIND_LAST_BIT | ||
| 140 | /** | ||
| 141 | * find_last_bit - find the last set bit in a memory region | ||
| 142 | * @addr: The address to start the search at | ||
| 143 | * @size: The maximum size to search | ||
| 144 | * | ||
| 145 | * Returns the bit number of the first set bit, or size. | ||
| 146 | */ | ||
| 147 | extern unsigned long find_last_bit(const unsigned long *addr, | ||
| 148 | unsigned long size); | ||
| 149 | #endif /* CONFIG_GENERIC_FIND_LAST_BIT */ | ||
| 150 | |||
| 140 | #ifdef CONFIG_GENERIC_FIND_NEXT_BIT | 151 | #ifdef CONFIG_GENERIC_FIND_NEXT_BIT |
| 141 | 152 | ||
| 142 | /** | 153 | /** |
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 7035cec583b6..dcaa0fd84b02 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h | |||
| @@ -108,6 +108,7 @@ enum rq_flag_bits { | |||
| 108 | __REQ_RW_META, /* metadata io request */ | 108 | __REQ_RW_META, /* metadata io request */ |
| 109 | __REQ_COPY_USER, /* contains copies of user pages */ | 109 | __REQ_COPY_USER, /* contains copies of user pages */ |
| 110 | __REQ_INTEGRITY, /* integrity metadata has been remapped */ | 110 | __REQ_INTEGRITY, /* integrity metadata has been remapped */ |
| 111 | __REQ_UNPLUG, /* unplug queue on submission */ | ||
| 111 | __REQ_NR_BITS, /* stops here */ | 112 | __REQ_NR_BITS, /* stops here */ |
| 112 | }; | 113 | }; |
| 113 | 114 | ||
| @@ -134,6 +135,7 @@ enum rq_flag_bits { | |||
| 134 | #define REQ_RW_META (1 << __REQ_RW_META) | 135 | #define REQ_RW_META (1 << __REQ_RW_META) |
| 135 | #define REQ_COPY_USER (1 << __REQ_COPY_USER) | 136 | #define REQ_COPY_USER (1 << __REQ_COPY_USER) |
| 136 | #define REQ_INTEGRITY (1 << __REQ_INTEGRITY) | 137 | #define REQ_INTEGRITY (1 << __REQ_INTEGRITY) |
| 138 | #define REQ_UNPLUG (1 << __REQ_UNPLUG) | ||
| 137 | 139 | ||
| 138 | #define BLK_MAX_CDB 16 | 140 | #define BLK_MAX_CDB 16 |
| 139 | 141 | ||
| @@ -449,6 +451,11 @@ struct request_queue | |||
| 449 | #define QUEUE_FLAG_STACKABLE 13 /* supports request stacking */ | 451 | #define QUEUE_FLAG_STACKABLE 13 /* supports request stacking */ |
| 450 | #define QUEUE_FLAG_NONROT 14 /* non-rotational device (SSD) */ | 452 | #define QUEUE_FLAG_NONROT 14 /* non-rotational device (SSD) */ |
| 451 | #define QUEUE_FLAG_VIRT QUEUE_FLAG_NONROT /* paravirt device */ | 453 | #define QUEUE_FLAG_VIRT QUEUE_FLAG_NONROT /* paravirt device */ |
| 454 | #define QUEUE_FLAG_IO_STAT 15 /* do IO stats */ | ||
| 455 | |||
| 456 | #define QUEUE_FLAG_DEFAULT ((1 << QUEUE_FLAG_IO_STAT) | \ | ||
| 457 | (1 << QUEUE_FLAG_CLUSTER) | \ | ||
| 458 | (1 << QUEUE_FLAG_STACKABLE)) | ||
| 452 | 459 | ||
| 453 | static inline int queue_is_locked(struct request_queue *q) | 460 | static inline int queue_is_locked(struct request_queue *q) |
| 454 | { | 461 | { |
| @@ -565,6 +572,7 @@ enum { | |||
| 565 | #define blk_queue_stopped(q) test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags) | 572 | #define blk_queue_stopped(q) test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags) |
| 566 | #define blk_queue_nomerges(q) test_bit(QUEUE_FLAG_NOMERGES, &(q)->queue_flags) | 573 | #define blk_queue_nomerges(q) test_bit(QUEUE_FLAG_NOMERGES, &(q)->queue_flags) |
| 567 | #define blk_queue_nonrot(q) test_bit(QUEUE_FLAG_NONROT, &(q)->queue_flags) | 574 | #define blk_queue_nonrot(q) test_bit(QUEUE_FLAG_NONROT, &(q)->queue_flags) |
| 575 | #define blk_queue_io_stat(q) test_bit(QUEUE_FLAG_IO_STAT, &(q)->queue_flags) | ||
| 568 | #define blk_queue_flushing(q) ((q)->ordseq) | 576 | #define blk_queue_flushing(q) ((q)->ordseq) |
| 569 | #define blk_queue_stackable(q) \ | 577 | #define blk_queue_stackable(q) \ |
| 570 | test_bit(QUEUE_FLAG_STACKABLE, &(q)->queue_flags) | 578 | test_bit(QUEUE_FLAG_STACKABLE, &(q)->queue_flags) |
| @@ -690,6 +698,8 @@ struct rq_map_data { | |||
| 690 | struct page **pages; | 698 | struct page **pages; |
| 691 | int page_order; | 699 | int page_order; |
| 692 | int nr_entries; | 700 | int nr_entries; |
| 701 | unsigned long offset; | ||
| 702 | int null_mapped; | ||
| 693 | }; | 703 | }; |
| 694 | 704 | ||
| 695 | struct req_iterator { | 705 | struct req_iterator { |
diff --git a/include/linux/blktrace_api.h b/include/linux/blktrace_api.h index 1dba3493d520..25379cba2370 100644 --- a/include/linux/blktrace_api.h +++ b/include/linux/blktrace_api.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef BLKTRACE_H | 1 | #ifndef BLKTRACE_H |
| 2 | #define BLKTRACE_H | 2 | #define BLKTRACE_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #ifdef __KERNEL__ | 5 | #ifdef __KERNEL__ |
| 5 | #include <linux/blkdev.h> | 6 | #include <linux/blkdev.h> |
| 6 | #include <linux/relay.h> | 7 | #include <linux/relay.h> |
diff --git a/include/linux/blockgroup_lock.h b/include/linux/blockgroup_lock.h index 8607312983bd..e44b88ba552b 100644 --- a/include/linux/blockgroup_lock.h +++ b/include/linux/blockgroup_lock.h | |||
| @@ -53,7 +53,10 @@ static inline void bgl_lock_init(struct blockgroup_lock *bgl) | |||
| 53 | * The accessor is a macro so we can embed a blockgroup_lock into different | 53 | * The accessor is a macro so we can embed a blockgroup_lock into different |
| 54 | * superblock types | 54 | * superblock types |
| 55 | */ | 55 | */ |
| 56 | #define sb_bgl_lock(sb, block_group) \ | 56 | static inline spinlock_t * |
| 57 | (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock) | 57 | bgl_lock_ptr(struct blockgroup_lock *bgl, unsigned int block_group) |
| 58 | { | ||
| 59 | return &bgl->locks[(block_group) & (NR_BG_LOCKS-1)].lock; | ||
| 60 | } | ||
| 58 | 61 | ||
| 59 | #endif | 62 | #endif |
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h index 8605f8a74df9..bd7ac793be19 100644 --- a/include/linux/buffer_head.h +++ b/include/linux/buffer_head.h | |||
| @@ -171,7 +171,7 @@ void __wait_on_buffer(struct buffer_head *); | |||
| 171 | wait_queue_head_t *bh_waitq_head(struct buffer_head *bh); | 171 | wait_queue_head_t *bh_waitq_head(struct buffer_head *bh); |
| 172 | int fsync_bdev(struct block_device *); | 172 | int fsync_bdev(struct block_device *); |
| 173 | struct super_block *freeze_bdev(struct block_device *); | 173 | struct super_block *freeze_bdev(struct block_device *); |
| 174 | void thaw_bdev(struct block_device *, struct super_block *); | 174 | int thaw_bdev(struct block_device *, struct super_block *); |
| 175 | int fsync_super(struct super_block *); | 175 | int fsync_super(struct super_block *); |
| 176 | int fsync_no_super(struct block_device *); | 176 | int fsync_no_super(struct block_device *); |
| 177 | struct buffer_head *__find_get_block(struct block_device *bdev, sector_t block, | 177 | struct buffer_head *__find_get_block(struct block_device *bdev, sector_t block, |
| @@ -346,6 +346,15 @@ static inline int remove_inode_buffers(struct inode *inode) { return 1; } | |||
| 346 | static inline int sync_mapping_buffers(struct address_space *mapping) { return 0; } | 346 | static inline int sync_mapping_buffers(struct address_space *mapping) { return 0; } |
| 347 | static inline void invalidate_bdev(struct block_device *bdev) {} | 347 | static inline void invalidate_bdev(struct block_device *bdev) {} |
| 348 | 348 | ||
| 349 | static inline struct super_block *freeze_bdev(struct block_device *sb) | ||
| 350 | { | ||
| 351 | return NULL; | ||
| 352 | } | ||
| 353 | |||
| 354 | static inline int thaw_bdev(struct block_device *bdev, struct super_block *sb) | ||
| 355 | { | ||
| 356 | return 0; | ||
| 357 | } | ||
| 349 | 358 | ||
| 350 | #endif /* CONFIG_BLOCK */ | 359 | #endif /* CONFIG_BLOCK */ |
| 351 | #endif /* _LINUX_BUFFER_HEAD_H */ | 360 | #endif /* _LINUX_BUFFER_HEAD_H */ |
diff --git a/include/linux/byteorder.h b/include/linux/byteorder.h deleted file mode 100644 index 29f002d73d98..000000000000 --- a/include/linux/byteorder.h +++ /dev/null | |||
| @@ -1,372 +0,0 @@ | |||
| 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/Kbuild b/include/linux/byteorder/Kbuild index fbaa7f9cee32..38437225b092 100644 --- a/include/linux/byteorder/Kbuild +++ b/include/linux/byteorder/Kbuild | |||
| @@ -1,4 +1,2 @@ | |||
| 1 | unifdef-y += big_endian.h | 1 | unifdef-y += big_endian.h |
| 2 | unifdef-y += little_endian.h | 2 | unifdef-y += little_endian.h |
| 3 | unifdef-y += swab.h | ||
| 4 | unifdef-y += swabb.h | ||
diff --git a/include/linux/byteorder/big_endian.h b/include/linux/byteorder/big_endian.h index 1cba3f3efe5f..3c80fd7e8b56 100644 --- a/include/linux/byteorder/big_endian.h +++ b/include/linux/byteorder/big_endian.h | |||
| @@ -9,8 +9,7 @@ | |||
| 9 | #endif | 9 | #endif |
| 10 | 10 | ||
| 11 | #include <linux/types.h> | 11 | #include <linux/types.h> |
| 12 | #include <linux/byteorder/swab.h> | 12 | #include <linux/swab.h> |
| 13 | #include <linux/byteorder/swabb.h> | ||
| 14 | 13 | ||
| 15 | #define __constant_htonl(x) ((__force __be32)(__u32)(x)) | 14 | #define __constant_htonl(x) ((__force __be32)(__u32)(x)) |
| 16 | #define __constant_ntohl(x) ((__force __u32)(__be32)(x)) | 15 | #define __constant_ntohl(x) ((__force __u32)(__be32)(x)) |
diff --git a/include/linux/byteorder/little_endian.h b/include/linux/byteorder/little_endian.h index cedc1b5a289c..83195fb82962 100644 --- a/include/linux/byteorder/little_endian.h +++ b/include/linux/byteorder/little_endian.h | |||
| @@ -9,8 +9,7 @@ | |||
| 9 | #endif | 9 | #endif |
| 10 | 10 | ||
| 11 | #include <linux/types.h> | 11 | #include <linux/types.h> |
| 12 | #include <linux/byteorder/swab.h> | 12 | #include <linux/swab.h> |
| 13 | #include <linux/byteorder/swabb.h> | ||
| 14 | 13 | ||
| 15 | #define __constant_htonl(x) ((__force __be32)___constant_swab32((x))) | 14 | #define __constant_htonl(x) ((__force __be32)___constant_swab32((x))) |
| 16 | #define __constant_ntohl(x) ___constant_swab32((__force __be32)(x)) | 15 | #define __constant_ntohl(x) ___constant_swab32((__force __be32)(x)) |
diff --git a/include/linux/byteorder/swab.h b/include/linux/byteorder/swab.h deleted file mode 100644 index 142134ff1645..000000000000 --- a/include/linux/byteorder/swab.h +++ /dev/null | |||
| @@ -1,222 +0,0 @@ | |||
| 1 | #ifndef _LINUX_BYTEORDER_SWAB_H | ||
| 2 | #define _LINUX_BYTEORDER_SWAB_H | ||
| 3 | |||
| 4 | /* | ||
| 5 | * linux/byteorder/swab.h | ||
| 6 | * Byte-swapping, independently from CPU endianness | ||
| 7 | * swabXX[ps]?(foo) | ||
| 8 | * | ||
| 9 | * Francois-Rene Rideau <fare@tunes.org> 19971205 | ||
| 10 | * separated swab functions from cpu_to_XX, | ||
| 11 | * to clean up support for bizarre-endian architectures. | ||
| 12 | * | ||
| 13 | * Trent Piepho <xyzzy@speakeasy.org> 2007114 | ||
| 14 | * make constant-folding work, provide C versions that | ||
| 15 | * gcc can optimize better, explain different versions | ||
| 16 | * | ||
| 17 | * See asm-i386/byteorder.h and suches for examples of how to provide | ||
| 18 | * architecture-dependent optimized versions | ||
| 19 | * | ||
| 20 | */ | ||
| 21 | |||
| 22 | #include <linux/compiler.h> | ||
| 23 | |||
| 24 | /* Functions/macros defined, there are a lot: | ||
| 25 | * | ||
| 26 | * ___swabXX | ||
| 27 | * Generic C versions of the swab functions. | ||
| 28 | * | ||
| 29 | * ___constant_swabXX | ||
| 30 | * C versions that gcc can fold into a compile-time constant when | ||
| 31 | * the argument is a compile-time constant. | ||
| 32 | * | ||
| 33 | * __arch__swabXX[sp]? | ||
| 34 | * Architecture optimized versions of all the swab functions | ||
| 35 | * (including the s and p versions). These can be defined in | ||
| 36 | * asm-arch/byteorder.h. Any which are not, are defined here. | ||
| 37 | * __arch__swabXXs() is defined in terms of __arch__swabXXp(), which | ||
| 38 | * is defined in terms of __arch__swabXX(), which is in turn defined | ||
| 39 | * in terms of ___swabXX(x). | ||
| 40 | * These must be macros. They may be unsafe for arguments with | ||
| 41 | * side-effects. | ||
| 42 | * | ||
| 43 | * __fswabXX | ||
| 44 | * Inline function versions of the __arch__ macros. These _are_ safe | ||
| 45 | * if the arguments have side-effects. Note there are no s and p | ||
| 46 | * versions of these. | ||
| 47 | * | ||
| 48 | * __swabXX[sb] | ||
| 49 | * There are the ones you should actually use. The __swabXX versions | ||
| 50 | * will be a constant given a constant argument and use the arch | ||
| 51 | * specific code (if any) for non-constant arguments. The s and p | ||
| 52 | * versions always use the arch specific code (constant folding | ||
| 53 | * doesn't apply). They are safe to use with arguments with | ||
| 54 | * side-effects. | ||
| 55 | * | ||
| 56 | * swabXX[sb] | ||
| 57 | * Nicknames for __swabXX[sb] to use in the kernel. | ||
| 58 | */ | ||
| 59 | |||
| 60 | /* casts are necessary for constants, because we never know how for sure | ||
| 61 | * how U/UL/ULL map to __u16, __u32, __u64. At least not in a portable way. | ||
| 62 | */ | ||
| 63 | |||
| 64 | static __inline__ __attribute_const__ __u16 ___swab16(__u16 x) | ||
| 65 | { | ||
| 66 | return x<<8 | x>>8; | ||
| 67 | } | ||
| 68 | static __inline__ __attribute_const__ __u32 ___swab32(__u32 x) | ||
| 69 | { | ||
| 70 | return x<<24 | x>>24 | | ||
| 71 | (x & (__u32)0x0000ff00UL)<<8 | | ||
| 72 | (x & (__u32)0x00ff0000UL)>>8; | ||
| 73 | } | ||
| 74 | static __inline__ __attribute_const__ __u64 ___swab64(__u64 x) | ||
| 75 | { | ||
| 76 | return x<<56 | x>>56 | | ||
| 77 | (x & (__u64)0x000000000000ff00ULL)<<40 | | ||
| 78 | (x & (__u64)0x0000000000ff0000ULL)<<24 | | ||
| 79 | (x & (__u64)0x00000000ff000000ULL)<< 8 | | ||
| 80 | (x & (__u64)0x000000ff00000000ULL)>> 8 | | ||
| 81 | (x & (__u64)0x0000ff0000000000ULL)>>24 | | ||
| 82 | (x & (__u64)0x00ff000000000000ULL)>>40; | ||
| 83 | } | ||
| 84 | |||
| 85 | #define ___constant_swab16(x) \ | ||
| 86 | ((__u16)( \ | ||
| 87 | (((__u16)(x) & (__u16)0x00ffU) << 8) | \ | ||
| 88 | (((__u16)(x) & (__u16)0xff00U) >> 8) )) | ||
| 89 | #define ___constant_swab32(x) \ | ||
| 90 | ((__u32)( \ | ||
| 91 | (((__u32)(x) & (__u32)0x000000ffUL) << 24) | \ | ||
| 92 | (((__u32)(x) & (__u32)0x0000ff00UL) << 8) | \ | ||
| 93 | (((__u32)(x) & (__u32)0x00ff0000UL) >> 8) | \ | ||
| 94 | (((__u32)(x) & (__u32)0xff000000UL) >> 24) )) | ||
| 95 | #define ___constant_swab64(x) \ | ||
| 96 | ((__u64)( \ | ||
| 97 | (__u64)(((__u64)(x) & (__u64)0x00000000000000ffULL) << 56) | \ | ||
| 98 | (__u64)(((__u64)(x) & (__u64)0x000000000000ff00ULL) << 40) | \ | ||
| 99 | (__u64)(((__u64)(x) & (__u64)0x0000000000ff0000ULL) << 24) | \ | ||
| 100 | (__u64)(((__u64)(x) & (__u64)0x00000000ff000000ULL) << 8) | \ | ||
| 101 | (__u64)(((__u64)(x) & (__u64)0x000000ff00000000ULL) >> 8) | \ | ||
| 102 | (__u64)(((__u64)(x) & (__u64)0x0000ff0000000000ULL) >> 24) | \ | ||
| 103 | (__u64)(((__u64)(x) & (__u64)0x00ff000000000000ULL) >> 40) | \ | ||
| 104 | (__u64)(((__u64)(x) & (__u64)0xff00000000000000ULL) >> 56) )) | ||
| 105 | |||
| 106 | /* | ||
| 107 | * provide defaults when no architecture-specific optimization is detected | ||
| 108 | */ | ||
| 109 | #ifndef __arch__swab16 | ||
| 110 | # define __arch__swab16(x) ___swab16(x) | ||
| 111 | #endif | ||
| 112 | #ifndef __arch__swab32 | ||
| 113 | # define __arch__swab32(x) ___swab32(x) | ||
| 114 | #endif | ||
| 115 | #ifndef __arch__swab64 | ||
| 116 | # define __arch__swab64(x) ___swab64(x) | ||
| 117 | #endif | ||
| 118 | |||
| 119 | #ifndef __arch__swab16p | ||
| 120 | # define __arch__swab16p(x) __arch__swab16(*(x)) | ||
| 121 | #endif | ||
| 122 | #ifndef __arch__swab32p | ||
| 123 | # define __arch__swab32p(x) __arch__swab32(*(x)) | ||
| 124 | #endif | ||
| 125 | #ifndef __arch__swab64p | ||
| 126 | # define __arch__swab64p(x) __arch__swab64(*(x)) | ||
| 127 | #endif | ||
| 128 | |||
| 129 | #ifndef __arch__swab16s | ||
| 130 | # define __arch__swab16s(x) ((void)(*(x) = __arch__swab16p(x))) | ||
| 131 | #endif | ||
| 132 | #ifndef __arch__swab32s | ||
| 133 | # define __arch__swab32s(x) ((void)(*(x) = __arch__swab32p(x))) | ||
| 134 | #endif | ||
| 135 | #ifndef __arch__swab64s | ||
| 136 | # define __arch__swab64s(x) ((void)(*(x) = __arch__swab64p(x))) | ||
| 137 | #endif | ||
| 138 | |||
| 139 | |||
| 140 | /* | ||
| 141 | * Allow constant folding | ||
| 142 | */ | ||
| 143 | #if defined(__GNUC__) && defined(__OPTIMIZE__) | ||
| 144 | # define __swab16(x) \ | ||
| 145 | (__builtin_constant_p((__u16)(x)) ? \ | ||
| 146 | ___constant_swab16((x)) : \ | ||
| 147 | __fswab16((x))) | ||
| 148 | # define __swab32(x) \ | ||
| 149 | (__builtin_constant_p((__u32)(x)) ? \ | ||
| 150 | ___constant_swab32((x)) : \ | ||
| 151 | __fswab32((x))) | ||
| 152 | # define __swab64(x) \ | ||
| 153 | (__builtin_constant_p((__u64)(x)) ? \ | ||
| 154 | ___constant_swab64((x)) : \ | ||
| 155 | __fswab64((x))) | ||
| 156 | #else | ||
| 157 | # define __swab16(x) __fswab16(x) | ||
| 158 | # define __swab32(x) __fswab32(x) | ||
| 159 | # define __swab64(x) __fswab64(x) | ||
| 160 | #endif /* OPTIMIZE */ | ||
| 161 | |||
| 162 | |||
| 163 | static __inline__ __attribute_const__ __u16 __fswab16(__u16 x) | ||
| 164 | { | ||
| 165 | return __arch__swab16(x); | ||
| 166 | } | ||
| 167 | static __inline__ __u16 __swab16p(const __u16 *x) | ||
| 168 | { | ||
| 169 | return __arch__swab16p(x); | ||
| 170 | } | ||
| 171 | static __inline__ void __swab16s(__u16 *addr) | ||
| 172 | { | ||
| 173 | __arch__swab16s(addr); | ||
| 174 | } | ||
| 175 | |||
| 176 | static __inline__ __attribute_const__ __u32 __fswab32(__u32 x) | ||
| 177 | { | ||
| 178 | return __arch__swab32(x); | ||
| 179 | } | ||
| 180 | static __inline__ __u32 __swab32p(const __u32 *x) | ||
| 181 | { | ||
| 182 | return __arch__swab32p(x); | ||
| 183 | } | ||
| 184 | static __inline__ void __swab32s(__u32 *addr) | ||
| 185 | { | ||
| 186 | __arch__swab32s(addr); | ||
| 187 | } | ||
| 188 | |||
| 189 | #ifdef __BYTEORDER_HAS_U64__ | ||
| 190 | static __inline__ __attribute_const__ __u64 __fswab64(__u64 x) | ||
| 191 | { | ||
| 192 | # ifdef __SWAB_64_THRU_32__ | ||
| 193 | __u32 h = x >> 32; | ||
| 194 | __u32 l = x & ((1ULL<<32)-1); | ||
| 195 | return (((__u64)__swab32(l)) << 32) | ((__u64)(__swab32(h))); | ||
| 196 | # else | ||
| 197 | return __arch__swab64(x); | ||
| 198 | # endif | ||
| 199 | } | ||
| 200 | static __inline__ __u64 __swab64p(const __u64 *x) | ||
| 201 | { | ||
| 202 | return __arch__swab64p(x); | ||
| 203 | } | ||
| 204 | static __inline__ void __swab64s(__u64 *addr) | ||
| 205 | { | ||
| 206 | __arch__swab64s(addr); | ||
| 207 | } | ||
| 208 | #endif /* __BYTEORDER_HAS_U64__ */ | ||
| 209 | |||
| 210 | #if defined(__KERNEL__) | ||
| 211 | #define swab16 __swab16 | ||
| 212 | #define swab32 __swab32 | ||
| 213 | #define swab64 __swab64 | ||
| 214 | #define swab16p __swab16p | ||
| 215 | #define swab32p __swab32p | ||
| 216 | #define swab64p __swab64p | ||
| 217 | #define swab16s __swab16s | ||
| 218 | #define swab32s __swab32s | ||
| 219 | #define swab64s __swab64s | ||
| 220 | #endif | ||
| 221 | |||
| 222 | #endif /* _LINUX_BYTEORDER_SWAB_H */ | ||
diff --git a/include/linux/byteorder/swabb.h b/include/linux/byteorder/swabb.h deleted file mode 100644 index 8c780c7d779e..000000000000 --- a/include/linux/byteorder/swabb.h +++ /dev/null | |||
| @@ -1,135 +0,0 @@ | |||
| 1 | #ifndef _LINUX_BYTEORDER_SWABB_H | ||
| 2 | #define _LINUX_BYTEORDER_SWABB_H | ||
| 3 | |||
| 4 | /* | ||
| 5 | * linux/byteorder/swabb.h | ||
| 6 | * SWAp Bytes Bizarrely | ||
| 7 | * swaHHXX[ps]?(foo) | ||
| 8 | * | ||
| 9 | * Support for obNUXIous pdp-endian and other bizarre architectures. | ||
| 10 | * Will Linux ever run on such ancient beasts? if not, this file | ||
| 11 | * will be but a programming pearl. Still, it's a reminder that we | ||
| 12 | * shouldn't be making too many assumptions when trying to be portable. | ||
| 13 | * | ||
| 14 | */ | ||
| 15 | |||
| 16 | /* | ||
| 17 | * Meaning of the names I chose (vaxlinux people feel free to correct them): | ||
| 18 | * swahw32 swap 16-bit half-words in a 32-bit word | ||
| 19 | * swahb32 swap 8-bit halves of each 16-bit half-word in a 32-bit word | ||
| 20 | * | ||
| 21 | * No 64-bit support yet. I don't know NUXI conventions for long longs. | ||
| 22 | * I guarantee it will be a mess when it's there, though :-> | ||
| 23 | * It will be even worse if there are conflicting 64-bit conventions. | ||
| 24 | * Hopefully, no one ever used 64-bit objects on NUXI machines. | ||
| 25 | * | ||
| 26 | */ | ||
| 27 | |||
| 28 | #include <linux/types.h> | ||
| 29 | |||
| 30 | #define ___swahw32(x) \ | ||
| 31 | ({ \ | ||
| 32 | __u32 __x = (x); \ | ||
| 33 | ((__u32)( \ | ||
| 34 | (((__u32)(__x) & (__u32)0x0000ffffUL) << 16) | \ | ||
| 35 | (((__u32)(__x) & (__u32)0xffff0000UL) >> 16) )); \ | ||
| 36 | }) | ||
| 37 | #define ___swahb32(x) \ | ||
| 38 | ({ \ | ||
| 39 | __u32 __x = (x); \ | ||
| 40 | ((__u32)( \ | ||
| 41 | (((__u32)(__x) & (__u32)0x00ff00ffUL) << 8) | \ | ||
| 42 | (((__u32)(__x) & (__u32)0xff00ff00UL) >> 8) )); \ | ||
| 43 | }) | ||
| 44 | |||
| 45 | #define ___constant_swahw32(x) \ | ||
| 46 | ((__u32)( \ | ||
| 47 | (((__u32)(x) & (__u32)0x0000ffffUL) << 16) | \ | ||
| 48 | (((__u32)(x) & (__u32)0xffff0000UL) >> 16) )) | ||
| 49 | #define ___constant_swahb32(x) \ | ||
| 50 | ((__u32)( \ | ||
| 51 | (((__u32)(x) & (__u32)0x00ff00ffUL) << 8) | \ | ||
| 52 | (((__u32)(x) & (__u32)0xff00ff00UL) >> 8) )) | ||
| 53 | |||
| 54 | /* | ||
| 55 | * provide defaults when no architecture-specific optimization is detected | ||
| 56 | */ | ||
| 57 | #ifndef __arch__swahw32 | ||
| 58 | # define __arch__swahw32(x) ___swahw32(x) | ||
| 59 | #endif | ||
| 60 | #ifndef __arch__swahb32 | ||
| 61 | # define __arch__swahb32(x) ___swahb32(x) | ||
| 62 | #endif | ||
| 63 | |||
| 64 | #ifndef __arch__swahw32p | ||
| 65 | # define __arch__swahw32p(x) __swahw32(*(x)) | ||
| 66 | #endif | ||
| 67 | #ifndef __arch__swahb32p | ||
| 68 | # define __arch__swahb32p(x) __swahb32(*(x)) | ||
| 69 | #endif | ||
| 70 | |||
| 71 | #ifndef __arch__swahw32s | ||
| 72 | # define __arch__swahw32s(x) do { *(x) = __swahw32p((x)); } while (0) | ||
| 73 | #endif | ||
| 74 | #ifndef __arch__swahb32s | ||
| 75 | # define __arch__swahb32s(x) do { *(x) = __swahb32p((x)); } while (0) | ||
| 76 | #endif | ||
| 77 | |||
| 78 | |||
| 79 | /* | ||
| 80 | * Allow constant folding | ||
| 81 | */ | ||
| 82 | #define __swahw32(x) \ | ||
| 83 | (__builtin_constant_p((__u32)(x)) ? \ | ||
| 84 | ___swahw32((x)) : \ | ||
| 85 | __fswahw32((x))) | ||
| 86 | #define __swahb32(x) \ | ||
| 87 | (__builtin_constant_p((__u32)(x)) ? \ | ||
| 88 | ___swahb32((x)) : \ | ||
| 89 | __fswahb32((x))) | ||
| 90 | |||
| 91 | |||
| 92 | static inline __u32 __fswahw32(__u32 x) | ||
| 93 | { | ||
| 94 | return __arch__swahw32(x); | ||
| 95 | } | ||
| 96 | |||
| 97 | static inline __u32 __swahw32p(__u32 *x) | ||
| 98 | { | ||
| 99 | return __arch__swahw32p(x); | ||
| 100 | } | ||
| 101 | |||
| 102 | static inline void __swahw32s(__u32 *addr) | ||
| 103 | { | ||
| 104 | __arch__swahw32s(addr); | ||
| 105 | } | ||
| 106 | |||
| 107 | static inline __u32 __fswahb32(__u32 x) | ||
| 108 | { | ||
| 109 | return __arch__swahb32(x); | ||
| 110 | } | ||
| 111 | |||
| 112 | static inline __u32 __swahb32p(__u32 *x) | ||
| 113 | { | ||
| 114 | return __arch__swahb32p(x); | ||
| 115 | } | ||
| 116 | |||
| 117 | static inline void __swahb32s(__u32 *addr) | ||
| 118 | { | ||
| 119 | __arch__swahb32s(addr); | ||
| 120 | } | ||
| 121 | |||
| 122 | #ifdef __BYTEORDER_HAS_U64__ | ||
| 123 | /* | ||
| 124 | * Not supported yet | ||
| 125 | */ | ||
| 126 | #endif /* __BYTEORDER_HAS_U64__ */ | ||
| 127 | |||
| 128 | #define swahw32 __swahw32 | ||
| 129 | #define swahb32 __swahb32 | ||
| 130 | #define swahw32p __swahw32p | ||
| 131 | #define swahb32p __swahb32p | ||
| 132 | #define swahw32s __swahw32s | ||
| 133 | #define swahb32s __swahb32s | ||
| 134 | |||
| 135 | #endif /* _LINUX_BYTEORDER_SWABB_H */ | ||
diff --git a/include/linux/can/bcm.h b/include/linux/can/bcm.h index 7f293273c444..1432b278c52d 100644 --- a/include/linux/can/bcm.h +++ b/include/linux/can/bcm.h | |||
| @@ -14,6 +14,8 @@ | |||
| 14 | #ifndef CAN_BCM_H | 14 | #ifndef CAN_BCM_H |
| 15 | #define CAN_BCM_H | 15 | #define CAN_BCM_H |
| 16 | 16 | ||
| 17 | #include <linux/types.h> | ||
| 18 | |||
| 17 | /** | 19 | /** |
| 18 | * struct bcm_msg_head - head of messages to/from the broadcast manager | 20 | * struct bcm_msg_head - head of messages to/from the broadcast manager |
| 19 | * @opcode: opcode, see enum below. | 21 | * @opcode: opcode, see enum below. |
diff --git a/include/linux/can/core.h b/include/linux/can/core.h index f50785ad4781..25085cbadcfc 100644 --- a/include/linux/can/core.h +++ b/include/linux/can/core.h | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | #include <linux/skbuff.h> | 19 | #include <linux/skbuff.h> |
| 20 | #include <linux/netdevice.h> | 20 | #include <linux/netdevice.h> |
| 21 | 21 | ||
| 22 | #define CAN_VERSION "20081130" | 22 | #define CAN_VERSION "20090105" |
| 23 | 23 | ||
| 24 | /* increment this number each time you change some user-space interface */ | 24 | /* increment this number each time you change some user-space interface */ |
| 25 | #define CAN_ABI_VERSION "8" | 25 | #define CAN_ABI_VERSION "8" |
diff --git a/include/linux/capability.h b/include/linux/capability.h index 02bdb768d43b..1b9872556131 100644 --- a/include/linux/capability.h +++ b/include/linux/capability.h | |||
| @@ -69,10 +69,6 @@ typedef struct __user_cap_data_struct { | |||
| 69 | #define VFS_CAP_U32 VFS_CAP_U32_2 | 69 | #define VFS_CAP_U32 VFS_CAP_U32_2 |
| 70 | #define VFS_CAP_REVISION VFS_CAP_REVISION_2 | 70 | #define VFS_CAP_REVISION VFS_CAP_REVISION_2 |
| 71 | 71 | ||
| 72 | #ifdef CONFIG_SECURITY_FILE_CAPABILITIES | ||
| 73 | extern int file_caps_enabled; | ||
| 74 | #endif | ||
| 75 | |||
| 76 | struct vfs_cap_data { | 72 | struct vfs_cap_data { |
| 77 | __le32 magic_etc; /* Little endian */ | 73 | __le32 magic_etc; /* Little endian */ |
| 78 | struct { | 74 | struct { |
| @@ -96,6 +92,10 @@ struct vfs_cap_data { | |||
| 96 | #define _KERNEL_CAPABILITY_VERSION _LINUX_CAPABILITY_VERSION_3 | 92 | #define _KERNEL_CAPABILITY_VERSION _LINUX_CAPABILITY_VERSION_3 |
| 97 | #define _KERNEL_CAPABILITY_U32S _LINUX_CAPABILITY_U32S_3 | 93 | #define _KERNEL_CAPABILITY_U32S _LINUX_CAPABILITY_U32S_3 |
| 98 | 94 | ||
| 95 | #ifdef CONFIG_SECURITY_FILE_CAPABILITIES | ||
| 96 | extern int file_caps_enabled; | ||
| 97 | #endif | ||
| 98 | |||
| 99 | typedef struct kernel_cap_struct { | 99 | typedef struct kernel_cap_struct { |
| 100 | __u32 cap[_KERNEL_CAPABILITY_U32S]; | 100 | __u32 cap[_KERNEL_CAPABILITY_U32S]; |
| 101 | } kernel_cap_t; | 101 | } kernel_cap_t; |
diff --git a/include/linux/capi.h b/include/linux/capi.h index fdebaaa9f66e..65100d6cb89b 100644 --- a/include/linux/capi.h +++ b/include/linux/capi.h | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #ifndef __LINUX_CAPI_H__ | 12 | #ifndef __LINUX_CAPI_H__ |
| 13 | #define __LINUX_CAPI_H__ | 13 | #define __LINUX_CAPI_H__ |
| 14 | 14 | ||
| 15 | #include <asm/types.h> | 15 | #include <linux/types.h> |
| 16 | #include <linux/ioctl.h> | 16 | #include <linux/ioctl.h> |
| 17 | #ifndef __KERNEL__ | 17 | #ifndef __KERNEL__ |
| 18 | #include <linux/kernelcapi.h> | 18 | #include <linux/kernelcapi.h> |
diff --git a/include/linux/cdrom.h b/include/linux/cdrom.h index 0b49e08d3cb0..78e904796622 100644 --- a/include/linux/cdrom.h +++ b/include/linux/cdrom.h | |||
| @@ -11,6 +11,7 @@ | |||
| 11 | #ifndef _LINUX_CDROM_H | 11 | #ifndef _LINUX_CDROM_H |
| 12 | #define _LINUX_CDROM_H | 12 | #define _LINUX_CDROM_H |
| 13 | 13 | ||
| 14 | #include <linux/types.h> | ||
| 14 | #include <asm/byteorder.h> | 15 | #include <asm/byteorder.h> |
| 15 | 16 | ||
| 16 | /******************************************************* | 17 | /******************************************************* |
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index 1164963c3a85..e4e8e117d27d 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h | |||
| @@ -52,9 +52,9 @@ struct cgroup_subsys_state { | |||
| 52 | * hierarchy structure */ | 52 | * hierarchy structure */ |
| 53 | struct cgroup *cgroup; | 53 | struct cgroup *cgroup; |
| 54 | 54 | ||
| 55 | /* State maintained by the cgroup system to allow | 55 | /* State maintained by the cgroup system to allow subsystems |
| 56 | * subsystems to be "busy". Should be accessed via css_get() | 56 | * to be "busy". Should be accessed via css_get(), |
| 57 | * and css_put() */ | 57 | * css_tryget() and and css_put(). */ |
| 58 | 58 | ||
| 59 | atomic_t refcnt; | 59 | atomic_t refcnt; |
| 60 | 60 | ||
| @@ -64,11 +64,14 @@ struct cgroup_subsys_state { | |||
| 64 | /* bits in struct cgroup_subsys_state flags field */ | 64 | /* bits in struct cgroup_subsys_state flags field */ |
| 65 | enum { | 65 | enum { |
| 66 | CSS_ROOT, /* This CSS is the root of the subsystem */ | 66 | CSS_ROOT, /* This CSS is the root of the subsystem */ |
| 67 | CSS_REMOVED, /* This CSS is dead */ | ||
| 67 | }; | 68 | }; |
| 68 | 69 | ||
| 69 | /* | 70 | /* |
| 70 | * Call css_get() to hold a reference on the cgroup; | 71 | * Call css_get() to hold a reference on the css; it can be used |
| 71 | * | 72 | * for a reference obtained via: |
| 73 | * - an existing ref-counted reference to the css | ||
| 74 | * - task->cgroups for a locked task | ||
| 72 | */ | 75 | */ |
| 73 | 76 | ||
| 74 | static inline void css_get(struct cgroup_subsys_state *css) | 77 | static inline void css_get(struct cgroup_subsys_state *css) |
| @@ -77,9 +80,33 @@ static inline void css_get(struct cgroup_subsys_state *css) | |||
| 77 | if (!test_bit(CSS_ROOT, &css->flags)) | 80 | if (!test_bit(CSS_ROOT, &css->flags)) |
| 78 | atomic_inc(&css->refcnt); | 81 | atomic_inc(&css->refcnt); |
| 79 | } | 82 | } |
| 83 | |||
| 84 | static inline bool css_is_removed(struct cgroup_subsys_state *css) | ||
| 85 | { | ||
| 86 | return test_bit(CSS_REMOVED, &css->flags); | ||
| 87 | } | ||
| 88 | |||
| 89 | /* | ||
| 90 | * Call css_tryget() to take a reference on a css if your existing | ||
| 91 | * (known-valid) reference isn't already ref-counted. Returns false if | ||
| 92 | * the css has been destroyed. | ||
| 93 | */ | ||
| 94 | |||
| 95 | static inline bool css_tryget(struct cgroup_subsys_state *css) | ||
| 96 | { | ||
| 97 | if (test_bit(CSS_ROOT, &css->flags)) | ||
| 98 | return true; | ||
| 99 | while (!atomic_inc_not_zero(&css->refcnt)) { | ||
| 100 | if (test_bit(CSS_REMOVED, &css->flags)) | ||
| 101 | return false; | ||
| 102 | cpu_relax(); | ||
| 103 | } | ||
| 104 | return true; | ||
| 105 | } | ||
| 106 | |||
| 80 | /* | 107 | /* |
| 81 | * css_put() should be called to release a reference taken by | 108 | * css_put() should be called to release a reference taken by |
| 82 | * css_get() | 109 | * css_get() or css_tryget() |
| 83 | */ | 110 | */ |
| 84 | 111 | ||
| 85 | extern void __css_put(struct cgroup_subsys_state *css); | 112 | extern void __css_put(struct cgroup_subsys_state *css); |
| @@ -116,7 +143,7 @@ struct cgroup { | |||
| 116 | struct list_head children; /* my children */ | 143 | struct list_head children; /* my children */ |
| 117 | 144 | ||
| 118 | struct cgroup *parent; /* my parent */ | 145 | struct cgroup *parent; /* my parent */ |
| 119 | struct dentry *dentry; /* cgroup fs entry */ | 146 | struct dentry *dentry; /* cgroup fs entry, RCU protected */ |
| 120 | 147 | ||
| 121 | /* Private pointers for each registered subsystem */ | 148 | /* Private pointers for each registered subsystem */ |
| 122 | struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT]; | 149 | struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT]; |
| @@ -145,6 +172,9 @@ struct cgroup { | |||
| 145 | int pids_use_count; | 172 | int pids_use_count; |
| 146 | /* Length of the current tasks_pids array */ | 173 | /* Length of the current tasks_pids array */ |
| 147 | int pids_length; | 174 | int pids_length; |
| 175 | |||
| 176 | /* For RCU-protected deletion */ | ||
| 177 | struct rcu_head rcu_head; | ||
| 148 | }; | 178 | }; |
| 149 | 179 | ||
| 150 | /* A css_set is a structure holding pointers to a set of | 180 | /* A css_set is a structure holding pointers to a set of |
| @@ -329,13 +359,7 @@ struct cgroup_subsys { | |||
| 329 | struct cgroup *cgrp); | 359 | struct cgroup *cgrp); |
| 330 | void (*post_clone)(struct cgroup_subsys *ss, struct cgroup *cgrp); | 360 | void (*post_clone)(struct cgroup_subsys *ss, struct cgroup *cgrp); |
| 331 | void (*bind)(struct cgroup_subsys *ss, struct cgroup *root); | 361 | void (*bind)(struct cgroup_subsys *ss, struct cgroup *root); |
| 332 | /* | 362 | |
| 333 | * This routine is called with the task_lock of mm->owner held | ||
| 334 | */ | ||
| 335 | void (*mm_owner_changed)(struct cgroup_subsys *ss, | ||
| 336 | struct cgroup *old, | ||
| 337 | struct cgroup *new, | ||
| 338 | struct task_struct *p); | ||
| 339 | int subsys_id; | 363 | int subsys_id; |
| 340 | int active; | 364 | int active; |
| 341 | int disabled; | 365 | int disabled; |
| @@ -343,9 +367,23 @@ struct cgroup_subsys { | |||
| 343 | #define MAX_CGROUP_TYPE_NAMELEN 32 | 367 | #define MAX_CGROUP_TYPE_NAMELEN 32 |
| 344 | const char *name; | 368 | const char *name; |
| 345 | 369 | ||
| 346 | /* Protected by RCU */ | 370 | /* |
| 347 | struct cgroupfs_root *root; | 371 | * Protects sibling/children links of cgroups in this |
| 372 | * hierarchy, plus protects which hierarchy (or none) the | ||
| 373 | * subsystem is a part of (i.e. root/sibling). To avoid | ||
| 374 | * potential deadlocks, the following operations should not be | ||
| 375 | * undertaken while holding any hierarchy_mutex: | ||
| 376 | * | ||
| 377 | * - allocating memory | ||
| 378 | * - initiating hotplug events | ||
| 379 | */ | ||
| 380 | struct mutex hierarchy_mutex; | ||
| 348 | 381 | ||
| 382 | /* | ||
| 383 | * Link to parent, and list entry in parent's children. | ||
| 384 | * Protected by this->hierarchy_mutex and cgroup_lock() | ||
| 385 | */ | ||
| 386 | struct cgroupfs_root *root; | ||
| 349 | struct list_head sibling; | 387 | struct list_head sibling; |
| 350 | }; | 388 | }; |
| 351 | 389 | ||
| @@ -400,9 +438,6 @@ void cgroup_iter_end(struct cgroup *cgrp, struct cgroup_iter *it); | |||
| 400 | int cgroup_scan_tasks(struct cgroup_scanner *scan); | 438 | int cgroup_scan_tasks(struct cgroup_scanner *scan); |
| 401 | int cgroup_attach_task(struct cgroup *, struct task_struct *); | 439 | int cgroup_attach_task(struct cgroup *, struct task_struct *); |
| 402 | 440 | ||
| 403 | void cgroup_mm_owner_callbacks(struct task_struct *old, | ||
| 404 | struct task_struct *new); | ||
| 405 | |||
| 406 | #else /* !CONFIG_CGROUPS */ | 441 | #else /* !CONFIG_CGROUPS */ |
| 407 | 442 | ||
| 408 | static inline int cgroup_init_early(void) { return 0; } | 443 | static inline int cgroup_init_early(void) { return 0; } |
| @@ -420,9 +455,6 @@ static inline int cgroupstats_build(struct cgroupstats *stats, | |||
| 420 | return -EINVAL; | 455 | return -EINVAL; |
| 421 | } | 456 | } |
| 422 | 457 | ||
| 423 | static inline void cgroup_mm_owner_callbacks(struct task_struct *old, | ||
| 424 | struct task_struct *new) {} | ||
| 425 | |||
| 426 | #endif /* !CONFIG_CGROUPS */ | 458 | #endif /* !CONFIG_CGROUPS */ |
| 427 | 459 | ||
| 428 | #endif /* _LINUX_CGROUP_H */ | 460 | #endif /* _LINUX_CGROUP_H */ |
diff --git a/include/linux/cgroupstats.h b/include/linux/cgroupstats.h index 4f53abf6855d..3753c33160d1 100644 --- a/include/linux/cgroupstats.h +++ b/include/linux/cgroupstats.h | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | #ifndef _LINUX_CGROUPSTATS_H | 15 | #ifndef _LINUX_CGROUPSTATS_H |
| 16 | #define _LINUX_CGROUPSTATS_H | 16 | #define _LINUX_CGROUPSTATS_H |
| 17 | 17 | ||
| 18 | #include <linux/types.h> | ||
| 18 | #include <linux/taskstats.h> | 19 | #include <linux/taskstats.h> |
| 19 | 20 | ||
| 20 | /* | 21 | /* |
diff --git a/include/linux/clockchips.h b/include/linux/clockchips.h index ed3a5d473e52..3a1dbba4d3ae 100644 --- a/include/linux/clockchips.h +++ b/include/linux/clockchips.h | |||
| @@ -36,6 +36,7 @@ enum clock_event_nofitiers { | |||
| 36 | CLOCK_EVT_NOTIFY_BROADCAST_EXIT, | 36 | CLOCK_EVT_NOTIFY_BROADCAST_EXIT, |
| 37 | CLOCK_EVT_NOTIFY_SUSPEND, | 37 | CLOCK_EVT_NOTIFY_SUSPEND, |
| 38 | CLOCK_EVT_NOTIFY_RESUME, | 38 | CLOCK_EVT_NOTIFY_RESUME, |
| 39 | CLOCK_EVT_NOTIFY_CPU_DYING, | ||
| 39 | CLOCK_EVT_NOTIFY_CPU_DEAD, | 40 | CLOCK_EVT_NOTIFY_CPU_DEAD, |
| 40 | }; | 41 | }; |
| 41 | 42 | ||
| @@ -82,13 +83,13 @@ struct clock_event_device { | |||
| 82 | int shift; | 83 | int shift; |
| 83 | int rating; | 84 | int rating; |
| 84 | int irq; | 85 | int irq; |
| 85 | cpumask_t cpumask; | 86 | const struct cpumask *cpumask; |
| 86 | int (*set_next_event)(unsigned long evt, | 87 | int (*set_next_event)(unsigned long evt, |
| 87 | struct clock_event_device *); | 88 | struct clock_event_device *); |
| 88 | void (*set_mode)(enum clock_event_mode mode, | 89 | void (*set_mode)(enum clock_event_mode mode, |
| 89 | struct clock_event_device *); | 90 | struct clock_event_device *); |
| 90 | void (*event_handler)(struct clock_event_device *); | 91 | void (*event_handler)(struct clock_event_device *); |
| 91 | void (*broadcast)(cpumask_t mask); | 92 | void (*broadcast)(const struct cpumask *mask); |
| 92 | struct list_head list; | 93 | struct list_head list; |
| 93 | enum clock_event_mode mode; | 94 | enum clock_event_mode mode; |
| 94 | ktime_t next_event; | 95 | ktime_t next_event; |
diff --git a/include/linux/compat.h b/include/linux/compat.h index e88f3ecf38b4..3fd2194ff573 100644 --- a/include/linux/compat.h +++ b/include/linux/compat.h | |||
| @@ -280,5 +280,18 @@ asmlinkage long compat_sys_timerfd_settime(int ufd, int flags, | |||
| 280 | asmlinkage long compat_sys_timerfd_gettime(int ufd, | 280 | asmlinkage long compat_sys_timerfd_gettime(int ufd, |
| 281 | struct compat_itimerspec __user *otmr); | 281 | struct compat_itimerspec __user *otmr); |
| 282 | 282 | ||
| 283 | asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_page, | ||
| 284 | __u32 __user *pages, | ||
| 285 | const int __user *nodes, | ||
| 286 | int __user *status, | ||
| 287 | int flags); | ||
| 288 | asmlinkage long compat_sys_futimesat(unsigned int dfd, char __user *filename, | ||
| 289 | struct compat_timeval __user *t); | ||
| 290 | asmlinkage long compat_sys_newfstatat(unsigned int dfd, char __user * filename, | ||
| 291 | struct compat_stat __user *statbuf, | ||
| 292 | int flag); | ||
| 293 | asmlinkage long compat_sys_openat(unsigned int dfd, const char __user *filename, | ||
| 294 | int flags, int mode); | ||
| 295 | |||
| 283 | #endif /* CONFIG_COMPAT */ | 296 | #endif /* CONFIG_COMPAT */ |
| 284 | #endif /* _LINUX_COMPAT_H */ | 297 | #endif /* _LINUX_COMPAT_H */ |
diff --git a/include/linux/compiler-gcc.h b/include/linux/compiler-gcc.h index 5c8351b859f0..1514d534deeb 100644 --- a/include/linux/compiler-gcc.h +++ b/include/linux/compiler-gcc.h | |||
| @@ -11,9 +11,19 @@ | |||
| 11 | /* The "volatile" is due to gcc bugs */ | 11 | /* The "volatile" is due to gcc bugs */ |
| 12 | #define barrier() __asm__ __volatile__("": : :"memory") | 12 | #define barrier() __asm__ __volatile__("": : :"memory") |
| 13 | 13 | ||
| 14 | /* This macro obfuscates arithmetic on a variable address so that gcc | ||
| 15 | shouldn't recognize the original var, and make assumptions about it */ | ||
| 16 | /* | 14 | /* |
| 15 | * This macro obfuscates arithmetic on a variable address so that gcc | ||
| 16 | * shouldn't recognize the original var, and make assumptions about it. | ||
| 17 | * | ||
| 18 | * This is needed because the C standard makes it undefined to do | ||
| 19 | * pointer arithmetic on "objects" outside their boundaries and the | ||
| 20 | * gcc optimizers assume this is the case. In particular they | ||
| 21 | * assume such arithmetic does not wrap. | ||
| 22 | * | ||
| 23 | * A miscompilation has been observed because of this on PPC. | ||
| 24 | * To work around it we hide the relationship of the pointer and the object | ||
| 25 | * using this macro. | ||
| 26 | * | ||
| 17 | * Versions of the ppc64 compiler before 4.1 had a bug where use of | 27 | * Versions of the ppc64 compiler before 4.1 had a bug where use of |
| 18 | * RELOC_HIDE could trash r30. The bug can be worked around by changing | 28 | * RELOC_HIDE could trash r30. The bug can be worked around by changing |
| 19 | * the inline assembly constraint from =g to =r, in this particular | 29 | * the inline assembly constraint from =g to =r, in this particular |
| @@ -61,3 +71,8 @@ | |||
| 61 | #define noinline __attribute__((noinline)) | 71 | #define noinline __attribute__((noinline)) |
| 62 | #define __attribute_const__ __attribute__((__const__)) | 72 | #define __attribute_const__ __attribute__((__const__)) |
| 63 | #define __maybe_unused __attribute__((unused)) | 73 | #define __maybe_unused __attribute__((unused)) |
| 74 | |||
| 75 | #define __gcc_header(x) #x | ||
| 76 | #define _gcc_header(x) __gcc_header(linux/compiler-gcc##x.h) | ||
| 77 | #define gcc_header(x) _gcc_header(x) | ||
| 78 | #include gcc_header(__GNUC__) | ||
diff --git a/include/linux/compiler-gcc3.h b/include/linux/compiler-gcc3.h index e5eb795f78a1..8005effc04f1 100644 --- a/include/linux/compiler-gcc3.h +++ b/include/linux/compiler-gcc3.h | |||
| @@ -2,8 +2,9 @@ | |||
| 2 | #error "Please don't include <linux/compiler-gcc3.h> directly, include <linux/compiler.h> instead." | 2 | #error "Please don't include <linux/compiler-gcc3.h> directly, include <linux/compiler.h> instead." |
| 3 | #endif | 3 | #endif |
| 4 | 4 | ||
| 5 | /* These definitions are for GCC v3.x. */ | 5 | #if __GNUC_MINOR__ < 2 |
| 6 | #include <linux/compiler-gcc.h> | 6 | # error Sorry, your compiler is too old - please upgrade it. |
| 7 | #endif | ||
| 7 | 8 | ||
| 8 | #if __GNUC_MINOR__ >= 3 | 9 | #if __GNUC_MINOR__ >= 3 |
| 9 | # define __used __attribute__((__used__)) | 10 | # define __used __attribute__((__used__)) |
diff --git a/include/linux/compiler-gcc4.h b/include/linux/compiler-gcc4.h index 974f5b7bb205..09992718f9e8 100644 --- a/include/linux/compiler-gcc4.h +++ b/include/linux/compiler-gcc4.h | |||
| @@ -2,8 +2,10 @@ | |||
| 2 | #error "Please don't include <linux/compiler-gcc4.h> directly, include <linux/compiler.h> instead." | 2 | #error "Please don't include <linux/compiler-gcc4.h> directly, include <linux/compiler.h> instead." |
| 3 | #endif | 3 | #endif |
| 4 | 4 | ||
| 5 | /* These definitions are for GCC v4.x. */ | 5 | /* GCC 4.1.[01] miscompiles __weak */ |
| 6 | #include <linux/compiler-gcc.h> | 6 | #if __GNUC_MINOR__ == 1 && __GNUC_PATCHLEVEL__ <= 1 |
| 7 | # error Your version of gcc miscompiles the __weak directive | ||
| 8 | #endif | ||
| 7 | 9 | ||
| 8 | #define __used __attribute__((__used__)) | 10 | #define __used __attribute__((__used__)) |
| 9 | #define __must_check __attribute__((warn_unused_result)) | 11 | #define __must_check __attribute__((warn_unused_result)) |
| @@ -16,7 +18,7 @@ | |||
| 16 | */ | 18 | */ |
| 17 | #define uninitialized_var(x) x = x | 19 | #define uninitialized_var(x) x = x |
| 18 | 20 | ||
| 19 | #if !(__GNUC__ == 4 && __GNUC_MINOR__ < 3) | 21 | #if __GNUC_MINOR__ >= 3 |
| 20 | /* Mark functions as cold. gcc will assume any path leading to a call | 22 | /* Mark functions as cold. gcc will assume any path leading to a call |
| 21 | to them will be unlikely. This means a lot of manual unlikely()s | 23 | to them will be unlikely. This means a lot of manual unlikely()s |
| 22 | are unnecessary now for any paths leading to the usual suspects | 24 | are unnecessary now for any paths leading to the usual suspects |
diff --git a/include/linux/compiler.h b/include/linux/compiler.h index ea7c6be354b7..d95da1020f1c 100644 --- a/include/linux/compiler.h +++ b/include/linux/compiler.h | |||
| @@ -36,12 +36,8 @@ extern void __chk_io_ptr(const volatile void __iomem *); | |||
| 36 | 36 | ||
| 37 | #ifdef __KERNEL__ | 37 | #ifdef __KERNEL__ |
| 38 | 38 | ||
| 39 | #if __GNUC__ >= 4 | 39 | #ifdef __GNUC__ |
| 40 | # include <linux/compiler-gcc4.h> | 40 | #include <linux/compiler-gcc.h> |
| 41 | #elif __GNUC__ == 3 && __GNUC_MINOR__ >= 2 | ||
| 42 | # include <linux/compiler-gcc3.h> | ||
| 43 | #else | ||
| 44 | # error Sorry, your compiler is too old/not recognized. | ||
| 45 | #endif | 41 | #endif |
| 46 | 42 | ||
| 47 | #define notrace __attribute__((no_instrument_function)) | 43 | #define notrace __attribute__((no_instrument_function)) |
diff --git a/include/linux/connector.h b/include/linux/connector.h index 5c7f9468f753..34f2789d9b9b 100644 --- a/include/linux/connector.h +++ b/include/linux/connector.h | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | #ifndef __CONNECTOR_H | 22 | #ifndef __CONNECTOR_H |
| 23 | #define __CONNECTOR_H | 23 | #define __CONNECTOR_H |
| 24 | 24 | ||
| 25 | #include <asm/types.h> | 25 | #include <linux/types.h> |
| 26 | 26 | ||
| 27 | #define CN_IDX_CONNECTOR 0xffffffff | 27 | #define CN_IDX_CONNECTOR 0xffffffff |
| 28 | #define CN_VAL_CONNECTOR 0xffffffff | 28 | #define CN_VAL_CONNECTOR 0xffffffff |
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h index 1ee608fd7b77..384b38d3e8e2 100644 --- a/include/linux/cpufreq.h +++ b/include/linux/cpufreq.h | |||
| @@ -80,8 +80,8 @@ struct cpufreq_real_policy { | |||
| 80 | }; | 80 | }; |
| 81 | 81 | ||
| 82 | struct cpufreq_policy { | 82 | struct cpufreq_policy { |
| 83 | cpumask_t cpus; /* CPUs requiring sw coordination */ | 83 | cpumask_var_t cpus; /* CPUs requiring sw coordination */ |
| 84 | cpumask_t related_cpus; /* CPUs with any coordination */ | 84 | cpumask_var_t related_cpus; /* CPUs with any coordination */ |
| 85 | unsigned int shared_type; /* ANY or ALL affected CPUs | 85 | unsigned int shared_type; /* ANY or ALL affected CPUs |
| 86 | should set cpufreq */ | 86 | should set cpufreq */ |
| 87 | unsigned int cpu; /* cpu nr of registered CPU */ | 87 | unsigned int cpu; /* cpu nr of registered CPU */ |
| @@ -234,6 +234,7 @@ struct cpufreq_driver { | |||
| 234 | int (*suspend) (struct cpufreq_policy *policy, pm_message_t pmsg); | 234 | int (*suspend) (struct cpufreq_policy *policy, pm_message_t pmsg); |
| 235 | int (*resume) (struct cpufreq_policy *policy); | 235 | int (*resume) (struct cpufreq_policy *policy); |
| 236 | struct freq_attr **attr; | 236 | struct freq_attr **attr; |
| 237 | bool hide_interface; | ||
| 237 | }; | 238 | }; |
| 238 | 239 | ||
| 239 | /* flags */ | 240 | /* flags */ |
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index 21e1dd43e52a..9f315382610b 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h | |||
| @@ -144,6 +144,7 @@ | |||
| 144 | typedef struct cpumask { DECLARE_BITMAP(bits, NR_CPUS); } cpumask_t; | 144 | typedef struct cpumask { DECLARE_BITMAP(bits, NR_CPUS); } cpumask_t; |
| 145 | extern cpumask_t _unused_cpumask_arg_; | 145 | extern cpumask_t _unused_cpumask_arg_; |
| 146 | 146 | ||
| 147 | #ifndef CONFIG_DISABLE_OBSOLETE_CPUMASK_FUNCTIONS | ||
| 147 | #define cpu_set(cpu, dst) __cpu_set((cpu), &(dst)) | 148 | #define cpu_set(cpu, dst) __cpu_set((cpu), &(dst)) |
| 148 | static inline void __cpu_set(int cpu, volatile cpumask_t *dstp) | 149 | static inline void __cpu_set(int cpu, volatile cpumask_t *dstp) |
| 149 | { | 150 | { |
| @@ -267,6 +268,26 @@ static inline void __cpus_shift_left(cpumask_t *dstp, | |||
| 267 | { | 268 | { |
| 268 | bitmap_shift_left(dstp->bits, srcp->bits, n, nbits); | 269 | bitmap_shift_left(dstp->bits, srcp->bits, n, nbits); |
| 269 | } | 270 | } |
| 271 | #endif /* !CONFIG_DISABLE_OBSOLETE_CPUMASK_FUNCTIONS */ | ||
| 272 | |||
| 273 | /** | ||
| 274 | * to_cpumask - convert an NR_CPUS bitmap to a struct cpumask * | ||
| 275 | * @bitmap: the bitmap | ||
| 276 | * | ||
| 277 | * There are a few places where cpumask_var_t isn't appropriate and | ||
| 278 | * static cpumasks must be used (eg. very early boot), yet we don't | ||
| 279 | * expose the definition of 'struct cpumask'. | ||
| 280 | * | ||
| 281 | * This does the conversion, and can be used as a constant initializer. | ||
| 282 | */ | ||
| 283 | #define to_cpumask(bitmap) \ | ||
| 284 | ((struct cpumask *)(1 ? (bitmap) \ | ||
| 285 | : (void *)sizeof(__check_is_bitmap(bitmap)))) | ||
| 286 | |||
| 287 | static inline int __check_is_bitmap(const unsigned long *bitmap) | ||
| 288 | { | ||
| 289 | return 1; | ||
| 290 | } | ||
| 270 | 291 | ||
| 271 | /* | 292 | /* |
| 272 | * Special-case data structure for "single bit set only" constant CPU masks. | 293 | * Special-case data structure for "single bit set only" constant CPU masks. |
| @@ -278,13 +299,14 @@ static inline void __cpus_shift_left(cpumask_t *dstp, | |||
| 278 | extern const unsigned long | 299 | extern const unsigned long |
| 279 | cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)]; | 300 | cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)]; |
| 280 | 301 | ||
| 281 | static inline const cpumask_t *get_cpu_mask(unsigned int cpu) | 302 | static inline const struct cpumask *get_cpu_mask(unsigned int cpu) |
| 282 | { | 303 | { |
| 283 | const unsigned long *p = cpu_bit_bitmap[1 + cpu % BITS_PER_LONG]; | 304 | const unsigned long *p = cpu_bit_bitmap[1 + cpu % BITS_PER_LONG]; |
| 284 | p -= cpu / BITS_PER_LONG; | 305 | p -= cpu / BITS_PER_LONG; |
| 285 | return (const cpumask_t *)p; | 306 | return to_cpumask(p); |
| 286 | } | 307 | } |
| 287 | 308 | ||
| 309 | #ifndef CONFIG_DISABLE_OBSOLETE_CPUMASK_FUNCTIONS | ||
| 288 | /* | 310 | /* |
| 289 | * In cases where we take the address of the cpumask immediately, | 311 | * In cases where we take the address of the cpumask immediately, |
| 290 | * gcc optimizes it out (it's a constant) and there's no huge stack | 312 | * gcc optimizes it out (it's a constant) and there's no huge stack |
| @@ -339,36 +361,6 @@ extern cpumask_t cpu_mask_all; | |||
| 339 | #endif | 361 | #endif |
| 340 | #define CPUMASK_PTR(v, m) cpumask_t *v = &(m->v) | 362 | #define CPUMASK_PTR(v, m) cpumask_t *v = &(m->v) |
| 341 | 363 | ||
| 342 | #define cpumask_scnprintf(buf, len, src) \ | ||
| 343 | __cpumask_scnprintf((buf), (len), &(src), NR_CPUS) | ||
| 344 | static inline int __cpumask_scnprintf(char *buf, int len, | ||
| 345 | const cpumask_t *srcp, int nbits) | ||
| 346 | { | ||
| 347 | return bitmap_scnprintf(buf, len, srcp->bits, nbits); | ||
| 348 | } | ||
| 349 | |||
| 350 | #define cpumask_parse_user(ubuf, ulen, dst) \ | ||
| 351 | __cpumask_parse_user((ubuf), (ulen), &(dst), NR_CPUS) | ||
| 352 | static inline int __cpumask_parse_user(const char __user *buf, int len, | ||
| 353 | cpumask_t *dstp, int nbits) | ||
| 354 | { | ||
| 355 | return bitmap_parse_user(buf, len, dstp->bits, nbits); | ||
| 356 | } | ||
| 357 | |||
| 358 | #define cpulist_scnprintf(buf, len, src) \ | ||
| 359 | __cpulist_scnprintf((buf), (len), &(src), NR_CPUS) | ||
| 360 | static inline int __cpulist_scnprintf(char *buf, int len, | ||
| 361 | const cpumask_t *srcp, int nbits) | ||
| 362 | { | ||
| 363 | return bitmap_scnlistprintf(buf, len, srcp->bits, nbits); | ||
| 364 | } | ||
| 365 | |||
| 366 | #define cpulist_parse(buf, dst) __cpulist_parse((buf), &(dst), NR_CPUS) | ||
| 367 | static inline int __cpulist_parse(const char *buf, cpumask_t *dstp, int nbits) | ||
| 368 | { | ||
| 369 | return bitmap_parselist(buf, dstp->bits, nbits); | ||
| 370 | } | ||
| 371 | |||
| 372 | #define cpu_remap(oldbit, old, new) \ | 364 | #define cpu_remap(oldbit, old, new) \ |
| 373 | __cpu_remap((oldbit), &(old), &(new), NR_CPUS) | 365 | __cpu_remap((oldbit), &(old), &(new), NR_CPUS) |
| 374 | static inline int __cpu_remap(int oldbit, | 366 | static inline int __cpu_remap(int oldbit, |
| @@ -400,19 +392,22 @@ static inline void __cpus_fold(cpumask_t *dstp, const cpumask_t *origp, | |||
| 400 | { | 392 | { |
| 401 | bitmap_fold(dstp->bits, origp->bits, sz, nbits); | 393 | bitmap_fold(dstp->bits, origp->bits, sz, nbits); |
| 402 | } | 394 | } |
| 395 | #endif /* !CONFIG_DISABLE_OBSOLETE_CPUMASK_FUNCTIONS */ | ||
| 403 | 396 | ||
| 404 | #if NR_CPUS == 1 | 397 | #if NR_CPUS == 1 |
| 405 | 398 | ||
| 406 | #define nr_cpu_ids 1 | 399 | #define nr_cpu_ids 1 |
| 400 | #ifndef CONFIG_DISABLE_OBSOLETE_CPUMASK_FUNCTIONS | ||
| 407 | #define first_cpu(src) ({ (void)(src); 0; }) | 401 | #define first_cpu(src) ({ (void)(src); 0; }) |
| 408 | #define next_cpu(n, src) ({ (void)(src); 1; }) | 402 | #define next_cpu(n, src) ({ (void)(src); 1; }) |
| 409 | #define any_online_cpu(mask) 0 | 403 | #define any_online_cpu(mask) 0 |
| 410 | #define for_each_cpu_mask(cpu, mask) \ | 404 | #define for_each_cpu_mask(cpu, mask) \ |
| 411 | for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask) | 405 | for ((cpu) = 0; (cpu) < 1; (cpu)++, (void)mask) |
| 412 | 406 | #endif /* !CONFIG_DISABLE_OBSOLETE_CPUMASK_FUNCTIONS */ | |
| 413 | #else /* NR_CPUS > 1 */ | 407 | #else /* NR_CPUS > 1 */ |
| 414 | 408 | ||
| 415 | extern int nr_cpu_ids; | 409 | extern int nr_cpu_ids; |
| 410 | #ifndef CONFIG_DISABLE_OBSOLETE_CPUMASK_FUNCTIONS | ||
| 416 | int __first_cpu(const cpumask_t *srcp); | 411 | int __first_cpu(const cpumask_t *srcp); |
| 417 | int __next_cpu(int n, const cpumask_t *srcp); | 412 | int __next_cpu(int n, const cpumask_t *srcp); |
| 418 | int __any_online_cpu(const cpumask_t *mask); | 413 | int __any_online_cpu(const cpumask_t *mask); |
| @@ -424,8 +419,10 @@ int __any_online_cpu(const cpumask_t *mask); | |||
| 424 | for ((cpu) = -1; \ | 419 | for ((cpu) = -1; \ |
| 425 | (cpu) = next_cpu((cpu), (mask)), \ | 420 | (cpu) = next_cpu((cpu), (mask)), \ |
| 426 | (cpu) < NR_CPUS; ) | 421 | (cpu) < NR_CPUS; ) |
| 422 | #endif /* !CONFIG_DISABLE_OBSOLETE_CPUMASK_FUNCTIONS */ | ||
| 427 | #endif | 423 | #endif |
| 428 | 424 | ||
| 425 | #ifndef CONFIG_DISABLE_OBSOLETE_CPUMASK_FUNCTIONS | ||
| 429 | #if NR_CPUS <= 64 | 426 | #if NR_CPUS <= 64 |
| 430 | 427 | ||
| 431 | #define next_cpu_nr(n, src) next_cpu(n, src) | 428 | #define next_cpu_nr(n, src) next_cpu(n, src) |
| @@ -443,77 +440,67 @@ int __next_cpu_nr(int n, const cpumask_t *srcp); | |||
| 443 | (cpu) < nr_cpu_ids; ) | 440 | (cpu) < nr_cpu_ids; ) |
| 444 | 441 | ||
| 445 | #endif /* NR_CPUS > 64 */ | 442 | #endif /* NR_CPUS > 64 */ |
| 443 | #endif /* !CONFIG_DISABLE_OBSOLETE_CPUMASK_FUNCTIONS */ | ||
| 446 | 444 | ||
| 447 | /* | 445 | /* |
| 448 | * The following particular system cpumasks and operations manage | 446 | * The following particular system cpumasks and operations manage |
| 449 | * possible, present, active and online cpus. Each of them is a fixed size | 447 | * possible, present, active and online cpus. |
| 450 | * bitmap of size NR_CPUS. | ||
| 451 | * | 448 | * |
| 452 | * #ifdef CONFIG_HOTPLUG_CPU | 449 | * cpu_possible_mask- has bit 'cpu' set iff cpu is populatable |
| 453 | * cpu_possible_map - has bit 'cpu' set iff cpu is populatable | 450 | * cpu_present_mask - has bit 'cpu' set iff cpu is populated |
| 454 | * cpu_present_map - has bit 'cpu' set iff cpu is populated | 451 | * cpu_online_mask - has bit 'cpu' set iff cpu available to scheduler |
| 455 | * cpu_online_map - has bit 'cpu' set iff cpu available to scheduler | 452 | * cpu_active_mask - has bit 'cpu' set iff cpu available to migration |
| 456 | * cpu_active_map - has bit 'cpu' set iff cpu available to migration | ||
| 457 | * #else | ||
| 458 | * cpu_possible_map - has bit 'cpu' set iff cpu is populated | ||
| 459 | * cpu_present_map - copy of cpu_possible_map | ||
| 460 | * cpu_online_map - has bit 'cpu' set iff cpu available to scheduler | ||
| 461 | * #endif | ||
| 462 | * | 453 | * |
| 463 | * In either case, NR_CPUS is fixed at compile time, as the static | 454 | * If !CONFIG_HOTPLUG_CPU, present == possible, and active == online. |
| 464 | * size of these bitmaps. The cpu_possible_map is fixed at boot | ||
| 465 | * time, as the set of CPU id's that it is possible might ever | ||
| 466 | * be plugged in at anytime during the life of that system boot. | ||
| 467 | * The cpu_present_map is dynamic(*), representing which CPUs | ||
| 468 | * are currently plugged in. And cpu_online_map is the dynamic | ||
| 469 | * subset of cpu_present_map, indicating those CPUs available | ||
| 470 | * for scheduling. | ||
| 471 | * | 455 | * |
| 472 | * If HOTPLUG is enabled, then cpu_possible_map is forced to have | 456 | * The cpu_possible_mask is fixed at boot time, as the set of CPU id's |
| 457 | * that it is possible might ever be plugged in at anytime during the | ||
| 458 | * life of that system boot. The cpu_present_mask is dynamic(*), | ||
| 459 | * representing which CPUs are currently plugged in. And | ||
| 460 | * cpu_online_mask is the dynamic subset of cpu_present_mask, | ||
| 461 | * indicating those CPUs available for scheduling. | ||
| 462 | * | ||
| 463 | * If HOTPLUG is enabled, then cpu_possible_mask is forced to have | ||
| 473 | * all NR_CPUS bits set, otherwise it is just the set of CPUs that | 464 | * all NR_CPUS bits set, otherwise it is just the set of CPUs that |
| 474 | * ACPI reports present at boot. | 465 | * ACPI reports present at boot. |
| 475 | * | 466 | * |
| 476 | * If HOTPLUG is enabled, then cpu_present_map varies dynamically, | 467 | * If HOTPLUG is enabled, then cpu_present_mask varies dynamically, |
| 477 | * depending on what ACPI reports as currently plugged in, otherwise | 468 | * depending on what ACPI reports as currently plugged in, otherwise |
| 478 | * cpu_present_map is just a copy of cpu_possible_map. | 469 | * cpu_present_mask is just a copy of cpu_possible_mask. |
| 479 | * | 470 | * |
| 480 | * (*) Well, cpu_present_map is dynamic in the hotplug case. If not | 471 | * (*) Well, cpu_present_mask is dynamic in the hotplug case. If not |
| 481 | * hotplug, it's a copy of cpu_possible_map, hence fixed at boot. | 472 | * hotplug, it's a copy of cpu_possible_mask, hence fixed at boot. |
| 482 | * | 473 | * |
| 483 | * Subtleties: | 474 | * Subtleties: |
| 484 | * 1) UP arch's (NR_CPUS == 1, CONFIG_SMP not defined) hardcode | 475 | * 1) UP arch's (NR_CPUS == 1, CONFIG_SMP not defined) hardcode |
| 485 | * assumption that their single CPU is online. The UP | 476 | * assumption that their single CPU is online. The UP |
| 486 | * cpu_{online,possible,present}_maps are placebos. Changing them | 477 | * cpu_{online,possible,present}_masks are placebos. Changing them |
| 487 | * will have no useful affect on the following num_*_cpus() | 478 | * will have no useful affect on the following num_*_cpus() |
| 488 | * and cpu_*() macros in the UP case. This ugliness is a UP | 479 | * and cpu_*() macros in the UP case. This ugliness is a UP |
| 489 | * optimization - don't waste any instructions or memory references | 480 | * optimization - don't waste any instructions or memory references |
| 490 | * asking if you're online or how many CPUs there are if there is | 481 | * asking if you're online or how many CPUs there are if there is |
| 491 | * only one CPU. | 482 | * only one CPU. |
| 492 | * 2) Most SMP arch's #define some of these maps to be some | ||
| 493 | * other map specific to that arch. Therefore, the following | ||
| 494 | * must be #define macros, not inlines. To see why, examine | ||
| 495 | * the assembly code produced by the following. Note that | ||
| 496 | * set1() writes phys_x_map, but set2() writes x_map: | ||
| 497 | * int x_map, phys_x_map; | ||
| 498 | * #define set1(a) x_map = a | ||
| 499 | * inline void set2(int a) { x_map = a; } | ||
| 500 | * #define x_map phys_x_map | ||
| 501 | * main(){ set1(3); set2(5); } | ||
| 502 | */ | 483 | */ |
| 503 | 484 | ||
| 504 | extern cpumask_t cpu_possible_map; | 485 | extern const struct cpumask *const cpu_possible_mask; |
| 505 | extern cpumask_t cpu_online_map; | 486 | extern const struct cpumask *const cpu_online_mask; |
| 506 | extern cpumask_t cpu_present_map; | 487 | extern const struct cpumask *const cpu_present_mask; |
| 507 | extern cpumask_t cpu_active_map; | 488 | extern const struct cpumask *const cpu_active_mask; |
| 489 | |||
| 490 | /* These strip const, as traditionally they weren't const. */ | ||
| 491 | #define cpu_possible_map (*(cpumask_t *)cpu_possible_mask) | ||
| 492 | #define cpu_online_map (*(cpumask_t *)cpu_online_mask) | ||
| 493 | #define cpu_present_map (*(cpumask_t *)cpu_present_mask) | ||
| 494 | #define cpu_active_map (*(cpumask_t *)cpu_active_mask) | ||
| 508 | 495 | ||
| 509 | #if NR_CPUS > 1 | 496 | #if NR_CPUS > 1 |
| 510 | #define num_online_cpus() cpus_weight_nr(cpu_online_map) | 497 | #define num_online_cpus() cpumask_weight(cpu_online_mask) |
| 511 | #define num_possible_cpus() cpus_weight_nr(cpu_possible_map) | 498 | #define num_possible_cpus() cpumask_weight(cpu_possible_mask) |
| 512 | #define num_present_cpus() cpus_weight_nr(cpu_present_map) | 499 | #define num_present_cpus() cpumask_weight(cpu_present_mask) |
| 513 | #define cpu_online(cpu) cpu_isset((cpu), cpu_online_map) | 500 | #define cpu_online(cpu) cpumask_test_cpu((cpu), cpu_online_mask) |
| 514 | #define cpu_possible(cpu) cpu_isset((cpu), cpu_possible_map) | 501 | #define cpu_possible(cpu) cpumask_test_cpu((cpu), cpu_possible_mask) |
| 515 | #define cpu_present(cpu) cpu_isset((cpu), cpu_present_map) | 502 | #define cpu_present(cpu) cpumask_test_cpu((cpu), cpu_present_mask) |
| 516 | #define cpu_active(cpu) cpu_isset((cpu), cpu_active_map) | 503 | #define cpu_active(cpu) cpumask_test_cpu((cpu), cpu_active_mask) |
| 517 | #else | 504 | #else |
| 518 | #define num_online_cpus() 1 | 505 | #define num_online_cpus() 1 |
| 519 | #define num_possible_cpus() 1 | 506 | #define num_possible_cpus() 1 |
| @@ -526,10 +513,6 @@ extern cpumask_t cpu_active_map; | |||
| 526 | 513 | ||
| 527 | #define cpu_is_offline(cpu) unlikely(!cpu_online(cpu)) | 514 | #define cpu_is_offline(cpu) unlikely(!cpu_online(cpu)) |
| 528 | 515 | ||
| 529 | #define for_each_possible_cpu(cpu) for_each_cpu_mask_nr((cpu), cpu_possible_map) | ||
| 530 | #define for_each_online_cpu(cpu) for_each_cpu_mask_nr((cpu), cpu_online_map) | ||
| 531 | #define for_each_present_cpu(cpu) for_each_cpu_mask_nr((cpu), cpu_present_map) | ||
| 532 | |||
| 533 | /* These are the new versions of the cpumask operators: passed by pointer. | 516 | /* These are the new versions of the cpumask operators: passed by pointer. |
| 534 | * The older versions will be implemented in terms of these, then deleted. */ | 517 | * The older versions will be implemented in terms of these, then deleted. */ |
| 535 | #define cpumask_bits(maskp) ((maskp)->bits) | 518 | #define cpumask_bits(maskp) ((maskp)->bits) |
| @@ -540,9 +523,6 @@ extern cpumask_t cpu_active_map; | |||
| 540 | [BITS_TO_LONGS(NR_CPUS)-1] = CPU_MASK_LAST_WORD \ | 523 | [BITS_TO_LONGS(NR_CPUS)-1] = CPU_MASK_LAST_WORD \ |
| 541 | } | 524 | } |
| 542 | 525 | ||
| 543 | /* This produces more efficient code. */ | ||
| 544 | #define nr_cpumask_bits NR_CPUS | ||
| 545 | |||
| 546 | #else /* NR_CPUS > BITS_PER_LONG */ | 526 | #else /* NR_CPUS > BITS_PER_LONG */ |
| 547 | 527 | ||
| 548 | #define CPU_BITS_ALL \ | 528 | #define CPU_BITS_ALL \ |
| @@ -550,9 +530,15 @@ extern cpumask_t cpu_active_map; | |||
| 550 | [0 ... BITS_TO_LONGS(NR_CPUS)-2] = ~0UL, \ | 530 | [0 ... BITS_TO_LONGS(NR_CPUS)-2] = ~0UL, \ |
| 551 | [BITS_TO_LONGS(NR_CPUS)-1] = CPU_MASK_LAST_WORD \ | 531 | [BITS_TO_LONGS(NR_CPUS)-1] = CPU_MASK_LAST_WORD \ |
| 552 | } | 532 | } |
| 533 | #endif /* NR_CPUS > BITS_PER_LONG */ | ||
| 553 | 534 | ||
| 535 | #ifdef CONFIG_CPUMASK_OFFSTACK | ||
| 536 | /* Assuming NR_CPUS is huge, a runtime limit is more efficient. Also, | ||
| 537 | * not all bits may be allocated. */ | ||
| 554 | #define nr_cpumask_bits nr_cpu_ids | 538 | #define nr_cpumask_bits nr_cpu_ids |
| 555 | #endif /* NR_CPUS > BITS_PER_LONG */ | 539 | #else |
| 540 | #define nr_cpumask_bits NR_CPUS | ||
| 541 | #endif | ||
| 556 | 542 | ||
| 557 | /* verify cpu argument to cpumask_* operators */ | 543 | /* verify cpu argument to cpumask_* operators */ |
| 558 | static inline unsigned int cpumask_check(unsigned int cpu) | 544 | static inline unsigned int cpumask_check(unsigned int cpu) |
| @@ -714,7 +700,7 @@ static inline void cpumask_clear_cpu(int cpu, struct cpumask *dstp) | |||
| 714 | * No static inline type checking - see Subtlety (1) above. | 700 | * No static inline type checking - see Subtlety (1) above. |
| 715 | */ | 701 | */ |
| 716 | #define cpumask_test_cpu(cpu, cpumask) \ | 702 | #define cpumask_test_cpu(cpu, cpumask) \ |
| 717 | test_bit(cpumask_check(cpu), (cpumask)->bits) | 703 | test_bit(cpumask_check(cpu), cpumask_bits((cpumask))) |
| 718 | 704 | ||
| 719 | /** | 705 | /** |
| 720 | * cpumask_test_and_set_cpu - atomically test and set a cpu in a cpumask | 706 | * cpumask_test_and_set_cpu - atomically test and set a cpu in a cpumask |
| @@ -946,22 +932,61 @@ static inline void cpumask_copy(struct cpumask *dstp, | |||
| 946 | #define cpumask_of(cpu) (get_cpu_mask(cpu)) | 932 | #define cpumask_of(cpu) (get_cpu_mask(cpu)) |
| 947 | 933 | ||
| 948 | /** | 934 | /** |
| 949 | * to_cpumask - convert an NR_CPUS bitmap to a struct cpumask * | 935 | * cpumask_scnprintf - print a cpumask into a string as comma-separated hex |
| 950 | * @bitmap: the bitmap | 936 | * @buf: the buffer to sprintf into |
| 937 | * @len: the length of the buffer | ||
| 938 | * @srcp: the cpumask to print | ||
| 951 | * | 939 | * |
| 952 | * There are a few places where cpumask_var_t isn't appropriate and | 940 | * If len is zero, returns zero. Otherwise returns the length of the |
| 953 | * static cpumasks must be used (eg. very early boot), yet we don't | 941 | * (nul-terminated) @buf string. |
| 954 | * expose the definition of 'struct cpumask'. | 942 | */ |
| 943 | static inline int cpumask_scnprintf(char *buf, int len, | ||
| 944 | const struct cpumask *srcp) | ||
| 945 | { | ||
| 946 | return bitmap_scnprintf(buf, len, cpumask_bits(srcp), nr_cpumask_bits); | ||
| 947 | } | ||
| 948 | |||
| 949 | /** | ||
| 950 | * cpumask_parse_user - extract a cpumask from a user string | ||
| 951 | * @buf: the buffer to extract from | ||
| 952 | * @len: the length of the buffer | ||
| 953 | * @dstp: the cpumask to set. | ||
| 955 | * | 954 | * |
| 956 | * This does the conversion, and can be used as a constant initializer. | 955 | * Returns -errno, or 0 for success. |
| 957 | */ | 956 | */ |
| 958 | #define to_cpumask(bitmap) \ | 957 | static inline int cpumask_parse_user(const char __user *buf, int len, |
| 959 | ((struct cpumask *)(1 ? (bitmap) \ | 958 | struct cpumask *dstp) |
| 960 | : (void *)sizeof(__check_is_bitmap(bitmap)))) | 959 | { |
| 960 | return bitmap_parse_user(buf, len, cpumask_bits(dstp), nr_cpumask_bits); | ||
| 961 | } | ||
| 961 | 962 | ||
| 962 | static inline int __check_is_bitmap(const unsigned long *bitmap) | 963 | /** |
| 964 | * cpulist_scnprintf - print a cpumask into a string as comma-separated list | ||
| 965 | * @buf: the buffer to sprintf into | ||
| 966 | * @len: the length of the buffer | ||
| 967 | * @srcp: the cpumask to print | ||
| 968 | * | ||
| 969 | * If len is zero, returns zero. Otherwise returns the length of the | ||
| 970 | * (nul-terminated) @buf string. | ||
| 971 | */ | ||
| 972 | static inline int cpulist_scnprintf(char *buf, int len, | ||
| 973 | const struct cpumask *srcp) | ||
| 963 | { | 974 | { |
| 964 | return 1; | 975 | return bitmap_scnlistprintf(buf, len, cpumask_bits(srcp), |
| 976 | nr_cpumask_bits); | ||
| 977 | } | ||
| 978 | |||
| 979 | /** | ||
| 980 | * cpulist_parse_user - extract a cpumask from a user string of ranges | ||
| 981 | * @buf: the buffer to extract from | ||
| 982 | * @len: the length of the buffer | ||
| 983 | * @dstp: the cpumask to set. | ||
| 984 | * | ||
| 985 | * Returns -errno, or 0 for success. | ||
| 986 | */ | ||
| 987 | static inline int cpulist_parse(const char *buf, struct cpumask *dstp) | ||
| 988 | { | ||
| 989 | return bitmap_parselist(buf, cpumask_bits(dstp), nr_cpumask_bits); | ||
| 965 | } | 990 | } |
| 966 | 991 | ||
| 967 | /** | 992 | /** |
| @@ -995,6 +1020,7 @@ static inline size_t cpumask_size(void) | |||
| 995 | #ifdef CONFIG_CPUMASK_OFFSTACK | 1020 | #ifdef CONFIG_CPUMASK_OFFSTACK |
| 996 | typedef struct cpumask *cpumask_var_t; | 1021 | typedef struct cpumask *cpumask_var_t; |
| 997 | 1022 | ||
| 1023 | bool alloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags, int node); | ||
| 998 | bool alloc_cpumask_var(cpumask_var_t *mask, gfp_t flags); | 1024 | bool alloc_cpumask_var(cpumask_var_t *mask, gfp_t flags); |
| 999 | void alloc_bootmem_cpumask_var(cpumask_var_t *mask); | 1025 | void alloc_bootmem_cpumask_var(cpumask_var_t *mask); |
| 1000 | void free_cpumask_var(cpumask_var_t mask); | 1026 | void free_cpumask_var(cpumask_var_t mask); |
| @@ -1008,6 +1034,12 @@ static inline bool alloc_cpumask_var(cpumask_var_t *mask, gfp_t flags) | |||
| 1008 | return true; | 1034 | return true; |
| 1009 | } | 1035 | } |
| 1010 | 1036 | ||
| 1037 | static inline bool alloc_cpumask_var_node(cpumask_var_t *mask, gfp_t flags, | ||
| 1038 | int node) | ||
| 1039 | { | ||
| 1040 | return true; | ||
| 1041 | } | ||
| 1042 | |||
| 1011 | static inline void alloc_bootmem_cpumask_var(cpumask_var_t *mask) | 1043 | static inline void alloc_bootmem_cpumask_var(cpumask_var_t *mask) |
| 1012 | { | 1044 | { |
| 1013 | } | 1045 | } |
| @@ -1021,12 +1053,6 @@ static inline void free_bootmem_cpumask_var(cpumask_var_t mask) | |||
| 1021 | } | 1053 | } |
| 1022 | #endif /* CONFIG_CPUMASK_OFFSTACK */ | 1054 | #endif /* CONFIG_CPUMASK_OFFSTACK */ |
| 1023 | 1055 | ||
| 1024 | /* The pointer versions of the maps, these will become the primary versions. */ | ||
| 1025 | #define cpu_possible_mask ((const struct cpumask *)&cpu_possible_map) | ||
| 1026 | #define cpu_online_mask ((const struct cpumask *)&cpu_online_map) | ||
| 1027 | #define cpu_present_mask ((const struct cpumask *)&cpu_present_map) | ||
| 1028 | #define cpu_active_mask ((const struct cpumask *)&cpu_active_map) | ||
| 1029 | |||
| 1030 | /* It's common to want to use cpu_all_mask in struct member initializers, | 1056 | /* It's common to want to use cpu_all_mask in struct member initializers, |
| 1031 | * so it has to refer to an address rather than a pointer. */ | 1057 | * so it has to refer to an address rather than a pointer. */ |
| 1032 | extern const DECLARE_BITMAP(cpu_all_bits, NR_CPUS); | 1058 | extern const DECLARE_BITMAP(cpu_all_bits, NR_CPUS); |
| @@ -1035,51 +1061,16 @@ extern const DECLARE_BITMAP(cpu_all_bits, NR_CPUS); | |||
| 1035 | /* First bits of cpu_bit_bitmap are in fact unset. */ | 1061 | /* First bits of cpu_bit_bitmap are in fact unset. */ |
| 1036 | #define cpu_none_mask to_cpumask(cpu_bit_bitmap[0]) | 1062 | #define cpu_none_mask to_cpumask(cpu_bit_bitmap[0]) |
| 1037 | 1063 | ||
| 1038 | /* Wrappers for arch boot code to manipulate normally-constant masks */ | 1064 | #define for_each_possible_cpu(cpu) for_each_cpu((cpu), cpu_possible_mask) |
| 1039 | static inline void set_cpu_possible(unsigned int cpu, bool possible) | 1065 | #define for_each_online_cpu(cpu) for_each_cpu((cpu), cpu_online_mask) |
| 1040 | { | 1066 | #define for_each_present_cpu(cpu) for_each_cpu((cpu), cpu_present_mask) |
| 1041 | if (possible) | ||
| 1042 | cpumask_set_cpu(cpu, &cpu_possible_map); | ||
| 1043 | else | ||
| 1044 | cpumask_clear_cpu(cpu, &cpu_possible_map); | ||
| 1045 | } | ||
| 1046 | |||
| 1047 | static inline void set_cpu_present(unsigned int cpu, bool present) | ||
| 1048 | { | ||
| 1049 | if (present) | ||
| 1050 | cpumask_set_cpu(cpu, &cpu_present_map); | ||
| 1051 | else | ||
| 1052 | cpumask_clear_cpu(cpu, &cpu_present_map); | ||
| 1053 | } | ||
| 1054 | |||
| 1055 | static inline void set_cpu_online(unsigned int cpu, bool online) | ||
| 1056 | { | ||
| 1057 | if (online) | ||
| 1058 | cpumask_set_cpu(cpu, &cpu_online_map); | ||
| 1059 | else | ||
| 1060 | cpumask_clear_cpu(cpu, &cpu_online_map); | ||
| 1061 | } | ||
| 1062 | |||
| 1063 | static inline void set_cpu_active(unsigned int cpu, bool active) | ||
| 1064 | { | ||
| 1065 | if (active) | ||
| 1066 | cpumask_set_cpu(cpu, &cpu_active_map); | ||
| 1067 | else | ||
| 1068 | cpumask_clear_cpu(cpu, &cpu_active_map); | ||
| 1069 | } | ||
| 1070 | |||
| 1071 | static inline void init_cpu_present(const struct cpumask *src) | ||
| 1072 | { | ||
| 1073 | cpumask_copy(&cpu_present_map, src); | ||
| 1074 | } | ||
| 1075 | |||
| 1076 | static inline void init_cpu_possible(const struct cpumask *src) | ||
| 1077 | { | ||
| 1078 | cpumask_copy(&cpu_possible_map, src); | ||
| 1079 | } | ||
| 1080 | 1067 | ||
| 1081 | static inline void init_cpu_online(const struct cpumask *src) | 1068 | /* Wrappers for arch boot code to manipulate normally-constant masks */ |
| 1082 | { | 1069 | void set_cpu_possible(unsigned int cpu, bool possible); |
| 1083 | cpumask_copy(&cpu_online_map, src); | 1070 | void set_cpu_present(unsigned int cpu, bool present); |
| 1084 | } | 1071 | void set_cpu_online(unsigned int cpu, bool online); |
| 1072 | void set_cpu_active(unsigned int cpu, bool active); | ||
| 1073 | void init_cpu_present(const struct cpumask *src); | ||
| 1074 | void init_cpu_possible(const struct cpumask *src); | ||
| 1075 | void init_cpu_online(const struct cpumask *src); | ||
| 1085 | #endif /* __LINUX_CPUMASK_H */ | 1076 | #endif /* __LINUX_CPUMASK_H */ |
diff --git a/include/linux/cpuset.h b/include/linux/cpuset.h index 8e540d32c9fe..90c6074a36ca 100644 --- a/include/linux/cpuset.h +++ b/include/linux/cpuset.h | |||
| @@ -20,8 +20,9 @@ extern int number_of_cpusets; /* How many cpusets are defined in system? */ | |||
| 20 | extern int cpuset_init_early(void); | 20 | extern int cpuset_init_early(void); |
| 21 | extern int cpuset_init(void); | 21 | extern int cpuset_init(void); |
| 22 | extern void cpuset_init_smp(void); | 22 | extern void cpuset_init_smp(void); |
| 23 | extern void cpuset_cpus_allowed(struct task_struct *p, cpumask_t *mask); | 23 | extern void cpuset_cpus_allowed(struct task_struct *p, struct cpumask *mask); |
| 24 | extern void cpuset_cpus_allowed_locked(struct task_struct *p, cpumask_t *mask); | 24 | extern void cpuset_cpus_allowed_locked(struct task_struct *p, |
| 25 | struct cpumask *mask); | ||
| 25 | extern nodemask_t cpuset_mems_allowed(struct task_struct *p); | 26 | extern nodemask_t cpuset_mems_allowed(struct task_struct *p); |
| 26 | #define cpuset_current_mems_allowed (current->mems_allowed) | 27 | #define cpuset_current_mems_allowed (current->mems_allowed) |
| 27 | void cpuset_init_current_mems_allowed(void); | 28 | void cpuset_init_current_mems_allowed(void); |
| @@ -78,18 +79,21 @@ extern int current_cpuset_is_being_rebound(void); | |||
| 78 | 79 | ||
| 79 | extern void rebuild_sched_domains(void); | 80 | extern void rebuild_sched_domains(void); |
| 80 | 81 | ||
| 82 | extern void cpuset_print_task_mems_allowed(struct task_struct *p); | ||
| 83 | |||
| 81 | #else /* !CONFIG_CPUSETS */ | 84 | #else /* !CONFIG_CPUSETS */ |
| 82 | 85 | ||
| 83 | static inline int cpuset_init_early(void) { return 0; } | 86 | static inline int cpuset_init_early(void) { return 0; } |
| 84 | static inline int cpuset_init(void) { return 0; } | 87 | static inline int cpuset_init(void) { return 0; } |
| 85 | static inline void cpuset_init_smp(void) {} | 88 | static inline void cpuset_init_smp(void) {} |
| 86 | 89 | ||
| 87 | static inline void cpuset_cpus_allowed(struct task_struct *p, cpumask_t *mask) | 90 | static inline void cpuset_cpus_allowed(struct task_struct *p, |
| 91 | struct cpumask *mask) | ||
| 88 | { | 92 | { |
| 89 | *mask = cpu_possible_map; | 93 | *mask = cpu_possible_map; |
| 90 | } | 94 | } |
| 91 | static inline void cpuset_cpus_allowed_locked(struct task_struct *p, | 95 | static inline void cpuset_cpus_allowed_locked(struct task_struct *p, |
| 92 | cpumask_t *mask) | 96 | struct cpumask *mask) |
| 93 | { | 97 | { |
| 94 | *mask = cpu_possible_map; | 98 | *mask = cpu_possible_map; |
| 95 | } | 99 | } |
| @@ -159,6 +163,10 @@ static inline void rebuild_sched_domains(void) | |||
| 159 | partition_sched_domains(1, NULL, NULL); | 163 | partition_sched_domains(1, NULL, NULL); |
| 160 | } | 164 | } |
| 161 | 165 | ||
| 166 | static inline void cpuset_print_task_mems_allowed(struct task_struct *p) | ||
| 167 | { | ||
| 168 | } | ||
| 169 | |||
| 162 | #endif /* !CONFIG_CPUSETS */ | 170 | #endif /* !CONFIG_CPUSETS */ |
| 163 | 171 | ||
| 164 | #endif /* _LINUX_CPUSET_H */ | 172 | #endif /* _LINUX_CPUSET_H */ |
diff --git a/include/linux/cyclades.h b/include/linux/cyclades.h index 2d3d1e04ba92..d06fbf286346 100644 --- a/include/linux/cyclades.h +++ b/include/linux/cyclades.h | |||
| @@ -150,8 +150,6 @@ struct CYZ_BOOT_CTRL { | |||
| 150 | * architectures and compilers. | 150 | * architectures and compilers. |
| 151 | */ | 151 | */ |
| 152 | 152 | ||
| 153 | #include <asm/types.h> | ||
| 154 | |||
| 155 | typedef __u64 ucdouble; /* 64 bits, unsigned */ | 153 | typedef __u64 ucdouble; /* 64 bits, unsigned */ |
| 156 | typedef __u32 uclong; /* 32 bits, unsigned */ | 154 | typedef __u32 uclong; /* 32 bits, unsigned */ |
| 157 | typedef __u16 ucshort; /* 16 bits, unsigned */ | 155 | typedef __u16 ucshort; /* 16 bits, unsigned */ |
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index a37359d0bad1..c66d22487bf8 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h | |||
| @@ -75,14 +75,22 @@ full_name_hash(const unsigned char *name, unsigned int len) | |||
| 75 | return end_name_hash(hash); | 75 | return end_name_hash(hash); |
| 76 | } | 76 | } |
| 77 | 77 | ||
| 78 | struct dcookie_struct; | 78 | /* |
| 79 | 79 | * Try to keep struct dentry aligned on 64 byte cachelines (this will | |
| 80 | #define DNAME_INLINE_LEN_MIN 36 | 80 | * give reasonable cacheline footprint with larger lines without the |
| 81 | * large memory footprint increase). | ||
| 82 | */ | ||
| 83 | #ifdef CONFIG_64BIT | ||
| 84 | #define DNAME_INLINE_LEN_MIN 32 /* 192 bytes */ | ||
| 85 | #else | ||
| 86 | #define DNAME_INLINE_LEN_MIN 40 /* 128 bytes */ | ||
| 87 | #endif | ||
| 81 | 88 | ||
| 82 | struct dentry { | 89 | struct dentry { |
| 83 | atomic_t d_count; | 90 | atomic_t d_count; |
| 84 | unsigned int d_flags; /* protected by d_lock */ | 91 | unsigned int d_flags; /* protected by d_lock */ |
| 85 | spinlock_t d_lock; /* per dentry lock */ | 92 | spinlock_t d_lock; /* per dentry lock */ |
| 93 | int d_mounted; | ||
| 86 | struct inode *d_inode; /* Where the name belongs to - NULL is | 94 | struct inode *d_inode; /* Where the name belongs to - NULL is |
| 87 | * negative */ | 95 | * negative */ |
| 88 | /* | 96 | /* |
| @@ -107,10 +115,7 @@ struct dentry { | |||
| 107 | struct dentry_operations *d_op; | 115 | struct dentry_operations *d_op; |
| 108 | struct super_block *d_sb; /* The root of the dentry tree */ | 116 | struct super_block *d_sb; /* The root of the dentry tree */ |
| 109 | void *d_fsdata; /* fs-specific data */ | 117 | void *d_fsdata; /* fs-specific data */ |
| 110 | #ifdef CONFIG_PROFILING | 118 | |
| 111 | struct dcookie_struct *d_cookie; /* cookie, if any */ | ||
| 112 | #endif | ||
| 113 | int d_mounted; | ||
| 114 | unsigned char d_iname[DNAME_INLINE_LEN_MIN]; /* small names */ | 119 | unsigned char d_iname[DNAME_INLINE_LEN_MIN]; /* small names */ |
| 115 | }; | 120 | }; |
| 116 | 121 | ||
| @@ -177,6 +182,8 @@ d_iput: no no no yes | |||
| 177 | 182 | ||
| 178 | #define DCACHE_INOTIFY_PARENT_WATCHED 0x0020 /* Parent inode is watched */ | 183 | #define DCACHE_INOTIFY_PARENT_WATCHED 0x0020 /* Parent inode is watched */ |
| 179 | 184 | ||
| 185 | #define DCACHE_COOKIE 0x0040 /* For use by dcookie subsystem */ | ||
| 186 | |||
| 180 | extern spinlock_t dcache_lock; | 187 | extern spinlock_t dcache_lock; |
| 181 | extern seqlock_t rename_lock; | 188 | extern seqlock_t rename_lock; |
| 182 | 189 | ||
diff --git a/include/linux/debugfs.h b/include/linux/debugfs.h index e1a6c046cea3..af0e01d4c663 100644 --- a/include/linux/debugfs.h +++ b/include/linux/debugfs.h | |||
| @@ -63,6 +63,8 @@ struct dentry *debugfs_create_x16(const char *name, mode_t mode, | |||
| 63 | struct dentry *parent, u16 *value); | 63 | struct dentry *parent, u16 *value); |
| 64 | struct dentry *debugfs_create_x32(const char *name, mode_t mode, | 64 | struct dentry *debugfs_create_x32(const char *name, mode_t mode, |
| 65 | struct dentry *parent, u32 *value); | 65 | struct dentry *parent, u32 *value); |
| 66 | struct dentry *debugfs_create_size_t(const char *name, mode_t mode, | ||
| 67 | struct dentry *parent, size_t *value); | ||
| 66 | struct dentry *debugfs_create_bool(const char *name, mode_t mode, | 68 | struct dentry *debugfs_create_bool(const char *name, mode_t mode, |
| 67 | struct dentry *parent, u32 *value); | 69 | struct dentry *parent, u32 *value); |
| 68 | 70 | ||
| @@ -160,6 +162,13 @@ static inline struct dentry *debugfs_create_x32(const char *name, mode_t mode, | |||
| 160 | return ERR_PTR(-ENODEV); | 162 | return ERR_PTR(-ENODEV); |
| 161 | } | 163 | } |
| 162 | 164 | ||
| 165 | static inline struct dentry *debugfs_create_size_t(const char *name, mode_t mode, | ||
| 166 | struct dentry *parent, | ||
| 167 | size_t *value) | ||
| 168 | { | ||
| 169 | return ERR_PTR(-ENODEV); | ||
| 170 | } | ||
| 171 | |||
| 163 | static inline struct dentry *debugfs_create_bool(const char *name, mode_t mode, | 172 | static inline struct dentry *debugfs_create_bool(const char *name, mode_t mode, |
| 164 | struct dentry *parent, | 173 | struct dentry *parent, |
| 165 | u32 *value) | 174 | u32 *value) |
diff --git a/include/linux/device-mapper.h b/include/linux/device-mapper.h index c17fd334e574..8209e08969f9 100644 --- a/include/linux/device-mapper.h +++ b/include/linux/device-mapper.h | |||
| @@ -45,6 +45,8 @@ typedef void (*dm_dtr_fn) (struct dm_target *ti); | |||
| 45 | */ | 45 | */ |
| 46 | typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio, | 46 | typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio, |
| 47 | union map_info *map_context); | 47 | union map_info *map_context); |
| 48 | typedef int (*dm_map_request_fn) (struct dm_target *ti, struct request *clone, | ||
| 49 | union map_info *map_context); | ||
| 48 | 50 | ||
| 49 | /* | 51 | /* |
| 50 | * Returns: | 52 | * Returns: |
| @@ -57,6 +59,9 @@ typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio, | |||
| 57 | typedef int (*dm_endio_fn) (struct dm_target *ti, | 59 | typedef int (*dm_endio_fn) (struct dm_target *ti, |
| 58 | struct bio *bio, int error, | 60 | struct bio *bio, int error, |
| 59 | union map_info *map_context); | 61 | union map_info *map_context); |
| 62 | typedef int (*dm_request_endio_fn) (struct dm_target *ti, | ||
| 63 | struct request *clone, int error, | ||
| 64 | union map_info *map_context); | ||
| 60 | 65 | ||
| 61 | typedef void (*dm_flush_fn) (struct dm_target *ti); | 66 | typedef void (*dm_flush_fn) (struct dm_target *ti); |
| 62 | typedef void (*dm_presuspend_fn) (struct dm_target *ti); | 67 | typedef void (*dm_presuspend_fn) (struct dm_target *ti); |
| @@ -75,6 +80,13 @@ typedef int (*dm_ioctl_fn) (struct dm_target *ti, unsigned int cmd, | |||
| 75 | typedef int (*dm_merge_fn) (struct dm_target *ti, struct bvec_merge_data *bvm, | 80 | typedef int (*dm_merge_fn) (struct dm_target *ti, struct bvec_merge_data *bvm, |
| 76 | struct bio_vec *biovec, int max_size); | 81 | struct bio_vec *biovec, int max_size); |
| 77 | 82 | ||
| 83 | /* | ||
| 84 | * Returns: | ||
| 85 | * 0: The target can handle the next I/O immediately. | ||
| 86 | * 1: The target can't handle the next I/O immediately. | ||
| 87 | */ | ||
| 88 | typedef int (*dm_busy_fn) (struct dm_target *ti); | ||
| 89 | |||
| 78 | void dm_error(const char *message); | 90 | void dm_error(const char *message); |
| 79 | 91 | ||
| 80 | /* | 92 | /* |
| @@ -100,14 +112,23 @@ void dm_put_device(struct dm_target *ti, struct dm_dev *d); | |||
| 100 | /* | 112 | /* |
| 101 | * Information about a target type | 113 | * Information about a target type |
| 102 | */ | 114 | */ |
| 115 | |||
| 116 | /* | ||
| 117 | * Target features | ||
| 118 | */ | ||
| 119 | #define DM_TARGET_SUPPORTS_BARRIERS 0x00000001 | ||
| 120 | |||
| 103 | struct target_type { | 121 | struct target_type { |
| 122 | uint64_t features; | ||
| 104 | const char *name; | 123 | const char *name; |
| 105 | struct module *module; | 124 | struct module *module; |
| 106 | unsigned version[3]; | 125 | unsigned version[3]; |
| 107 | dm_ctr_fn ctr; | 126 | dm_ctr_fn ctr; |
| 108 | dm_dtr_fn dtr; | 127 | dm_dtr_fn dtr; |
| 109 | dm_map_fn map; | 128 | dm_map_fn map; |
| 129 | dm_map_request_fn map_rq; | ||
| 110 | dm_endio_fn end_io; | 130 | dm_endio_fn end_io; |
| 131 | dm_request_endio_fn rq_end_io; | ||
| 111 | dm_flush_fn flush; | 132 | dm_flush_fn flush; |
| 112 | dm_presuspend_fn presuspend; | 133 | dm_presuspend_fn presuspend; |
| 113 | dm_postsuspend_fn postsuspend; | 134 | dm_postsuspend_fn postsuspend; |
| @@ -117,6 +138,7 @@ struct target_type { | |||
| 117 | dm_message_fn message; | 138 | dm_message_fn message; |
| 118 | dm_ioctl_fn ioctl; | 139 | dm_ioctl_fn ioctl; |
| 119 | dm_merge_fn merge; | 140 | dm_merge_fn merge; |
| 141 | dm_busy_fn busy; | ||
| 120 | }; | 142 | }; |
| 121 | 143 | ||
| 122 | struct io_restrictions { | 144 | struct io_restrictions { |
| @@ -157,8 +179,7 @@ struct dm_target { | |||
| 157 | }; | 179 | }; |
| 158 | 180 | ||
| 159 | int dm_register_target(struct target_type *t); | 181 | int dm_register_target(struct target_type *t); |
| 160 | int dm_unregister_target(struct target_type *t); | 182 | void dm_unregister_target(struct target_type *t); |
| 161 | |||
| 162 | 183 | ||
| 163 | /*----------------------------------------------------------------- | 184 | /*----------------------------------------------------------------- |
| 164 | * Functions for creating and manipulating mapped devices. | 185 | * Functions for creating and manipulating mapped devices. |
| @@ -276,6 +297,9 @@ void *dm_vcalloc(unsigned long nmemb, unsigned long elem_size); | |||
| 276 | *---------------------------------------------------------------*/ | 297 | *---------------------------------------------------------------*/ |
| 277 | #define DM_NAME "device-mapper" | 298 | #define DM_NAME "device-mapper" |
| 278 | 299 | ||
| 300 | #define DMCRIT(f, arg...) \ | ||
| 301 | printk(KERN_CRIT DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg) | ||
| 302 | |||
| 279 | #define DMERR(f, arg...) \ | 303 | #define DMERR(f, arg...) \ |
| 280 | printk(KERN_ERR DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg) | 304 | printk(KERN_ERR DM_NAME ": " DM_MSG_PREFIX ": " f "\n", ## arg) |
| 281 | #define DMERR_LIMIT(f, arg...) \ | 305 | #define DMERR_LIMIT(f, arg...) \ |
diff --git a/include/linux/device.h b/include/linux/device.h index 1a3686d15f98..45e5b1921fbb 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
| @@ -65,7 +65,7 @@ struct bus_type { | |||
| 65 | int (*resume_early)(struct device *dev); | 65 | int (*resume_early)(struct device *dev); |
| 66 | int (*resume)(struct device *dev); | 66 | int (*resume)(struct device *dev); |
| 67 | 67 | ||
| 68 | struct pm_ext_ops *pm; | 68 | struct dev_pm_ops *pm; |
| 69 | 69 | ||
| 70 | struct bus_type_private *p; | 70 | struct bus_type_private *p; |
| 71 | }; | 71 | }; |
| @@ -133,7 +133,7 @@ struct device_driver { | |||
| 133 | int (*resume) (struct device *dev); | 133 | int (*resume) (struct device *dev); |
| 134 | struct attribute_group **groups; | 134 | struct attribute_group **groups; |
| 135 | 135 | ||
| 136 | struct pm_ops *pm; | 136 | struct dev_pm_ops *pm; |
| 137 | 137 | ||
| 138 | struct driver_private *p; | 138 | struct driver_private *p; |
| 139 | }; | 139 | }; |
| @@ -198,7 +198,7 @@ struct class { | |||
| 198 | int (*suspend)(struct device *dev, pm_message_t state); | 198 | int (*suspend)(struct device *dev, pm_message_t state); |
| 199 | int (*resume)(struct device *dev); | 199 | int (*resume)(struct device *dev); |
| 200 | 200 | ||
| 201 | struct pm_ops *pm; | 201 | struct dev_pm_ops *pm; |
| 202 | struct class_private *p; | 202 | struct class_private *p; |
| 203 | }; | 203 | }; |
| 204 | 204 | ||
| @@ -291,7 +291,7 @@ struct device_type { | |||
| 291 | int (*suspend)(struct device *dev, pm_message_t state); | 291 | int (*suspend)(struct device *dev, pm_message_t state); |
| 292 | int (*resume)(struct device *dev); | 292 | int (*resume)(struct device *dev); |
| 293 | 293 | ||
| 294 | struct pm_ops *pm; | 294 | struct dev_pm_ops *pm; |
| 295 | }; | 295 | }; |
| 296 | 296 | ||
| 297 | /* interface for exporting device attributes */ | 297 | /* interface for exporting device attributes */ |
| @@ -373,9 +373,9 @@ struct device { | |||
| 373 | 373 | ||
| 374 | struct kobject kobj; | 374 | struct kobject kobj; |
| 375 | char bus_id[BUS_ID_SIZE]; /* position on parent bus */ | 375 | char bus_id[BUS_ID_SIZE]; /* position on parent bus */ |
| 376 | unsigned uevent_suppress:1; | ||
| 376 | const char *init_name; /* initial name of the device */ | 377 | const char *init_name; /* initial name of the device */ |
| 377 | struct device_type *type; | 378 | struct device_type *type; |
| 378 | unsigned uevent_suppress:1; | ||
| 379 | 379 | ||
| 380 | struct semaphore sem; /* semaphore to synchronize calls to | 380 | struct semaphore sem; /* semaphore to synchronize calls to |
| 381 | * its driver. | 381 | * its driver. |
| @@ -408,12 +408,13 @@ struct device { | |||
| 408 | /* arch specific additions */ | 408 | /* arch specific additions */ |
| 409 | struct dev_archdata archdata; | 409 | struct dev_archdata archdata; |
| 410 | 410 | ||
| 411 | dev_t devt; /* dev_t, creates the sysfs "dev" */ | ||
| 412 | |||
| 411 | spinlock_t devres_lock; | 413 | spinlock_t devres_lock; |
| 412 | struct list_head devres_head; | 414 | struct list_head devres_head; |
| 413 | 415 | ||
| 414 | struct klist_node knode_class; | 416 | struct klist_node knode_class; |
| 415 | struct class *class; | 417 | struct class *class; |
| 416 | dev_t devt; /* dev_t, creates the sysfs "dev" */ | ||
| 417 | struct attribute_group **groups; /* optional groups */ | 418 | struct attribute_group **groups; /* optional groups */ |
| 418 | 419 | ||
| 419 | void (*release)(struct device *dev); | 420 | void (*release)(struct device *dev); |
| @@ -483,6 +484,17 @@ extern int device_rename(struct device *dev, char *new_name); | |||
| 483 | extern int device_move(struct device *dev, struct device *new_parent); | 484 | extern int device_move(struct device *dev, struct device *new_parent); |
| 484 | 485 | ||
| 485 | /* | 486 | /* |
| 487 | * Root device objects for grouping under /sys/devices | ||
| 488 | */ | ||
| 489 | extern struct device *__root_device_register(const char *name, | ||
| 490 | struct module *owner); | ||
| 491 | static inline struct device *root_device_register(const char *name) | ||
| 492 | { | ||
| 493 | return __root_device_register(name, THIS_MODULE); | ||
| 494 | } | ||
| 495 | extern void root_device_unregister(struct device *root); | ||
| 496 | |||
| 497 | /* | ||
| 486 | * Manual binding of a device to driver. See drivers/base/bus.c | 498 | * Manual binding of a device to driver. See drivers/base/bus.c |
| 487 | * for information on use. | 499 | * for information on use. |
| 488 | */ | 500 | */ |
| @@ -553,13 +565,13 @@ extern const char *dev_driver_string(const struct device *dev); | |||
| 553 | #define dev_info(dev, format, arg...) \ | 565 | #define dev_info(dev, format, arg...) \ |
| 554 | dev_printk(KERN_INFO , dev , format , ## arg) | 566 | dev_printk(KERN_INFO , dev , format , ## arg) |
| 555 | 567 | ||
| 556 | #if defined(CONFIG_DYNAMIC_PRINTK_DEBUG) | 568 | #if defined(DEBUG) |
| 569 | #define dev_dbg(dev, format, arg...) \ | ||
| 570 | dev_printk(KERN_DEBUG , dev , format , ## arg) | ||
| 571 | #elif defined(CONFIG_DYNAMIC_PRINTK_DEBUG) | ||
| 557 | #define dev_dbg(dev, format, ...) do { \ | 572 | #define dev_dbg(dev, format, ...) do { \ |
| 558 | dynamic_dev_dbg(dev, format, ##__VA_ARGS__); \ | 573 | dynamic_dev_dbg(dev, format, ##__VA_ARGS__); \ |
| 559 | } while (0) | 574 | } while (0) |
| 560 | #elif defined(DEBUG) | ||
| 561 | #define dev_dbg(dev, format, arg...) \ | ||
| 562 | dev_printk(KERN_DEBUG , dev , format , ## arg) | ||
| 563 | #else | 575 | #else |
| 564 | #define dev_dbg(dev, format, arg...) \ | 576 | #define dev_dbg(dev, format, arg...) \ |
| 565 | ({ if (0) dev_printk(KERN_DEBUG, dev, format, ##arg); 0; }) | 577 | ({ if (0) dev_printk(KERN_DEBUG, dev, format, ##arg); 0; }) |
diff --git a/include/linux/dio.h b/include/linux/dio.h index 1e65ebc2a3db..b2dd31ca1710 100644 --- a/include/linux/dio.h +++ b/include/linux/dio.h | |||
| @@ -241,7 +241,7 @@ struct dio_driver { | |||
| 241 | 241 | ||
| 242 | extern int dio_find(int deviceid); | 242 | extern int dio_find(int deviceid); |
| 243 | extern unsigned long dio_scodetophysaddr(int scode); | 243 | extern unsigned long dio_scodetophysaddr(int scode); |
| 244 | extern void dio_create_sysfs_dev_files(struct dio_dev *); | 244 | extern int dio_create_sysfs_dev_files(struct dio_dev *); |
| 245 | 245 | ||
| 246 | /* New-style probing */ | 246 | /* New-style probing */ |
| 247 | extern int dio_register_driver(struct dio_driver *); | 247 | extern int dio_register_driver(struct dio_driver *); |
diff --git a/include/linux/dlm_plock.h b/include/linux/dlm_plock.h index 18d5fdbceb74..2dd21243104f 100644 --- a/include/linux/dlm_plock.h +++ b/include/linux/dlm_plock.h | |||
| @@ -9,6 +9,8 @@ | |||
| 9 | #ifndef __DLM_PLOCK_DOT_H__ | 9 | #ifndef __DLM_PLOCK_DOT_H__ |
| 10 | #define __DLM_PLOCK_DOT_H__ | 10 | #define __DLM_PLOCK_DOT_H__ |
| 11 | 11 | ||
| 12 | #include <linux/types.h> | ||
| 13 | |||
| 12 | #define DLM_PLOCK_MISC_NAME "dlm_plock" | 14 | #define DLM_PLOCK_MISC_NAME "dlm_plock" |
| 13 | 15 | ||
| 14 | #define DLM_PLOCK_VERSION_MAJOR 1 | 16 | #define DLM_PLOCK_VERSION_MAJOR 1 |
diff --git a/include/linux/dma_remapping.h b/include/linux/dma_remapping.h index 952df39c989d..af1dab41674b 100644 --- a/include/linux/dma_remapping.h +++ b/include/linux/dma_remapping.h | |||
| @@ -9,148 +9,24 @@ | |||
| 9 | #define VTD_PAGE_MASK (((u64)-1) << VTD_PAGE_SHIFT) | 9 | #define VTD_PAGE_MASK (((u64)-1) << VTD_PAGE_SHIFT) |
| 10 | #define VTD_PAGE_ALIGN(addr) (((addr) + VTD_PAGE_SIZE - 1) & VTD_PAGE_MASK) | 10 | #define VTD_PAGE_ALIGN(addr) (((addr) + VTD_PAGE_SIZE - 1) & VTD_PAGE_MASK) |
| 11 | 11 | ||
| 12 | #define IOVA_PFN(addr) ((addr) >> PAGE_SHIFT) | ||
| 13 | #define DMA_32BIT_PFN IOVA_PFN(DMA_32BIT_MASK) | ||
| 14 | #define DMA_64BIT_PFN IOVA_PFN(DMA_64BIT_MASK) | ||
| 15 | |||
| 16 | |||
| 17 | /* | ||
| 18 | * 0: Present | ||
| 19 | * 1-11: Reserved | ||
| 20 | * 12-63: Context Ptr (12 - (haw-1)) | ||
| 21 | * 64-127: Reserved | ||
| 22 | */ | ||
| 23 | struct root_entry { | ||
| 24 | u64 val; | ||
| 25 | u64 rsvd1; | ||
| 26 | }; | ||
| 27 | #define ROOT_ENTRY_NR (VTD_PAGE_SIZE/sizeof(struct root_entry)) | ||
| 28 | static inline bool root_present(struct root_entry *root) | ||
| 29 | { | ||
| 30 | return (root->val & 1); | ||
| 31 | } | ||
| 32 | static inline void set_root_present(struct root_entry *root) | ||
| 33 | { | ||
| 34 | root->val |= 1; | ||
| 35 | } | ||
| 36 | static inline void set_root_value(struct root_entry *root, unsigned long value) | ||
| 37 | { | ||
| 38 | root->val |= value & VTD_PAGE_MASK; | ||
| 39 | } | ||
| 40 | |||
| 41 | struct context_entry; | ||
| 42 | static inline struct context_entry * | ||
| 43 | get_context_addr_from_root(struct root_entry *root) | ||
| 44 | { | ||
| 45 | return (struct context_entry *) | ||
| 46 | (root_present(root)?phys_to_virt( | ||
| 47 | root->val & VTD_PAGE_MASK) : | ||
| 48 | NULL); | ||
| 49 | } | ||
| 50 | |||
| 51 | /* | ||
| 52 | * low 64 bits: | ||
| 53 | * 0: present | ||
| 54 | * 1: fault processing disable | ||
| 55 | * 2-3: translation type | ||
| 56 | * 12-63: address space root | ||
| 57 | * high 64 bits: | ||
| 58 | * 0-2: address width | ||
| 59 | * 3-6: aval | ||
| 60 | * 8-23: domain id | ||
| 61 | */ | ||
| 62 | struct context_entry { | ||
| 63 | u64 lo; | ||
| 64 | u64 hi; | ||
| 65 | }; | ||
| 66 | #define context_present(c) ((c).lo & 1) | ||
| 67 | #define context_fault_disable(c) (((c).lo >> 1) & 1) | ||
| 68 | #define context_translation_type(c) (((c).lo >> 2) & 3) | ||
| 69 | #define context_address_root(c) ((c).lo & VTD_PAGE_MASK) | ||
| 70 | #define context_address_width(c) ((c).hi & 7) | ||
| 71 | #define context_domain_id(c) (((c).hi >> 8) & ((1 << 16) - 1)) | ||
| 72 | |||
| 73 | #define context_set_present(c) do {(c).lo |= 1;} while (0) | ||
| 74 | #define context_set_fault_enable(c) \ | ||
| 75 | do {(c).lo &= (((u64)-1) << 2) | 1;} while (0) | ||
| 76 | #define context_set_translation_type(c, val) \ | ||
| 77 | do { \ | ||
| 78 | (c).lo &= (((u64)-1) << 4) | 3; \ | ||
| 79 | (c).lo |= ((val) & 3) << 2; \ | ||
| 80 | } while (0) | ||
| 81 | #define CONTEXT_TT_MULTI_LEVEL 0 | ||
| 82 | #define context_set_address_root(c, val) \ | ||
| 83 | do {(c).lo |= (val) & VTD_PAGE_MASK; } while (0) | ||
| 84 | #define context_set_address_width(c, val) do {(c).hi |= (val) & 7;} while (0) | ||
| 85 | #define context_set_domain_id(c, val) \ | ||
| 86 | do {(c).hi |= ((val) & ((1 << 16) - 1)) << 8;} while (0) | ||
| 87 | #define context_clear_entry(c) do {(c).lo = 0; (c).hi = 0;} while (0) | ||
| 88 | |||
| 89 | /* | ||
| 90 | * 0: readable | ||
| 91 | * 1: writable | ||
| 92 | * 2-6: reserved | ||
| 93 | * 7: super page | ||
| 94 | * 8-11: available | ||
| 95 | * 12-63: Host physcial address | ||
| 96 | */ | ||
| 97 | struct dma_pte { | ||
| 98 | u64 val; | ||
| 99 | }; | ||
| 100 | #define dma_clear_pte(p) do {(p).val = 0;} while (0) | ||
| 101 | |||
| 102 | #define DMA_PTE_READ (1) | 12 | #define DMA_PTE_READ (1) |
| 103 | #define DMA_PTE_WRITE (2) | 13 | #define DMA_PTE_WRITE (2) |
| 104 | 14 | ||
| 105 | #define dma_set_pte_readable(p) do {(p).val |= DMA_PTE_READ;} while (0) | ||
| 106 | #define dma_set_pte_writable(p) do {(p).val |= DMA_PTE_WRITE;} while (0) | ||
| 107 | #define dma_set_pte_prot(p, prot) \ | ||
| 108 | do {(p).val = ((p).val & ~3) | ((prot) & 3); } while (0) | ||
| 109 | #define dma_pte_addr(p) ((p).val & VTD_PAGE_MASK) | ||
| 110 | #define dma_set_pte_addr(p, addr) do {\ | ||
| 111 | (p).val |= ((addr) & VTD_PAGE_MASK); } while (0) | ||
| 112 | #define dma_pte_present(p) (((p).val & 3) != 0) | ||
| 113 | |||
| 114 | struct intel_iommu; | 15 | struct intel_iommu; |
| 16 | struct dmar_domain; | ||
| 17 | struct root_entry; | ||
| 115 | 18 | ||
| 116 | struct dmar_domain { | ||
| 117 | int id; /* domain id */ | ||
| 118 | struct intel_iommu *iommu; /* back pointer to owning iommu */ | ||
| 119 | |||
| 120 | struct list_head devices; /* all devices' list */ | ||
| 121 | struct iova_domain iovad; /* iova's that belong to this domain */ | ||
| 122 | |||
| 123 | struct dma_pte *pgd; /* virtual address */ | ||
| 124 | spinlock_t mapping_lock; /* page table lock */ | ||
| 125 | int gaw; /* max guest address width */ | ||
| 126 | |||
| 127 | /* adjusted guest address width, 0 is level 2 30-bit */ | ||
| 128 | int agaw; | ||
| 129 | |||
| 130 | #define DOMAIN_FLAG_MULTIPLE_DEVICES 1 | ||
| 131 | int flags; | ||
| 132 | }; | ||
| 133 | |||
| 134 | /* PCI domain-device relationship */ | ||
| 135 | struct device_domain_info { | ||
| 136 | struct list_head link; /* link to domain siblings */ | ||
| 137 | struct list_head global; /* link to global list */ | ||
| 138 | u8 bus; /* PCI bus numer */ | ||
| 139 | u8 devfn; /* PCI devfn number */ | ||
| 140 | struct pci_dev *dev; /* it's NULL for PCIE-to-PCI bridge */ | ||
| 141 | struct dmar_domain *domain; /* pointer to domain */ | ||
| 142 | }; | ||
| 143 | |||
| 144 | extern int init_dmars(void); | ||
| 145 | extern void free_dmar_iommu(struct intel_iommu *iommu); | 19 | extern void free_dmar_iommu(struct intel_iommu *iommu); |
| 146 | 20 | ||
| 147 | extern int dmar_disabled; | 21 | #ifdef CONFIG_DMAR |
| 148 | 22 | extern int iommu_calculate_agaw(struct intel_iommu *iommu); | |
| 149 | #ifndef CONFIG_DMAR_GFX_WA | 23 | #else |
| 150 | static inline void iommu_prepare_gfx_mapping(void) | 24 | static inline int iommu_calculate_agaw(struct intel_iommu *iommu) |
| 151 | { | 25 | { |
| 152 | return; | 26 | return 0; |
| 153 | } | 27 | } |
| 154 | #endif /* !CONFIG_DMAR_GFX_WA */ | 28 | #endif |
| 29 | |||
| 30 | extern int dmar_disabled; | ||
| 155 | 31 | ||
| 156 | #endif | 32 | #endif |
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index adb0b084eb5a..3e0f64c335c8 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h | |||
| @@ -29,32 +29,6 @@ | |||
| 29 | #include <linux/dma-mapping.h> | 29 | #include <linux/dma-mapping.h> |
| 30 | 30 | ||
| 31 | /** | 31 | /** |
| 32 | * enum dma_state - resource PNP/power management state | ||
| 33 | * @DMA_RESOURCE_SUSPEND: DMA device going into low power state | ||
| 34 | * @DMA_RESOURCE_RESUME: DMA device returning to full power | ||
| 35 | * @DMA_RESOURCE_AVAILABLE: DMA device available to the system | ||
| 36 | * @DMA_RESOURCE_REMOVED: DMA device removed from the system | ||
| 37 | */ | ||
| 38 | enum dma_state { | ||
| 39 | DMA_RESOURCE_SUSPEND, | ||
| 40 | DMA_RESOURCE_RESUME, | ||
| 41 | DMA_RESOURCE_AVAILABLE, | ||
| 42 | DMA_RESOURCE_REMOVED, | ||
| 43 | }; | ||
| 44 | |||
| 45 | /** | ||
| 46 | * enum dma_state_client - state of the channel in the client | ||
| 47 | * @DMA_ACK: client would like to use, or was using this channel | ||
| 48 | * @DMA_DUP: client has already seen this channel, or is not using this channel | ||
| 49 | * @DMA_NAK: client does not want to see any more channels | ||
| 50 | */ | ||
| 51 | enum dma_state_client { | ||
| 52 | DMA_ACK, | ||
| 53 | DMA_DUP, | ||
| 54 | DMA_NAK, | ||
| 55 | }; | ||
| 56 | |||
| 57 | /** | ||
| 58 | * typedef dma_cookie_t - an opaque DMA cookie | 32 | * typedef dma_cookie_t - an opaque DMA cookie |
| 59 | * | 33 | * |
| 60 | * if dma_cookie_t is >0 it's a DMA request cookie, <0 it's an error code | 34 | * if dma_cookie_t is >0 it's a DMA request cookie, <0 it's an error code |
| @@ -89,23 +63,13 @@ enum dma_transaction_type { | |||
| 89 | DMA_MEMSET, | 63 | DMA_MEMSET, |
| 90 | DMA_MEMCPY_CRC32C, | 64 | DMA_MEMCPY_CRC32C, |
| 91 | DMA_INTERRUPT, | 65 | DMA_INTERRUPT, |
| 66 | DMA_PRIVATE, | ||
| 92 | DMA_SLAVE, | 67 | DMA_SLAVE, |
| 93 | }; | 68 | }; |
| 94 | 69 | ||
| 95 | /* last transaction type for creation of the capabilities mask */ | 70 | /* last transaction type for creation of the capabilities mask */ |
| 96 | #define DMA_TX_TYPE_END (DMA_SLAVE + 1) | 71 | #define DMA_TX_TYPE_END (DMA_SLAVE + 1) |
| 97 | 72 | ||
| 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 | }; | ||
| 109 | 73 | ||
| 110 | /** | 74 | /** |
| 111 | * enum dma_ctrl_flags - DMA flags to augment operation preparation, | 75 | * enum dma_ctrl_flags - DMA flags to augment operation preparation, |
| @@ -132,32 +96,6 @@ enum dma_ctrl_flags { | |||
| 132 | typedef struct { DECLARE_BITMAP(bits, DMA_TX_TYPE_END); } dma_cap_mask_t; | 96 | typedef struct { DECLARE_BITMAP(bits, DMA_TX_TYPE_END); } dma_cap_mask_t; |
| 133 | 97 | ||
| 134 | /** | 98 | /** |
| 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 | /** | ||
| 161 | * struct dma_chan_percpu - the per-CPU part of struct dma_chan | 99 | * struct dma_chan_percpu - the per-CPU part of struct dma_chan |
| 162 | * @refcount: local_t used for open-coded "bigref" counting | 100 | * @refcount: local_t used for open-coded "bigref" counting |
| 163 | * @memcpy_count: transaction counter | 101 | * @memcpy_count: transaction counter |
| @@ -165,7 +103,6 @@ struct dma_slave { | |||
| 165 | */ | 103 | */ |
| 166 | 104 | ||
| 167 | struct dma_chan_percpu { | 105 | struct dma_chan_percpu { |
| 168 | local_t refcount; | ||
| 169 | /* stats */ | 106 | /* stats */ |
| 170 | unsigned long memcpy_count; | 107 | unsigned long memcpy_count; |
| 171 | unsigned long bytes_transferred; | 108 | unsigned long bytes_transferred; |
| @@ -176,13 +113,14 @@ struct dma_chan_percpu { | |||
| 176 | * @device: ptr to the dma device who supplies this channel, always !%NULL | 113 | * @device: ptr to the dma device who supplies this channel, always !%NULL |
| 177 | * @cookie: last cookie value returned to client | 114 | * @cookie: last cookie value returned to client |
| 178 | * @chan_id: channel ID for sysfs | 115 | * @chan_id: channel ID for sysfs |
| 179 | * @class_dev: class device for sysfs | 116 | * @dev: class device for sysfs |
| 180 | * @refcount: kref, used in "bigref" slow-mode | 117 | * @refcount: kref, used in "bigref" slow-mode |
| 181 | * @slow_ref: indicates that the DMA channel is free | 118 | * @slow_ref: indicates that the DMA channel is free |
| 182 | * @rcu: the DMA channel's RCU head | 119 | * @rcu: the DMA channel's RCU head |
| 183 | * @device_node: used to add this to the device chan list | 120 | * @device_node: used to add this to the device chan list |
| 184 | * @local: per-cpu pointer to a struct dma_chan_percpu | 121 | * @local: per-cpu pointer to a struct dma_chan_percpu |
| 185 | * @client-count: how many clients are using this channel | 122 | * @client-count: how many clients are using this channel |
| 123 | * @table_count: number of appearances in the mem-to-mem allocation table | ||
| 186 | */ | 124 | */ |
| 187 | struct dma_chan { | 125 | struct dma_chan { |
| 188 | struct dma_device *device; | 126 | struct dma_device *device; |
| @@ -190,73 +128,47 @@ struct dma_chan { | |||
| 190 | 128 | ||
| 191 | /* sysfs */ | 129 | /* sysfs */ |
| 192 | int chan_id; | 130 | int chan_id; |
| 193 | struct device dev; | 131 | struct dma_chan_dev *dev; |
| 194 | |||
| 195 | struct kref refcount; | ||
| 196 | int slow_ref; | ||
| 197 | struct rcu_head rcu; | ||
| 198 | 132 | ||
| 199 | struct list_head device_node; | 133 | struct list_head device_node; |
| 200 | struct dma_chan_percpu *local; | 134 | struct dma_chan_percpu *local; |
| 201 | int client_count; | 135 | int client_count; |
| 136 | int table_count; | ||
| 202 | }; | 137 | }; |
| 203 | 138 | ||
| 204 | #define to_dma_chan(p) container_of(p, struct dma_chan, dev) | 139 | /** |
| 205 | 140 | * struct dma_chan_dev - relate sysfs device node to backing channel device | |
| 206 | void dma_chan_cleanup(struct kref *kref); | 141 | * @chan - driver channel device |
| 207 | 142 | * @device - sysfs device | |
| 208 | static inline void dma_chan_get(struct dma_chan *chan) | 143 | * @dev_id - parent dma_device dev_id |
| 209 | { | 144 | * @idr_ref - reference count to gate release of dma_device dev_id |
| 210 | if (unlikely(chan->slow_ref)) | 145 | */ |
| 211 | kref_get(&chan->refcount); | 146 | struct dma_chan_dev { |
| 212 | else { | 147 | struct dma_chan *chan; |
| 213 | local_inc(&(per_cpu_ptr(chan->local, get_cpu())->refcount)); | 148 | struct device device; |
| 214 | put_cpu(); | 149 | int dev_id; |
| 215 | } | 150 | atomic_t *idr_ref; |
| 216 | } | 151 | }; |
| 217 | 152 | ||
| 218 | static inline void dma_chan_put(struct dma_chan *chan) | 153 | static inline const char *dma_chan_name(struct dma_chan *chan) |
| 219 | { | 154 | { |
| 220 | if (unlikely(chan->slow_ref)) | 155 | return dev_name(&chan->dev->device); |
| 221 | kref_put(&chan->refcount, dma_chan_cleanup); | ||
| 222 | else { | ||
| 223 | local_dec(&(per_cpu_ptr(chan->local, get_cpu())->refcount)); | ||
| 224 | put_cpu(); | ||
| 225 | } | ||
| 226 | } | 156 | } |
| 227 | 157 | ||
| 228 | /* | 158 | void dma_chan_cleanup(struct kref *kref); |
| 229 | * typedef dma_event_callback - function pointer to a DMA event callback | ||
| 230 | * For each channel added to the system this routine is called for each client. | ||
| 231 | * If the client would like to use the channel it returns '1' to signal (ack) | ||
| 232 | * the dmaengine core to take out a reference on the channel and its | ||
| 233 | * corresponding device. A client must not 'ack' an available channel more | ||
| 234 | * than once. When a channel is removed all clients are notified. If a client | ||
| 235 | * is using the channel it must 'ack' the removal. A client must not 'ack' a | ||
| 236 | * removed channel more than once. | ||
| 237 | * @client - 'this' pointer for the client context | ||
| 238 | * @chan - channel to be acted upon | ||
| 239 | * @state - available or removed | ||
| 240 | */ | ||
| 241 | struct dma_client; | ||
| 242 | typedef enum dma_state_client (*dma_event_callback) (struct dma_client *client, | ||
| 243 | struct dma_chan *chan, enum dma_state state); | ||
| 244 | 159 | ||
| 245 | /** | 160 | /** |
| 246 | * struct dma_client - info on the entity making use of DMA services | 161 | * typedef dma_filter_fn - callback filter for dma_request_channel |
| 247 | * @event_callback: func ptr to call when something happens | 162 | * @chan: channel to be reviewed |
| 248 | * @cap_mask: only return channels that satisfy the requested capabilities | 163 | * @filter_param: opaque parameter passed through dma_request_channel |
| 249 | * a value of zero corresponds to any capability | 164 | * |
| 250 | * @slave: data for preparing slave transfer. Must be non-NULL iff the | 165 | * When this optional parameter is specified in a call to dma_request_channel a |
| 251 | * DMA_SLAVE capability is requested. | 166 | * suitable channel is passed to this routine for further dispositioning before |
| 252 | * @global_node: list_head for global dma_client_list | 167 | * being returned. Where 'suitable' indicates a non-busy channel that |
| 168 | * satisfies the given capability mask. It returns 'true' to indicate that the | ||
| 169 | * channel is suitable. | ||
| 253 | */ | 170 | */ |
| 254 | struct dma_client { | 171 | typedef bool (*dma_filter_fn)(struct dma_chan *chan, void *filter_param); |
| 255 | dma_event_callback event_callback; | ||
| 256 | dma_cap_mask_t cap_mask; | ||
| 257 | struct dma_slave *slave; | ||
| 258 | struct list_head global_node; | ||
| 259 | }; | ||
| 260 | 172 | ||
| 261 | typedef void (*dma_async_tx_callback)(void *dma_async_param); | 173 | typedef void (*dma_async_tx_callback)(void *dma_async_param); |
| 262 | /** | 174 | /** |
| @@ -323,14 +235,10 @@ struct dma_device { | |||
| 323 | dma_cap_mask_t cap_mask; | 235 | dma_cap_mask_t cap_mask; |
| 324 | int max_xor; | 236 | int max_xor; |
| 325 | 237 | ||
| 326 | struct kref refcount; | ||
| 327 | struct completion done; | ||
| 328 | |||
| 329 | int dev_id; | 238 | int dev_id; |
| 330 | struct device *dev; | 239 | struct device *dev; |
| 331 | 240 | ||
| 332 | int (*device_alloc_chan_resources)(struct dma_chan *chan, | 241 | int (*device_alloc_chan_resources)(struct dma_chan *chan); |
| 333 | struct dma_client *client); | ||
| 334 | void (*device_free_chan_resources)(struct dma_chan *chan); | 242 | void (*device_free_chan_resources)(struct dma_chan *chan); |
| 335 | 243 | ||
| 336 | struct dma_async_tx_descriptor *(*device_prep_dma_memcpy)( | 244 | struct dma_async_tx_descriptor *(*device_prep_dma_memcpy)( |
| @@ -362,9 +270,18 @@ struct dma_device { | |||
| 362 | 270 | ||
| 363 | /* --- public DMA engine API --- */ | 271 | /* --- public DMA engine API --- */ |
| 364 | 272 | ||
| 365 | void dma_async_client_register(struct dma_client *client); | 273 | #ifdef CONFIG_DMA_ENGINE |
| 366 | void dma_async_client_unregister(struct dma_client *client); | 274 | void dmaengine_get(void); |
| 367 | void dma_async_client_chan_request(struct dma_client *client); | 275 | void dmaengine_put(void); |
| 276 | #else | ||
| 277 | static inline void dmaengine_get(void) | ||
| 278 | { | ||
| 279 | } | ||
| 280 | static inline void dmaengine_put(void) | ||
| 281 | { | ||
| 282 | } | ||
| 283 | #endif | ||
| 284 | |||
| 368 | dma_cookie_t dma_async_memcpy_buf_to_buf(struct dma_chan *chan, | 285 | dma_cookie_t dma_async_memcpy_buf_to_buf(struct dma_chan *chan, |
| 369 | void *dest, void *src, size_t len); | 286 | void *dest, void *src, size_t len); |
| 370 | dma_cookie_t dma_async_memcpy_buf_to_pg(struct dma_chan *chan, | 287 | dma_cookie_t dma_async_memcpy_buf_to_pg(struct dma_chan *chan, |
| @@ -380,6 +297,11 @@ static inline void async_tx_ack(struct dma_async_tx_descriptor *tx) | |||
| 380 | tx->flags |= DMA_CTRL_ACK; | 297 | tx->flags |= DMA_CTRL_ACK; |
| 381 | } | 298 | } |
| 382 | 299 | ||
| 300 | static inline void async_tx_clear_ack(struct dma_async_tx_descriptor *tx) | ||
| 301 | { | ||
| 302 | tx->flags &= ~DMA_CTRL_ACK; | ||
| 303 | } | ||
| 304 | |||
| 383 | static inline bool async_tx_test_ack(struct dma_async_tx_descriptor *tx) | 305 | static inline bool async_tx_test_ack(struct dma_async_tx_descriptor *tx) |
| 384 | { | 306 | { |
| 385 | return (tx->flags & DMA_CTRL_ACK) == DMA_CTRL_ACK; | 307 | return (tx->flags & DMA_CTRL_ACK) == DMA_CTRL_ACK; |
| @@ -406,6 +328,12 @@ __dma_cap_set(enum dma_transaction_type tx_type, dma_cap_mask_t *dstp) | |||
| 406 | set_bit(tx_type, dstp->bits); | 328 | set_bit(tx_type, dstp->bits); |
| 407 | } | 329 | } |
| 408 | 330 | ||
| 331 | #define dma_cap_zero(mask) __dma_cap_zero(&(mask)) | ||
| 332 | static inline void __dma_cap_zero(dma_cap_mask_t *dstp) | ||
| 333 | { | ||
| 334 | bitmap_zero(dstp->bits, DMA_TX_TYPE_END); | ||
| 335 | } | ||
| 336 | |||
| 409 | #define dma_has_cap(tx, mask) __dma_has_cap((tx), &(mask)) | 337 | #define dma_has_cap(tx, mask) __dma_has_cap((tx), &(mask)) |
| 410 | static inline int | 338 | static inline int |
| 411 | __dma_has_cap(enum dma_transaction_type tx_type, dma_cap_mask_t *srcp) | 339 | __dma_has_cap(enum dma_transaction_type tx_type, dma_cap_mask_t *srcp) |
| @@ -475,11 +403,29 @@ static inline enum dma_status dma_async_is_complete(dma_cookie_t cookie, | |||
| 475 | } | 403 | } |
| 476 | 404 | ||
| 477 | enum dma_status dma_sync_wait(struct dma_chan *chan, dma_cookie_t cookie); | 405 | enum dma_status dma_sync_wait(struct dma_chan *chan, dma_cookie_t cookie); |
| 406 | #ifdef CONFIG_DMA_ENGINE | ||
| 407 | enum dma_status dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx); | ||
| 408 | void dma_issue_pending_all(void); | ||
| 409 | #else | ||
| 410 | static inline enum dma_status dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx) | ||
| 411 | { | ||
| 412 | return DMA_SUCCESS; | ||
| 413 | } | ||
| 414 | static inline void dma_issue_pending_all(void) | ||
| 415 | { | ||
| 416 | do { } while (0); | ||
| 417 | } | ||
| 418 | #endif | ||
| 478 | 419 | ||
| 479 | /* --- DMA device --- */ | 420 | /* --- DMA device --- */ |
| 480 | 421 | ||
| 481 | int dma_async_device_register(struct dma_device *device); | 422 | int dma_async_device_register(struct dma_device *device); |
| 482 | void dma_async_device_unregister(struct dma_device *device); | 423 | void dma_async_device_unregister(struct dma_device *device); |
| 424 | void dma_run_dependencies(struct dma_async_tx_descriptor *tx); | ||
| 425 | struct dma_chan *dma_find_channel(enum dma_transaction_type tx_type); | ||
| 426 | #define dma_request_channel(mask, x, y) __dma_request_channel(&(mask), x, y) | ||
| 427 | struct dma_chan *__dma_request_channel(dma_cap_mask_t *mask, dma_filter_fn fn, void *fn_param); | ||
| 428 | void dma_release_channel(struct dma_chan *chan); | ||
| 483 | 429 | ||
| 484 | /* --- Helper iov-locking functions --- */ | 430 | /* --- Helper iov-locking functions --- */ |
| 485 | 431 | ||
diff --git a/include/linux/dmar.h b/include/linux/dmar.h index f1984fc3e06d..f28440784cf0 100644 --- a/include/linux/dmar.h +++ b/include/linux/dmar.h | |||
| @@ -144,7 +144,6 @@ struct dmar_rmrr_unit { | |||
| 144 | list_for_each_entry(rmrr, &dmar_rmrr_units, list) | 144 | list_for_each_entry(rmrr, &dmar_rmrr_units, list) |
| 145 | /* Intel DMAR initialization functions */ | 145 | /* Intel DMAR initialization functions */ |
| 146 | extern int intel_iommu_init(void); | 146 | extern int intel_iommu_init(void); |
| 147 | extern int dmar_disabled; | ||
| 148 | #else | 147 | #else |
| 149 | static inline int intel_iommu_init(void) | 148 | static inline int intel_iommu_init(void) |
| 150 | { | 149 | { |
diff --git a/include/linux/dmi.h b/include/linux/dmi.h index 34161907b2f8..d741b9ceb0e0 100644 --- a/include/linux/dmi.h +++ b/include/linux/dmi.h | |||
| @@ -38,6 +38,7 @@ struct dmi_device { | |||
| 38 | #ifdef CONFIG_DMI | 38 | #ifdef CONFIG_DMI |
| 39 | 39 | ||
| 40 | extern int dmi_check_system(const struct dmi_system_id *list); | 40 | extern int dmi_check_system(const struct dmi_system_id *list); |
| 41 | const struct dmi_system_id *dmi_first_match(const struct dmi_system_id *list); | ||
| 41 | extern const char * dmi_get_system_info(int field); | 42 | extern const char * dmi_get_system_info(int field); |
| 42 | extern const struct dmi_device * dmi_find_device(int type, const char *name, | 43 | extern const struct dmi_device * dmi_find_device(int type, const char *name, |
| 43 | const struct dmi_device *from); | 44 | const struct dmi_device *from); |
| @@ -64,6 +65,8 @@ static inline int dmi_walk(void (*decode)(const struct dmi_header *)) | |||
| 64 | { return -1; } | 65 | { return -1; } |
| 65 | static inline bool dmi_match(enum dmi_field f, const char *str) | 66 | static inline bool dmi_match(enum dmi_field f, const char *str) |
| 66 | { return false; } | 67 | { return false; } |
| 68 | static inline const struct dmi_system_id * | ||
| 69 | dmi_first_match(const struct dmi_system_id *list) { return NULL; } | ||
| 67 | 70 | ||
| 68 | #endif | 71 | #endif |
| 69 | 72 | ||
diff --git a/include/linux/dn.h b/include/linux/dn.h index 02bba040fcfb..fe9990823193 100644 --- a/include/linux/dn.h +++ b/include/linux/dn.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef _LINUX_DN_H | 1 | #ifndef _LINUX_DN_H |
| 2 | #define _LINUX_DN_H | 2 | #define _LINUX_DN_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 5 | |||
| 4 | /* | 6 | /* |
| 5 | 7 | ||
| 6 | DECnet Data Structures and Constants | 8 | DECnet Data Structures and Constants |
diff --git a/include/linux/dqblk_qtree.h b/include/linux/dqblk_qtree.h new file mode 100644 index 000000000000..82a16527b367 --- /dev/null +++ b/include/linux/dqblk_qtree.h | |||
| @@ -0,0 +1,56 @@ | |||
| 1 | /* | ||
| 2 | * Definitions of structures and functions for quota formats using trie | ||
| 3 | */ | ||
| 4 | |||
| 5 | #ifndef _LINUX_DQBLK_QTREE_H | ||
| 6 | #define _LINUX_DQBLK_QTREE_H | ||
| 7 | |||
| 8 | #include <linux/types.h> | ||
| 9 | |||
| 10 | /* Numbers of blocks needed for updates - we count with the smallest | ||
| 11 | * possible block size (1024) */ | ||
| 12 | #define QTREE_INIT_ALLOC 4 | ||
| 13 | #define QTREE_INIT_REWRITE 2 | ||
| 14 | #define QTREE_DEL_ALLOC 0 | ||
| 15 | #define QTREE_DEL_REWRITE 6 | ||
| 16 | |||
| 17 | struct dquot; | ||
| 18 | |||
| 19 | /* Operations */ | ||
| 20 | struct qtree_fmt_operations { | ||
| 21 | void (*mem2disk_dqblk)(void *disk, struct dquot *dquot); /* Convert given entry from in memory format to disk one */ | ||
| 22 | void (*disk2mem_dqblk)(struct dquot *dquot, void *disk); /* Convert given entry from disk format to in memory one */ | ||
| 23 | int (*is_id)(void *disk, struct dquot *dquot); /* Is this structure for given id? */ | ||
| 24 | }; | ||
| 25 | |||
| 26 | /* Inmemory copy of version specific information */ | ||
| 27 | struct qtree_mem_dqinfo { | ||
| 28 | struct super_block *dqi_sb; /* Sb quota is on */ | ||
| 29 | int dqi_type; /* Quota type */ | ||
| 30 | unsigned int dqi_blocks; /* # of blocks in quota file */ | ||
| 31 | unsigned int dqi_free_blk; /* First block in list of free blocks */ | ||
| 32 | unsigned int dqi_free_entry; /* First block with free entry */ | ||
| 33 | unsigned int dqi_blocksize_bits; /* Block size of quota file */ | ||
| 34 | unsigned int dqi_entry_size; /* Size of quota entry in quota file */ | ||
| 35 | unsigned int dqi_usable_bs; /* Space usable in block for quota data */ | ||
| 36 | unsigned int dqi_qtree_depth; /* Precomputed depth of quota tree */ | ||
| 37 | struct qtree_fmt_operations *dqi_ops; /* Operations for entry manipulation */ | ||
| 38 | }; | ||
| 39 | |||
| 40 | int qtree_write_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot); | ||
| 41 | int qtree_read_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot); | ||
| 42 | int qtree_delete_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot); | ||
| 43 | int qtree_release_dquot(struct qtree_mem_dqinfo *info, struct dquot *dquot); | ||
| 44 | int qtree_entry_unused(struct qtree_mem_dqinfo *info, char *disk); | ||
| 45 | static inline int qtree_depth(struct qtree_mem_dqinfo *info) | ||
| 46 | { | ||
| 47 | unsigned int epb = info->dqi_usable_bs >> 2; | ||
| 48 | unsigned long long entries = epb; | ||
| 49 | int i; | ||
| 50 | |||
| 51 | for (i = 1; entries < (1ULL << 32); i++) | ||
| 52 | entries *= epb; | ||
| 53 | return i; | ||
| 54 | } | ||
| 55 | |||
| 56 | #endif /* _LINUX_DQBLK_QTREE_H */ | ||
diff --git a/include/linux/dqblk_v1.h b/include/linux/dqblk_v1.h index 57f1250d5a52..3713a7232dd8 100644 --- a/include/linux/dqblk_v1.h +++ b/include/linux/dqblk_v1.h | |||
| @@ -5,9 +5,6 @@ | |||
| 5 | #ifndef _LINUX_DQBLK_V1_H | 5 | #ifndef _LINUX_DQBLK_V1_H |
| 6 | #define _LINUX_DQBLK_V1_H | 6 | #define _LINUX_DQBLK_V1_H |
| 7 | 7 | ||
| 8 | /* Id of quota format */ | ||
| 9 | #define QFMT_VFS_OLD 1 | ||
| 10 | |||
| 11 | /* Root squash turned on */ | 8 | /* Root squash turned on */ |
| 12 | #define V1_DQF_RSQUASH 1 | 9 | #define V1_DQF_RSQUASH 1 |
| 13 | 10 | ||
| @@ -17,8 +14,4 @@ | |||
| 17 | #define V1_DEL_ALLOC 0 | 14 | #define V1_DEL_ALLOC 0 |
| 18 | #define V1_DEL_REWRITE 2 | 15 | #define V1_DEL_REWRITE 2 |
| 19 | 16 | ||
| 20 | /* Special information about quotafile */ | ||
| 21 | struct v1_mem_dqinfo { | ||
| 22 | }; | ||
| 23 | |||
| 24 | #endif /* _LINUX_DQBLK_V1_H */ | 17 | #endif /* _LINUX_DQBLK_V1_H */ |
diff --git a/include/linux/dqblk_v2.h b/include/linux/dqblk_v2.h index 4f853322cb7f..18000a542677 100644 --- a/include/linux/dqblk_v2.h +++ b/include/linux/dqblk_v2.h | |||
| @@ -1,26 +1,16 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Definitions of structures for vfsv0 quota format | 2 | * Definitions for vfsv0 quota format |
| 3 | */ | 3 | */ |
| 4 | 4 | ||
| 5 | #ifndef _LINUX_DQBLK_V2_H | 5 | #ifndef _LINUX_DQBLK_V2_H |
| 6 | #define _LINUX_DQBLK_V2_H | 6 | #define _LINUX_DQBLK_V2_H |
| 7 | 7 | ||
| 8 | #include <linux/types.h> | 8 | #include <linux/dqblk_qtree.h> |
| 9 | |||
| 10 | /* id numbers of quota format */ | ||
| 11 | #define QFMT_VFS_V0 2 | ||
| 12 | 9 | ||
| 13 | /* Numbers of blocks needed for updates */ | 10 | /* Numbers of blocks needed for updates */ |
| 14 | #define V2_INIT_ALLOC 4 | 11 | #define V2_INIT_ALLOC QTREE_INIT_ALLOC |
| 15 | #define V2_INIT_REWRITE 2 | 12 | #define V2_INIT_REWRITE QTREE_INIT_REWRITE |
| 16 | #define V2_DEL_ALLOC 0 | 13 | #define V2_DEL_ALLOC QTREE_DEL_ALLOC |
| 17 | #define V2_DEL_REWRITE 6 | 14 | #define V2_DEL_REWRITE QTREE_DEL_REWRITE |
| 18 | |||
| 19 | /* Inmemory copy of version specific information */ | ||
| 20 | struct v2_mem_dqinfo { | ||
| 21 | unsigned int dqi_blocks; | ||
| 22 | unsigned int dqi_free_blk; | ||
| 23 | unsigned int dqi_free_entry; | ||
| 24 | }; | ||
| 25 | 15 | ||
| 26 | #endif /* _LINUX_DQBLK_V2_H */ | 16 | #endif /* _LINUX_DQBLK_V2_H */ |
diff --git a/include/linux/dvb/audio.h b/include/linux/dvb/audio.h index 89412e18f571..bb0df2aaebfa 100644 --- a/include/linux/dvb/audio.h +++ b/include/linux/dvb/audio.h | |||
| @@ -24,12 +24,7 @@ | |||
| 24 | #ifndef _DVBAUDIO_H_ | 24 | #ifndef _DVBAUDIO_H_ |
| 25 | #define _DVBAUDIO_H_ | 25 | #define _DVBAUDIO_H_ |
| 26 | 26 | ||
| 27 | #ifdef __KERNEL__ | ||
| 28 | #include <linux/types.h> | 27 | #include <linux/types.h> |
| 29 | #else | ||
| 30 | #include <stdint.h> | ||
| 31 | #endif | ||
| 32 | |||
| 33 | 28 | ||
| 34 | typedef enum { | 29 | typedef enum { |
| 35 | AUDIO_SOURCE_DEMUX, /* Select the demux as the main source */ | 30 | AUDIO_SOURCE_DEMUX, /* Select the demux as the main source */ |
diff --git a/include/linux/dvb/dmx.h b/include/linux/dvb/dmx.h index 402fb7a8d922..fef943738a24 100644 --- a/include/linux/dvb/dmx.h +++ b/include/linux/dvb/dmx.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | #ifndef _DVBDMX_H_ | 24 | #ifndef _DVBDMX_H_ |
| 25 | #define _DVBDMX_H_ | 25 | #define _DVBDMX_H_ |
| 26 | 26 | ||
| 27 | #include <asm/types.h> | 27 | #include <linux/types.h> |
| 28 | #ifdef __KERNEL__ | 28 | #ifdef __KERNEL__ |
| 29 | #include <linux/time.h> | 29 | #include <linux/time.h> |
| 30 | #else | 30 | #else |
diff --git a/include/linux/dvb/frontend.h b/include/linux/dvb/frontend.h index 79a8ed8e6a7d..51c8d2d49e42 100644 --- a/include/linux/dvb/frontend.h +++ b/include/linux/dvb/frontend.h | |||
| @@ -26,8 +26,7 @@ | |||
| 26 | #ifndef _DVBFRONTEND_H_ | 26 | #ifndef _DVBFRONTEND_H_ |
| 27 | #define _DVBFRONTEND_H_ | 27 | #define _DVBFRONTEND_H_ |
| 28 | 28 | ||
| 29 | #include <asm/types.h> | 29 | #include <linux/types.h> |
| 30 | |||
| 31 | 30 | ||
| 32 | typedef enum fe_type { | 31 | typedef enum fe_type { |
| 33 | FE_QPSK, | 32 | FE_QPSK, |
| @@ -62,10 +61,11 @@ typedef enum fe_caps { | |||
| 62 | FE_CAN_HIERARCHY_AUTO = 0x100000, | 61 | FE_CAN_HIERARCHY_AUTO = 0x100000, |
| 63 | FE_CAN_8VSB = 0x200000, | 62 | FE_CAN_8VSB = 0x200000, |
| 64 | FE_CAN_16VSB = 0x400000, | 63 | FE_CAN_16VSB = 0x400000, |
| 65 | FE_HAS_EXTENDED_CAPS = 0x800000, // We need more bitspace for newer APIs, indicate this. | 64 | FE_HAS_EXTENDED_CAPS = 0x800000, /* We need more bitspace for newer APIs, indicate this. */ |
| 66 | FE_NEEDS_BENDING = 0x20000000, // not supported anymore, don't use (frontend requires frequency bending) | 65 | FE_CAN_2G_MODULATION = 0x10000000, /* frontend supports "2nd generation modulation" (DVB-S2) */ |
| 67 | FE_CAN_RECOVER = 0x40000000, // frontend can recover from a cable unplug automatically | 66 | FE_NEEDS_BENDING = 0x20000000, /* not supported anymore, don't use (frontend requires frequency bending) */ |
| 68 | FE_CAN_MUTE_TS = 0x80000000 // frontend can stop spurious TS data output | 67 | FE_CAN_RECOVER = 0x40000000, /* frontend can recover from a cable unplug automatically */ |
| 68 | FE_CAN_MUTE_TS = 0x80000000 /* frontend can stop spurious TS data output */ | ||
| 69 | } fe_caps_t; | 69 | } fe_caps_t; |
| 70 | 70 | ||
| 71 | 71 | ||
| @@ -121,15 +121,15 @@ typedef enum fe_sec_mini_cmd { | |||
| 121 | 121 | ||
| 122 | 122 | ||
| 123 | typedef enum fe_status { | 123 | typedef enum fe_status { |
| 124 | FE_HAS_SIGNAL = 0x01, /* found something above the noise level */ | 124 | FE_HAS_SIGNAL = 0x01, /* found something above the noise level */ |
| 125 | FE_HAS_CARRIER = 0x02, /* found a DVB signal */ | 125 | FE_HAS_CARRIER = 0x02, /* found a DVB signal */ |
| 126 | FE_HAS_VITERBI = 0x04, /* FEC is stable */ | 126 | FE_HAS_VITERBI = 0x04, /* FEC is stable */ |
| 127 | FE_HAS_SYNC = 0x08, /* found sync bytes */ | 127 | FE_HAS_SYNC = 0x08, /* found sync bytes */ |
| 128 | FE_HAS_LOCK = 0x10, /* everything's working... */ | 128 | FE_HAS_LOCK = 0x10, /* everything's working... */ |
| 129 | FE_TIMEDOUT = 0x20, /* no lock within the last ~2 seconds */ | 129 | FE_TIMEDOUT = 0x20, /* no lock within the last ~2 seconds */ |
| 130 | FE_REINIT = 0x40 /* frontend was reinitialized, */ | 130 | FE_REINIT = 0x40 /* frontend was reinitialized, */ |
| 131 | } fe_status_t; /* application is recommended to reset */ | 131 | } fe_status_t; /* application is recommended to reset */ |
| 132 | /* DiSEqC, tone and parameters */ | 132 | /* DiSEqC, tone and parameters */ |
| 133 | 133 | ||
| 134 | typedef enum fe_spectral_inversion { | 134 | typedef enum fe_spectral_inversion { |
| 135 | INVERSION_OFF, | 135 | INVERSION_OFF, |
diff --git a/include/linux/dvb/net.h b/include/linux/dvb/net.h index 5be474bf0d2b..f451e7eb0b0b 100644 --- a/include/linux/dvb/net.h +++ b/include/linux/dvb/net.h | |||
| @@ -24,8 +24,7 @@ | |||
| 24 | #ifndef _DVBNET_H_ | 24 | #ifndef _DVBNET_H_ |
| 25 | #define _DVBNET_H_ | 25 | #define _DVBNET_H_ |
| 26 | 26 | ||
| 27 | #include <asm/types.h> | 27 | #include <linux/types.h> |
| 28 | |||
| 29 | 28 | ||
| 30 | struct dvb_net_if { | 29 | struct dvb_net_if { |
| 31 | __u16 pid; | 30 | __u16 pid; |
diff --git a/include/linux/dvb/video.h b/include/linux/dvb/video.h index 50839fe9e39e..bd49c3ebf916 100644 --- a/include/linux/dvb/video.h +++ b/include/linux/dvb/video.h | |||
| @@ -24,17 +24,14 @@ | |||
| 24 | #ifndef _DVBVIDEO_H_ | 24 | #ifndef _DVBVIDEO_H_ |
| 25 | #define _DVBVIDEO_H_ | 25 | #define _DVBVIDEO_H_ |
| 26 | 26 | ||
| 27 | #include <linux/compiler.h> | ||
| 28 | |||
| 29 | #ifdef __KERNEL__ | ||
| 30 | #include <linux/types.h> | 27 | #include <linux/types.h> |
| 28 | #ifdef __KERNEL__ | ||
| 29 | #include <linux/compiler.h> | ||
| 31 | #else | 30 | #else |
| 32 | #include <asm/types.h> | ||
| 33 | #include <stdint.h> | 31 | #include <stdint.h> |
| 34 | #include <time.h> | 32 | #include <time.h> |
| 35 | #endif | 33 | #endif |
| 36 | 34 | ||
| 37 | |||
| 38 | typedef enum { | 35 | typedef enum { |
| 39 | VIDEO_FORMAT_4_3, /* Select 4:3 format */ | 36 | VIDEO_FORMAT_4_3, /* Select 4:3 format */ |
| 40 | VIDEO_FORMAT_16_9, /* Select 16:9 format. */ | 37 | VIDEO_FORMAT_16_9, /* Select 16:9 format. */ |
diff --git a/include/linux/dw_dmac.h b/include/linux/dw_dmac.h index 04d217b442bf..d797dde247f7 100644 --- a/include/linux/dw_dmac.h +++ b/include/linux/dw_dmac.h | |||
| @@ -22,14 +22,34 @@ struct dw_dma_platform_data { | |||
| 22 | }; | 22 | }; |
| 23 | 23 | ||
| 24 | /** | 24 | /** |
| 25 | * enum dw_dma_slave_width - DMA slave register access width. | ||
| 26 | * @DMA_SLAVE_WIDTH_8BIT: Do 8-bit slave register accesses | ||
| 27 | * @DMA_SLAVE_WIDTH_16BIT: Do 16-bit slave register accesses | ||
| 28 | * @DMA_SLAVE_WIDTH_32BIT: Do 32-bit slave register accesses | ||
| 29 | */ | ||
| 30 | enum dw_dma_slave_width { | ||
| 31 | DW_DMA_SLAVE_WIDTH_8BIT, | ||
| 32 | DW_DMA_SLAVE_WIDTH_16BIT, | ||
| 33 | DW_DMA_SLAVE_WIDTH_32BIT, | ||
| 34 | }; | ||
| 35 | |||
| 36 | /** | ||
| 25 | * struct dw_dma_slave - Controller-specific information about a slave | 37 | * struct dw_dma_slave - Controller-specific information about a slave |
| 26 | * @slave: Generic information about the slave | 38 | * |
| 27 | * @ctl_lo: Platform-specific initializer for the CTL_LO register | 39 | * @dma_dev: required DMA master device |
| 40 | * @tx_reg: physical address of data register used for | ||
| 41 | * memory-to-peripheral transfers | ||
| 42 | * @rx_reg: physical address of data register used for | ||
| 43 | * peripheral-to-memory transfers | ||
| 44 | * @reg_width: peripheral register width | ||
| 28 | * @cfg_hi: Platform-specific initializer for the CFG_HI register | 45 | * @cfg_hi: Platform-specific initializer for the CFG_HI register |
| 29 | * @cfg_lo: Platform-specific initializer for the CFG_LO register | 46 | * @cfg_lo: Platform-specific initializer for the CFG_LO register |
| 30 | */ | 47 | */ |
| 31 | struct dw_dma_slave { | 48 | struct dw_dma_slave { |
| 32 | struct dma_slave slave; | 49 | struct device *dma_dev; |
| 50 | dma_addr_t tx_reg; | ||
| 51 | dma_addr_t rx_reg; | ||
| 52 | enum dw_dma_slave_width reg_width; | ||
| 33 | u32 cfg_hi; | 53 | u32 cfg_hi; |
| 34 | u32 cfg_lo; | 54 | u32 cfg_lo; |
| 35 | }; | 55 | }; |
| @@ -54,9 +74,4 @@ struct dw_dma_slave { | |||
| 54 | #define DWC_CFGL_HS_DST_POL (1 << 18) /* dst handshake active low */ | 74 | #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 */ | 75 | #define DWC_CFGL_HS_SRC_POL (1 << 19) /* src handshake active low */ |
| 56 | 76 | ||
| 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 */ | 77 | #endif /* DW_DMAC_H */ |
diff --git a/include/linux/edd.h b/include/linux/edd.h index 5d747c5cd0fe..4cbd0fe9df08 100644 --- a/include/linux/edd.h +++ b/include/linux/edd.h | |||
| @@ -30,6 +30,8 @@ | |||
| 30 | #ifndef _LINUX_EDD_H | 30 | #ifndef _LINUX_EDD_H |
| 31 | #define _LINUX_EDD_H | 31 | #define _LINUX_EDD_H |
| 32 | 32 | ||
| 33 | #include <linux/types.h> | ||
| 34 | |||
| 33 | #define EDDNR 0x1e9 /* addr of number of edd_info structs at EDDBUF | 35 | #define EDDNR 0x1e9 /* addr of number of edd_info structs at EDDBUF |
| 34 | in boot_params - treat this as 1 byte */ | 36 | in boot_params - treat this as 1 byte */ |
| 35 | #define EDDBUF 0xd00 /* addr of edd_info structs in boot_params */ | 37 | #define EDDBUF 0xd00 /* addr of edd_info structs in boot_params */ |
diff --git a/include/linux/efs_fs_sb.h b/include/linux/efs_fs_sb.h index ff1945e37790..a01be90c58cc 100644 --- a/include/linux/efs_fs_sb.h +++ b/include/linux/efs_fs_sb.h | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | #ifndef __EFS_FS_SB_H__ | 9 | #ifndef __EFS_FS_SB_H__ |
| 10 | #define __EFS_FS_SB_H__ | 10 | #define __EFS_FS_SB_H__ |
| 11 | 11 | ||
| 12 | #include <linux/types.h> | ||
| 12 | #include <linux/magic.h> | 13 | #include <linux/magic.h> |
| 13 | 14 | ||
| 14 | /* EFS superblock magic numbers */ | 15 | /* EFS superblock magic numbers */ |
diff --git a/include/linux/elf-fdpic.h b/include/linux/elf-fdpic.h index 9f5b7456bff3..7cd2e80cebc8 100644 --- a/include/linux/elf-fdpic.h +++ b/include/linux/elf-fdpic.h | |||
| @@ -58,11 +58,13 @@ struct elf_fdpic_params { | |||
| 58 | #define ELF_FDPIC_FLAG_PRESENT 0x80000000 /* T if this object is present */ | 58 | #define ELF_FDPIC_FLAG_PRESENT 0x80000000 /* T if this object is present */ |
| 59 | }; | 59 | }; |
| 60 | 60 | ||
| 61 | #ifdef __KERNEL__ | ||
| 61 | #ifdef CONFIG_MMU | 62 | #ifdef CONFIG_MMU |
| 62 | extern void elf_fdpic_arch_lay_out_mm(struct elf_fdpic_params *exec_params, | 63 | extern void elf_fdpic_arch_lay_out_mm(struct elf_fdpic_params *exec_params, |
| 63 | struct elf_fdpic_params *interp_params, | 64 | struct elf_fdpic_params *interp_params, |
| 64 | unsigned long *start_stack, | 65 | unsigned long *start_stack, |
| 65 | unsigned long *start_brk); | 66 | unsigned long *start_brk); |
| 66 | #endif | 67 | #endif |
| 68 | #endif /* __KERNEL__ */ | ||
| 67 | 69 | ||
| 68 | #endif /* _LINUX_ELF_FDPIC_H */ | 70 | #endif /* _LINUX_ELF_FDPIC_H */ |
diff --git a/include/linux/elf.h b/include/linux/elf.h index 0b61ca41a044..45a937be6d38 100644 --- a/include/linux/elf.h +++ b/include/linux/elf.h | |||
| @@ -377,6 +377,7 @@ typedef struct elf64_note { | |||
| 377 | Elf64_Word n_type; /* Content type */ | 377 | Elf64_Word n_type; /* Content type */ |
| 378 | } Elf64_Nhdr; | 378 | } Elf64_Nhdr; |
| 379 | 379 | ||
| 380 | #ifdef __KERNEL__ | ||
| 380 | #if ELF_CLASS == ELFCLASS32 | 381 | #if ELF_CLASS == ELFCLASS32 |
| 381 | 382 | ||
| 382 | extern Elf32_Dyn _DYNAMIC []; | 383 | extern Elf32_Dyn _DYNAMIC []; |
| @@ -404,5 +405,5 @@ static inline int elf_coredump_extra_notes_write(struct file *file, | |||
| 404 | extern int elf_coredump_extra_notes_size(void); | 405 | extern int elf_coredump_extra_notes_size(void); |
| 405 | extern int elf_coredump_extra_notes_write(struct file *file, loff_t *foffset); | 406 | extern int elf_coredump_extra_notes_write(struct file *file, loff_t *foffset); |
| 406 | #endif | 407 | #endif |
| 407 | 408 | #endif /* __KERNEL__ */ | |
| 408 | #endif /* _LINUX_ELF_H */ | 409 | #endif /* _LINUX_ELF_H */ |
diff --git a/include/linux/errqueue.h b/include/linux/errqueue.h index 92f8d4fab32b..ceb1454b6977 100644 --- a/include/linux/errqueue.h +++ b/include/linux/errqueue.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef _LINUX_ERRQUEUE_H | 1 | #ifndef _LINUX_ERRQUEUE_H |
| 2 | #define _LINUX_ERRQUEUE_H 1 | 2 | #define _LINUX_ERRQUEUE_H 1 |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 5 | |||
| 4 | struct sock_extended_err | 6 | struct sock_extended_err |
| 5 | { | 7 | { |
| 6 | __u32 ee_errno; | 8 | __u32 ee_errno; |
diff --git a/include/linux/ext2_fs.h b/include/linux/ext2_fs.h index 78c775a83f7c..121720d74e15 100644 --- a/include/linux/ext2_fs.h +++ b/include/linux/ext2_fs.h | |||
| @@ -194,6 +194,30 @@ struct ext2_group_desc | |||
| 194 | #define EXT2_FL_USER_VISIBLE FS_FL_USER_VISIBLE /* User visible flags */ | 194 | #define EXT2_FL_USER_VISIBLE FS_FL_USER_VISIBLE /* User visible flags */ |
| 195 | #define EXT2_FL_USER_MODIFIABLE FS_FL_USER_MODIFIABLE /* User modifiable flags */ | 195 | #define EXT2_FL_USER_MODIFIABLE FS_FL_USER_MODIFIABLE /* User modifiable flags */ |
| 196 | 196 | ||
| 197 | /* Flags that should be inherited by new inodes from their parent. */ | ||
| 198 | #define EXT2_FL_INHERITED (EXT2_SECRM_FL | EXT2_UNRM_FL | EXT2_COMPR_FL |\ | ||
| 199 | EXT2_SYNC_FL | EXT2_IMMUTABLE_FL | EXT2_APPEND_FL |\ | ||
| 200 | EXT2_NODUMP_FL | EXT2_NOATIME_FL | EXT2_COMPRBLK_FL|\ | ||
| 201 | EXT2_NOCOMP_FL | EXT2_JOURNAL_DATA_FL |\ | ||
| 202 | EXT2_NOTAIL_FL | EXT2_DIRSYNC_FL) | ||
| 203 | |||
| 204 | /* Flags that are appropriate for regular files (all but dir-specific ones). */ | ||
| 205 | #define EXT2_REG_FLMASK (~(EXT2_DIRSYNC_FL | EXT2_TOPDIR_FL)) | ||
| 206 | |||
| 207 | /* Flags that are appropriate for non-directories/regular files. */ | ||
| 208 | #define EXT2_OTHER_FLMASK (EXT2_NODUMP_FL | EXT2_NOATIME_FL) | ||
| 209 | |||
| 210 | /* Mask out flags that are inappropriate for the given type of inode. */ | ||
| 211 | static inline __u32 ext2_mask_flags(umode_t mode, __u32 flags) | ||
| 212 | { | ||
| 213 | if (S_ISDIR(mode)) | ||
| 214 | return flags; | ||
| 215 | else if (S_ISREG(mode)) | ||
| 216 | return flags & EXT2_REG_FLMASK; | ||
| 217 | else | ||
| 218 | return flags & EXT2_OTHER_FLMASK; | ||
| 219 | } | ||
| 220 | |||
| 197 | /* | 221 | /* |
| 198 | * ioctl commands | 222 | * ioctl commands |
| 199 | */ | 223 | */ |
diff --git a/include/linux/ext2_fs_sb.h b/include/linux/ext2_fs_sb.h index f273415ab6f1..1cdb66367c98 100644 --- a/include/linux/ext2_fs_sb.h +++ b/include/linux/ext2_fs_sb.h | |||
| @@ -101,11 +101,17 @@ struct ext2_sb_info { | |||
| 101 | struct percpu_counter s_freeblocks_counter; | 101 | struct percpu_counter s_freeblocks_counter; |
| 102 | struct percpu_counter s_freeinodes_counter; | 102 | struct percpu_counter s_freeinodes_counter; |
| 103 | struct percpu_counter s_dirs_counter; | 103 | struct percpu_counter s_dirs_counter; |
| 104 | struct blockgroup_lock s_blockgroup_lock; | 104 | struct blockgroup_lock *s_blockgroup_lock; |
| 105 | /* root of the per fs reservation window tree */ | 105 | /* root of the per fs reservation window tree */ |
| 106 | spinlock_t s_rsv_window_lock; | 106 | spinlock_t s_rsv_window_lock; |
| 107 | struct rb_root s_rsv_window_root; | 107 | struct rb_root s_rsv_window_root; |
| 108 | struct ext2_reserve_window_node s_rsv_window_head; | 108 | struct ext2_reserve_window_node s_rsv_window_head; |
| 109 | }; | 109 | }; |
| 110 | 110 | ||
| 111 | static inline spinlock_t * | ||
| 112 | sb_bgl_lock(struct ext2_sb_info *sbi, unsigned int block_group) | ||
| 113 | { | ||
| 114 | return bgl_lock_ptr(sbi->s_blockgroup_lock, block_group); | ||
| 115 | } | ||
| 116 | |||
| 111 | #endif /* _LINUX_EXT2_FS_SB */ | 117 | #endif /* _LINUX_EXT2_FS_SB */ |
diff --git a/include/linux/ext3_fs.h b/include/linux/ext3_fs.h index d14f02918483..dd495b8c3091 100644 --- a/include/linux/ext3_fs.h +++ b/include/linux/ext3_fs.h | |||
| @@ -178,6 +178,30 @@ struct ext3_group_desc | |||
| 178 | #define EXT3_FL_USER_VISIBLE 0x0003DFFF /* User visible flags */ | 178 | #define EXT3_FL_USER_VISIBLE 0x0003DFFF /* User visible flags */ |
| 179 | #define EXT3_FL_USER_MODIFIABLE 0x000380FF /* User modifiable flags */ | 179 | #define EXT3_FL_USER_MODIFIABLE 0x000380FF /* User modifiable flags */ |
| 180 | 180 | ||
| 181 | /* Flags that should be inherited by new inodes from their parent. */ | ||
| 182 | #define EXT3_FL_INHERITED (EXT3_SECRM_FL | EXT3_UNRM_FL | EXT3_COMPR_FL |\ | ||
| 183 | EXT3_SYNC_FL | EXT3_IMMUTABLE_FL | EXT3_APPEND_FL |\ | ||
| 184 | EXT3_NODUMP_FL | EXT3_NOATIME_FL | EXT3_COMPRBLK_FL|\ | ||
| 185 | EXT3_NOCOMPR_FL | EXT3_JOURNAL_DATA_FL |\ | ||
| 186 | EXT3_NOTAIL_FL | EXT3_DIRSYNC_FL) | ||
| 187 | |||
| 188 | /* Flags that are appropriate for regular files (all but dir-specific ones). */ | ||
| 189 | #define EXT3_REG_FLMASK (~(EXT3_DIRSYNC_FL | EXT3_TOPDIR_FL)) | ||
| 190 | |||
| 191 | /* Flags that are appropriate for non-directories/regular files. */ | ||
| 192 | #define EXT3_OTHER_FLMASK (EXT3_NODUMP_FL | EXT3_NOATIME_FL) | ||
| 193 | |||
| 194 | /* Mask out flags that are inappropriate for the given type of inode. */ | ||
| 195 | static inline __u32 ext3_mask_flags(umode_t mode, __u32 flags) | ||
| 196 | { | ||
| 197 | if (S_ISDIR(mode)) | ||
| 198 | return flags; | ||
| 199 | else if (S_ISREG(mode)) | ||
| 200 | return flags & EXT3_REG_FLMASK; | ||
| 201 | else | ||
| 202 | return flags & EXT3_OTHER_FLMASK; | ||
| 203 | } | ||
| 204 | |||
| 181 | /* | 205 | /* |
| 182 | * Inode dynamic state flags | 206 | * Inode dynamic state flags |
| 183 | */ | 207 | */ |
| @@ -354,6 +378,13 @@ struct ext3_inode { | |||
| 354 | #define EXT3_ORPHAN_FS 0x0004 /* Orphans being recovered */ | 378 | #define EXT3_ORPHAN_FS 0x0004 /* Orphans being recovered */ |
| 355 | 379 | ||
| 356 | /* | 380 | /* |
| 381 | * Misc. filesystem flags | ||
| 382 | */ | ||
| 383 | #define EXT2_FLAGS_SIGNED_HASH 0x0001 /* Signed dirhash in use */ | ||
| 384 | #define EXT2_FLAGS_UNSIGNED_HASH 0x0002 /* Unsigned dirhash in use */ | ||
| 385 | #define EXT2_FLAGS_TEST_FILESYS 0x0004 /* to test development code */ | ||
| 386 | |||
| 387 | /* | ||
| 357 | * Mount flags | 388 | * Mount flags |
| 358 | */ | 389 | */ |
| 359 | #define EXT3_MOUNT_CHECK 0x00001 /* Do mount-time checks */ | 390 | #define EXT3_MOUNT_CHECK 0x00001 /* Do mount-time checks */ |
| @@ -489,7 +520,23 @@ struct ext3_super_block { | |||
| 489 | __u16 s_reserved_word_pad; | 520 | __u16 s_reserved_word_pad; |
| 490 | __le32 s_default_mount_opts; | 521 | __le32 s_default_mount_opts; |
| 491 | __le32 s_first_meta_bg; /* First metablock block group */ | 522 | __le32 s_first_meta_bg; /* First metablock block group */ |
| 492 | __u32 s_reserved[190]; /* Padding to the end of the block */ | 523 | __le32 s_mkfs_time; /* When the filesystem was created */ |
| 524 | __le32 s_jnl_blocks[17]; /* Backup of the journal inode */ | ||
| 525 | /* 64bit support valid if EXT4_FEATURE_COMPAT_64BIT */ | ||
| 526 | /*150*/ __le32 s_blocks_count_hi; /* Blocks count */ | ||
| 527 | __le32 s_r_blocks_count_hi; /* Reserved blocks count */ | ||
| 528 | __le32 s_free_blocks_count_hi; /* Free blocks count */ | ||
| 529 | __le16 s_min_extra_isize; /* All inodes have at least # bytes */ | ||
| 530 | __le16 s_want_extra_isize; /* New inodes should reserve # bytes */ | ||
| 531 | __le32 s_flags; /* Miscellaneous flags */ | ||
| 532 | __le16 s_raid_stride; /* RAID stride */ | ||
| 533 | __le16 s_mmp_interval; /* # seconds to wait in MMP checking */ | ||
| 534 | __le64 s_mmp_block; /* Block for multi-mount protection */ | ||
| 535 | __le32 s_raid_stripe_width; /* blocks on all data disks (N*stride)*/ | ||
| 536 | __u8 s_log_groups_per_flex; /* FLEX_BG group size */ | ||
| 537 | __u8 s_reserved_char_pad2; | ||
| 538 | __le16 s_reserved_pad; | ||
| 539 | __u32 s_reserved[162]; /* Padding to the end of the block */ | ||
| 493 | }; | 540 | }; |
| 494 | 541 | ||
| 495 | #ifdef __KERNEL__ | 542 | #ifdef __KERNEL__ |
| @@ -694,6 +741,9 @@ static inline __le16 ext3_rec_len_to_disk(unsigned len) | |||
| 694 | #define DX_HASH_LEGACY 0 | 741 | #define DX_HASH_LEGACY 0 |
| 695 | #define DX_HASH_HALF_MD4 1 | 742 | #define DX_HASH_HALF_MD4 1 |
| 696 | #define DX_HASH_TEA 2 | 743 | #define DX_HASH_TEA 2 |
| 744 | #define DX_HASH_LEGACY_UNSIGNED 3 | ||
| 745 | #define DX_HASH_HALF_MD4_UNSIGNED 4 | ||
| 746 | #define DX_HASH_TEA_UNSIGNED 5 | ||
| 697 | 747 | ||
| 698 | #ifdef __KERNEL__ | 748 | #ifdef __KERNEL__ |
| 699 | 749 | ||
diff --git a/include/linux/ext3_fs_sb.h b/include/linux/ext3_fs_sb.h index b65f0288b842..f07f34de2f0e 100644 --- a/include/linux/ext3_fs_sb.h +++ b/include/linux/ext3_fs_sb.h | |||
| @@ -57,10 +57,11 @@ struct ext3_sb_info { | |||
| 57 | u32 s_next_generation; | 57 | u32 s_next_generation; |
| 58 | u32 s_hash_seed[4]; | 58 | u32 s_hash_seed[4]; |
| 59 | int s_def_hash_version; | 59 | int s_def_hash_version; |
| 60 | int s_hash_unsigned; /* 3 if hash should be signed, 0 if not */ | ||
| 60 | struct percpu_counter s_freeblocks_counter; | 61 | struct percpu_counter s_freeblocks_counter; |
| 61 | struct percpu_counter s_freeinodes_counter; | 62 | struct percpu_counter s_freeinodes_counter; |
| 62 | struct percpu_counter s_dirs_counter; | 63 | struct percpu_counter s_dirs_counter; |
| 63 | struct blockgroup_lock s_blockgroup_lock; | 64 | struct blockgroup_lock *s_blockgroup_lock; |
| 64 | 65 | ||
| 65 | /* root of the per fs reservation window tree */ | 66 | /* root of the per fs reservation window tree */ |
| 66 | spinlock_t s_rsv_window_lock; | 67 | spinlock_t s_rsv_window_lock; |
| @@ -83,4 +84,10 @@ struct ext3_sb_info { | |||
| 83 | #endif | 84 | #endif |
| 84 | }; | 85 | }; |
| 85 | 86 | ||
| 87 | static inline spinlock_t * | ||
| 88 | sb_bgl_lock(struct ext3_sb_info *sbi, unsigned int block_group) | ||
| 89 | { | ||
| 90 | return bgl_lock_ptr(sbi->s_blockgroup_lock, block_group); | ||
| 91 | } | ||
| 92 | |||
| 86 | #endif /* _LINUX_EXT3_FS_SB */ | 93 | #endif /* _LINUX_EXT3_FS_SB */ |
diff --git a/include/linux/fb.h b/include/linux/fb.h index 1ee63df5be92..31527e17076b 100644 --- a/include/linux/fb.h +++ b/include/linux/fb.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #ifndef _LINUX_FB_H | 1 | #ifndef _LINUX_FB_H |
| 2 | #define _LINUX_FB_H | 2 | #define _LINUX_FB_H |
| 3 | 3 | ||
| 4 | #include <asm/types.h> | 4 | #include <linux/types.h> |
| 5 | #include <linux/i2c.h> | 5 | #include <linux/i2c.h> |
| 6 | 6 | ||
| 7 | struct dentry; | 7 | struct dentry; |
| @@ -960,6 +960,21 @@ extern struct fb_info *registered_fb[FB_MAX]; | |||
| 960 | extern int num_registered_fb; | 960 | extern int num_registered_fb; |
| 961 | extern struct class *fb_class; | 961 | extern struct class *fb_class; |
| 962 | 962 | ||
| 963 | static inline int lock_fb_info(struct fb_info *info) | ||
| 964 | { | ||
| 965 | mutex_lock(&info->lock); | ||
| 966 | if (!info->fbops) { | ||
| 967 | mutex_unlock(&info->lock); | ||
| 968 | return 0; | ||
| 969 | } | ||
| 970 | return 1; | ||
| 971 | } | ||
| 972 | |||
| 973 | static inline void unlock_fb_info(struct fb_info *info) | ||
| 974 | { | ||
| 975 | mutex_unlock(&info->lock); | ||
| 976 | } | ||
| 977 | |||
| 963 | static inline void __fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, | 978 | static inline void __fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, |
| 964 | u8 *src, u32 s_pitch, u32 height) | 979 | u8 *src, u32 s_pitch, u32 height) |
| 965 | { | 980 | { |
diff --git a/include/linux/fdtable.h b/include/linux/fdtable.h index 4aab6f12cfab..09d6c5bbdddd 100644 --- a/include/linux/fdtable.h +++ b/include/linux/fdtable.h | |||
| @@ -57,8 +57,6 @@ struct files_struct { | |||
| 57 | 57 | ||
| 58 | #define files_fdtable(files) (rcu_dereference((files)->fdt)) | 58 | #define files_fdtable(files) (rcu_dereference((files)->fdt)) |
| 59 | 59 | ||
| 60 | extern struct kmem_cache *filp_cachep; | ||
| 61 | |||
| 62 | struct file_operations; | 60 | struct file_operations; |
| 63 | struct vfsmount; | 61 | struct vfsmount; |
| 64 | struct dentry; | 62 | struct dentry; |
diff --git a/include/linux/fs.h b/include/linux/fs.h index 001ded4845b4..6022f44043f2 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
| @@ -21,7 +21,6 @@ | |||
| 21 | 21 | ||
| 22 | /* Fixed constants first: */ | 22 | /* Fixed constants first: */ |
| 23 | #undef NR_OPEN | 23 | #undef NR_OPEN |
| 24 | extern int sysctl_nr_open; | ||
| 25 | #define INR_OPEN 1024 /* Initial setting for nfile rlimits */ | 24 | #define INR_OPEN 1024 /* Initial setting for nfile rlimits */ |
| 26 | 25 | ||
| 27 | #define BLOCK_SIZE_BITS 10 | 26 | #define BLOCK_SIZE_BITS 10 |
| @@ -38,21 +37,13 @@ struct files_stat_struct { | |||
| 38 | int nr_free_files; /* read only */ | 37 | int nr_free_files; /* read only */ |
| 39 | int max_files; /* tunable */ | 38 | int max_files; /* tunable */ |
| 40 | }; | 39 | }; |
| 41 | extern struct files_stat_struct files_stat; | ||
| 42 | extern int get_max_files(void); | ||
| 43 | 40 | ||
| 44 | struct inodes_stat_t { | 41 | struct inodes_stat_t { |
| 45 | int nr_inodes; | 42 | int nr_inodes; |
| 46 | int nr_unused; | 43 | int nr_unused; |
| 47 | int dummy[5]; /* padding for sysctl ABI compatibility */ | 44 | int dummy[5]; /* padding for sysctl ABI compatibility */ |
| 48 | }; | 45 | }; |
| 49 | extern struct inodes_stat_t inodes_stat; | ||
| 50 | 46 | ||
| 51 | extern int leases_enable, lease_break_time; | ||
| 52 | |||
| 53 | #ifdef CONFIG_DNOTIFY | ||
| 54 | extern int dir_notify_enable; | ||
| 55 | #endif | ||
| 56 | 47 | ||
| 57 | #define NR_FILE 8192 /* this can well be larger on a larger system */ | 48 | #define NR_FILE 8192 /* this can well be larger on a larger system */ |
| 58 | 49 | ||
| @@ -243,6 +234,8 @@ extern int dir_notify_enable; | |||
| 243 | #define BMAP_IOCTL 1 /* obsolete - kept for compatibility */ | 234 | #define BMAP_IOCTL 1 /* obsolete - kept for compatibility */ |
| 244 | #define FIBMAP _IO(0x00,1) /* bmap access */ | 235 | #define FIBMAP _IO(0x00,1) /* bmap access */ |
| 245 | #define FIGETBSZ _IO(0x00,2) /* get the block size used for bmap */ | 236 | #define FIGETBSZ _IO(0x00,2) /* get the block size used for bmap */ |
| 237 | #define FIFREEZE _IOWR('X', 119, int) /* Freeze */ | ||
| 238 | #define FITHAW _IOWR('X', 120, int) /* Thaw */ | ||
| 246 | 239 | ||
| 247 | #define FS_IOC_GETFLAGS _IOR('f', 1, long) | 240 | #define FS_IOC_GETFLAGS _IOR('f', 1, long) |
| 248 | #define FS_IOC_SETFLAGS _IOW('f', 2, long) | 241 | #define FS_IOC_SETFLAGS _IOW('f', 2, long) |
| @@ -330,6 +323,15 @@ extern void __init inode_init(void); | |||
| 330 | extern void __init inode_init_early(void); | 323 | extern void __init inode_init_early(void); |
| 331 | extern void __init files_init(unsigned long); | 324 | extern void __init files_init(unsigned long); |
| 332 | 325 | ||
| 326 | extern struct files_stat_struct files_stat; | ||
| 327 | extern int get_max_files(void); | ||
| 328 | extern int sysctl_nr_open; | ||
| 329 | extern struct inodes_stat_t inodes_stat; | ||
| 330 | extern int leases_enable, lease_break_time; | ||
| 331 | #ifdef CONFIG_DNOTIFY | ||
| 332 | extern int dir_notify_enable; | ||
| 333 | #endif | ||
| 334 | |||
| 333 | struct buffer_head; | 335 | struct buffer_head; |
| 334 | typedef int (get_block_t)(struct inode *inode, sector_t iblock, | 336 | typedef int (get_block_t)(struct inode *inode, sector_t iblock, |
| 335 | struct buffer_head *bh_result, int create); | 337 | struct buffer_head *bh_result, int create); |
| @@ -423,6 +425,9 @@ enum positive_aop_returns { | |||
| 423 | 425 | ||
| 424 | #define AOP_FLAG_UNINTERRUPTIBLE 0x0001 /* will not do a short write */ | 426 | #define AOP_FLAG_UNINTERRUPTIBLE 0x0001 /* will not do a short write */ |
| 425 | #define AOP_FLAG_CONT_EXPAND 0x0002 /* called from cont_expand */ | 427 | #define AOP_FLAG_CONT_EXPAND 0x0002 /* called from cont_expand */ |
| 428 | #define AOP_FLAG_NOFS 0x0004 /* used by filesystem to direct | ||
| 429 | * helper code (eg buffer layer) | ||
| 430 | * to clear GFP_FS from alloc */ | ||
| 426 | 431 | ||
| 427 | /* | 432 | /* |
| 428 | * oh the beauties of C type declarations. | 433 | * oh the beauties of C type declarations. |
| @@ -562,6 +567,7 @@ struct address_space { | |||
| 562 | struct block_device { | 567 | struct block_device { |
| 563 | dev_t bd_dev; /* not a kdev_t - it's a search key */ | 568 | dev_t bd_dev; /* not a kdev_t - it's a search key */ |
| 564 | struct inode * bd_inode; /* will die */ | 569 | struct inode * bd_inode; /* will die */ |
| 570 | struct super_block * bd_super; | ||
| 565 | int bd_openers; | 571 | int bd_openers; |
| 566 | struct mutex bd_mutex; /* open/close mutex */ | 572 | struct mutex bd_mutex; /* open/close mutex */ |
| 567 | struct semaphore bd_mount_sem; | 573 | struct semaphore bd_mount_sem; |
| @@ -587,6 +593,11 @@ struct block_device { | |||
| 587 | * care to not mess up bd_private for that case. | 593 | * care to not mess up bd_private for that case. |
| 588 | */ | 594 | */ |
| 589 | unsigned long bd_private; | 595 | unsigned long bd_private; |
| 596 | |||
| 597 | /* The counter of freeze processes */ | ||
| 598 | int bd_fsfreeze_count; | ||
| 599 | /* Mutex for freeze */ | ||
| 600 | struct mutex bd_fsfreeze_mutex; | ||
| 590 | }; | 601 | }; |
| 591 | 602 | ||
| 592 | /* | 603 | /* |
| @@ -1130,7 +1141,6 @@ struct super_block { | |||
| 1130 | struct rw_semaphore s_umount; | 1141 | struct rw_semaphore s_umount; |
| 1131 | struct mutex s_lock; | 1142 | struct mutex s_lock; |
| 1132 | int s_count; | 1143 | int s_count; |
| 1133 | int s_syncing; | ||
| 1134 | int s_need_sync_fs; | 1144 | int s_need_sync_fs; |
| 1135 | atomic_t s_active; | 1145 | atomic_t s_active; |
| 1136 | #ifdef CONFIG_SECURITY | 1146 | #ifdef CONFIG_SECURITY |
| @@ -1182,6 +1192,11 @@ struct super_block { | |||
| 1182 | * generic_show_options() | 1192 | * generic_show_options() |
| 1183 | */ | 1193 | */ |
| 1184 | char *s_options; | 1194 | char *s_options; |
| 1195 | |||
| 1196 | /* | ||
| 1197 | * storage for asynchronous operations | ||
| 1198 | */ | ||
| 1199 | struct list_head s_async_list; | ||
| 1185 | }; | 1200 | }; |
| 1186 | 1201 | ||
| 1187 | extern struct timespec current_fs_time(struct super_block *sb); | 1202 | extern struct timespec current_fs_time(struct super_block *sb); |
| @@ -1212,7 +1227,6 @@ extern void unlock_super(struct super_block *); | |||
| 1212 | /* | 1227 | /* |
| 1213 | * VFS helper functions.. | 1228 | * VFS helper functions.. |
| 1214 | */ | 1229 | */ |
| 1215 | extern int vfs_permission(struct nameidata *, int); | ||
| 1216 | extern int vfs_create(struct inode *, struct dentry *, int, struct nameidata *); | 1230 | extern int vfs_create(struct inode *, struct dentry *, int, struct nameidata *); |
| 1217 | extern int vfs_mkdir(struct inode *, struct dentry *, int); | 1231 | extern int vfs_mkdir(struct inode *, struct dentry *, int); |
| 1218 | extern int vfs_mknod(struct inode *, struct dentry *, int, dev_t); | 1232 | extern int vfs_mknod(struct inode *, struct dentry *, int, dev_t); |
| @@ -1310,7 +1324,6 @@ struct file_operations { | |||
| 1310 | ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int); | 1324 | ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int); |
| 1311 | unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long); | 1325 | unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long); |
| 1312 | int (*check_flags)(int); | 1326 | int (*check_flags)(int); |
| 1313 | int (*dir_notify)(struct file *filp, unsigned long arg); | ||
| 1314 | int (*flock) (struct file *, int, struct file_lock *); | 1327 | int (*flock) (struct file *, int, struct file_lock *); |
| 1315 | ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int); | 1328 | ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int); |
| 1316 | ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); | 1329 | ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); |
| @@ -1371,8 +1384,8 @@ struct super_operations { | |||
| 1371 | void (*put_super) (struct super_block *); | 1384 | void (*put_super) (struct super_block *); |
| 1372 | void (*write_super) (struct super_block *); | 1385 | void (*write_super) (struct super_block *); |
| 1373 | int (*sync_fs)(struct super_block *sb, int wait); | 1386 | int (*sync_fs)(struct super_block *sb, int wait); |
| 1374 | void (*write_super_lockfs) (struct super_block *); | 1387 | int (*freeze_fs) (struct super_block *); |
| 1375 | void (*unlockfs) (struct super_block *); | 1388 | int (*unfreeze_fs) (struct super_block *); |
| 1376 | int (*statfs) (struct dentry *, struct kstatfs *); | 1389 | int (*statfs) (struct dentry *, struct kstatfs *); |
| 1377 | int (*remount_fs) (struct super_block *, int *, char *); | 1390 | int (*remount_fs) (struct super_block *, int *, char *); |
| 1378 | void (*clear_inode) (struct inode *); | 1391 | void (*clear_inode) (struct inode *); |
| @@ -1384,6 +1397,7 @@ struct super_operations { | |||
| 1384 | ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t); | 1397 | ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t); |
| 1385 | ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t); | 1398 | ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t); |
| 1386 | #endif | 1399 | #endif |
| 1400 | int (*bdev_try_to_free_page)(struct super_block*, struct page*, gfp_t); | ||
| 1387 | }; | 1401 | }; |
| 1388 | 1402 | ||
| 1389 | /* | 1403 | /* |
| @@ -1829,7 +1843,7 @@ extern int __filemap_fdatawrite_range(struct address_space *mapping, | |||
| 1829 | extern int filemap_fdatawrite_range(struct address_space *mapping, | 1843 | extern int filemap_fdatawrite_range(struct address_space *mapping, |
| 1830 | loff_t start, loff_t end); | 1844 | loff_t start, loff_t end); |
| 1831 | 1845 | ||
| 1832 | extern long do_fsync(struct file *file, int datasync); | 1846 | extern int vfs_fsync(struct file *file, struct dentry *dentry, int datasync); |
| 1833 | extern void sync_supers(void); | 1847 | extern void sync_supers(void); |
| 1834 | extern void sync_filesystems(int wait); | 1848 | extern void sync_filesystems(int wait); |
| 1835 | extern void __fsync_super(struct super_block *sb); | 1849 | extern void __fsync_super(struct super_block *sb); |
| @@ -1869,7 +1883,7 @@ extern void free_write_pipe(struct file *); | |||
| 1869 | 1883 | ||
| 1870 | extern struct file *do_filp_open(int dfd, const char *pathname, | 1884 | extern struct file *do_filp_open(int dfd, const char *pathname, |
| 1871 | int open_flag, int mode); | 1885 | int open_flag, int mode); |
| 1872 | extern int may_open(struct nameidata *, int, int); | 1886 | extern int may_open(struct path *, int, int); |
| 1873 | 1887 | ||
| 1874 | extern int kernel_read(struct file *, unsigned long, char *, unsigned long); | 1888 | extern int kernel_read(struct file *, unsigned long, char *, unsigned long); |
| 1875 | extern struct file * open_exec(const char *); | 1889 | extern struct file * open_exec(const char *); |
| @@ -1904,6 +1918,8 @@ extern struct inode *ilookup(struct super_block *sb, unsigned long ino); | |||
| 1904 | 1918 | ||
| 1905 | extern struct inode * iget5_locked(struct super_block *, unsigned long, int (*test)(struct inode *, void *), int (*set)(struct inode *, void *), void *); | 1919 | extern struct inode * iget5_locked(struct super_block *, unsigned long, int (*test)(struct inode *, void *), int (*set)(struct inode *, void *), void *); |
| 1906 | extern struct inode * iget_locked(struct super_block *, unsigned long); | 1920 | extern struct inode * iget_locked(struct super_block *, unsigned long); |
| 1921 | extern int insert_inode_locked4(struct inode *, unsigned long, int (*test)(struct inode *, void *), void *); | ||
| 1922 | extern int insert_inode_locked(struct inode *); | ||
| 1907 | extern void unlock_new_inode(struct inode *); | 1923 | extern void unlock_new_inode(struct inode *); |
| 1908 | 1924 | ||
| 1909 | extern void __iget(struct inode * inode); | 1925 | extern void __iget(struct inode * inode); |
| @@ -2035,7 +2051,7 @@ extern int page_readlink(struct dentry *, char __user *, int); | |||
| 2035 | extern void *page_follow_link_light(struct dentry *, struct nameidata *); | 2051 | extern void *page_follow_link_light(struct dentry *, struct nameidata *); |
| 2036 | extern void page_put_link(struct dentry *, struct nameidata *, void *); | 2052 | extern void page_put_link(struct dentry *, struct nameidata *, void *); |
| 2037 | extern int __page_symlink(struct inode *inode, const char *symname, int len, | 2053 | extern int __page_symlink(struct inode *inode, const char *symname, int len, |
| 2038 | gfp_t gfp_mask); | 2054 | int nofs); |
| 2039 | extern int page_symlink(struct inode *inode, const char *symname, int len); | 2055 | extern int page_symlink(struct inode *inode, const char *symname, int len); |
| 2040 | extern const struct inode_operations page_symlink_inode_operations; | 2056 | extern const struct inode_operations page_symlink_inode_operations; |
| 2041 | extern int generic_readlink(struct dentry *, char __user *, int); | 2057 | extern int generic_readlink(struct dentry *, char __user *, int); |
| @@ -2056,6 +2072,9 @@ extern int vfs_fstat(unsigned int, struct kstat *); | |||
| 2056 | 2072 | ||
| 2057 | extern int do_vfs_ioctl(struct file *filp, unsigned int fd, unsigned int cmd, | 2073 | extern int do_vfs_ioctl(struct file *filp, unsigned int fd, unsigned int cmd, |
| 2058 | unsigned long arg); | 2074 | unsigned long arg); |
| 2075 | extern int __generic_block_fiemap(struct inode *inode, | ||
| 2076 | struct fiemap_extent_info *fieinfo, u64 start, | ||
| 2077 | u64 len, get_block_t *get_block); | ||
| 2059 | extern int generic_block_fiemap(struct inode *inode, | 2078 | extern int generic_block_fiemap(struct inode *inode, |
| 2060 | struct fiemap_extent_info *fieinfo, u64 start, | 2079 | struct fiemap_extent_info *fieinfo, u64 start, |
| 2061 | u64 len, get_block_t *get_block); | 2080 | u64 len, get_block_t *get_block); |
diff --git a/include/linux/fs_struct.h b/include/linux/fs_struct.h index 9e5a06e78d02..a97c053d3a9a 100644 --- a/include/linux/fs_struct.h +++ b/include/linux/fs_struct.h | |||
| @@ -10,12 +10,6 @@ struct fs_struct { | |||
| 10 | struct path root, pwd; | 10 | struct path root, pwd; |
| 11 | }; | 11 | }; |
| 12 | 12 | ||
| 13 | #define INIT_FS { \ | ||
| 14 | .count = ATOMIC_INIT(1), \ | ||
| 15 | .lock = RW_LOCK_UNLOCKED, \ | ||
| 16 | .umask = 0022, \ | ||
| 17 | } | ||
| 18 | |||
| 19 | extern struct kmem_cache *fs_cachep; | 13 | extern struct kmem_cache *fs_cachep; |
| 20 | 14 | ||
| 21 | extern void exit_fs(struct task_struct *); | 15 | extern void exit_fs(struct task_struct *); |
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index 350fe9767bbc..162e5defe683 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* | 1 | /* |
| 2 | FUSE: Filesystem in Userspace | 2 | FUSE: Filesystem in Userspace |
| 3 | Copyright (C) 2001-2006 Miklos Szeredi <miklos@szeredi.hu> | 3 | Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu> |
| 4 | 4 | ||
| 5 | This program can be distributed under the terms of the GNU GPL. | 5 | This program can be distributed under the terms of the GNU GPL. |
| 6 | See the file COPYING. | 6 | See the file COPYING. |
| @@ -20,29 +20,27 @@ | |||
| 20 | * | 20 | * |
| 21 | * 7.10 | 21 | * 7.10 |
| 22 | * - add nonseekable open flag | 22 | * - add nonseekable open flag |
| 23 | * | ||
| 24 | * 7.11 | ||
| 25 | * - add IOCTL message | ||
| 26 | * - add unsolicited notification support | ||
| 27 | * - add POLL message and NOTIFY_POLL notification | ||
| 23 | */ | 28 | */ |
| 24 | 29 | ||
| 25 | #ifndef _LINUX_FUSE_H | 30 | #ifndef _LINUX_FUSE_H |
| 26 | #define _LINUX_FUSE_H | 31 | #define _LINUX_FUSE_H |
| 27 | 32 | ||
| 28 | #include <asm/types.h> | 33 | #include <linux/types.h> |
| 29 | #include <linux/major.h> | ||
| 30 | 34 | ||
| 31 | /** Version number of this interface */ | 35 | /** Version number of this interface */ |
| 32 | #define FUSE_KERNEL_VERSION 7 | 36 | #define FUSE_KERNEL_VERSION 7 |
| 33 | 37 | ||
| 34 | /** Minor version number of this interface */ | 38 | /** Minor version number of this interface */ |
| 35 | #define FUSE_KERNEL_MINOR_VERSION 10 | 39 | #define FUSE_KERNEL_MINOR_VERSION 11 |
| 36 | 40 | ||
| 37 | /** The node ID of the root inode */ | 41 | /** The node ID of the root inode */ |
| 38 | #define FUSE_ROOT_ID 1 | 42 | #define FUSE_ROOT_ID 1 |
| 39 | 43 | ||
| 40 | /** The major number of the fuse character device */ | ||
| 41 | #define FUSE_MAJOR MISC_MAJOR | ||
| 42 | |||
| 43 | /** The minor number of the fuse character device */ | ||
| 44 | #define FUSE_MINOR 229 | ||
| 45 | |||
| 46 | /* Make sure all structures are padded to 64bit boundary, so 32bit | 44 | /* Make sure all structures are padded to 64bit boundary, so 32bit |
| 47 | userspace works under 64bit kernels */ | 45 | userspace works under 64bit kernels */ |
| 48 | 46 | ||
| @@ -151,6 +149,28 @@ struct fuse_file_lock { | |||
| 151 | */ | 149 | */ |
| 152 | #define FUSE_READ_LOCKOWNER (1 << 1) | 150 | #define FUSE_READ_LOCKOWNER (1 << 1) |
| 153 | 151 | ||
| 152 | /** | ||
| 153 | * Ioctl flags | ||
| 154 | * | ||
| 155 | * FUSE_IOCTL_COMPAT: 32bit compat ioctl on 64bit machine | ||
| 156 | * FUSE_IOCTL_UNRESTRICTED: not restricted to well-formed ioctls, retry allowed | ||
| 157 | * FUSE_IOCTL_RETRY: retry with new iovecs | ||
| 158 | * | ||
| 159 | * FUSE_IOCTL_MAX_IOV: maximum of in_iovecs + out_iovecs | ||
| 160 | */ | ||
| 161 | #define FUSE_IOCTL_COMPAT (1 << 0) | ||
| 162 | #define FUSE_IOCTL_UNRESTRICTED (1 << 1) | ||
| 163 | #define FUSE_IOCTL_RETRY (1 << 2) | ||
| 164 | |||
| 165 | #define FUSE_IOCTL_MAX_IOV 256 | ||
| 166 | |||
| 167 | /** | ||
| 168 | * Poll flags | ||
| 169 | * | ||
| 170 | * FUSE_POLL_SCHEDULE_NOTIFY: request poll notify | ||
| 171 | */ | ||
| 172 | #define FUSE_POLL_SCHEDULE_NOTIFY (1 << 0) | ||
| 173 | |||
| 154 | enum fuse_opcode { | 174 | enum fuse_opcode { |
| 155 | FUSE_LOOKUP = 1, | 175 | FUSE_LOOKUP = 1, |
| 156 | FUSE_FORGET = 2, /* no reply */ | 176 | FUSE_FORGET = 2, /* no reply */ |
| @@ -188,6 +208,13 @@ enum fuse_opcode { | |||
| 188 | FUSE_INTERRUPT = 36, | 208 | FUSE_INTERRUPT = 36, |
| 189 | FUSE_BMAP = 37, | 209 | FUSE_BMAP = 37, |
| 190 | FUSE_DESTROY = 38, | 210 | FUSE_DESTROY = 38, |
| 211 | FUSE_IOCTL = 39, | ||
| 212 | FUSE_POLL = 40, | ||
| 213 | }; | ||
| 214 | |||
| 215 | enum fuse_notify_code { | ||
| 216 | FUSE_NOTIFY_POLL = 1, | ||
| 217 | FUSE_NOTIFY_CODE_MAX, | ||
| 191 | }; | 218 | }; |
| 192 | 219 | ||
| 193 | /* The read buffer is required to be at least 8k, but may be much larger */ | 220 | /* The read buffer is required to be at least 8k, but may be much larger */ |
| @@ -388,6 +415,38 @@ struct fuse_bmap_out { | |||
| 388 | __u64 block; | 415 | __u64 block; |
| 389 | }; | 416 | }; |
| 390 | 417 | ||
| 418 | struct fuse_ioctl_in { | ||
| 419 | __u64 fh; | ||
| 420 | __u32 flags; | ||
| 421 | __u32 cmd; | ||
| 422 | __u64 arg; | ||
| 423 | __u32 in_size; | ||
| 424 | __u32 out_size; | ||
| 425 | }; | ||
| 426 | |||
| 427 | struct fuse_ioctl_out { | ||
| 428 | __s32 result; | ||
| 429 | __u32 flags; | ||
| 430 | __u32 in_iovs; | ||
| 431 | __u32 out_iovs; | ||
| 432 | }; | ||
| 433 | |||
| 434 | struct fuse_poll_in { | ||
| 435 | __u64 fh; | ||
| 436 | __u64 kh; | ||
| 437 | __u32 flags; | ||
| 438 | __u32 padding; | ||
| 439 | }; | ||
| 440 | |||
| 441 | struct fuse_poll_out { | ||
| 442 | __u32 revents; | ||
| 443 | __u32 padding; | ||
| 444 | }; | ||
| 445 | |||
| 446 | struct fuse_notify_poll_wakeup_out { | ||
| 447 | __u64 kh; | ||
| 448 | }; | ||
| 449 | |||
| 391 | struct fuse_in_header { | 450 | struct fuse_in_header { |
| 392 | __u32 len; | 451 | __u32 len; |
| 393 | __u32 opcode; | 452 | __u32 opcode; |
diff --git a/include/linux/generic_serial.h b/include/linux/generic_serial.h index 4cc913939817..fadff28505bb 100644 --- a/include/linux/generic_serial.h +++ b/include/linux/generic_serial.h | |||
| @@ -21,7 +21,6 @@ struct real_driver { | |||
| 21 | void (*enable_tx_interrupts) (void *); | 21 | void (*enable_tx_interrupts) (void *); |
| 22 | void (*disable_rx_interrupts) (void *); | 22 | void (*disable_rx_interrupts) (void *); |
| 23 | void (*enable_rx_interrupts) (void *); | 23 | void (*enable_rx_interrupts) (void *); |
| 24 | int (*get_CD) (void *); | ||
| 25 | void (*shutdown_port) (void*); | 24 | void (*shutdown_port) (void*); |
| 26 | int (*set_real_termios) (void*); | 25 | int (*set_real_termios) (void*); |
| 27 | int (*chars_in_buffer) (void*); | 26 | int (*chars_in_buffer) (void*); |
diff --git a/include/linux/genetlink.h b/include/linux/genetlink.h index 7da02c93002b..b834ef6d59fa 100644 --- a/include/linux/genetlink.h +++ b/include/linux/genetlink.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __LINUX_GENERIC_NETLINK_H | 1 | #ifndef __LINUX_GENERIC_NETLINK_H |
| 2 | #define __LINUX_GENERIC_NETLINK_H | 2 | #define __LINUX_GENERIC_NETLINK_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/netlink.h> | 5 | #include <linux/netlink.h> |
| 5 | 6 | ||
| 6 | #define GENL_NAMSIZ 16 /* length of family name */ | 7 | #define GENL_NAMSIZ 16 /* length of family name */ |
diff --git a/include/linux/gfp.h b/include/linux/gfp.h index e8003afeffba..dd20cd78faa8 100644 --- a/include/linux/gfp.h +++ b/include/linux/gfp.h | |||
| @@ -69,12 +69,6 @@ struct vm_area_struct; | |||
| 69 | #define GFP_HIGHUSER_MOVABLE (__GFP_WAIT | __GFP_IO | __GFP_FS | \ | 69 | #define GFP_HIGHUSER_MOVABLE (__GFP_WAIT | __GFP_IO | __GFP_FS | \ |
| 70 | __GFP_HARDWALL | __GFP_HIGHMEM | \ | 70 | __GFP_HARDWALL | __GFP_HIGHMEM | \ |
| 71 | __GFP_MOVABLE) | 71 | __GFP_MOVABLE) |
| 72 | #define GFP_NOFS_PAGECACHE (__GFP_WAIT | __GFP_IO | __GFP_MOVABLE) | ||
| 73 | #define GFP_USER_PAGECACHE (__GFP_WAIT | __GFP_IO | __GFP_FS | \ | ||
| 74 | __GFP_HARDWALL | __GFP_MOVABLE) | ||
| 75 | #define GFP_HIGHUSER_PAGECACHE (__GFP_WAIT | __GFP_IO | __GFP_FS | \ | ||
| 76 | __GFP_HARDWALL | __GFP_HIGHMEM | \ | ||
| 77 | __GFP_MOVABLE) | ||
| 78 | 72 | ||
| 79 | #ifdef CONFIG_NUMA | 73 | #ifdef CONFIG_NUMA |
| 80 | #define GFP_THISNODE (__GFP_THISNODE | __GFP_NOWARN | __GFP_NORETRY) | 74 | #define GFP_THISNODE (__GFP_THISNODE | __GFP_NOWARN | __GFP_NORETRY) |
diff --git a/include/linux/gfs2_ondisk.h b/include/linux/gfs2_ondisk.h index 14d0df0b5749..c56b4bce56d0 100644 --- a/include/linux/gfs2_ondisk.h +++ b/include/linux/gfs2_ondisk.h | |||
| @@ -10,6 +10,8 @@ | |||
| 10 | #ifndef __GFS2_ONDISK_DOT_H__ | 10 | #ifndef __GFS2_ONDISK_DOT_H__ |
| 11 | #define __GFS2_ONDISK_DOT_H__ | 11 | #define __GFS2_ONDISK_DOT_H__ |
| 12 | 12 | ||
| 13 | #include <linux/types.h> | ||
| 14 | |||
| 13 | #define GFS2_MAGIC 0x01161970 | 15 | #define GFS2_MAGIC 0x01161970 |
| 14 | #define GFS2_BASIC_BLOCK 512 | 16 | #define GFS2_BASIC_BLOCK 512 |
| 15 | #define GFS2_BASIC_BLOCK_SHIFT 9 | 17 | #define GFS2_BASIC_BLOCK_SHIFT 9 |
diff --git a/include/linux/gpio_keys.h b/include/linux/gpio_keys.h index ec6ecd74781d..1289fa7623ca 100644 --- a/include/linux/gpio_keys.h +++ b/include/linux/gpio_keys.h | |||
| @@ -15,6 +15,7 @@ struct gpio_keys_button { | |||
| 15 | struct gpio_keys_platform_data { | 15 | struct gpio_keys_platform_data { |
| 16 | struct gpio_keys_button *buttons; | 16 | struct gpio_keys_button *buttons; |
| 17 | int nbuttons; | 17 | int nbuttons; |
| 18 | unsigned int rep:1; /* enable input subsystem auto repeat */ | ||
| 18 | }; | 19 | }; |
| 19 | 20 | ||
| 20 | #endif | 21 | #endif |
diff --git a/include/linux/hid.h b/include/linux/hid.h index e5780f8c934a..fa8ee9cef7be 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h | |||
| @@ -403,15 +403,6 @@ struct hid_output_fifo { | |||
| 403 | #define HID_STAT_ADDED 1 | 403 | #define HID_STAT_ADDED 1 |
| 404 | #define HID_STAT_PARSED 2 | 404 | #define HID_STAT_PARSED 2 |
| 405 | 405 | ||
| 406 | #define HID_CTRL_RUNNING 1 | ||
| 407 | #define HID_OUT_RUNNING 2 | ||
| 408 | #define HID_IN_RUNNING 3 | ||
| 409 | #define HID_RESET_PENDING 4 | ||
| 410 | #define HID_SUSPENDED 5 | ||
| 411 | #define HID_CLEAR_HALT 6 | ||
| 412 | #define HID_DISCONNECTED 7 | ||
| 413 | #define HID_STARTED 8 | ||
| 414 | |||
| 415 | struct hid_input { | 406 | struct hid_input { |
| 416 | struct list_head list; | 407 | struct list_head list; |
| 417 | struct hid_report *report; | 408 | struct hid_report *report; |
| @@ -540,6 +531,8 @@ struct hid_usage_id { | |||
| 540 | * @name: driver name (e.g. "Footech_bar-wheel") | 531 | * @name: driver name (e.g. "Footech_bar-wheel") |
| 541 | * @id_table: which devices is this driver for (must be non-NULL for probe | 532 | * @id_table: which devices is this driver for (must be non-NULL for probe |
| 542 | * to be called) | 533 | * to be called) |
| 534 | * @dyn_list: list of dynamically added device ids | ||
| 535 | * @dyn_lock: lock protecting @dyn_list | ||
| 543 | * @probe: new device inserted | 536 | * @probe: new device inserted |
| 544 | * @remove: device removed (NULL if not a hot-plug capable driver) | 537 | * @remove: device removed (NULL if not a hot-plug capable driver) |
| 545 | * @report_table: on which reports to call raw_event (NULL means all) | 538 | * @report_table: on which reports to call raw_event (NULL means all) |
| @@ -567,6 +560,9 @@ struct hid_driver { | |||
| 567 | char *name; | 560 | char *name; |
| 568 | const struct hid_device_id *id_table; | 561 | const struct hid_device_id *id_table; |
| 569 | 562 | ||
| 563 | struct list_head dyn_list; | ||
| 564 | spinlock_t dyn_lock; | ||
| 565 | |||
| 570 | int (*probe)(struct hid_device *dev, const struct hid_device_id *id); | 566 | int (*probe)(struct hid_device *dev, const struct hid_device_id *id); |
| 571 | void (*remove)(struct hid_device *dev); | 567 | void (*remove)(struct hid_device *dev); |
| 572 | 568 | ||
| @@ -795,8 +791,11 @@ dbg_hid(const char *fmt, ...) | |||
| 795 | __FILE__ , ## arg) | 791 | __FILE__ , ## arg) |
| 796 | #endif /* HID_FF */ | 792 | #endif /* HID_FF */ |
| 797 | 793 | ||
| 794 | #ifdef __KERNEL__ | ||
| 798 | #ifdef CONFIG_HID_COMPAT | 795 | #ifdef CONFIG_HID_COMPAT |
| 799 | #define HID_COMPAT_LOAD_DRIVER(name) \ | 796 | #define HID_COMPAT_LOAD_DRIVER(name) \ |
| 797 | /* prototype to avoid sparse warning */ \ | ||
| 798 | extern void hid_compat_##name(void); \ | ||
| 800 | void hid_compat_##name(void) { } \ | 799 | void hid_compat_##name(void) { } \ |
| 801 | EXPORT_SYMBOL(hid_compat_##name) | 800 | EXPORT_SYMBOL(hid_compat_##name) |
| 802 | #else | 801 | #else |
| @@ -806,6 +805,7 @@ EXPORT_SYMBOL(hid_compat_##name) | |||
| 806 | extern void hid_compat_##name(void); \ | 805 | extern void hid_compat_##name(void); \ |
| 807 | hid_compat_##name(); \ | 806 | hid_compat_##name(); \ |
| 808 | } while (0) | 807 | } while (0) |
| 808 | #endif /* __KERNEL__ */ | ||
| 809 | 809 | ||
| 810 | #endif | 810 | #endif |
| 811 | 811 | ||
diff --git a/include/linux/hiddev.h b/include/linux/hiddev.h index c760ae0eb6a1..bb6f58baf319 100644 --- a/include/linux/hiddev.h +++ b/include/linux/hiddev.h | |||
| @@ -27,6 +27,8 @@ | |||
| 27 | * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic | 27 | * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic |
| 28 | */ | 28 | */ |
| 29 | 29 | ||
| 30 | #include <linux/types.h> | ||
| 31 | |||
| 30 | /* | 32 | /* |
| 31 | * The event structure itself | 33 | * The event structure itself |
| 32 | */ | 34 | */ |
diff --git a/include/linux/hidraw.h b/include/linux/hidraw.h index dbb5c8c374f0..dd8d69269176 100644 --- a/include/linux/hidraw.h +++ b/include/linux/hidraw.h | |||
| @@ -33,6 +33,8 @@ struct hidraw_devinfo { | |||
| 33 | #define HIDIOCGRDESCSIZE _IOR('H', 0x01, int) | 33 | #define HIDIOCGRDESCSIZE _IOR('H', 0x01, int) |
| 34 | #define HIDIOCGRDESC _IOR('H', 0x02, struct hidraw_report_descriptor) | 34 | #define HIDIOCGRDESC _IOR('H', 0x02, struct hidraw_report_descriptor) |
| 35 | #define HIDIOCGRAWINFO _IOR('H', 0x03, struct hidraw_devinfo) | 35 | #define HIDIOCGRAWINFO _IOR('H', 0x03, struct hidraw_devinfo) |
| 36 | #define HIDIOCGRAWNAME(len) _IOC(_IOC_READ, 'H', 0x04, len) | ||
| 37 | #define HIDIOCGRAWPHYS(len) _IOC(_IOC_READ, 'H', 0x05, len) | ||
| 36 | 38 | ||
| 37 | #define HIDRAW_FIRST_MINOR 0 | 39 | #define HIDRAW_FIRST_MINOR 0 |
| 38 | #define HIDRAW_MAX_DEVICES 64 | 40 | #define HIDRAW_MAX_DEVICES 64 |
diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h index e1c8afc002c0..f1d2fba19ea0 100644 --- a/include/linux/hugetlb.h +++ b/include/linux/hugetlb.h | |||
| @@ -233,6 +233,10 @@ static inline unsigned long huge_page_size(struct hstate *h) | |||
| 233 | return (unsigned long)PAGE_SIZE << h->order; | 233 | return (unsigned long)PAGE_SIZE << h->order; |
| 234 | } | 234 | } |
| 235 | 235 | ||
| 236 | extern unsigned long vma_kernel_pagesize(struct vm_area_struct *vma); | ||
| 237 | |||
| 238 | extern unsigned long vma_mmu_pagesize(struct vm_area_struct *vma); | ||
| 239 | |||
| 236 | static inline unsigned long huge_page_mask(struct hstate *h) | 240 | static inline unsigned long huge_page_mask(struct hstate *h) |
| 237 | { | 241 | { |
| 238 | return h->mask; | 242 | return h->mask; |
| @@ -273,6 +277,8 @@ struct hstate {}; | |||
| 273 | #define hstate_inode(i) NULL | 277 | #define hstate_inode(i) NULL |
| 274 | #define huge_page_size(h) PAGE_SIZE | 278 | #define huge_page_size(h) PAGE_SIZE |
| 275 | #define huge_page_mask(h) PAGE_MASK | 279 | #define huge_page_mask(h) PAGE_MASK |
| 280 | #define vma_kernel_pagesize(v) PAGE_SIZE | ||
| 281 | #define vma_mmu_pagesize(v) PAGE_SIZE | ||
| 276 | #define huge_page_order(h) 0 | 282 | #define huge_page_order(h) 0 |
| 277 | #define huge_page_shift(h) PAGE_SHIFT | 283 | #define huge_page_shift(h) PAGE_SHIFT |
| 278 | static inline unsigned int pages_per_huge_page(struct hstate *h) | 284 | static inline unsigned int pages_per_huge_page(struct hstate *h) |
diff --git a/include/linux/i2c-id.h b/include/linux/i2c-id.h index 01d67ba9e985..1ffc23bc5d1e 100644 --- a/include/linux/i2c-id.h +++ b/include/linux/i2c-id.h | |||
| @@ -40,9 +40,7 @@ | |||
| 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_SAA5249 24 /* SAA5249 and compatibles */ | 42 | #define I2C_DRIVERID_SAA5249 24 /* SAA5249 and compatibles */ |
| 43 | #define I2C_DRIVERID_PCF8583 25 /* real time clock */ | ||
| 44 | #define I2C_DRIVERID_TDA7432 27 /* Stereo sound processor */ | 43 | #define I2C_DRIVERID_TDA7432 27 /* Stereo sound processor */ |
| 45 | #define I2C_DRIVERID_TVMIXER 28 /* Mixer driver for tv cards */ | ||
| 46 | #define I2C_DRIVERID_TVAUDIO 29 /* Generic TV sound driver */ | 44 | #define I2C_DRIVERID_TVAUDIO 29 /* Generic TV sound driver */ |
| 47 | #define I2C_DRIVERID_TDA9875 32 /* TV sound decoder chip */ | 45 | #define I2C_DRIVERID_TDA9875 32 /* TV sound decoder chip */ |
| 48 | #define I2C_DRIVERID_BT819 40 /* video decoder */ | 46 | #define I2C_DRIVERID_BT819 40 /* video decoder */ |
| @@ -54,7 +52,6 @@ | |||
| 54 | #define I2C_DRIVERID_SAA7191 57 /* video decoder */ | 52 | #define I2C_DRIVERID_SAA7191 57 /* video decoder */ |
| 55 | #define I2C_DRIVERID_INDYCAM 58 /* SGI IndyCam */ | 53 | #define I2C_DRIVERID_INDYCAM 58 /* SGI IndyCam */ |
| 56 | #define I2C_DRIVERID_OVCAMCHIP 61 /* OmniVision CMOS image sens. */ | 54 | #define I2C_DRIVERID_OVCAMCHIP 61 /* OmniVision CMOS image sens. */ |
| 57 | #define I2C_DRIVERID_MAX6900 63 /* MAX6900 real-time clock */ | ||
| 58 | #define I2C_DRIVERID_SAA6752HS 67 /* MPEG2 encoder */ | 55 | #define I2C_DRIVERID_SAA6752HS 67 /* MPEG2 encoder */ |
| 59 | #define I2C_DRIVERID_TVEEPROM 68 /* TV EEPROM */ | 56 | #define I2C_DRIVERID_TVEEPROM 68 /* TV EEPROM */ |
| 60 | #define I2C_DRIVERID_WM8775 69 /* wm8775 audio processor */ | 57 | #define I2C_DRIVERID_WM8775 69 /* wm8775 audio processor */ |
| @@ -62,23 +59,16 @@ | |||
| 62 | #define I2C_DRIVERID_CX25840 71 /* cx2584x video encoder */ | 59 | #define I2C_DRIVERID_CX25840 71 /* cx2584x video encoder */ |
| 63 | #define I2C_DRIVERID_SAA7127 72 /* saa7127 video encoder */ | 60 | #define I2C_DRIVERID_SAA7127 72 /* saa7127 video encoder */ |
| 64 | #define I2C_DRIVERID_SAA711X 73 /* saa711x video encoders */ | 61 | #define I2C_DRIVERID_SAA711X 73 /* saa711x video encoders */ |
| 65 | #define I2C_DRIVERID_AKITAIOEXP 74 /* IO Expander on Sharp SL-C1000 */ | ||
| 66 | #define I2C_DRIVERID_INFRARED 75 /* I2C InfraRed on Video boards */ | 62 | #define I2C_DRIVERID_INFRARED 75 /* I2C InfraRed on Video boards */ |
| 67 | #define I2C_DRIVERID_TVP5150 76 /* TVP5150 video decoder */ | 63 | #define I2C_DRIVERID_TVP5150 76 /* TVP5150 video decoder */ |
| 68 | #define I2C_DRIVERID_WM8739 77 /* wm8739 audio processor */ | 64 | #define I2C_DRIVERID_WM8739 77 /* wm8739 audio processor */ |
| 69 | #define I2C_DRIVERID_UPD64083 78 /* upd64083 video processor */ | 65 | #define I2C_DRIVERID_UPD64083 78 /* upd64083 video processor */ |
| 70 | #define I2C_DRIVERID_UPD64031A 79 /* upd64031a video processor */ | 66 | #define I2C_DRIVERID_UPD64031A 79 /* upd64031a video processor */ |
| 71 | #define I2C_DRIVERID_SAA717X 80 /* saa717x video encoder */ | 67 | #define I2C_DRIVERID_SAA717X 80 /* saa717x video encoder */ |
| 72 | #define I2C_DRIVERID_DS1672 81 /* Dallas/Maxim DS1672 RTC */ | ||
| 73 | #define I2C_DRIVERID_BT866 85 /* Conexant bt866 video encoder */ | 68 | #define I2C_DRIVERID_BT866 85 /* Conexant bt866 video encoder */ |
| 74 | #define I2C_DRIVERID_KS0127 86 /* Samsung ks0127 video decoder */ | 69 | #define I2C_DRIVERID_KS0127 86 /* Samsung ks0127 video decoder */ |
| 75 | #define I2C_DRIVERID_TLV320AIC23B 87 /* TI TLV320AIC23B audio codec */ | 70 | #define I2C_DRIVERID_TLV320AIC23B 87 /* TI TLV320AIC23B audio codec */ |
| 76 | #define I2C_DRIVERID_WM8731 89 /* Wolfson WM8731 audio codec */ | ||
| 77 | #define I2C_DRIVERID_WM8750 90 /* Wolfson WM8750 audio codec */ | ||
| 78 | #define I2C_DRIVERID_WM8753 91 /* Wolfson WM8753 audio codec */ | ||
| 79 | #define I2C_DRIVERID_LM4857 92 /* LM4857 Audio Amplifier */ | ||
| 80 | #define I2C_DRIVERID_VP27SMPX 93 /* Panasonic VP27s tuner internal MPX */ | 71 | #define I2C_DRIVERID_VP27SMPX 93 /* Panasonic VP27s tuner internal MPX */ |
| 81 | #define I2C_DRIVERID_CS4270 94 /* Cirrus Logic 4270 audio codec */ | ||
| 82 | #define I2C_DRIVERID_M52790 95 /* Mitsubishi M52790SP/FP AV switch */ | 72 | #define I2C_DRIVERID_M52790 95 /* Mitsubishi M52790SP/FP AV switch */ |
| 83 | #define I2C_DRIVERID_CS5345 96 /* cs5345 audio processor */ | 73 | #define I2C_DRIVERID_CS5345 96 /* cs5345 audio processor */ |
| 84 | 74 | ||
| @@ -89,74 +79,23 @@ | |||
| 89 | */ | 79 | */ |
| 90 | 80 | ||
| 91 | /* --- Bit algorithm adapters */ | 81 | /* --- Bit algorithm adapters */ |
| 92 | #define I2C_HW_B_LP 0x010000 /* Parallel port Philips style */ | ||
| 93 | #define I2C_HW_B_BT848 0x010005 /* BT848 video boards */ | 82 | #define I2C_HW_B_BT848 0x010005 /* BT848 video boards */ |
| 94 | #define I2C_HW_B_VIA 0x010007 /* Via vt82c586b */ | ||
| 95 | #define I2C_HW_B_HYDRA 0x010008 /* Apple Hydra Mac I/O */ | ||
| 96 | #define I2C_HW_B_I810 0x01000a /* Intel I810 */ | ||
| 97 | #define I2C_HW_B_VOO 0x01000b /* 3dfx Voodoo 3 / Banshee */ | ||
| 98 | #define I2C_HW_B_SCX200 0x01000e /* Nat'l Semi SCx200 I2C */ | ||
| 99 | #define I2C_HW_B_RIVA 0x010010 /* Riva based graphics cards */ | 83 | #define I2C_HW_B_RIVA 0x010010 /* Riva based graphics cards */ |
| 100 | #define I2C_HW_B_IOC 0x010011 /* IOC bit-wiggling */ | ||
| 101 | #define I2C_HW_B_IXP2000 0x010016 /* GPIO on IXP2000 systems */ | ||
| 102 | #define I2C_HW_B_ZR36067 0x010019 /* Zoran-36057/36067 based boards */ | 84 | #define I2C_HW_B_ZR36067 0x010019 /* Zoran-36057/36067 based boards */ |
| 103 | #define I2C_HW_B_PCILYNX 0x01001a /* TI PCILynx I2C adapter */ | ||
| 104 | #define I2C_HW_B_CX2388x 0x01001b /* connexant 2388x based tv cards */ | 85 | #define I2C_HW_B_CX2388x 0x01001b /* connexant 2388x based tv cards */ |
| 105 | #define I2C_HW_B_NVIDIA 0x01001c /* nvidia framebuffer driver */ | ||
| 106 | #define I2C_HW_B_SAVAGE 0x01001d /* savage framebuffer driver */ | ||
| 107 | #define I2C_HW_B_RADEON 0x01001e /* radeon framebuffer driver */ | ||
| 108 | #define I2C_HW_B_EM28XX 0x01001f /* em28xx video capture cards */ | 86 | #define I2C_HW_B_EM28XX 0x01001f /* em28xx video capture cards */ |
| 109 | #define I2C_HW_B_CX2341X 0x010020 /* Conexant CX2341X MPEG encoder cards */ | 87 | #define I2C_HW_B_CX2341X 0x010020 /* Conexant CX2341X MPEG encoder cards */ |
| 110 | #define I2C_HW_B_INTELFB 0x010021 /* intel framebuffer driver */ | ||
| 111 | #define I2C_HW_B_CX23885 0x010022 /* conexant 23885 based tv cards (bus1) */ | 88 | #define I2C_HW_B_CX23885 0x010022 /* conexant 23885 based tv cards (bus1) */ |
| 112 | #define I2C_HW_B_AU0828 0x010023 /* auvitek au0828 usb bridge */ | 89 | #define I2C_HW_B_AU0828 0x010023 /* auvitek au0828 usb bridge */ |
| 113 | 90 | ||
| 114 | /* --- PCF 8584 based algorithms */ | ||
| 115 | #define I2C_HW_P_ELEK 0x020002 /* Elektor ISA Bus inteface card */ | ||
| 116 | |||
| 117 | /* --- PCA 9564 based algorithms */ | ||
| 118 | #define I2C_HW_A_ISA 0x1a0000 /* generic ISA Bus interface card */ | ||
| 119 | |||
| 120 | /* --- PowerPC on-chip adapters */ | ||
| 121 | #define I2C_HW_OCP 0x120000 /* IBM on-chip I2C adapter */ | ||
| 122 | |||
| 123 | /* --- Broadcom SiByte adapters */ | ||
| 124 | #define I2C_HW_SIBYTE 0x150000 | ||
| 125 | |||
| 126 | /* --- SGI adapters */ | 91 | /* --- SGI adapters */ |
| 127 | #define I2C_HW_SGI_VINO 0x160000 | 92 | #define I2C_HW_SGI_VINO 0x160000 |
| 128 | 93 | ||
| 129 | /* --- XSCALE on-chip adapters */ | ||
| 130 | #define I2C_HW_IOP3XX 0x140000 | ||
| 131 | |||
| 132 | /* --- Au1550 PSC adapters adapters */ | ||
| 133 | #define I2C_HW_AU1550_PSC 0x1b0000 | ||
| 134 | |||
| 135 | /* --- SMBus only adapters */ | 94 | /* --- SMBus only adapters */ |
| 136 | #define I2C_HW_SMBUS_PIIX4 0x040000 | ||
| 137 | #define I2C_HW_SMBUS_ALI15X3 0x040001 | ||
| 138 | #define I2C_HW_SMBUS_VIA2 0x040002 | ||
| 139 | #define I2C_HW_SMBUS_I801 0x040004 | ||
| 140 | #define I2C_HW_SMBUS_AMD756 0x040005 | ||
| 141 | #define I2C_HW_SMBUS_SIS5595 0x040006 | ||
| 142 | #define I2C_HW_SMBUS_ALI1535 0x040007 | ||
| 143 | #define I2C_HW_SMBUS_SIS630 0x040008 | ||
| 144 | #define I2C_HW_SMBUS_SIS96X 0x040009 | ||
| 145 | #define I2C_HW_SMBUS_AMD8111 0x04000a | ||
| 146 | #define I2C_HW_SMBUS_SCX200 0x04000b | ||
| 147 | #define I2C_HW_SMBUS_NFORCE2 0x04000c | ||
| 148 | #define I2C_HW_SMBUS_W9968CF 0x04000d | 95 | #define I2C_HW_SMBUS_W9968CF 0x04000d |
| 149 | #define I2C_HW_SMBUS_OV511 0x04000e /* OV511(+) USB 1.1 webcam ICs */ | 96 | #define I2C_HW_SMBUS_OV511 0x04000e /* OV511(+) USB 1.1 webcam ICs */ |
| 150 | #define I2C_HW_SMBUS_OV518 0x04000f /* OV518(+) USB 1.1 webcam ICs */ | 97 | #define I2C_HW_SMBUS_OV518 0x04000f /* OV518(+) USB 1.1 webcam ICs */ |
| 151 | #define I2C_HW_SMBUS_CAFE 0x040012 /* Marvell 88ALP01 "CAFE" cam */ | 98 | #define I2C_HW_SMBUS_CAFE 0x040012 /* Marvell 88ALP01 "CAFE" cam */ |
| 152 | #define I2C_HW_SMBUS_ALI1563 0x040013 | ||
| 153 | |||
| 154 | /* --- MCP107 adapter */ | ||
| 155 | #define I2C_HW_MPC107 0x0d0000 | ||
| 156 | |||
| 157 | /* --- Embedded adapters */ | ||
| 158 | #define I2C_HW_MV64XXX 0x190000 | ||
| 159 | #define I2C_HW_BLACKFIN 0x190001 /* ADI Blackfin I2C TWI driver */ | ||
| 160 | 99 | ||
| 161 | /* --- Miscellaneous adapters */ | 100 | /* --- Miscellaneous adapters */ |
| 162 | #define I2C_HW_SAA7146 0x060000 /* SAA7146 video decoder bus */ | 101 | #define I2C_HW_SAA7146 0x060000 /* SAA7146 video decoder bus */ |
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index 33a5992d4936..fcfbfea3af72 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h | |||
| @@ -151,7 +151,7 @@ struct i2c_driver { | |||
| 151 | * has been dynamically allocated by the driver in the function above, | 151 | * has been dynamically allocated by the driver in the function above, |
| 152 | * it must be freed here. (LEGACY I2C DRIVERS ONLY) | 152 | * it must be freed here. (LEGACY I2C DRIVERS ONLY) |
| 153 | */ | 153 | */ |
| 154 | int (*detach_client)(struct i2c_client *); | 154 | int (*detach_client)(struct i2c_client *) __deprecated; |
| 155 | 155 | ||
| 156 | /* Standard driver model interfaces, for "new style" i2c drivers. | 156 | /* Standard driver model interfaces, for "new style" i2c drivers. |
| 157 | * With the driver model, device enumeration is NEVER done by drivers; | 157 | * With the driver model, device enumeration is NEVER done by drivers; |
| @@ -393,11 +393,7 @@ static inline void i2c_set_adapdata(struct i2c_adapter *dev, void *data) | |||
| 393 | #define I2C_CLASS_TV_ANALOG (1<<1) /* bttv + friends */ | 393 | #define I2C_CLASS_TV_ANALOG (1<<1) /* bttv + friends */ |
| 394 | #define I2C_CLASS_TV_DIGITAL (1<<2) /* dvb cards */ | 394 | #define I2C_CLASS_TV_DIGITAL (1<<2) /* dvb cards */ |
| 395 | #define I2C_CLASS_DDC (1<<3) /* DDC bus on graphics adapters */ | 395 | #define I2C_CLASS_DDC (1<<3) /* DDC bus on graphics adapters */ |
| 396 | #define I2C_CLASS_CAM_ANALOG (1<<4) /* camera with analog CCD */ | ||
| 397 | #define I2C_CLASS_CAM_DIGITAL (1<<5) /* most webcams */ | ||
| 398 | #define I2C_CLASS_SOUND (1<<6) /* sound devices */ | ||
| 399 | #define I2C_CLASS_SPD (1<<7) /* SPD EEPROMs and similar */ | 396 | #define I2C_CLASS_SPD (1<<7) /* SPD EEPROMs and similar */ |
| 400 | #define I2C_CLASS_ALL (UINT_MAX) /* all of the above */ | ||
| 401 | 397 | ||
| 402 | /* i2c_client_address_data is the struct for holding default client | 398 | /* i2c_client_address_data is the struct for holding default client |
| 403 | * addresses for a driver and for the parameters supplied on the | 399 | * addresses for a driver and for the parameters supplied on the |
| @@ -433,8 +429,10 @@ static inline int i2c_add_driver(struct i2c_driver *driver) | |||
| 433 | return i2c_register_driver(THIS_MODULE, driver); | 429 | return i2c_register_driver(THIS_MODULE, driver); |
| 434 | } | 430 | } |
| 435 | 431 | ||
| 436 | extern int i2c_attach_client(struct i2c_client *); | 432 | /* These are deprecated, your driver should use the standard .probe() |
| 437 | extern int i2c_detach_client(struct i2c_client *); | 433 | * and .remove() methods instead. */ |
| 434 | extern int __deprecated i2c_attach_client(struct i2c_client *); | ||
| 435 | extern int __deprecated i2c_detach_client(struct i2c_client *); | ||
| 438 | 436 | ||
| 439 | extern struct i2c_client *i2c_use_client(struct i2c_client *client); | 437 | extern struct i2c_client *i2c_use_client(struct i2c_client *client); |
| 440 | extern void i2c_release_client(struct i2c_client *client); | 438 | extern void i2c_release_client(struct i2c_client *client); |
diff --git a/include/linux/i2c/dm355evm_msp.h b/include/linux/i2c/dm355evm_msp.h new file mode 100644 index 000000000000..372470350fab --- /dev/null +++ b/include/linux/i2c/dm355evm_msp.h | |||
| @@ -0,0 +1,79 @@ | |||
| 1 | /* | ||
| 2 | * dm355evm_msp.h - support MSP430 microcontroller on DM355EVM board | ||
| 3 | */ | ||
| 4 | #ifndef __LINUX_I2C_DM355EVM_MSP | ||
| 5 | #define __LINUX_I2C_DM355EVM_MSP | ||
| 6 | |||
| 7 | /* | ||
| 8 | * Written against Spectrum's writeup for the A4 firmware revision, | ||
| 9 | * and tweaked to match source and rev D2 schematics by removing CPLD | ||
| 10 | * and NOR flash hooks (which were last appropriate in rev B boards). | ||
| 11 | * | ||
| 12 | * Note that the firmware supports a flavor of write posting ... to be | ||
| 13 | * sure a write completes, issue another read or write. | ||
| 14 | */ | ||
| 15 | |||
| 16 | /* utilities to access "registers" emulated by msp430 firmware */ | ||
| 17 | extern int dm355evm_msp_write(u8 value, u8 reg); | ||
| 18 | extern int dm355evm_msp_read(u8 reg); | ||
| 19 | |||
| 20 | |||
| 21 | /* command/control registers */ | ||
| 22 | #define DM355EVM_MSP_COMMAND 0x00 | ||
| 23 | # define MSP_COMMAND_NULL 0 | ||
| 24 | # define MSP_COMMAND_RESET_COLD 1 | ||
| 25 | # define MSP_COMMAND_RESET_WARM 2 | ||
| 26 | # define MSP_COMMAND_RESET_WARM_I 3 | ||
| 27 | # define MSP_COMMAND_POWEROFF 4 | ||
| 28 | # define MSP_COMMAND_IR_REINIT 5 | ||
| 29 | #define DM355EVM_MSP_STATUS 0x01 | ||
| 30 | # define MSP_STATUS_BAD_OFFSET BIT(0) | ||
| 31 | # define MSP_STATUS_BAD_COMMAND BIT(1) | ||
| 32 | # define MSP_STATUS_POWER_ERROR BIT(2) | ||
| 33 | # define MSP_STATUS_RXBUF_OVERRUN BIT(3) | ||
| 34 | #define DM355EVM_MSP_RESET 0x02 /* 0 bits == in reset */ | ||
| 35 | # define MSP_RESET_DC5 BIT(0) | ||
| 36 | # define MSP_RESET_TVP5154 BIT(2) | ||
| 37 | # define MSP_RESET_IMAGER BIT(3) | ||
| 38 | # define MSP_RESET_ETHERNET BIT(4) | ||
| 39 | # define MSP_RESET_SYS BIT(5) | ||
| 40 | # define MSP_RESET_AIC33 BIT(7) | ||
| 41 | |||
| 42 | /* GPIO registers ... bit patterns mostly match the source MSP ports */ | ||
| 43 | #define DM355EVM_MSP_LED 0x03 /* active low (MSP P4) */ | ||
| 44 | #define DM355EVM_MSP_SWITCH1 0x04 /* (MSP P5, masked) */ | ||
| 45 | # define MSP_SWITCH1_SW6_1 BIT(0) | ||
| 46 | # define MSP_SWITCH1_SW6_2 BIT(1) | ||
| 47 | # define MSP_SWITCH1_SW6_3 BIT(2) | ||
| 48 | # define MSP_SWITCH1_SW6_4 BIT(3) | ||
| 49 | # define MSP_SWITCH1_J1 BIT(4) /* NTSC/PAL */ | ||
| 50 | # define MSP_SWITCH1_MSP_INT BIT(5) /* active low */ | ||
| 51 | #define DM355EVM_MSP_SWITCH2 0x05 /* (MSP P6, masked) */ | ||
| 52 | # define MSP_SWITCH2_SW10 BIT(3) | ||
| 53 | # define MSP_SWITCH2_SW11 BIT(4) | ||
| 54 | # define MSP_SWITCH2_SW12 BIT(5) | ||
| 55 | # define MSP_SWITCH2_SW13 BIT(6) | ||
| 56 | # define MSP_SWITCH2_SW14 BIT(7) | ||
| 57 | #define DM355EVM_MSP_SDMMC 0x06 /* (MSP P2, masked) */ | ||
| 58 | # define MSP_SDMMC_0_WP BIT(1) | ||
| 59 | # define MSP_SDMMC_0_CD BIT(2) /* active low */ | ||
| 60 | # define MSP_SDMMC_1_WP BIT(3) | ||
| 61 | # define MSP_SDMMC_1_CD BIT(4) /* active low */ | ||
| 62 | #define DM355EVM_MSP_FIRMREV 0x07 /* not a GPIO (out of order) */ | ||
| 63 | #define DM355EVM_MSP_VIDEO_IN 0x08 /* (MSP P3, masked) */ | ||
| 64 | # define MSP_VIDEO_IMAGER BIT(7) /* low == tvp5146 */ | ||
| 65 | |||
| 66 | /* power supply registers are currently omitted */ | ||
| 67 | |||
| 68 | /* RTC registers */ | ||
| 69 | #define DM355EVM_MSP_RTC_0 0x12 /* LSB */ | ||
| 70 | #define DM355EVM_MSP_RTC_1 0x13 | ||
| 71 | #define DM355EVM_MSP_RTC_2 0x14 | ||
| 72 | #define DM355EVM_MSP_RTC_3 0x15 /* MSB */ | ||
| 73 | |||
| 74 | /* input event queue registers; code == ((HIGH << 8) | LOW) */ | ||
| 75 | #define DM355EVM_MSP_INPUT_COUNT 0x16 /* decrement by reading LOW */ | ||
| 76 | #define DM355EVM_MSP_INPUT_HIGH 0x17 | ||
| 77 | #define DM355EVM_MSP_INPUT_LOW 0x18 | ||
| 78 | |||
| 79 | #endif /* __LINUX_I2C_DM355EVM_MSP */ | ||
diff --git a/include/linux/i2c/tsc2007.h b/include/linux/i2c/tsc2007.h new file mode 100644 index 000000000000..c6361fbb7bf9 --- /dev/null +++ b/include/linux/i2c/tsc2007.h | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | #ifndef __LINUX_I2C_TSC2007_H | ||
| 2 | #define __LINUX_I2C_TSC2007_H | ||
| 3 | |||
| 4 | /* linux/i2c/tsc2007.h */ | ||
| 5 | |||
| 6 | struct tsc2007_platform_data { | ||
| 7 | u16 model; /* 2007. */ | ||
| 8 | u16 x_plate_ohms; | ||
| 9 | |||
| 10 | int (*get_pendown_state)(void); | ||
| 11 | void (*clear_penirq)(void); /* If needed, clear 2nd level | ||
| 12 | interrupt source */ | ||
| 13 | int (*init_platform_hw)(void); | ||
| 14 | void (*exit_platform_hw)(void); | ||
| 15 | }; | ||
| 16 | |||
| 17 | #endif | ||
diff --git a/include/linux/i2c/twl4030.h b/include/linux/i2c/twl4030.h index fb604dcd38f1..8137f660a5cc 100644 --- a/include/linux/i2c/twl4030.h +++ b/include/linux/i2c/twl4030.h | |||
| @@ -78,8 +78,8 @@ int twl4030_i2c_read_u8(u8 mod_no, u8 *val, u8 reg); | |||
| 78 | * IMPORTANT: For twl4030_i2c_write(), allocate num_bytes + 1 | 78 | * IMPORTANT: For twl4030_i2c_write(), allocate num_bytes + 1 |
| 79 | * for the value, and populate your data starting at offset 1. | 79 | * for the value, and populate your data starting at offset 1. |
| 80 | */ | 80 | */ |
| 81 | int twl4030_i2c_write(u8 mod_no, u8 *value, u8 reg, u8 num_bytes); | 81 | int twl4030_i2c_write(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes); |
| 82 | int twl4030_i2c_read(u8 mod_no, u8 *value, u8 reg, u8 num_bytes); | 82 | int twl4030_i2c_read(u8 mod_no, u8 *value, u8 reg, unsigned num_bytes); |
| 83 | 83 | ||
| 84 | /*----------------------------------------------------------------------*/ | 84 | /*----------------------------------------------------------------------*/ |
| 85 | 85 | ||
| @@ -234,6 +234,9 @@ struct twl4030_gpio_platform_data { | |||
| 234 | /* gpio-n should control VMMC(n+1) if BIT(n) in mmc_cd is set */ | 234 | /* gpio-n should control VMMC(n+1) if BIT(n) in mmc_cd is set */ |
| 235 | u8 mmc_cd; | 235 | u8 mmc_cd; |
| 236 | 236 | ||
| 237 | /* if BIT(N) is set, or VMMC(n+1) is linked, debounce GPIO-N */ | ||
| 238 | u32 debounce; | ||
| 239 | |||
| 237 | /* For gpio-N, bit (1 << N) in "pullups" is set if that pullup | 240 | /* For gpio-N, bit (1 << N) in "pullups" is set if that pullup |
| 238 | * should be enabled. Else, if that bit is set in "pulldowns", | 241 | * should be enabled. Else, if that bit is set in "pulldowns", |
| 239 | * that pulldown is enabled. Don't waste power by letting any | 242 | * that pulldown is enabled. Don't waste power by letting any |
| @@ -278,6 +281,18 @@ struct twl4030_platform_data { | |||
| 278 | struct twl4030_keypad_data *keypad; | 281 | struct twl4030_keypad_data *keypad; |
| 279 | struct twl4030_usb_data *usb; | 282 | struct twl4030_usb_data *usb; |
| 280 | 283 | ||
| 284 | /* LDO regulators */ | ||
| 285 | struct regulator_init_data *vdac; | ||
| 286 | struct regulator_init_data *vpll1; | ||
| 287 | struct regulator_init_data *vpll2; | ||
| 288 | struct regulator_init_data *vmmc1; | ||
| 289 | struct regulator_init_data *vmmc2; | ||
| 290 | struct regulator_init_data *vsim; | ||
| 291 | struct regulator_init_data *vaux1; | ||
| 292 | struct regulator_init_data *vaux2; | ||
| 293 | struct regulator_init_data *vaux3; | ||
| 294 | struct regulator_init_data *vaux4; | ||
| 295 | |||
| 281 | /* REVISIT more to come ... _nothing_ should be hard-wired */ | 296 | /* REVISIT more to come ... _nothing_ should be hard-wired */ |
| 282 | }; | 297 | }; |
| 283 | 298 | ||
| @@ -285,33 +300,6 @@ struct twl4030_platform_data { | |||
| 285 | 300 | ||
| 286 | int twl4030_sih_setup(int module); | 301 | int twl4030_sih_setup(int module); |
| 287 | 302 | ||
| 288 | /* | ||
| 289 | * FIXME completely stop using TWL4030_IRQ_BASE ... instead, pass the | ||
| 290 | * IRQ data to subsidiary devices using platform device resources. | ||
| 291 | */ | ||
| 292 | |||
| 293 | /* IRQ information-need base */ | ||
| 294 | #include <mach/irqs.h> | ||
| 295 | /* TWL4030 interrupts */ | ||
| 296 | |||
| 297 | /* #define TWL4030_MODIRQ_GPIO (TWL4030_IRQ_BASE + 0) */ | ||
| 298 | #define TWL4030_MODIRQ_KEYPAD (TWL4030_IRQ_BASE + 1) | ||
| 299 | #define TWL4030_MODIRQ_BCI (TWL4030_IRQ_BASE + 2) | ||
| 300 | #define TWL4030_MODIRQ_MADC (TWL4030_IRQ_BASE + 3) | ||
| 301 | /* #define TWL4030_MODIRQ_USB (TWL4030_IRQ_BASE + 4) */ | ||
| 302 | /* #define TWL4030_MODIRQ_PWR (TWL4030_IRQ_BASE + 5) */ | ||
| 303 | |||
| 304 | #define TWL4030_PWRIRQ_PWRBTN (TWL4030_PWR_IRQ_BASE + 0) | ||
| 305 | /* #define TWL4030_PWRIRQ_CHG_PRES (TWL4030_PWR_IRQ_BASE + 1) */ | ||
| 306 | /* #define TWL4030_PWRIRQ_USB_PRES (TWL4030_PWR_IRQ_BASE + 2) */ | ||
| 307 | /* #define TWL4030_PWRIRQ_RTC (TWL4030_PWR_IRQ_BASE + 3) */ | ||
| 308 | /* #define TWL4030_PWRIRQ_HOT_DIE (TWL4030_PWR_IRQ_BASE + 4) */ | ||
| 309 | /* #define TWL4030_PWRIRQ_PWROK_TIMEOUT (TWL4030_PWR_IRQ_BASE + 5) */ | ||
| 310 | /* #define TWL4030_PWRIRQ_MBCHG (TWL4030_PWR_IRQ_BASE + 6) */ | ||
| 311 | /* #define TWL4030_PWRIRQ_SC_DETECT (TWL4030_PWR_IRQ_BASE + 7) */ | ||
| 312 | |||
| 313 | /* Rest are unsued currently*/ | ||
| 314 | |||
| 315 | /* Offsets to Power Registers */ | 303 | /* Offsets to Power Registers */ |
| 316 | #define TWL4030_VDAC_DEV_GRP 0x3B | 304 | #define TWL4030_VDAC_DEV_GRP 0x3B |
| 317 | #define TWL4030_VDAC_DEDICATED 0x3E | 305 | #define TWL4030_VDAC_DEDICATED 0x3E |
| @@ -322,16 +310,6 @@ int twl4030_sih_setup(int module); | |||
| 322 | #define TWL4030_VAUX3_DEV_GRP 0x1F | 310 | #define TWL4030_VAUX3_DEV_GRP 0x1F |
| 323 | #define TWL4030_VAUX3_DEDICATED 0x22 | 311 | #define TWL4030_VAUX3_DEDICATED 0x22 |
| 324 | 312 | ||
| 325 | /* TWL4030 GPIO interrupt definitions */ | ||
| 326 | |||
| 327 | #define TWL4030_GPIO_IRQ_NO(n) (TWL4030_GPIO_IRQ_BASE + (n)) | ||
| 328 | |||
| 329 | /* | ||
| 330 | * Exported TWL4030 GPIO APIs | ||
| 331 | * | ||
| 332 | * WARNING -- use standard GPIO and IRQ calls instead; these will vanish. | ||
| 333 | */ | ||
| 334 | int twl4030_set_gpio_debounce(int gpio, int enable); | ||
| 335 | 313 | ||
| 336 | #if defined(CONFIG_TWL4030_BCI_BATTERY) || \ | 314 | #if defined(CONFIG_TWL4030_BCI_BATTERY) || \ |
| 337 | defined(CONFIG_TWL4030_BCI_BATTERY_MODULE) | 315 | defined(CONFIG_TWL4030_BCI_BATTERY_MODULE) |
| @@ -340,4 +318,38 @@ int twl4030_set_gpio_debounce(int gpio, int enable); | |||
| 340 | static inline int twl4030charger_usb_en(int enable) { return 0; } | 318 | static inline int twl4030charger_usb_en(int enable) { return 0; } |
| 341 | #endif | 319 | #endif |
| 342 | 320 | ||
| 321 | /*----------------------------------------------------------------------*/ | ||
| 322 | |||
| 323 | /* Linux-specific regulator identifiers ... for now, we only support | ||
| 324 | * the LDOs, and leave the three buck converters alone. VDD1 and VDD2 | ||
| 325 | * need to tie into hardware based voltage scaling (cpufreq etc), while | ||
| 326 | * VIO is generally fixed. | ||
| 327 | */ | ||
| 328 | |||
| 329 | /* EXTERNAL dc-to-dc buck converters */ | ||
| 330 | #define TWL4030_REG_VDD1 0 | ||
| 331 | #define TWL4030_REG_VDD2 1 | ||
| 332 | #define TWL4030_REG_VIO 2 | ||
| 333 | |||
| 334 | /* EXTERNAL LDOs */ | ||
| 335 | #define TWL4030_REG_VDAC 3 | ||
| 336 | #define TWL4030_REG_VPLL1 4 | ||
| 337 | #define TWL4030_REG_VPLL2 5 /* not on all chips */ | ||
| 338 | #define TWL4030_REG_VMMC1 6 | ||
| 339 | #define TWL4030_REG_VMMC2 7 /* not on all chips */ | ||
| 340 | #define TWL4030_REG_VSIM 8 /* not on all chips */ | ||
| 341 | #define TWL4030_REG_VAUX1 9 /* not on all chips */ | ||
| 342 | #define TWL4030_REG_VAUX2_4030 10 /* (twl4030-specific) */ | ||
| 343 | #define TWL4030_REG_VAUX2 11 /* (twl5030 and newer) */ | ||
| 344 | #define TWL4030_REG_VAUX3 12 /* not on all chips */ | ||
| 345 | #define TWL4030_REG_VAUX4 13 /* not on all chips */ | ||
| 346 | |||
| 347 | /* INTERNAL LDOs */ | ||
| 348 | #define TWL4030_REG_VINTANA1 14 | ||
| 349 | #define TWL4030_REG_VINTANA2 15 | ||
| 350 | #define TWL4030_REG_VINTDIG 16 | ||
| 351 | #define TWL4030_REG_VUSB1V5 17 | ||
| 352 | #define TWL4030_REG_VUSB1V8 18 | ||
| 353 | #define TWL4030_REG_VUSB3V1 19 | ||
| 354 | |||
| 343 | #endif /* End of __TWL4030_H */ | 355 | #endif /* End of __TWL4030_H */ |
diff --git a/include/linux/icmpv6.h b/include/linux/icmpv6.h index a93a8dd33118..10d701eec484 100644 --- a/include/linux/icmpv6.h +++ b/include/linux/icmpv6.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef _LINUX_ICMPV6_H | 1 | #ifndef _LINUX_ICMPV6_H |
| 2 | #define _LINUX_ICMPV6_H | 2 | #define _LINUX_ICMPV6_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <asm/byteorder.h> | 5 | #include <asm/byteorder.h> |
| 5 | 6 | ||
| 6 | struct icmp6hdr { | 7 | struct icmp6hdr { |
diff --git a/include/linux/ide.h b/include/linux/ide.h index e99c56de7f56..194da5a4b0d6 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
| @@ -33,24 +33,13 @@ | |||
| 33 | #endif | 33 | #endif |
| 34 | 34 | ||
| 35 | /* | 35 | /* |
| 36 | * Used to indicate "no IRQ", should be a value that cannot be an IRQ | ||
| 37 | * number. | ||
| 38 | */ | ||
| 39 | |||
| 40 | #define IDE_NO_IRQ (-1) | ||
| 41 | |||
| 42 | typedef unsigned char byte; /* used everywhere */ | ||
| 43 | |||
| 44 | /* | ||
| 45 | * Probably not wise to fiddle with these | 36 | * Probably not wise to fiddle with these |
| 46 | */ | 37 | */ |
| 38 | #define IDE_DEFAULT_MAX_FAILURES 1 | ||
| 47 | #define ERROR_MAX 8 /* Max read/write errors per sector */ | 39 | #define ERROR_MAX 8 /* Max read/write errors per sector */ |
| 48 | #define ERROR_RESET 3 /* Reset controller every 4th retry */ | 40 | #define ERROR_RESET 3 /* Reset controller every 4th retry */ |
| 49 | #define ERROR_RECAL 1 /* Recalibrate every 2nd retry */ | 41 | #define ERROR_RECAL 1 /* Recalibrate every 2nd retry */ |
| 50 | 42 | ||
| 51 | #define HWIF(drive) ((ide_hwif_t *)((drive)->hwif)) | ||
| 52 | #define HWGROUP(drive) ((ide_hwgroup_t *)(HWIF(drive)->hwgroup)) | ||
| 53 | |||
| 54 | /* | 43 | /* |
| 55 | * Definitions for accessing IDE controller registers | 44 | * Definitions for accessing IDE controller registers |
| 56 | */ | 45 | */ |
| @@ -192,9 +181,6 @@ typedef struct hw_regs_s { | |||
| 192 | unsigned long config; | 181 | unsigned long config; |
| 193 | } hw_regs_t; | 182 | } hw_regs_t; |
| 194 | 183 | ||
| 195 | void ide_init_port_data(struct hwif_s *, unsigned int); | ||
| 196 | void ide_init_port_hw(struct hwif_s *, hw_regs_t *); | ||
| 197 | |||
| 198 | static inline void ide_std_init_ports(hw_regs_t *hw, | 184 | static inline void ide_std_init_ports(hw_regs_t *hw, |
| 199 | unsigned long io_addr, | 185 | unsigned long io_addr, |
| 200 | unsigned long ctl_addr) | 186 | unsigned long ctl_addr) |
| @@ -403,6 +389,7 @@ enum { | |||
| 403 | * This is used for several packet commands (not for READ/WRITE commands). | 389 | * This is used for several packet commands (not for READ/WRITE commands). |
| 404 | */ | 390 | */ |
| 405 | #define IDE_PC_BUFFER_SIZE 256 | 391 | #define IDE_PC_BUFFER_SIZE 256 |
| 392 | #define ATAPI_WAIT_PC (60 * HZ) | ||
| 406 | 393 | ||
| 407 | struct ide_atapi_pc { | 394 | struct ide_atapi_pc { |
| 408 | /* actual packet bytes */ | 395 | /* actual packet bytes */ |
| @@ -439,18 +426,14 @@ struct ide_atapi_pc { | |||
| 439 | struct idetape_bh *bh; | 426 | struct idetape_bh *bh; |
| 440 | char *b_data; | 427 | char *b_data; |
| 441 | 428 | ||
| 442 | /* idescsi only for now */ | ||
| 443 | struct scatterlist *sg; | 429 | struct scatterlist *sg; |
| 444 | unsigned int sg_cnt; | 430 | unsigned int sg_cnt; |
| 445 | 431 | ||
| 446 | struct scsi_cmnd *scsi_cmd; | ||
| 447 | void (*done) (struct scsi_cmnd *); | ||
| 448 | |||
| 449 | unsigned long timeout; | 432 | unsigned long timeout; |
| 450 | }; | 433 | }; |
| 451 | 434 | ||
| 452 | struct ide_devset; | 435 | struct ide_devset; |
| 453 | struct ide_driver_s; | 436 | struct ide_driver; |
| 454 | 437 | ||
| 455 | #ifdef CONFIG_BLK_DEV_IDEACPI | 438 | #ifdef CONFIG_BLK_DEV_IDEACPI |
| 456 | struct ide_acpi_drive_link; | 439 | struct ide_acpi_drive_link; |
| @@ -480,53 +463,53 @@ enum { | |||
| 480 | 463 | ||
| 481 | /* ide-cd */ | 464 | /* ide-cd */ |
| 482 | /* Drive cannot eject the disc. */ | 465 | /* Drive cannot eject the disc. */ |
| 483 | IDE_AFLAG_NO_EJECT = (1 << 3), | 466 | IDE_AFLAG_NO_EJECT = (1 << 1), |
| 484 | /* Drive is a pre ATAPI 1.2 drive. */ | 467 | /* Drive is a pre ATAPI 1.2 drive. */ |
| 485 | IDE_AFLAG_PRE_ATAPI12 = (1 << 4), | 468 | IDE_AFLAG_PRE_ATAPI12 = (1 << 2), |
| 486 | /* TOC addresses are in BCD. */ | 469 | /* TOC addresses are in BCD. */ |
| 487 | IDE_AFLAG_TOCADDR_AS_BCD = (1 << 5), | 470 | IDE_AFLAG_TOCADDR_AS_BCD = (1 << 3), |
| 488 | /* TOC track numbers are in BCD. */ | 471 | /* TOC track numbers are in BCD. */ |
| 489 | IDE_AFLAG_TOCTRACKS_AS_BCD = (1 << 6), | 472 | IDE_AFLAG_TOCTRACKS_AS_BCD = (1 << 4), |
| 490 | /* | 473 | /* |
| 491 | * Drive does not provide data in multiples of SECTOR_SIZE | 474 | * Drive does not provide data in multiples of SECTOR_SIZE |
| 492 | * when more than one interrupt is needed. | 475 | * when more than one interrupt is needed. |
| 493 | */ | 476 | */ |
| 494 | IDE_AFLAG_LIMIT_NFRAMES = (1 << 7), | 477 | IDE_AFLAG_LIMIT_NFRAMES = (1 << 5), |
| 495 | /* Saved TOC information is current. */ | 478 | /* Saved TOC information is current. */ |
| 496 | IDE_AFLAG_TOC_VALID = (1 << 9), | 479 | IDE_AFLAG_TOC_VALID = (1 << 6), |
| 497 | /* We think that the drive door is locked. */ | 480 | /* We think that the drive door is locked. */ |
| 498 | IDE_AFLAG_DOOR_LOCKED = (1 << 10), | 481 | IDE_AFLAG_DOOR_LOCKED = (1 << 7), |
| 499 | /* SET_CD_SPEED command is unsupported. */ | 482 | /* SET_CD_SPEED command is unsupported. */ |
| 500 | IDE_AFLAG_NO_SPEED_SELECT = (1 << 11), | 483 | IDE_AFLAG_NO_SPEED_SELECT = (1 << 8), |
| 501 | IDE_AFLAG_VERTOS_300_SSD = (1 << 12), | 484 | IDE_AFLAG_VERTOS_300_SSD = (1 << 9), |
| 502 | IDE_AFLAG_VERTOS_600_ESD = (1 << 13), | 485 | IDE_AFLAG_VERTOS_600_ESD = (1 << 10), |
| 503 | IDE_AFLAG_SANYO_3CD = (1 << 14), | 486 | IDE_AFLAG_SANYO_3CD = (1 << 11), |
| 504 | IDE_AFLAG_FULL_CAPS_PAGE = (1 << 15), | 487 | IDE_AFLAG_FULL_CAPS_PAGE = (1 << 12), |
| 505 | IDE_AFLAG_PLAY_AUDIO_OK = (1 << 16), | 488 | IDE_AFLAG_PLAY_AUDIO_OK = (1 << 13), |
| 506 | IDE_AFLAG_LE_SPEED_FIELDS = (1 << 17), | 489 | IDE_AFLAG_LE_SPEED_FIELDS = (1 << 14), |
| 507 | 490 | ||
| 508 | /* ide-floppy */ | 491 | /* ide-floppy */ |
| 509 | /* Avoid commands not supported in Clik drive */ | 492 | /* Avoid commands not supported in Clik drive */ |
| 510 | IDE_AFLAG_CLIK_DRIVE = (1 << 19), | 493 | IDE_AFLAG_CLIK_DRIVE = (1 << 15), |
| 511 | /* Requires BH algorithm for packets */ | 494 | /* Requires BH algorithm for packets */ |
| 512 | IDE_AFLAG_ZIP_DRIVE = (1 << 20), | 495 | IDE_AFLAG_ZIP_DRIVE = (1 << 16), |
| 513 | /* Supports format progress report */ | 496 | /* Supports format progress report */ |
| 514 | IDE_AFLAG_SRFP = (1 << 22), | 497 | IDE_AFLAG_SRFP = (1 << 17), |
| 515 | 498 | ||
| 516 | /* ide-tape */ | 499 | /* ide-tape */ |
| 517 | IDE_AFLAG_IGNORE_DSC = (1 << 23), | 500 | IDE_AFLAG_IGNORE_DSC = (1 << 18), |
| 518 | /* 0 When the tape position is unknown */ | 501 | /* 0 When the tape position is unknown */ |
| 519 | IDE_AFLAG_ADDRESS_VALID = (1 << 24), | 502 | IDE_AFLAG_ADDRESS_VALID = (1 << 19), |
| 520 | /* Device already opened */ | 503 | /* Device already opened */ |
| 521 | IDE_AFLAG_BUSY = (1 << 25), | 504 | IDE_AFLAG_BUSY = (1 << 20), |
| 522 | /* Attempt to auto-detect the current user block size */ | 505 | /* Attempt to auto-detect the current user block size */ |
| 523 | IDE_AFLAG_DETECT_BS = (1 << 26), | 506 | IDE_AFLAG_DETECT_BS = (1 << 21), |
| 524 | /* Currently on a filemark */ | 507 | /* Currently on a filemark */ |
| 525 | IDE_AFLAG_FILEMARK = (1 << 27), | 508 | IDE_AFLAG_FILEMARK = (1 << 22), |
| 526 | /* 0 = no tape is loaded, so we don't rewind after ejecting */ | 509 | /* 0 = no tape is loaded, so we don't rewind after ejecting */ |
| 527 | IDE_AFLAG_MEDIUM_PRESENT = (1 << 28), | 510 | IDE_AFLAG_MEDIUM_PRESENT = (1 << 23), |
| 528 | 511 | ||
| 529 | IDE_AFLAG_NO_AUTOCLOSE = (1 << 29), | 512 | IDE_AFLAG_NO_AUTOCLOSE = (1 << 24), |
| 530 | }; | 513 | }; |
| 531 | 514 | ||
| 532 | /* device flags */ | 515 | /* device flags */ |
| @@ -565,28 +548,26 @@ enum { | |||
| 565 | IDE_DFLAG_NODMA = (1 << 16), | 548 | IDE_DFLAG_NODMA = (1 << 16), |
| 566 | /* powermanagment told us not to do anything, so sleep nicely */ | 549 | /* powermanagment told us not to do anything, so sleep nicely */ |
| 567 | IDE_DFLAG_BLOCKED = (1 << 17), | 550 | IDE_DFLAG_BLOCKED = (1 << 17), |
| 568 | /* ide-scsi emulation */ | ||
| 569 | IDE_DFLAG_SCSI = (1 << 18), | ||
| 570 | /* sleeping & sleep field valid */ | 551 | /* sleeping & sleep field valid */ |
| 571 | IDE_DFLAG_SLEEPING = (1 << 19), | 552 | IDE_DFLAG_SLEEPING = (1 << 18), |
| 572 | IDE_DFLAG_POST_RESET = (1 << 20), | 553 | IDE_DFLAG_POST_RESET = (1 << 19), |
| 573 | IDE_DFLAG_UDMA33_WARNED = (1 << 21), | 554 | IDE_DFLAG_UDMA33_WARNED = (1 << 20), |
| 574 | IDE_DFLAG_LBA48 = (1 << 22), | 555 | IDE_DFLAG_LBA48 = (1 << 21), |
| 575 | /* status of write cache */ | 556 | /* status of write cache */ |
| 576 | IDE_DFLAG_WCACHE = (1 << 23), | 557 | IDE_DFLAG_WCACHE = (1 << 22), |
| 577 | /* used for ignoring ATA_DF */ | 558 | /* used for ignoring ATA_DF */ |
| 578 | IDE_DFLAG_NOWERR = (1 << 24), | 559 | IDE_DFLAG_NOWERR = (1 << 23), |
| 579 | /* retrying in PIO */ | 560 | /* retrying in PIO */ |
| 580 | IDE_DFLAG_DMA_PIO_RETRY = (1 << 25), | 561 | IDE_DFLAG_DMA_PIO_RETRY = (1 << 24), |
| 581 | IDE_DFLAG_LBA = (1 << 26), | 562 | IDE_DFLAG_LBA = (1 << 25), |
| 582 | /* don't unload heads */ | 563 | /* don't unload heads */ |
| 583 | IDE_DFLAG_NO_UNLOAD = (1 << 27), | 564 | IDE_DFLAG_NO_UNLOAD = (1 << 26), |
| 584 | /* heads unloaded, please don't reset port */ | 565 | /* heads unloaded, please don't reset port */ |
| 585 | IDE_DFLAG_PARKED = (1 << 28), | 566 | IDE_DFLAG_PARKED = (1 << 27), |
| 586 | IDE_DFLAG_MEDIA_CHANGED = (1 << 29), | 567 | IDE_DFLAG_MEDIA_CHANGED = (1 << 28), |
| 587 | /* write protect */ | 568 | /* write protect */ |
| 588 | IDE_DFLAG_WP = (1 << 30), | 569 | IDE_DFLAG_WP = (1 << 29), |
| 589 | IDE_DFLAG_FORMAT_IN_PROGRESS = (1 << 31), | 570 | IDE_DFLAG_FORMAT_IN_PROGRESS = (1 << 30), |
| 590 | }; | 571 | }; |
| 591 | 572 | ||
| 592 | struct ide_drive_s { | 573 | struct ide_drive_s { |
| @@ -596,7 +577,6 @@ struct ide_drive_s { | |||
| 596 | struct request_queue *queue; /* request queue */ | 577 | struct request_queue *queue; /* request queue */ |
| 597 | 578 | ||
| 598 | struct request *rq; /* current request */ | 579 | struct request *rq; /* current request */ |
| 599 | struct ide_drive_s *next; /* circular list of hwgroup drives */ | ||
| 600 | void *driver_data; /* extra driver data */ | 580 | void *driver_data; /* extra driver data */ |
| 601 | u16 *id; /* identification info */ | 581 | u16 *id; /* identification info */ |
| 602 | #ifdef CONFIG_IDE_PROC_FS | 582 | #ifdef CONFIG_IDE_PROC_FS |
| @@ -610,8 +590,6 @@ struct ide_drive_s { | |||
| 610 | unsigned long dev_flags; | 590 | unsigned long dev_flags; |
| 611 | 591 | ||
| 612 | unsigned long sleep; /* sleep until this time */ | 592 | unsigned long sleep; /* sleep until this time */ |
| 613 | unsigned long service_start; /* time we started last request */ | ||
| 614 | unsigned long service_time; /* service time of last request */ | ||
| 615 | unsigned long timeout; /* max time to wait for irq */ | 593 | unsigned long timeout; /* max time to wait for irq */ |
| 616 | 594 | ||
| 617 | special_t special; /* special action flags */ | 595 | special_t special; /* special action flags */ |
| @@ -672,6 +650,8 @@ struct ide_drive_s { | |||
| 672 | int (*pc_io_buffers)(struct ide_drive_s *, struct ide_atapi_pc *, | 650 | int (*pc_io_buffers)(struct ide_drive_s *, struct ide_atapi_pc *, |
| 673 | unsigned int, int); | 651 | unsigned int, int); |
| 674 | 652 | ||
| 653 | ide_startstop_t (*irq_handler)(struct ide_drive_s *); | ||
| 654 | |||
| 675 | unsigned long atapi_flags; | 655 | unsigned long atapi_flags; |
| 676 | 656 | ||
| 677 | struct ide_atapi_pc request_sense_pc; | 657 | struct ide_atapi_pc request_sense_pc; |
| @@ -694,7 +674,6 @@ struct ide_tp_ops { | |||
| 694 | void (*exec_command)(struct hwif_s *, u8); | 674 | void (*exec_command)(struct hwif_s *, u8); |
| 695 | u8 (*read_status)(struct hwif_s *); | 675 | u8 (*read_status)(struct hwif_s *); |
| 696 | u8 (*read_altstatus)(struct hwif_s *); | 676 | u8 (*read_altstatus)(struct hwif_s *); |
| 697 | u8 (*read_sff_dma_status)(struct hwif_s *); | ||
| 698 | 677 | ||
| 699 | void (*set_irq)(struct hwif_s *, int); | 678 | void (*set_irq)(struct hwif_s *, int); |
| 700 | 679 | ||
| @@ -755,14 +734,17 @@ struct ide_dma_ops { | |||
| 755 | int (*dma_test_irq)(struct ide_drive_s *); | 734 | int (*dma_test_irq)(struct ide_drive_s *); |
| 756 | void (*dma_lost_irq)(struct ide_drive_s *); | 735 | void (*dma_lost_irq)(struct ide_drive_s *); |
| 757 | void (*dma_timeout)(struct ide_drive_s *); | 736 | void (*dma_timeout)(struct ide_drive_s *); |
| 737 | /* | ||
| 738 | * The following method is optional and only required to be | ||
| 739 | * implemented for the SFF-8038i compatible controllers. | ||
| 740 | */ | ||
| 741 | u8 (*dma_sff_read_status)(struct hwif_s *); | ||
| 758 | }; | 742 | }; |
| 759 | 743 | ||
| 760 | struct ide_host; | 744 | struct ide_host; |
| 761 | 745 | ||
| 762 | typedef struct hwif_s { | 746 | typedef struct hwif_s { |
| 763 | struct hwif_s *next; /* for linked-list in ide_hwgroup_t */ | ||
| 764 | struct hwif_s *mate; /* other hwif from same PCI chip */ | 747 | struct hwif_s *mate; /* other hwif from same PCI chip */ |
| 765 | struct hwgroup_s *hwgroup; /* actually (ide_hwgroup_t *) */ | ||
| 766 | struct proc_dir_entry *proc; /* /proc/ide/ directory entry */ | 748 | struct proc_dir_entry *proc; /* /proc/ide/ directory entry */ |
| 767 | 749 | ||
| 768 | struct ide_host *host; | 750 | struct ide_host *host; |
| @@ -773,7 +755,7 @@ typedef struct hwif_s { | |||
| 773 | 755 | ||
| 774 | unsigned long sata_scr[SATA_NR_PORTS]; | 756 | unsigned long sata_scr[SATA_NR_PORTS]; |
| 775 | 757 | ||
| 776 | ide_drive_t drives[MAX_DRIVES]; /* drive info */ | 758 | ide_drive_t *devices[MAX_DRIVES + 1]; |
| 777 | 759 | ||
| 778 | u8 major; /* our major number */ | 760 | u8 major; /* our major number */ |
| 779 | u8 index; /* 0 for ide0; 1 for ide1; ... */ | 761 | u8 index; /* 0 for ide0; 1 for ide1; ... */ |
| @@ -839,7 +821,7 @@ typedef struct hwif_s { | |||
| 839 | unsigned extra_ports; /* number of extra dma ports */ | 821 | unsigned extra_ports; /* number of extra dma ports */ |
| 840 | 822 | ||
| 841 | unsigned present : 1; /* this interface exists */ | 823 | unsigned present : 1; /* this interface exists */ |
| 842 | unsigned sg_mapped : 1; /* sg_table and sg_nents are ready */ | 824 | unsigned busy : 1; /* serializes devices on a port */ |
| 843 | 825 | ||
| 844 | struct device gendev; | 826 | struct device gendev; |
| 845 | struct device *portdev; | 827 | struct device *portdev; |
| @@ -851,19 +833,49 @@ typedef struct hwif_s { | |||
| 851 | #ifdef CONFIG_BLK_DEV_IDEACPI | 833 | #ifdef CONFIG_BLK_DEV_IDEACPI |
| 852 | struct ide_acpi_hwif_link *acpidata; | 834 | struct ide_acpi_hwif_link *acpidata; |
| 853 | #endif | 835 | #endif |
| 836 | |||
| 837 | /* IRQ handler, if active */ | ||
| 838 | ide_startstop_t (*handler)(ide_drive_t *); | ||
| 839 | |||
| 840 | /* BOOL: polling active & poll_timeout field valid */ | ||
| 841 | unsigned int polling : 1; | ||
| 842 | |||
| 843 | /* current drive */ | ||
| 844 | ide_drive_t *cur_dev; | ||
| 845 | |||
| 846 | /* current request */ | ||
| 847 | struct request *rq; | ||
| 848 | |||
| 849 | /* failsafe timer */ | ||
| 850 | struct timer_list timer; | ||
| 851 | /* timeout value during long polls */ | ||
| 852 | unsigned long poll_timeout; | ||
| 853 | /* queried upon timeouts */ | ||
| 854 | int (*expiry)(ide_drive_t *); | ||
| 855 | |||
| 856 | int req_gen; | ||
| 857 | int req_gen_timer; | ||
| 858 | |||
| 859 | spinlock_t lock; | ||
| 854 | } ____cacheline_internodealigned_in_smp ide_hwif_t; | 860 | } ____cacheline_internodealigned_in_smp ide_hwif_t; |
| 855 | 861 | ||
| 856 | #define MAX_HOST_PORTS 4 | 862 | #define MAX_HOST_PORTS 4 |
| 857 | 863 | ||
| 858 | struct ide_host { | 864 | struct ide_host { |
| 859 | ide_hwif_t *ports[MAX_HOST_PORTS]; | 865 | ide_hwif_t *ports[MAX_HOST_PORTS + 1]; |
| 860 | unsigned int n_ports; | 866 | unsigned int n_ports; |
| 861 | struct device *dev[2]; | 867 | struct device *dev[2]; |
| 862 | unsigned int (*init_chipset)(struct pci_dev *); | 868 | unsigned int (*init_chipset)(struct pci_dev *); |
| 863 | unsigned long host_flags; | 869 | unsigned long host_flags; |
| 864 | void *host_priv; | 870 | void *host_priv; |
| 871 | ide_hwif_t *cur_port; /* for hosts requiring serialization */ | ||
| 872 | |||
| 873 | /* used for hosts requiring serialization */ | ||
| 874 | volatile unsigned long host_busy; | ||
| 865 | }; | 875 | }; |
| 866 | 876 | ||
| 877 | #define IDE_HOST_BUSY 0 | ||
| 878 | |||
| 867 | /* | 879 | /* |
| 868 | * internal ide interrupt handler type | 880 | * internal ide interrupt handler type |
| 869 | */ | 881 | */ |
| @@ -873,40 +885,6 @@ typedef int (ide_expiry_t)(ide_drive_t *); | |||
| 873 | /* used by ide-cd, ide-floppy, etc. */ | 885 | /* used by ide-cd, ide-floppy, etc. */ |
| 874 | typedef void (xfer_func_t)(ide_drive_t *, struct request *rq, void *, unsigned); | 886 | typedef void (xfer_func_t)(ide_drive_t *, struct request *rq, void *, unsigned); |
| 875 | 887 | ||
| 876 | typedef struct hwgroup_s { | ||
| 877 | /* irq handler, if active */ | ||
| 878 | ide_startstop_t (*handler)(ide_drive_t *); | ||
| 879 | |||
| 880 | /* BOOL: protects all fields below */ | ||
| 881 | volatile int busy; | ||
| 882 | /* BOOL: wake us up on timer expiry */ | ||
| 883 | unsigned int sleeping : 1; | ||
| 884 | /* BOOL: polling active & poll_timeout field valid */ | ||
| 885 | unsigned int polling : 1; | ||
| 886 | |||
| 887 | /* current drive */ | ||
| 888 | ide_drive_t *drive; | ||
| 889 | /* ptr to current hwif in linked-list */ | ||
| 890 | ide_hwif_t *hwif; | ||
| 891 | |||
| 892 | /* current request */ | ||
| 893 | struct request *rq; | ||
| 894 | |||
| 895 | /* failsafe timer */ | ||
| 896 | struct timer_list timer; | ||
| 897 | /* timeout value during long polls */ | ||
| 898 | unsigned long poll_timeout; | ||
| 899 | /* queried upon timeouts */ | ||
| 900 | int (*expiry)(ide_drive_t *); | ||
| 901 | |||
| 902 | int req_gen; | ||
| 903 | int req_gen_timer; | ||
| 904 | |||
| 905 | spinlock_t lock; | ||
| 906 | } ide_hwgroup_t; | ||
| 907 | |||
| 908 | typedef struct ide_driver_s ide_driver_t; | ||
| 909 | |||
| 910 | extern struct mutex ide_setting_mtx; | 888 | extern struct mutex ide_setting_mtx; |
| 911 | 889 | ||
| 912 | /* | 890 | /* |
| @@ -1032,8 +1010,8 @@ void ide_proc_register_port(ide_hwif_t *); | |||
| 1032 | void ide_proc_port_register_devices(ide_hwif_t *); | 1010 | void ide_proc_port_register_devices(ide_hwif_t *); |
| 1033 | void ide_proc_unregister_device(ide_drive_t *); | 1011 | void ide_proc_unregister_device(ide_drive_t *); |
| 1034 | void ide_proc_unregister_port(ide_hwif_t *); | 1012 | void ide_proc_unregister_port(ide_hwif_t *); |
| 1035 | void ide_proc_register_driver(ide_drive_t *, ide_driver_t *); | 1013 | void ide_proc_register_driver(ide_drive_t *, struct ide_driver *); |
| 1036 | void ide_proc_unregister_driver(ide_drive_t *, ide_driver_t *); | 1014 | void ide_proc_unregister_driver(ide_drive_t *, struct ide_driver *); |
| 1037 | 1015 | ||
| 1038 | read_proc_t proc_ide_read_capacity; | 1016 | read_proc_t proc_ide_read_capacity; |
| 1039 | read_proc_t proc_ide_read_geometry; | 1017 | read_proc_t proc_ide_read_geometry; |
| @@ -1060,8 +1038,10 @@ static inline void ide_proc_register_port(ide_hwif_t *hwif) { ; } | |||
| 1060 | static inline void ide_proc_port_register_devices(ide_hwif_t *hwif) { ; } | 1038 | static inline void ide_proc_port_register_devices(ide_hwif_t *hwif) { ; } |
| 1061 | static inline void ide_proc_unregister_device(ide_drive_t *drive) { ; } | 1039 | static inline void ide_proc_unregister_device(ide_drive_t *drive) { ; } |
| 1062 | static inline void ide_proc_unregister_port(ide_hwif_t *hwif) { ; } | 1040 | static inline void ide_proc_unregister_port(ide_hwif_t *hwif) { ; } |
| 1063 | static inline void ide_proc_register_driver(ide_drive_t *drive, ide_driver_t *driver) { ; } | 1041 | static inline void ide_proc_register_driver(ide_drive_t *drive, |
| 1064 | static inline void ide_proc_unregister_driver(ide_drive_t *drive, ide_driver_t *driver) { ; } | 1042 | struct ide_driver *driver) { ; } |
| 1043 | static inline void ide_proc_unregister_driver(ide_drive_t *drive, | ||
| 1044 | struct ide_driver *driver) { ; } | ||
| 1065 | #define PROC_IDE_READ_RETURN(page,start,off,count,eof,len) return 0; | 1045 | #define PROC_IDE_READ_RETURN(page,start,off,count,eof,len) return 0; |
| 1066 | #endif | 1046 | #endif |
| 1067 | 1047 | ||
| @@ -1130,11 +1110,10 @@ void ide_check_pm_state(ide_drive_t *, struct request *); | |||
| 1130 | * The gendriver.owner field should be set to the module owner of this driver. | 1110 | * The gendriver.owner field should be set to the module owner of this driver. |
| 1131 | * The gendriver.name field should be set to the name of this driver | 1111 | * The gendriver.name field should be set to the name of this driver |
| 1132 | */ | 1112 | */ |
| 1133 | struct ide_driver_s { | 1113 | struct ide_driver { |
| 1134 | const char *version; | 1114 | const char *version; |
| 1135 | ide_startstop_t (*do_request)(ide_drive_t *, struct request *, sector_t); | 1115 | ide_startstop_t (*do_request)(ide_drive_t *, struct request *, sector_t); |
| 1136 | int (*end_request)(ide_drive_t *, int, int); | 1116 | int (*end_request)(ide_drive_t *, int, int); |
| 1137 | ide_startstop_t (*error)(ide_drive_t *, struct request *rq, u8, u8); | ||
| 1138 | struct device_driver gen_driver; | 1117 | struct device_driver gen_driver; |
| 1139 | int (*probe)(ide_drive_t *); | 1118 | int (*probe)(ide_drive_t *); |
| 1140 | void (*remove)(ide_drive_t *); | 1119 | void (*remove)(ide_drive_t *); |
| @@ -1146,7 +1125,7 @@ struct ide_driver_s { | |||
| 1146 | #endif | 1125 | #endif |
| 1147 | }; | 1126 | }; |
| 1148 | 1127 | ||
| 1149 | #define to_ide_driver(drv) container_of(drv, ide_driver_t, gen_driver) | 1128 | #define to_ide_driver(drv) container_of(drv, struct ide_driver, gen_driver) |
| 1150 | 1129 | ||
| 1151 | int ide_device_get(ide_drive_t *); | 1130 | int ide_device_get(ide_drive_t *); |
| 1152 | void ide_device_put(ide_drive_t *); | 1131 | void ide_device_put(ide_drive_t *); |
| @@ -1178,9 +1157,7 @@ void ide_execute_pkt_cmd(ide_drive_t *); | |||
| 1178 | 1157 | ||
| 1179 | void ide_pad_transfer(ide_drive_t *, int, int); | 1158 | void ide_pad_transfer(ide_drive_t *, int, int); |
| 1180 | 1159 | ||
| 1181 | ide_startstop_t __ide_error(ide_drive_t *, struct request *, u8, u8); | 1160 | ide_startstop_t ide_error(ide_drive_t *, const char *, u8); |
| 1182 | |||
| 1183 | ide_startstop_t ide_error (ide_drive_t *drive, const char *msg, byte stat); | ||
| 1184 | 1161 | ||
| 1185 | void ide_fix_driveid(u16 *); | 1162 | void ide_fix_driveid(u16 *); |
| 1186 | 1163 | ||
| @@ -1204,7 +1181,6 @@ void ide_tf_dump(const char *, struct ide_taskfile *); | |||
| 1204 | void ide_exec_command(ide_hwif_t *, u8); | 1181 | void ide_exec_command(ide_hwif_t *, u8); |
| 1205 | u8 ide_read_status(ide_hwif_t *); | 1182 | u8 ide_read_status(ide_hwif_t *); |
| 1206 | u8 ide_read_altstatus(ide_hwif_t *); | 1183 | u8 ide_read_altstatus(ide_hwif_t *); |
| 1207 | u8 ide_read_sff_dma_status(ide_hwif_t *); | ||
| 1208 | 1184 | ||
| 1209 | void ide_set_irq(ide_hwif_t *, int); | 1185 | void ide_set_irq(ide_hwif_t *, int); |
| 1210 | 1186 | ||
| @@ -1258,14 +1234,11 @@ int ide_set_media_lock(ide_drive_t *, struct gendisk *, int); | |||
| 1258 | void ide_create_request_sense_cmd(ide_drive_t *, struct ide_atapi_pc *); | 1234 | void ide_create_request_sense_cmd(ide_drive_t *, struct ide_atapi_pc *); |
| 1259 | void ide_retry_pc(ide_drive_t *, struct gendisk *); | 1235 | void ide_retry_pc(ide_drive_t *, struct gendisk *); |
| 1260 | 1236 | ||
| 1261 | static inline unsigned long ide_scsi_get_timeout(struct ide_atapi_pc *pc) | 1237 | int ide_cd_expiry(ide_drive_t *); |
| 1262 | { | ||
| 1263 | return max_t(unsigned long, WAIT_CMD, pc->timeout - jiffies); | ||
| 1264 | } | ||
| 1265 | 1238 | ||
| 1266 | int ide_scsi_expiry(ide_drive_t *); | 1239 | int ide_cd_get_xferlen(struct request *); |
| 1267 | 1240 | ||
| 1268 | ide_startstop_t ide_issue_pc(ide_drive_t *, unsigned int, ide_expiry_t *); | 1241 | ide_startstop_t ide_issue_pc(ide_drive_t *); |
| 1269 | 1242 | ||
| 1270 | ide_startstop_t do_rw_taskfile(ide_drive_t *, ide_task_t *); | 1243 | ide_startstop_t do_rw_taskfile(ide_drive_t *, ide_task_t *); |
| 1271 | 1244 | ||
| @@ -1322,11 +1295,11 @@ static inline int ide_hwif_setup_dma(ide_hwif_t *hwif, | |||
| 1322 | } | 1295 | } |
| 1323 | #endif | 1296 | #endif |
| 1324 | 1297 | ||
| 1325 | typedef struct ide_pci_enablebit_s { | 1298 | struct ide_pci_enablebit { |
| 1326 | u8 reg; /* byte pci reg holding the enable-bit */ | 1299 | u8 reg; /* byte pci reg holding the enable-bit */ |
| 1327 | u8 mask; /* mask to isolate the enable-bit */ | 1300 | u8 mask; /* mask to isolate the enable-bit */ |
| 1328 | u8 val; /* value of masked reg when "enabled" */ | 1301 | u8 val; /* value of masked reg when "enabled" */ |
| 1329 | } ide_pci_enablebit_t; | 1302 | }; |
| 1330 | 1303 | ||
| 1331 | enum { | 1304 | enum { |
| 1332 | /* Uses ISA control ports not PCI ones. */ | 1305 | /* Uses ISA control ports not PCI ones. */ |
| @@ -1415,7 +1388,8 @@ struct ide_port_info { | |||
| 1415 | const struct ide_port_ops *port_ops; | 1388 | const struct ide_port_ops *port_ops; |
| 1416 | const struct ide_dma_ops *dma_ops; | 1389 | const struct ide_dma_ops *dma_ops; |
| 1417 | 1390 | ||
| 1418 | ide_pci_enablebit_t enablebits[2]; | 1391 | struct ide_pci_enablebit enablebits[2]; |
| 1392 | |||
| 1419 | hwif_chipset_t chipset; | 1393 | hwif_chipset_t chipset; |
| 1420 | 1394 | ||
| 1421 | u16 max_sectors; /* if < than the default one */ | 1395 | u16 max_sectors; /* if < than the default one */ |
| @@ -1487,6 +1461,7 @@ void ide_dma_exec_cmd(ide_drive_t *, u8); | |||
| 1487 | extern void ide_dma_start(ide_drive_t *); | 1461 | extern void ide_dma_start(ide_drive_t *); |
| 1488 | int ide_dma_end(ide_drive_t *); | 1462 | int ide_dma_end(ide_drive_t *); |
| 1489 | int ide_dma_test_irq(ide_drive_t *); | 1463 | int ide_dma_test_irq(ide_drive_t *); |
| 1464 | u8 ide_dma_sff_read_status(ide_hwif_t *); | ||
| 1490 | extern const struct ide_dma_ops sff_dma_ops; | 1465 | extern const struct ide_dma_ops sff_dma_ops; |
| 1491 | #else | 1466 | #else |
| 1492 | static inline int config_drive_for_dma(ide_drive_t *drive) { return 0; } | 1467 | static inline int config_drive_for_dma(ide_drive_t *drive) { return 0; } |
| @@ -1524,15 +1499,13 @@ static inline void ide_acpi_port_init_devices(ide_hwif_t *hwif) { ; } | |||
| 1524 | static inline void ide_acpi_set_state(ide_hwif_t *hwif, int on) {} | 1499 | static inline void ide_acpi_set_state(ide_hwif_t *hwif, int on) {} |
| 1525 | #endif | 1500 | #endif |
| 1526 | 1501 | ||
| 1527 | void ide_remove_port_from_hwgroup(ide_hwif_t *); | ||
| 1528 | void ide_unregister(ide_hwif_t *); | ||
| 1529 | |||
| 1530 | void ide_register_region(struct gendisk *); | 1502 | void ide_register_region(struct gendisk *); |
| 1531 | void ide_unregister_region(struct gendisk *); | 1503 | void ide_unregister_region(struct gendisk *); |
| 1532 | 1504 | ||
| 1533 | void ide_undecoded_slave(ide_drive_t *); | 1505 | void ide_undecoded_slave(ide_drive_t *); |
| 1534 | 1506 | ||
| 1535 | void ide_port_apply_params(ide_hwif_t *); | 1507 | void ide_port_apply_params(ide_hwif_t *); |
| 1508 | int ide_sysfs_register_port(ide_hwif_t *); | ||
| 1536 | 1509 | ||
| 1537 | struct ide_host *ide_host_alloc(const struct ide_port_info *, hw_regs_t **); | 1510 | struct ide_host *ide_host_alloc(const struct ide_port_info *, hw_regs_t **); |
| 1538 | void ide_host_free(struct ide_host *); | 1511 | void ide_host_free(struct ide_host *); |
| @@ -1610,23 +1583,9 @@ static inline void ide_set_max_pio(ide_drive_t *drive) | |||
| 1610 | ide_set_pio(drive, 255); | 1583 | ide_set_pio(drive, 255); |
| 1611 | } | 1584 | } |
| 1612 | 1585 | ||
| 1613 | extern spinlock_t ide_lock; | 1586 | char *ide_media_string(ide_drive_t *); |
| 1614 | extern struct mutex ide_cfg_mtx; | ||
| 1615 | /* | ||
| 1616 | * Structure locking: | ||
| 1617 | * | ||
| 1618 | * ide_cfg_mtx and hwgroup->lock together protect changes to | ||
| 1619 | * ide_hwif_t->next | ||
| 1620 | * ide_drive_t->next | ||
| 1621 | * | ||
| 1622 | * ide_hwgroup_t->busy: hwgroup->lock | ||
| 1623 | * ide_hwgroup_t->hwif: hwgroup->lock | ||
| 1624 | * ide_hwif_t->{hwgroup,mate}: constant, no locking | ||
| 1625 | * ide_drive_t->hwif: constant, no locking | ||
| 1626 | */ | ||
| 1627 | |||
| 1628 | #define local_irq_set(flags) do { local_save_flags((flags)); local_irq_enable_in_hardirq(); } while (0) | ||
| 1629 | 1587 | ||
| 1588 | extern struct device_attribute ide_dev_attrs[]; | ||
| 1630 | extern struct bus_type ide_bus_type; | 1589 | extern struct bus_type ide_bus_type; |
| 1631 | extern struct class *ide_port_class; | 1590 | extern struct class *ide_port_class; |
| 1632 | 1591 | ||
| @@ -1642,8 +1601,15 @@ static inline int hwif_to_node(ide_hwif_t *hwif) | |||
| 1642 | 1601 | ||
| 1643 | static inline ide_drive_t *ide_get_pair_dev(ide_drive_t *drive) | 1602 | static inline ide_drive_t *ide_get_pair_dev(ide_drive_t *drive) |
| 1644 | { | 1603 | { |
| 1645 | ide_drive_t *peer = &drive->hwif->drives[(drive->dn ^ 1) & 1]; | 1604 | ide_drive_t *peer = drive->hwif->devices[(drive->dn ^ 1) & 1]; |
| 1646 | 1605 | ||
| 1647 | return (peer->dev_flags & IDE_DFLAG_PRESENT) ? peer : NULL; | 1606 | return (peer->dev_flags & IDE_DFLAG_PRESENT) ? peer : NULL; |
| 1648 | } | 1607 | } |
| 1608 | |||
| 1609 | #define ide_port_for_each_dev(i, dev, port) \ | ||
| 1610 | for ((i) = 0; ((dev) = (port)->devices[i]) || (i) < MAX_DRIVES; (i)++) | ||
| 1611 | |||
| 1612 | #define ide_host_for_each_port(i, port, host) \ | ||
| 1613 | for ((i) = 0; ((port) = (host)->ports[i]) || (i) < MAX_HOST_PORTS; (i)++) | ||
| 1614 | |||
| 1649 | #endif /* _IDE_H */ | 1615 | #endif /* _IDE_H */ |
diff --git a/include/linux/if_addr.h b/include/linux/if_addr.h index 43f3bedaafd3..a60c821be44c 100644 --- a/include/linux/if_addr.h +++ b/include/linux/if_addr.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __LINUX_IF_ADDR_H | 1 | #ifndef __LINUX_IF_ADDR_H |
| 2 | #define __LINUX_IF_ADDR_H | 2 | #define __LINUX_IF_ADDR_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/netlink.h> | 5 | #include <linux/netlink.h> |
| 5 | 6 | ||
| 6 | struct ifaddrmsg | 7 | struct ifaddrmsg |
diff --git a/include/linux/if_addrlabel.h b/include/linux/if_addrlabel.h index 9fe79c95dd28..89571f65d6de 100644 --- a/include/linux/if_addrlabel.h +++ b/include/linux/if_addrlabel.h | |||
| @@ -10,6 +10,8 @@ | |||
| 10 | #ifndef __LINUX_IF_ADDRLABEL_H | 10 | #ifndef __LINUX_IF_ADDRLABEL_H |
| 11 | #define __LINUX_IF_ADDRLABEL_H | 11 | #define __LINUX_IF_ADDRLABEL_H |
| 12 | 12 | ||
| 13 | #include <linux/types.h> | ||
| 14 | |||
| 13 | struct ifaddrlblmsg | 15 | struct ifaddrlblmsg |
| 14 | { | 16 | { |
| 15 | __u8 ifal_family; /* Address family */ | 17 | __u8 ifal_family; /* Address family */ |
diff --git a/include/linux/if_fc.h b/include/linux/if_fc.h index 376a34ea4723..6ed7f1bf35c8 100644 --- a/include/linux/if_fc.h +++ b/include/linux/if_fc.h | |||
| @@ -20,6 +20,7 @@ | |||
| 20 | #ifndef _LINUX_IF_FC_H | 20 | #ifndef _LINUX_IF_FC_H |
| 21 | #define _LINUX_IF_FC_H | 21 | #define _LINUX_IF_FC_H |
| 22 | 22 | ||
| 23 | #include <linux/types.h> | ||
| 23 | 24 | ||
| 24 | #define FC_ALEN 6 /* Octets in one ethernet addr */ | 25 | #define FC_ALEN 6 /* Octets in one ethernet addr */ |
| 25 | #define FC_HLEN (sizeof(struct fch_hdr)+sizeof(struct fcllc)) | 26 | #define FC_HLEN (sizeof(struct fch_hdr)+sizeof(struct fcllc)) |
diff --git a/include/linux/if_frad.h b/include/linux/if_frad.h index 5c34240de746..60e16a551dd6 100644 --- a/include/linux/if_frad.h +++ b/include/linux/if_frad.h | |||
| @@ -26,8 +26,6 @@ | |||
| 26 | 26 | ||
| 27 | #include <linux/if.h> | 27 | #include <linux/if.h> |
| 28 | 28 | ||
| 29 | #if defined(CONFIG_DLCI) || defined(CONFIG_DLCI_MODULE) | ||
| 30 | |||
| 31 | /* Structures and constants associated with the DLCI device driver */ | 29 | /* Structures and constants associated with the DLCI device driver */ |
| 32 | 30 | ||
| 33 | struct dlci_add | 31 | struct dlci_add |
| @@ -127,6 +125,8 @@ struct frad_conf | |||
| 127 | 125 | ||
| 128 | #ifdef __KERNEL__ | 126 | #ifdef __KERNEL__ |
| 129 | 127 | ||
| 128 | #if defined(CONFIG_DLCI) || defined(CONFIG_DLCI_MODULE) | ||
| 129 | |||
| 130 | /* these are the fields of an RFC 1490 header */ | 130 | /* these are the fields of an RFC 1490 header */ |
| 131 | struct frhdr | 131 | struct frhdr |
| 132 | { | 132 | { |
| @@ -190,12 +190,10 @@ struct frad_local | |||
| 190 | int buffer; /* current buffer for S508 firmware */ | 190 | int buffer; /* current buffer for S508 firmware */ |
| 191 | }; | 191 | }; |
| 192 | 192 | ||
| 193 | #endif /* __KERNEL__ */ | ||
| 194 | |||
| 195 | #endif /* CONFIG_DLCI || CONFIG_DLCI_MODULE */ | 193 | #endif /* CONFIG_DLCI || CONFIG_DLCI_MODULE */ |
| 196 | 194 | ||
| 197 | #ifdef __KERNEL__ | ||
| 198 | extern void dlci_ioctl_set(int (*hook)(unsigned int, void __user *)); | 195 | extern void dlci_ioctl_set(int (*hook)(unsigned int, void __user *)); |
| 199 | #endif | 196 | |
| 197 | #endif /* __KERNEL__ */ | ||
| 200 | 198 | ||
| 201 | #endif | 199 | #endif |
diff --git a/include/linux/if_hippi.h b/include/linux/if_hippi.h index f0f23516bb59..4a7c9940b080 100644 --- a/include/linux/if_hippi.h +++ b/include/linux/if_hippi.h | |||
| @@ -22,6 +22,7 @@ | |||
| 22 | #ifndef _LINUX_IF_HIPPI_H | 22 | #ifndef _LINUX_IF_HIPPI_H |
| 23 | #define _LINUX_IF_HIPPI_H | 23 | #define _LINUX_IF_HIPPI_H |
| 24 | 24 | ||
| 25 | #include <linux/types.h> | ||
| 25 | #include <asm/byteorder.h> | 26 | #include <asm/byteorder.h> |
| 26 | 27 | ||
| 27 | /* | 28 | /* |
diff --git a/include/linux/if_link.h b/include/linux/if_link.h index f9032c88716a..176c5182c515 100644 --- a/include/linux/if_link.h +++ b/include/linux/if_link.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef _LINUX_IF_LINK_H | 1 | #ifndef _LINUX_IF_LINK_H |
| 2 | #define _LINUX_IF_LINK_H | 2 | #define _LINUX_IF_LINK_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/netlink.h> | 5 | #include <linux/netlink.h> |
| 5 | 6 | ||
| 6 | /* The struct should be in sync with struct net_device_stats */ | 7 | /* The struct should be in sync with struct net_device_stats */ |
diff --git a/include/linux/if_ppp.h b/include/linux/if_ppp.h index c3b1f8562709..fcef103aa3f6 100644 --- a/include/linux/if_ppp.h +++ b/include/linux/if_ppp.h | |||
| @@ -33,6 +33,7 @@ | |||
| 33 | #ifndef _IF_PPP_H_ | 33 | #ifndef _IF_PPP_H_ |
| 34 | #define _IF_PPP_H_ | 34 | #define _IF_PPP_H_ |
| 35 | 35 | ||
| 36 | #include <linux/types.h> | ||
| 36 | #include <linux/compiler.h> | 37 | #include <linux/compiler.h> |
| 37 | 38 | ||
| 38 | /* | 39 | /* |
diff --git a/include/linux/if_pppol2tp.h b/include/linux/if_pppol2tp.h index a7d6a2234b31..c7a66882b6d0 100644 --- a/include/linux/if_pppol2tp.h +++ b/include/linux/if_pppol2tp.h | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | #ifndef __LINUX_IF_PPPOL2TP_H | 15 | #ifndef __LINUX_IF_PPPOL2TP_H |
| 16 | #define __LINUX_IF_PPPOL2TP_H | 16 | #define __LINUX_IF_PPPOL2TP_H |
| 17 | 17 | ||
| 18 | #include <asm/types.h> | 18 | #include <linux/types.h> |
| 19 | 19 | ||
| 20 | #ifdef __KERNEL__ | 20 | #ifdef __KERNEL__ |
| 21 | #include <linux/in.h> | 21 | #include <linux/in.h> |
diff --git a/include/linux/if_pppox.h b/include/linux/if_pppox.h index 6fb7f1788570..30c88b2245ff 100644 --- a/include/linux/if_pppox.h +++ b/include/linux/if_pppox.h | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #define __LINUX_IF_PPPOX_H | 17 | #define __LINUX_IF_PPPOX_H |
| 18 | 18 | ||
| 19 | 19 | ||
| 20 | #include <asm/types.h> | 20 | #include <linux/types.h> |
| 21 | #include <asm/byteorder.h> | 21 | #include <asm/byteorder.h> |
| 22 | 22 | ||
| 23 | #ifdef __KERNEL__ | 23 | #ifdef __KERNEL__ |
diff --git a/include/linux/if_strip.h b/include/linux/if_strip.h index fb5c5c98442f..6526a6235832 100644 --- a/include/linux/if_strip.h +++ b/include/linux/if_strip.h | |||
| @@ -18,6 +18,8 @@ | |||
| 18 | #ifndef __LINUX_STRIP_H | 18 | #ifndef __LINUX_STRIP_H |
| 19 | #define __LINUX_STRIP_H | 19 | #define __LINUX_STRIP_H |
| 20 | 20 | ||
| 21 | #include <linux/types.h> | ||
| 22 | |||
| 21 | typedef struct { | 23 | typedef struct { |
| 22 | __u8 c[6]; | 24 | __u8 c[6]; |
| 23 | } MetricomAddress; | 25 | } MetricomAddress; |
diff --git a/include/linux/if_tr.h b/include/linux/if_tr.h index 5bcec8b2c5e2..fc23aeb0f201 100644 --- a/include/linux/if_tr.h +++ b/include/linux/if_tr.h | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #ifndef _LINUX_IF_TR_H | 19 | #ifndef _LINUX_IF_TR_H |
| 20 | #define _LINUX_IF_TR_H | 20 | #define _LINUX_IF_TR_H |
| 21 | 21 | ||
| 22 | #include <linux/types.h> | ||
| 22 | #include <asm/byteorder.h> /* For __be16 */ | 23 | #include <asm/byteorder.h> /* For __be16 */ |
| 23 | 24 | ||
| 24 | /* IEEE 802.5 Token-Ring magic constants. The frame sizes omit the preamble | 25 | /* IEEE 802.5 Token-Ring magic constants. The frame sizes omit the preamble |
diff --git a/include/linux/if_tunnel.h b/include/linux/if_tunnel.h index aeab2cb32a9c..82c43624c067 100644 --- a/include/linux/if_tunnel.h +++ b/include/linux/if_tunnel.h | |||
| @@ -2,7 +2,10 @@ | |||
| 2 | #define _IF_TUNNEL_H_ | 2 | #define _IF_TUNNEL_H_ |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
| 5 | |||
| 6 | #ifdef __KERNEL__ | ||
| 5 | #include <linux/ip.h> | 7 | #include <linux/ip.h> |
| 8 | #endif | ||
| 6 | 9 | ||
| 7 | #define SIOCGETTUNNEL (SIOCDEVPRIVATE + 0) | 10 | #define SIOCGETTUNNEL (SIOCDEVPRIVATE + 0) |
| 8 | #define SIOCADDTUNNEL (SIOCDEVPRIVATE + 1) | 11 | #define SIOCADDTUNNEL (SIOCDEVPRIVATE + 1) |
diff --git a/include/linux/if_vlan.h b/include/linux/if_vlan.h index a5cb0c3f6dcf..f8ff918c208f 100644 --- a/include/linux/if_vlan.h +++ b/include/linux/if_vlan.h | |||
| @@ -115,6 +115,11 @@ extern u16 vlan_dev_vlan_id(const struct net_device *dev); | |||
| 115 | extern int __vlan_hwaccel_rx(struct sk_buff *skb, struct vlan_group *grp, | 115 | extern int __vlan_hwaccel_rx(struct sk_buff *skb, struct vlan_group *grp, |
| 116 | u16 vlan_tci, int polling); | 116 | u16 vlan_tci, int polling); |
| 117 | extern int vlan_hwaccel_do_receive(struct sk_buff *skb); | 117 | extern int vlan_hwaccel_do_receive(struct sk_buff *skb); |
| 118 | extern int vlan_gro_receive(struct napi_struct *napi, struct vlan_group *grp, | ||
| 119 | unsigned int vlan_tci, struct sk_buff *skb); | ||
| 120 | extern int vlan_gro_frags(struct napi_struct *napi, struct vlan_group *grp, | ||
| 121 | unsigned int vlan_tci, | ||
| 122 | struct napi_gro_fraginfo *info); | ||
| 118 | 123 | ||
| 119 | #else | 124 | #else |
| 120 | static inline struct net_device *vlan_dev_real_dev(const struct net_device *dev) | 125 | static inline struct net_device *vlan_dev_real_dev(const struct net_device *dev) |
| @@ -140,6 +145,20 @@ static inline int vlan_hwaccel_do_receive(struct sk_buff *skb) | |||
| 140 | { | 145 | { |
| 141 | return 0; | 146 | return 0; |
| 142 | } | 147 | } |
| 148 | |||
| 149 | static inline int vlan_gro_receive(struct napi_struct *napi, | ||
| 150 | struct vlan_group *grp, | ||
| 151 | unsigned int vlan_tci, struct sk_buff *skb) | ||
| 152 | { | ||
| 153 | return NET_RX_DROP; | ||
| 154 | } | ||
| 155 | |||
| 156 | static inline int vlan_gro_frags(struct napi_struct *napi, | ||
| 157 | struct vlan_group *grp, unsigned int vlan_tci, | ||
| 158 | struct napi_gro_fraginfo *info) | ||
| 159 | { | ||
| 160 | return NET_RX_DROP; | ||
| 161 | } | ||
| 143 | #endif | 162 | #endif |
| 144 | 163 | ||
| 145 | /** | 164 | /** |
diff --git a/include/linux/igmp.h b/include/linux/igmp.h index f734a0ba0698..92fbd8cbd68f 100644 --- a/include/linux/igmp.h +++ b/include/linux/igmp.h | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | #ifndef _LINUX_IGMP_H | 16 | #ifndef _LINUX_IGMP_H |
| 17 | #define _LINUX_IGMP_H | 17 | #define _LINUX_IGMP_H |
| 18 | 18 | ||
| 19 | #include <linux/types.h> | ||
| 19 | #include <asm/byteorder.h> | 20 | #include <asm/byteorder.h> |
| 20 | 21 | ||
| 21 | /* | 22 | /* |
diff --git a/include/linux/inet_diag.h b/include/linux/inet_diag.h index 6e8bc548635a..bc8c49022084 100644 --- a/include/linux/inet_diag.h +++ b/include/linux/inet_diag.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef _INET_DIAG_H_ | 1 | #ifndef _INET_DIAG_H_ |
| 2 | #define _INET_DIAG_H_ 1 | 2 | #define _INET_DIAG_H_ 1 |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 5 | |||
| 4 | /* Just some random number */ | 6 | /* Just some random number */ |
| 5 | #define TCPDIAG_GETSOCK 18 | 7 | #define TCPDIAG_GETSOCK 18 |
| 6 | #define DCCPDIAG_GETSOCK 19 | 8 | #define DCCPDIAG_GETSOCK 19 |
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index 959f5522d10a..ea0ea1a4c36f 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | #include <net/net_namespace.h> | 12 | #include <net/net_namespace.h> |
| 13 | 13 | ||
| 14 | extern struct files_struct init_files; | 14 | extern struct files_struct init_files; |
| 15 | extern struct fs_struct init_fs; | ||
| 15 | 16 | ||
| 16 | #define INIT_KIOCTX(name, which_mm) \ | 17 | #define INIT_KIOCTX(name, which_mm) \ |
| 17 | { \ | 18 | { \ |
| @@ -47,6 +48,12 @@ extern struct files_struct init_files; | |||
| 47 | .posix_timers = LIST_HEAD_INIT(sig.posix_timers), \ | 48 | .posix_timers = LIST_HEAD_INIT(sig.posix_timers), \ |
| 48 | .cpu_timers = INIT_CPU_TIMERS(sig.cpu_timers), \ | 49 | .cpu_timers = INIT_CPU_TIMERS(sig.cpu_timers), \ |
| 49 | .rlim = INIT_RLIMITS, \ | 50 | .rlim = INIT_RLIMITS, \ |
| 51 | .cputime = { .totals = { \ | ||
| 52 | .utime = cputime_zero, \ | ||
| 53 | .stime = cputime_zero, \ | ||
| 54 | .sum_exec_runtime = 0, \ | ||
| 55 | .lock = __SPIN_LOCK_UNLOCKED(sig.cputime.totals.lock), \ | ||
| 56 | }, }, \ | ||
| 50 | } | 57 | } |
| 51 | 58 | ||
| 52 | extern struct nsproxy init_nsproxy; | 59 | extern struct nsproxy init_nsproxy; |
diff --git a/include/linux/input.h b/include/linux/input.h index 9a6355f74db2..1249a0c20a38 100644 --- a/include/linux/input.h +++ b/include/linux/input.h | |||
| @@ -16,7 +16,7 @@ | |||
| 16 | #include <sys/time.h> | 16 | #include <sys/time.h> |
| 17 | #include <sys/ioctl.h> | 17 | #include <sys/ioctl.h> |
| 18 | #include <sys/types.h> | 18 | #include <sys/types.h> |
| 19 | #include <asm/types.h> | 19 | #include <linux/types.h> |
| 20 | #endif | 20 | #endif |
| 21 | 21 | ||
| 22 | /* | 22 | /* |
diff --git a/include/linux/intel-iommu.h b/include/linux/intel-iommu.h index 3d017cfd245b..c4f6c101dbcd 100644 --- a/include/linux/intel-iommu.h +++ b/include/linux/intel-iommu.h | |||
| @@ -23,8 +23,6 @@ | |||
| 23 | #define _INTEL_IOMMU_H_ | 23 | #define _INTEL_IOMMU_H_ |
| 24 | 24 | ||
| 25 | #include <linux/types.h> | 25 | #include <linux/types.h> |
| 26 | #include <linux/msi.h> | ||
| 27 | #include <linux/sysdev.h> | ||
| 28 | #include <linux/iova.h> | 26 | #include <linux/iova.h> |
| 29 | #include <linux/io.h> | 27 | #include <linux/io.h> |
| 30 | #include <linux/dma_remapping.h> | 28 | #include <linux/dma_remapping.h> |
| @@ -289,10 +287,10 @@ struct intel_iommu { | |||
| 289 | void __iomem *reg; /* Pointer to hardware regs, virtual addr */ | 287 | void __iomem *reg; /* Pointer to hardware regs, virtual addr */ |
| 290 | u64 cap; | 288 | u64 cap; |
| 291 | u64 ecap; | 289 | u64 ecap; |
| 292 | int seg; | ||
| 293 | u32 gcmd; /* Holds TE, EAFL. Don't need SRTP, SFL, WBF */ | 290 | u32 gcmd; /* Holds TE, EAFL. Don't need SRTP, SFL, WBF */ |
| 294 | spinlock_t register_lock; /* protect register handling */ | 291 | spinlock_t register_lock; /* protect register handling */ |
| 295 | int seq_id; /* sequence id of the iommu */ | 292 | int seq_id; /* sequence id of the iommu */ |
| 293 | int agaw; /* agaw of this iommu */ | ||
| 296 | 294 | ||
| 297 | #ifdef CONFIG_DMAR | 295 | #ifdef CONFIG_DMAR |
| 298 | unsigned long *domain_ids; /* bitmap of domains */ | 296 | unsigned long *domain_ids; /* bitmap of domains */ |
| @@ -302,8 +300,6 @@ struct intel_iommu { | |||
| 302 | 300 | ||
| 303 | unsigned int irq; | 301 | unsigned int irq; |
| 304 | unsigned char name[7]; /* Device Name */ | 302 | unsigned char name[7]; /* Device Name */ |
| 305 | struct msi_msg saved_msg; | ||
| 306 | struct sys_device sysdev; | ||
| 307 | struct iommu_flush flush; | 303 | struct iommu_flush flush; |
| 308 | #endif | 304 | #endif |
| 309 | struct q_inval *qi; /* Queued invalidation info */ | 305 | struct q_inval *qi; /* Queued invalidation info */ |
| @@ -334,25 +330,6 @@ extern int qi_flush_iotlb(struct intel_iommu *iommu, u16 did, u64 addr, | |||
| 334 | 330 | ||
| 335 | extern void qi_submit_sync(struct qi_desc *desc, struct intel_iommu *iommu); | 331 | extern void qi_submit_sync(struct qi_desc *desc, struct intel_iommu *iommu); |
| 336 | 332 | ||
| 337 | void intel_iommu_domain_exit(struct dmar_domain *domain); | ||
| 338 | struct dmar_domain *intel_iommu_domain_alloc(struct pci_dev *pdev); | ||
| 339 | int intel_iommu_context_mapping(struct dmar_domain *domain, | ||
| 340 | struct pci_dev *pdev); | ||
| 341 | int intel_iommu_page_mapping(struct dmar_domain *domain, dma_addr_t iova, | ||
| 342 | u64 hpa, size_t size, int prot); | ||
| 343 | void intel_iommu_detach_dev(struct dmar_domain *domain, u8 bus, u8 devfn); | ||
| 344 | struct dmar_domain *intel_iommu_find_domain(struct pci_dev *pdev); | ||
| 345 | u64 intel_iommu_iova_to_pfn(struct dmar_domain *domain, u64 iova); | ||
| 346 | |||
| 347 | #ifdef CONFIG_DMAR | ||
| 348 | int intel_iommu_found(void); | ||
| 349 | #else /* CONFIG_DMAR */ | ||
| 350 | static inline int intel_iommu_found(void) | ||
| 351 | { | ||
| 352 | return 0; | ||
| 353 | } | ||
| 354 | #endif /* CONFIG_DMAR */ | ||
| 355 | |||
| 356 | extern void *intel_alloc_coherent(struct device *, size_t, dma_addr_t *, gfp_t); | 333 | extern void *intel_alloc_coherent(struct device *, size_t, dma_addr_t *, gfp_t); |
| 357 | extern void intel_free_coherent(struct device *, size_t, void *, dma_addr_t); | 334 | extern void intel_free_coherent(struct device *, size_t, void *, dma_addr_t); |
| 358 | extern dma_addr_t intel_map_single(struct device *, phys_addr_t, size_t, int); | 335 | extern dma_addr_t intel_map_single(struct device *, phys_addr_t, size_t, int); |
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index be3c484b5242..9127f6b51a39 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
| @@ -14,7 +14,6 @@ | |||
| 14 | #include <linux/irqflags.h> | 14 | #include <linux/irqflags.h> |
| 15 | #include <linux/smp.h> | 15 | #include <linux/smp.h> |
| 16 | #include <linux/percpu.h> | 16 | #include <linux/percpu.h> |
| 17 | #include <linux/irqnr.h> | ||
| 18 | 17 | ||
| 19 | #include <asm/atomic.h> | 18 | #include <asm/atomic.h> |
| 20 | #include <asm/ptrace.h> | 19 | #include <asm/ptrace.h> |
| @@ -109,15 +108,15 @@ extern void enable_irq(unsigned int irq); | |||
| 109 | 108 | ||
| 110 | #if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_HARDIRQS) | 109 | #if defined(CONFIG_SMP) && defined(CONFIG_GENERIC_HARDIRQS) |
| 111 | 110 | ||
| 112 | extern cpumask_t irq_default_affinity; | 111 | extern cpumask_var_t irq_default_affinity; |
| 113 | 112 | ||
| 114 | extern int irq_set_affinity(unsigned int irq, cpumask_t cpumask); | 113 | extern int irq_set_affinity(unsigned int irq, const struct cpumask *cpumask); |
| 115 | extern int irq_can_set_affinity(unsigned int irq); | 114 | extern int irq_can_set_affinity(unsigned int irq); |
| 116 | extern int irq_select_affinity(unsigned int irq); | 115 | extern int irq_select_affinity(unsigned int irq); |
| 117 | 116 | ||
| 118 | #else /* CONFIG_SMP */ | 117 | #else /* CONFIG_SMP */ |
| 119 | 118 | ||
| 120 | static inline int irq_set_affinity(unsigned int irq, cpumask_t cpumask) | 119 | static inline int irq_set_affinity(unsigned int irq, const struct cpumask *m) |
| 121 | { | 120 | { |
| 122 | return -EINVAL; | 121 | return -EINVAL; |
| 123 | } | 122 | } |
| @@ -253,7 +252,8 @@ enum | |||
| 253 | BLOCK_SOFTIRQ, | 252 | BLOCK_SOFTIRQ, |
| 254 | TASKLET_SOFTIRQ, | 253 | TASKLET_SOFTIRQ, |
| 255 | SCHED_SOFTIRQ, | 254 | SCHED_SOFTIRQ, |
| 256 | RCU_SOFTIRQ, /* Preferable RCU should always be the last softirq */ | 255 | HRTIMER_SOFTIRQ, |
| 256 | RCU_SOFTIRQ, /* Preferable RCU should always be the last softirq */ | ||
| 257 | 257 | ||
| 258 | NR_SOFTIRQS | 258 | NR_SOFTIRQS |
| 259 | }; | 259 | }; |
| @@ -464,4 +464,10 @@ static inline void init_irq_proc(void) | |||
| 464 | 464 | ||
| 465 | int show_interrupts(struct seq_file *p, void *v); | 465 | int show_interrupts(struct seq_file *p, void *v); |
| 466 | 466 | ||
| 467 | struct irq_desc; | ||
| 468 | |||
| 469 | extern int early_irq_init(void); | ||
| 470 | extern int arch_early_irq_init(void); | ||
| 471 | extern int arch_init_chip_data(struct irq_desc *desc, int cpu); | ||
| 472 | |||
| 467 | #endif | 473 | #endif |
diff --git a/include/linux/iommu.h b/include/linux/iommu.h new file mode 100644 index 000000000000..8a7bfb1b6ca0 --- /dev/null +++ b/include/linux/iommu.h | |||
| @@ -0,0 +1,112 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2007-2008 Advanced Micro Devices, Inc. | ||
| 3 | * Author: Joerg Roedel <joerg.roedel@amd.com> | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify it | ||
| 6 | * under the terms of the GNU General Public License version 2 as published | ||
| 7 | * by the Free Software Foundation. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write to the Free Software | ||
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 17 | */ | ||
| 18 | |||
| 19 | #ifndef __LINUX_IOMMU_H | ||
| 20 | #define __LINUX_IOMMU_H | ||
| 21 | |||
| 22 | #define IOMMU_READ (1) | ||
| 23 | #define IOMMU_WRITE (2) | ||
| 24 | |||
| 25 | struct device; | ||
| 26 | |||
| 27 | struct iommu_domain { | ||
| 28 | void *priv; | ||
| 29 | }; | ||
| 30 | |||
| 31 | struct iommu_ops { | ||
| 32 | int (*domain_init)(struct iommu_domain *domain); | ||
| 33 | void (*domain_destroy)(struct iommu_domain *domain); | ||
| 34 | int (*attach_dev)(struct iommu_domain *domain, struct device *dev); | ||
| 35 | void (*detach_dev)(struct iommu_domain *domain, struct device *dev); | ||
| 36 | int (*map)(struct iommu_domain *domain, unsigned long iova, | ||
| 37 | phys_addr_t paddr, size_t size, int prot); | ||
| 38 | void (*unmap)(struct iommu_domain *domain, unsigned long iova, | ||
| 39 | size_t size); | ||
| 40 | phys_addr_t (*iova_to_phys)(struct iommu_domain *domain, | ||
| 41 | unsigned long iova); | ||
| 42 | }; | ||
| 43 | |||
| 44 | #ifdef CONFIG_IOMMU_API | ||
| 45 | |||
| 46 | extern void register_iommu(struct iommu_ops *ops); | ||
| 47 | extern bool iommu_found(void); | ||
| 48 | extern struct iommu_domain *iommu_domain_alloc(void); | ||
| 49 | extern void iommu_domain_free(struct iommu_domain *domain); | ||
| 50 | extern int iommu_attach_device(struct iommu_domain *domain, | ||
| 51 | struct device *dev); | ||
| 52 | extern void iommu_detach_device(struct iommu_domain *domain, | ||
| 53 | struct device *dev); | ||
| 54 | extern int iommu_map_range(struct iommu_domain *domain, unsigned long iova, | ||
| 55 | phys_addr_t paddr, size_t size, int prot); | ||
| 56 | extern void iommu_unmap_range(struct iommu_domain *domain, unsigned long iova, | ||
| 57 | size_t size); | ||
| 58 | extern phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, | ||
| 59 | unsigned long iova); | ||
| 60 | |||
| 61 | #else /* CONFIG_IOMMU_API */ | ||
| 62 | |||
| 63 | static inline void register_iommu(struct iommu_ops *ops) | ||
| 64 | { | ||
| 65 | } | ||
| 66 | |||
| 67 | static inline bool iommu_found(void) | ||
| 68 | { | ||
| 69 | return false; | ||
| 70 | } | ||
| 71 | |||
| 72 | static inline struct iommu_domain *iommu_domain_alloc(void) | ||
| 73 | { | ||
| 74 | return NULL; | ||
| 75 | } | ||
| 76 | |||
| 77 | static inline void iommu_domain_free(struct iommu_domain *domain) | ||
| 78 | { | ||
| 79 | } | ||
| 80 | |||
| 81 | static inline int iommu_attach_device(struct iommu_domain *domain, | ||
| 82 | struct device *dev) | ||
| 83 | { | ||
| 84 | return -ENODEV; | ||
| 85 | } | ||
| 86 | |||
| 87 | static inline void iommu_detach_device(struct iommu_domain *domain, | ||
| 88 | struct device *dev) | ||
| 89 | { | ||
| 90 | } | ||
| 91 | |||
| 92 | static inline int iommu_map_range(struct iommu_domain *domain, | ||
| 93 | unsigned long iova, phys_addr_t paddr, | ||
| 94 | size_t size, int prot) | ||
| 95 | { | ||
| 96 | return -ENODEV; | ||
| 97 | } | ||
| 98 | |||
| 99 | static inline void iommu_unmap_range(struct iommu_domain *domain, | ||
| 100 | unsigned long iova, size_t size) | ||
| 101 | { | ||
| 102 | } | ||
| 103 | |||
| 104 | static inline phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, | ||
| 105 | unsigned long iova) | ||
| 106 | { | ||
| 107 | return 0; | ||
| 108 | } | ||
| 109 | |||
| 110 | #endif /* CONFIG_IOMMU_API */ | ||
| 111 | |||
| 112 | #endif /* __LINUX_IOMMU_H */ | ||
diff --git a/include/linux/ioport.h b/include/linux/ioport.h index 041e95aac2bf..32e4b2f72294 100644 --- a/include/linux/ioport.h +++ b/include/linux/ioport.h | |||
| @@ -49,6 +49,7 @@ struct resource_list { | |||
| 49 | #define IORESOURCE_SIZEALIGN 0x00020000 /* size indicates alignment */ | 49 | #define IORESOURCE_SIZEALIGN 0x00020000 /* size indicates alignment */ |
| 50 | #define IORESOURCE_STARTALIGN 0x00040000 /* start field is alignment */ | 50 | #define IORESOURCE_STARTALIGN 0x00040000 /* start field is alignment */ |
| 51 | 51 | ||
| 52 | #define IORESOURCE_EXCLUSIVE 0x08000000 /* Userland may not map this resource */ | ||
| 52 | #define IORESOURCE_DISABLED 0x10000000 | 53 | #define IORESOURCE_DISABLED 0x10000000 |
| 53 | #define IORESOURCE_UNSET 0x20000000 | 54 | #define IORESOURCE_UNSET 0x20000000 |
| 54 | #define IORESOURCE_AUTO 0x40000000 | 55 | #define IORESOURCE_AUTO 0x40000000 |
| @@ -133,13 +134,17 @@ static inline unsigned long resource_type(struct resource *res) | |||
| 133 | } | 134 | } |
| 134 | 135 | ||
| 135 | /* Convenience shorthand with allocation */ | 136 | /* Convenience shorthand with allocation */ |
| 136 | #define request_region(start,n,name) __request_region(&ioport_resource, (start), (n), (name)) | 137 | #define request_region(start,n,name) __request_region(&ioport_resource, (start), (n), (name), 0) |
| 137 | #define request_mem_region(start,n,name) __request_region(&iomem_resource, (start), (n), (name)) | 138 | #define __request_mem_region(start,n,name, excl) __request_region(&iomem_resource, (start), (n), (name), excl) |
| 139 | #define request_mem_region(start,n,name) __request_region(&iomem_resource, (start), (n), (name), 0) | ||
| 140 | #define request_mem_region_exclusive(start,n,name) \ | ||
| 141 | __request_region(&iomem_resource, (start), (n), (name), IORESOURCE_EXCLUSIVE) | ||
| 138 | #define rename_region(region, newname) do { (region)->name = (newname); } while (0) | 142 | #define rename_region(region, newname) do { (region)->name = (newname); } while (0) |
| 139 | 143 | ||
| 140 | extern struct resource * __request_region(struct resource *, | 144 | extern struct resource * __request_region(struct resource *, |
| 141 | resource_size_t start, | 145 | resource_size_t start, |
| 142 | resource_size_t n, const char *name); | 146 | resource_size_t n, |
| 147 | const char *name, int flags); | ||
| 143 | 148 | ||
| 144 | /* Compatibility cruft */ | 149 | /* Compatibility cruft */ |
| 145 | #define release_region(start,n) __release_region(&ioport_resource, (start), (n)) | 150 | #define release_region(start,n) __release_region(&ioport_resource, (start), (n)) |
| @@ -175,6 +180,7 @@ extern struct resource * __devm_request_region(struct device *dev, | |||
| 175 | extern void __devm_release_region(struct device *dev, struct resource *parent, | 180 | extern void __devm_release_region(struct device *dev, struct resource *parent, |
| 176 | resource_size_t start, resource_size_t n); | 181 | resource_size_t start, resource_size_t n); |
| 177 | extern int iomem_map_sanity_check(resource_size_t addr, unsigned long size); | 182 | extern int iomem_map_sanity_check(resource_size_t addr, unsigned long size); |
| 183 | extern int iomem_is_exclusive(u64 addr); | ||
| 178 | 184 | ||
| 179 | #endif /* __ASSEMBLY__ */ | 185 | #endif /* __ASSEMBLY__ */ |
| 180 | #endif /* _LINUX_IOPORT_H */ | 186 | #endif /* _LINUX_IOPORT_H */ |
diff --git a/include/linux/ioprio.h b/include/linux/ioprio.h index f98a656b17e5..76dad4808847 100644 --- a/include/linux/ioprio.h +++ b/include/linux/ioprio.h | |||
| @@ -86,4 +86,6 @@ static inline int task_nice_ioclass(struct task_struct *task) | |||
| 86 | */ | 86 | */ |
| 87 | extern int ioprio_best(unsigned short aprio, unsigned short bprio); | 87 | extern int ioprio_best(unsigned short aprio, unsigned short bprio); |
| 88 | 88 | ||
| 89 | extern int set_task_ioprio(struct task_struct *task, int ioprio); | ||
| 90 | |||
| 89 | #endif | 91 | #endif |
diff --git a/include/linux/ip6_tunnel.h b/include/linux/ip6_tunnel.h index 1e7cc4af40de..acb9ad684d63 100644 --- a/include/linux/ip6_tunnel.h +++ b/include/linux/ip6_tunnel.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef _IP6_TUNNEL_H | 1 | #ifndef _IP6_TUNNEL_H |
| 2 | #define _IP6_TUNNEL_H | 2 | #define _IP6_TUNNEL_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 5 | |||
| 4 | #define IPV6_TLV_TNL_ENCAP_LIMIT 4 | 6 | #define IPV6_TLV_TNL_ENCAP_LIMIT 4 |
| 5 | #define IPV6_DEFAULT_TNL_ENCAP_LIMIT 4 | 7 | #define IPV6_DEFAULT_TNL_ENCAP_LIMIT 4 |
| 6 | 8 | ||
diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h index 0b816cae533e..476d9464ac82 100644 --- a/include/linux/ipv6.h +++ b/include/linux/ipv6.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef _IPV6_H | 1 | #ifndef _IPV6_H |
| 2 | #define _IPV6_H | 2 | #define _IPV6_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/in6.h> | 5 | #include <linux/in6.h> |
| 5 | #include <asm/byteorder.h> | 6 | #include <asm/byteorder.h> |
| 6 | 7 | ||
diff --git a/include/linux/ipv6_route.h b/include/linux/ipv6_route.h index b323ff577967..1e7d8af2defe 100644 --- a/include/linux/ipv6_route.h +++ b/include/linux/ipv6_route.h | |||
| @@ -13,6 +13,8 @@ | |||
| 13 | #ifndef _LINUX_IPV6_ROUTE_H | 13 | #ifndef _LINUX_IPV6_ROUTE_H |
| 14 | #define _LINUX_IPV6_ROUTE_H | 14 | #define _LINUX_IPV6_ROUTE_H |
| 15 | 15 | ||
| 16 | #include <linux/types.h> | ||
| 17 | |||
| 16 | #define RTF_DEFAULT 0x00010000 /* default - learned via ND */ | 18 | #define RTF_DEFAULT 0x00010000 /* default - learned via ND */ |
| 17 | #define RTF_ALLONLINK 0x00020000 /* (deprecated and will be removed) | 19 | #define RTF_ALLONLINK 0x00020000 /* (deprecated and will be removed) |
| 18 | fallback, no routers on link */ | 20 | fallback, no routers on link */ |
diff --git a/include/linux/ipx.h b/include/linux/ipx.h index eb19b4ea84f4..aabb1d294025 100644 --- a/include/linux/ipx.h +++ b/include/linux/ipx.h | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | #ifndef _IPX_H_ | 1 | #ifndef _IPX_H_ |
| 2 | #define _IPX_H_ | 2 | #define _IPX_H_ |
| 3 | #include <linux/types.h> | ||
| 3 | #include <linux/sockios.h> | 4 | #include <linux/sockios.h> |
| 4 | #include <linux/socket.h> | 5 | #include <linux/socket.h> |
| 5 | #define IPX_NODE_LEN 6 | 6 | #define IPX_NODE_LEN 6 |
diff --git a/include/linux/irda.h b/include/linux/irda.h index 28f88ecba344..00bdad0e8515 100644 --- a/include/linux/irda.h +++ b/include/linux/irda.h | |||
| @@ -25,6 +25,8 @@ | |||
| 25 | #ifndef KERNEL_IRDA_H | 25 | #ifndef KERNEL_IRDA_H |
| 26 | #define KERNEL_IRDA_H | 26 | #define KERNEL_IRDA_H |
| 27 | 27 | ||
| 28 | #include <linux/types.h> | ||
| 29 | |||
| 28 | /* Please do *not* add any #include in this file, this file is | 30 | /* Please do *not* add any #include in this file, this file is |
| 29 | * included as-is in user space. | 31 | * included as-is in user space. |
| 30 | * Please fix the calling file to properly included needed files before | 32 | * Please fix the calling file to properly included needed files before |
diff --git a/include/linux/irq.h b/include/linux/irq.h index 98564dc64476..f899b502f186 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
| @@ -113,7 +113,8 @@ struct irq_chip { | |||
| 113 | void (*eoi)(unsigned int irq); | 113 | void (*eoi)(unsigned int irq); |
| 114 | 114 | ||
| 115 | void (*end)(unsigned int irq); | 115 | void (*end)(unsigned int irq); |
| 116 | void (*set_affinity)(unsigned int irq, cpumask_t dest); | 116 | void (*set_affinity)(unsigned int irq, |
| 117 | const struct cpumask *dest); | ||
| 117 | int (*retrigger)(unsigned int irq); | 118 | int (*retrigger)(unsigned int irq); |
| 118 | int (*set_type)(unsigned int irq, unsigned int flow_type); | 119 | int (*set_type)(unsigned int irq, unsigned int flow_type); |
| 119 | int (*set_wake)(unsigned int irq, unsigned int on); | 120 | int (*set_wake)(unsigned int irq, unsigned int on); |
| @@ -193,42 +194,23 @@ struct irq_desc { | |||
| 193 | const char *name; | 194 | const char *name; |
| 194 | } ____cacheline_internodealigned_in_smp; | 195 | } ____cacheline_internodealigned_in_smp; |
| 195 | 196 | ||
| 196 | extern void early_irq_init(void); | ||
| 197 | extern void arch_early_irq_init(void); | ||
| 198 | extern void arch_init_chip_data(struct irq_desc *desc, int cpu); | ||
| 199 | extern void arch_init_copy_chip_data(struct irq_desc *old_desc, | 197 | extern void arch_init_copy_chip_data(struct irq_desc *old_desc, |
| 200 | struct irq_desc *desc, int cpu); | 198 | struct irq_desc *desc, int cpu); |
| 201 | extern void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc); | 199 | extern void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc); |
| 202 | 200 | ||
| 203 | #ifndef CONFIG_SPARSE_IRQ | 201 | #ifndef CONFIG_SPARSE_IRQ |
| 204 | extern struct irq_desc irq_desc[NR_IRQS]; | 202 | extern struct irq_desc irq_desc[NR_IRQS]; |
| 205 | 203 | #else /* CONFIG_SPARSE_IRQ */ | |
| 206 | static inline struct irq_desc *irq_to_desc(unsigned int irq) | ||
| 207 | { | ||
| 208 | return (irq < NR_IRQS) ? irq_desc + irq : NULL; | ||
| 209 | } | ||
| 210 | static inline struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu) | ||
| 211 | { | ||
| 212 | return irq_to_desc(irq); | ||
| 213 | } | ||
| 214 | |||
| 215 | #else | ||
| 216 | |||
| 217 | extern struct irq_desc *irq_to_desc(unsigned int irq); | ||
| 218 | extern struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu); | ||
| 219 | extern struct irq_desc *move_irq_desc(struct irq_desc *old_desc, int cpu); | 204 | extern struct irq_desc *move_irq_desc(struct irq_desc *old_desc, int cpu); |
| 220 | 205 | ||
| 221 | # define for_each_irq_desc(irq, desc) \ | ||
| 222 | for (irq = 0, desc = irq_to_desc(irq); irq < nr_irqs; irq++, desc = irq_to_desc(irq)) | ||
| 223 | # define for_each_irq_desc_reverse(irq, desc) \ | ||
| 224 | for (irq = nr_irqs - 1, desc = irq_to_desc(irq); irq >= 0; irq--, desc = irq_to_desc(irq)) | ||
| 225 | |||
| 226 | #define kstat_irqs_this_cpu(DESC) \ | 206 | #define kstat_irqs_this_cpu(DESC) \ |
| 227 | ((DESC)->kstat_irqs[smp_processor_id()]) | 207 | ((DESC)->kstat_irqs[smp_processor_id()]) |
| 228 | #define kstat_incr_irqs_this_cpu(irqno, DESC) \ | 208 | #define kstat_incr_irqs_this_cpu(irqno, DESC) \ |
| 229 | ((DESC)->kstat_irqs[smp_processor_id()]++) | 209 | ((DESC)->kstat_irqs[smp_processor_id()]++) |
| 230 | 210 | ||
| 231 | #endif | 211 | #endif /* CONFIG_SPARSE_IRQ */ |
| 212 | |||
| 213 | extern struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu); | ||
| 232 | 214 | ||
| 233 | static inline struct irq_desc * | 215 | static inline struct irq_desc * |
| 234 | irq_remap_to_desc(unsigned int irq, struct irq_desc *desc) | 216 | irq_remap_to_desc(unsigned int irq, struct irq_desc *desc) |
diff --git a/include/linux/irqnr.h b/include/linux/irqnr.h index 95d2b74641f5..86af92e9e84c 100644 --- a/include/linux/irqnr.h +++ b/include/linux/irqnr.h | |||
| @@ -8,27 +8,35 @@ | |||
| 8 | 8 | ||
| 9 | #ifndef CONFIG_GENERIC_HARDIRQS | 9 | #ifndef CONFIG_GENERIC_HARDIRQS |
| 10 | #include <asm/irq.h> | 10 | #include <asm/irq.h> |
| 11 | # define nr_irqs NR_IRQS | 11 | |
| 12 | /* | ||
| 13 | * Wrappers for non-genirq architectures: | ||
| 14 | */ | ||
| 15 | #define nr_irqs NR_IRQS | ||
| 16 | #define irq_to_desc(irq) (&irq_desc[irq]) | ||
| 12 | 17 | ||
| 13 | # define for_each_irq_desc(irq, desc) \ | 18 | # define for_each_irq_desc(irq, desc) \ |
| 14 | for (irq = 0; irq < nr_irqs; irq++) | 19 | for (irq = 0; irq < nr_irqs; irq++) |
| 15 | 20 | ||
| 16 | # define for_each_irq_desc_reverse(irq, desc) \ | 21 | # define for_each_irq_desc_reverse(irq, desc) \ |
| 17 | for (irq = nr_irqs - 1; irq >= 0; irq--) | 22 | for (irq = nr_irqs - 1; irq >= 0; irq--) |
| 18 | #else | 23 | #else /* CONFIG_GENERIC_HARDIRQS */ |
| 19 | 24 | ||
| 20 | extern int nr_irqs; | 25 | extern int nr_irqs; |
| 26 | extern struct irq_desc *irq_to_desc(unsigned int irq); | ||
| 21 | 27 | ||
| 22 | #ifndef CONFIG_SPARSE_IRQ | 28 | # define for_each_irq_desc(irq, desc) \ |
| 29 | for (irq = 0, desc = irq_to_desc(irq); irq < nr_irqs; \ | ||
| 30 | irq++, desc = irq_to_desc(irq)) \ | ||
| 31 | if (desc) | ||
| 23 | 32 | ||
| 24 | struct irq_desc; | 33 | |
| 25 | # define for_each_irq_desc(irq, desc) \ | 34 | # define for_each_irq_desc_reverse(irq, desc) \ |
| 26 | for (irq = 0, desc = irq_desc; irq < nr_irqs; irq++, desc++) | 35 | for (irq = nr_irqs - 1, desc = irq_to_desc(irq); irq >= 0; \ |
| 27 | # define for_each_irq_desc_reverse(irq, desc) \ | 36 | irq--, desc = irq_to_desc(irq)) \ |
| 28 | for (irq = nr_irqs - 1, desc = irq_desc + (nr_irqs - 1); \ | 37 | if (desc) |
| 29 | irq >= 0; irq--, desc--) | 38 | |
| 30 | #endif | 39 | #endif /* CONFIG_GENERIC_HARDIRQS */ |
| 31 | #endif | ||
| 32 | 40 | ||
| 33 | #define for_each_irq_nr(irq) \ | 41 | #define for_each_irq_nr(irq) \ |
| 34 | for (irq = 0; irq < nr_irqs; irq++) | 42 | for (irq = 0; irq < nr_irqs; irq++) |
diff --git a/include/linux/istallion.h b/include/linux/istallion.h index 0d1840723249..7faca98c7d14 100644 --- a/include/linux/istallion.h +++ b/include/linux/istallion.h | |||
| @@ -59,9 +59,7 @@ struct stliport { | |||
| 59 | unsigned int devnr; | 59 | unsigned int devnr; |
| 60 | int baud_base; | 60 | int baud_base; |
| 61 | int custom_divisor; | 61 | int custom_divisor; |
| 62 | int close_delay; | ||
| 63 | int closing_wait; | 62 | int closing_wait; |
| 64 | int openwaitcnt; | ||
| 65 | int rc; | 63 | int rc; |
| 66 | int argsize; | 64 | int argsize; |
| 67 | void *argp; | 65 | void *argp; |
diff --git a/include/linux/jbd.h b/include/linux/jbd.h index 346e2b80be7d..64246dce5663 100644 --- a/include/linux/jbd.h +++ b/include/linux/jbd.h | |||
| @@ -543,6 +543,11 @@ struct transaction_s | |||
| 543 | unsigned long t_expires; | 543 | unsigned long t_expires; |
| 544 | 544 | ||
| 545 | /* | 545 | /* |
| 546 | * When this transaction started, in nanoseconds [no locking] | ||
| 547 | */ | ||
| 548 | ktime_t t_start_time; | ||
| 549 | |||
| 550 | /* | ||
| 546 | * How many handles used this transaction? [t_handle_lock] | 551 | * How many handles used this transaction? [t_handle_lock] |
| 547 | */ | 552 | */ |
| 548 | int t_handle_count; | 553 | int t_handle_count; |
| @@ -609,6 +614,8 @@ struct transaction_s | |||
| 609 | * @j_wbufsize: maximum number of buffer_heads allowed in j_wbuf, the | 614 | * @j_wbufsize: maximum number of buffer_heads allowed in j_wbuf, the |
| 610 | * number that will fit in j_blocksize | 615 | * number that will fit in j_blocksize |
| 611 | * @j_last_sync_writer: most recent pid which did a synchronous write | 616 | * @j_last_sync_writer: most recent pid which did a synchronous write |
| 617 | * @j_average_commit_time: the average amount of time in nanoseconds it | ||
| 618 | * takes to commit a transaction to the disk. | ||
| 612 | * @j_private: An opaque pointer to fs-private information. | 619 | * @j_private: An opaque pointer to fs-private information. |
| 613 | */ | 620 | */ |
| 614 | 621 | ||
| @@ -798,9 +805,19 @@ struct journal_s | |||
| 798 | struct buffer_head **j_wbuf; | 805 | struct buffer_head **j_wbuf; |
| 799 | int j_wbufsize; | 806 | int j_wbufsize; |
| 800 | 807 | ||
| 808 | /* | ||
| 809 | * this is the pid of the last person to run a synchronous operation | ||
| 810 | * through the journal. | ||
| 811 | */ | ||
| 801 | pid_t j_last_sync_writer; | 812 | pid_t j_last_sync_writer; |
| 802 | 813 | ||
| 803 | /* | 814 | /* |
| 815 | * the average amount of time in nanoseconds it takes to commit a | ||
| 816 | * transaction to the disk. [j_state_lock] | ||
| 817 | */ | ||
| 818 | u64 j_average_commit_time; | ||
| 819 | |||
| 820 | /* | ||
| 804 | * An opaque pointer to fs-private information. ext3 puts its | 821 | * An opaque pointer to fs-private information. ext3 puts its |
| 805 | * superblock pointer here | 822 | * superblock pointer here |
| 806 | */ | 823 | */ |
diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h index c7d106ef22e2..b28b37eb11c6 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h | |||
| @@ -308,7 +308,8 @@ void buffer_assertion_failure(struct buffer_head *bh); | |||
| 308 | int val = (expr); \ | 308 | int val = (expr); \ |
| 309 | if (!val) { \ | 309 | if (!val) { \ |
| 310 | printk(KERN_ERR \ | 310 | printk(KERN_ERR \ |
| 311 | "EXT3-fs unexpected failure: %s;\n",# expr); \ | 311 | "JBD2 unexpected failure: %s: %s;\n", \ |
| 312 | __func__, #expr); \ | ||
| 312 | printk(KERN_ERR why "\n"); \ | 313 | printk(KERN_ERR why "\n"); \ |
| 313 | } \ | 314 | } \ |
| 314 | val; \ | 315 | val; \ |
| @@ -329,6 +330,7 @@ enum jbd_state_bits { | |||
| 329 | BH_State, /* Pins most journal_head state */ | 330 | BH_State, /* Pins most journal_head state */ |
| 330 | BH_JournalHead, /* Pins bh->b_private and jh->b_bh */ | 331 | BH_JournalHead, /* Pins bh->b_private and jh->b_bh */ |
| 331 | BH_Unshadow, /* Dummy bit, for BJ_Shadow wakeup filtering */ | 332 | BH_Unshadow, /* Dummy bit, for BJ_Shadow wakeup filtering */ |
| 333 | BH_JBDPrivateStart, /* First bit available for private use by FS */ | ||
| 332 | }; | 334 | }; |
| 333 | 335 | ||
| 334 | BUFFER_FNS(JBD, jbd) | 336 | BUFFER_FNS(JBD, jbd) |
| @@ -637,6 +639,11 @@ struct transaction_s | |||
| 637 | unsigned long t_expires; | 639 | unsigned long t_expires; |
| 638 | 640 | ||
| 639 | /* | 641 | /* |
| 642 | * When this transaction started, in nanoseconds [no locking] | ||
| 643 | */ | ||
| 644 | ktime_t t_start_time; | ||
| 645 | |||
| 646 | /* | ||
| 640 | * How many handles used this transaction? [t_handle_lock] | 647 | * How many handles used this transaction? [t_handle_lock] |
| 641 | */ | 648 | */ |
| 642 | int t_handle_count; | 649 | int t_handle_count; |
| @@ -681,6 +688,8 @@ jbd2_time_diff(unsigned long start, unsigned long end) | |||
| 681 | return end + (MAX_JIFFY_OFFSET - start); | 688 | return end + (MAX_JIFFY_OFFSET - start); |
| 682 | } | 689 | } |
| 683 | 690 | ||
| 691 | #define JBD2_NR_BATCH 64 | ||
| 692 | |||
| 684 | /** | 693 | /** |
| 685 | * struct journal_s - The journal_s type is the concrete type associated with | 694 | * struct journal_s - The journal_s type is the concrete type associated with |
| 686 | * journal_t. | 695 | * journal_t. |
| @@ -825,6 +834,14 @@ struct journal_s | |||
| 825 | struct mutex j_checkpoint_mutex; | 834 | struct mutex j_checkpoint_mutex; |
| 826 | 835 | ||
| 827 | /* | 836 | /* |
| 837 | * List of buffer heads used by the checkpoint routine. This | ||
| 838 | * was moved from jbd2_log_do_checkpoint() to reduce stack | ||
| 839 | * usage. Access to this array is controlled by the | ||
| 840 | * j_checkpoint_mutex. [j_checkpoint_mutex] | ||
| 841 | */ | ||
| 842 | struct buffer_head *j_chkpt_bhs[JBD2_NR_BATCH]; | ||
| 843 | |||
| 844 | /* | ||
| 828 | * Journal head: identifies the first unused block in the journal. | 845 | * Journal head: identifies the first unused block in the journal. |
| 829 | * [j_state_lock] | 846 | * [j_state_lock] |
| 830 | */ | 847 | */ |
| @@ -938,8 +955,26 @@ struct journal_s | |||
| 938 | struct buffer_head **j_wbuf; | 955 | struct buffer_head **j_wbuf; |
| 939 | int j_wbufsize; | 956 | int j_wbufsize; |
| 940 | 957 | ||
| 958 | /* | ||
| 959 | * this is the pid of hte last person to run a synchronous operation | ||
| 960 | * through the journal | ||
| 961 | */ | ||
| 941 | pid_t j_last_sync_writer; | 962 | pid_t j_last_sync_writer; |
| 942 | 963 | ||
| 964 | /* | ||
| 965 | * the average amount of time in nanoseconds it takes to commit a | ||
| 966 | * transaction to disk. [j_state_lock] | ||
| 967 | */ | ||
| 968 | u64 j_average_commit_time; | ||
| 969 | |||
| 970 | /* | ||
| 971 | * minimum and maximum times that we should wait for | ||
| 972 | * additional filesystem operations to get batched into a | ||
| 973 | * synchronous handle in microseconds | ||
| 974 | */ | ||
| 975 | u32 j_min_batch_time; | ||
| 976 | u32 j_max_batch_time; | ||
| 977 | |||
| 943 | /* This function is called when a transaction is closed */ | 978 | /* This function is called when a transaction is closed */ |
| 944 | void (*j_commit_callback)(journal_t *, | 979 | void (*j_commit_callback)(journal_t *, |
| 945 | transaction_t *); | 980 | transaction_t *); |
| @@ -1007,6 +1042,35 @@ int __jbd2_journal_clean_checkpoint_list(journal_t *journal); | |||
| 1007 | int __jbd2_journal_remove_checkpoint(struct journal_head *); | 1042 | int __jbd2_journal_remove_checkpoint(struct journal_head *); |
| 1008 | void __jbd2_journal_insert_checkpoint(struct journal_head *, transaction_t *); | 1043 | void __jbd2_journal_insert_checkpoint(struct journal_head *, transaction_t *); |
| 1009 | 1044 | ||
| 1045 | |||
| 1046 | /* | ||
| 1047 | * Triggers | ||
| 1048 | */ | ||
| 1049 | |||
| 1050 | struct jbd2_buffer_trigger_type { | ||
| 1051 | /* | ||
| 1052 | * Fired just before a buffer is written to the journal. | ||
| 1053 | * mapped_data is a mapped buffer that is the frozen data for | ||
| 1054 | * commit. | ||
| 1055 | */ | ||
| 1056 | void (*t_commit)(struct jbd2_buffer_trigger_type *type, | ||
| 1057 | struct buffer_head *bh, void *mapped_data, | ||
| 1058 | size_t size); | ||
| 1059 | |||
| 1060 | /* | ||
| 1061 | * Fired during journal abort for dirty buffers that will not be | ||
| 1062 | * committed. | ||
| 1063 | */ | ||
| 1064 | void (*t_abort)(struct jbd2_buffer_trigger_type *type, | ||
| 1065 | struct buffer_head *bh); | ||
| 1066 | }; | ||
| 1067 | |||
| 1068 | extern void jbd2_buffer_commit_trigger(struct journal_head *jh, | ||
| 1069 | void *mapped_data, | ||
| 1070 | struct jbd2_buffer_trigger_type *triggers); | ||
| 1071 | extern void jbd2_buffer_abort_trigger(struct journal_head *jh, | ||
| 1072 | struct jbd2_buffer_trigger_type *triggers); | ||
| 1073 | |||
| 1010 | /* Buffer IO */ | 1074 | /* Buffer IO */ |
| 1011 | extern int | 1075 | extern int |
| 1012 | jbd2_journal_write_metadata_buffer(transaction_t *transaction, | 1076 | jbd2_journal_write_metadata_buffer(transaction_t *transaction, |
| @@ -1045,6 +1109,8 @@ extern int jbd2_journal_extend (handle_t *, int nblocks); | |||
| 1045 | extern int jbd2_journal_get_write_access(handle_t *, struct buffer_head *); | 1109 | extern int jbd2_journal_get_write_access(handle_t *, struct buffer_head *); |
| 1046 | extern int jbd2_journal_get_create_access (handle_t *, struct buffer_head *); | 1110 | extern int jbd2_journal_get_create_access (handle_t *, struct buffer_head *); |
| 1047 | extern int jbd2_journal_get_undo_access(handle_t *, struct buffer_head *); | 1111 | extern int jbd2_journal_get_undo_access(handle_t *, struct buffer_head *); |
| 1112 | void jbd2_journal_set_triggers(struct buffer_head *, | ||
| 1113 | struct jbd2_buffer_trigger_type *type); | ||
| 1048 | extern int jbd2_journal_dirty_metadata (handle_t *, struct buffer_head *); | 1114 | extern int jbd2_journal_dirty_metadata (handle_t *, struct buffer_head *); |
| 1049 | extern void jbd2_journal_release_buffer (handle_t *, struct buffer_head *); | 1115 | extern void jbd2_journal_release_buffer (handle_t *, struct buffer_head *); |
| 1050 | extern int jbd2_journal_forget (handle_t *, struct buffer_head *); | 1116 | extern int jbd2_journal_forget (handle_t *, struct buffer_head *); |
| @@ -1070,7 +1136,6 @@ extern int jbd2_journal_set_features | |||
| 1070 | (journal_t *, unsigned long, unsigned long, unsigned long); | 1136 | (journal_t *, unsigned long, unsigned long, unsigned long); |
| 1071 | extern void jbd2_journal_clear_features | 1137 | extern void jbd2_journal_clear_features |
| 1072 | (journal_t *, unsigned long, unsigned long, unsigned long); | 1138 | (journal_t *, unsigned long, unsigned long, unsigned long); |
| 1073 | extern int jbd2_journal_create (journal_t *); | ||
| 1074 | extern int jbd2_journal_load (journal_t *journal); | 1139 | extern int jbd2_journal_load (journal_t *journal); |
| 1075 | extern int jbd2_journal_destroy (journal_t *); | 1140 | extern int jbd2_journal_destroy (journal_t *); |
| 1076 | extern int jbd2_journal_recover (journal_t *journal); | 1141 | extern int jbd2_journal_recover (journal_t *journal); |
| @@ -1145,8 +1210,8 @@ int jbd2_log_wait_commit(journal_t *journal, tid_t tid); | |||
| 1145 | int jbd2_log_do_checkpoint(journal_t *journal); | 1210 | int jbd2_log_do_checkpoint(journal_t *journal); |
| 1146 | 1211 | ||
| 1147 | void __jbd2_log_wait_for_space(journal_t *journal); | 1212 | void __jbd2_log_wait_for_space(journal_t *journal); |
| 1148 | extern void __jbd2_journal_drop_transaction(journal_t *, transaction_t *); | 1213 | extern void __jbd2_journal_drop_transaction(journal_t *, transaction_t *); |
| 1149 | extern int jbd2_cleanup_journal_tail(journal_t *); | 1214 | extern int jbd2_cleanup_journal_tail(journal_t *); |
| 1150 | 1215 | ||
| 1151 | /* Debugging code only: */ | 1216 | /* Debugging code only: */ |
| 1152 | 1217 | ||
diff --git a/include/linux/journal-head.h b/include/linux/journal-head.h index bb70ebb6a2d5..525aac3c97df 100644 --- a/include/linux/journal-head.h +++ b/include/linux/journal-head.h | |||
| @@ -12,6 +12,8 @@ | |||
| 12 | 12 | ||
| 13 | typedef unsigned int tid_t; /* Unique transaction ID */ | 13 | typedef unsigned int tid_t; /* Unique transaction ID */ |
| 14 | typedef struct transaction_s transaction_t; /* Compound transaction type */ | 14 | typedef struct transaction_s transaction_t; /* Compound transaction type */ |
| 15 | |||
| 16 | |||
| 15 | struct buffer_head; | 17 | struct buffer_head; |
| 16 | 18 | ||
| 17 | struct journal_head { | 19 | struct journal_head { |
| @@ -87,6 +89,12 @@ struct journal_head { | |||
| 87 | * [j_list_lock] | 89 | * [j_list_lock] |
| 88 | */ | 90 | */ |
| 89 | struct journal_head *b_cpnext, *b_cpprev; | 91 | struct journal_head *b_cpnext, *b_cpprev; |
| 92 | |||
| 93 | /* Trigger type */ | ||
| 94 | struct jbd2_buffer_trigger_type *b_triggers; | ||
| 95 | |||
| 96 | /* Trigger type for the committing transaction's frozen data */ | ||
| 97 | struct jbd2_buffer_trigger_type *b_frozen_triggers; | ||
| 90 | }; | 98 | }; |
| 91 | 99 | ||
| 92 | #endif /* JOURNAL_HEAD_H_INCLUDED */ | 100 | #endif /* JOURNAL_HEAD_H_INCLUDED */ |
diff --git a/include/linux/joystick.h b/include/linux/joystick.h index b5e051295a67..9e20c29c1e14 100644 --- a/include/linux/joystick.h +++ b/include/linux/joystick.h | |||
| @@ -27,7 +27,7 @@ | |||
| 27 | * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic | 27 | * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic |
| 28 | */ | 28 | */ |
| 29 | 29 | ||
| 30 | #include <asm/types.h> | 30 | #include <linux/types.h> |
| 31 | #include <linux/input.h> | 31 | #include <linux/input.h> |
| 32 | 32 | ||
| 33 | /* | 33 | /* |
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index ca9ff6411dfa..7fa371898e3e 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
| @@ -48,6 +48,12 @@ extern const char linux_proc_banner[]; | |||
| 48 | #define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f)) | 48 | #define FIELD_SIZEOF(t, f) (sizeof(((t*)0)->f)) |
| 49 | #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) | 49 | #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) |
| 50 | #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) | 50 | #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) |
| 51 | #define DIV_ROUND_CLOSEST(x, divisor)( \ | ||
| 52 | { \ | ||
| 53 | typeof(divisor) __divisor = divisor; \ | ||
| 54 | (((x) + ((__divisor) / 2)) / (__divisor)); \ | ||
| 55 | } \ | ||
| 56 | ) | ||
| 51 | 57 | ||
| 52 | #define _RET_IP_ (unsigned long)__builtin_return_address(0) | 58 | #define _RET_IP_ (unsigned long)__builtin_return_address(0) |
| 53 | #define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; }) | 59 | #define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; }) |
| @@ -349,13 +355,13 @@ static inline char *pack_hex_byte(char *buf, u8 byte) | |||
| 349 | printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) | 355 | printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) |
| 350 | 356 | ||
| 351 | /* If you are writing a driver, please use dev_dbg instead */ | 357 | /* If you are writing a driver, please use dev_dbg instead */ |
| 352 | #if defined(CONFIG_DYNAMIC_PRINTK_DEBUG) | 358 | #if defined(DEBUG) |
| 359 | #define pr_debug(fmt, ...) \ | ||
| 360 | printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) | ||
| 361 | #elif defined(CONFIG_DYNAMIC_PRINTK_DEBUG) | ||
| 353 | #define pr_debug(fmt, ...) do { \ | 362 | #define pr_debug(fmt, ...) do { \ |
| 354 | dynamic_pr_debug(pr_fmt(fmt), ##__VA_ARGS__); \ | 363 | dynamic_pr_debug(pr_fmt(fmt), ##__VA_ARGS__); \ |
| 355 | } while (0) | 364 | } while (0) |
| 356 | #elif defined(DEBUG) | ||
| 357 | #define pr_debug(fmt, ...) \ | ||
| 358 | printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) | ||
| 359 | #else | 365 | #else |
| 360 | #define pr_debug(fmt, ...) \ | 366 | #define pr_debug(fmt, ...) \ |
| 361 | ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; }) | 367 | ({ if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); 0; }) |
| @@ -470,6 +476,13 @@ static inline char *pack_hex_byte(char *buf, u8 byte) | |||
| 470 | __val = __val < __min ? __min: __val; \ | 476 | __val = __val < __min ? __min: __val; \ |
| 471 | __val > __max ? __max: __val; }) | 477 | __val > __max ? __max: __val; }) |
| 472 | 478 | ||
| 479 | |||
| 480 | /* | ||
| 481 | * swap - swap value of @a and @b | ||
| 482 | */ | ||
| 483 | #define swap(a, b) \ | ||
| 484 | do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0) | ||
| 485 | |||
| 473 | /** | 486 | /** |
| 474 | * container_of - cast a member of a structure out to the containing structure | 487 | * container_of - cast a member of a structure out to the containing structure |
| 475 | * @ptr: the pointer to the member. | 488 | * @ptr: the pointer to the member. |
diff --git a/include/linux/kernel_stat.h b/include/linux/kernel_stat.h index 4ee4b3d2316f..570d20413119 100644 --- a/include/linux/kernel_stat.h +++ b/include/linux/kernel_stat.h | |||
| @@ -79,10 +79,13 @@ static inline unsigned int kstat_irqs(unsigned int irq) | |||
| 79 | } | 79 | } |
| 80 | 80 | ||
| 81 | extern unsigned long long task_delta_exec(struct task_struct *); | 81 | extern unsigned long long task_delta_exec(struct task_struct *); |
| 82 | extern void account_user_time(struct task_struct *, cputime_t); | 82 | extern void account_user_time(struct task_struct *, cputime_t, cputime_t); |
| 83 | extern void account_user_time_scaled(struct task_struct *, cputime_t); | 83 | extern void account_system_time(struct task_struct *, int, cputime_t, cputime_t); |
| 84 | extern void account_system_time(struct task_struct *, int, cputime_t); | 84 | extern void account_steal_time(cputime_t); |
| 85 | extern void account_system_time_scaled(struct task_struct *, cputime_t); | 85 | extern void account_idle_time(cputime_t); |
| 86 | extern void account_steal_time(struct task_struct *, cputime_t); | 86 | |
| 87 | extern void account_process_tick(struct task_struct *, int user); | ||
| 88 | extern void account_steal_ticks(unsigned long ticks); | ||
| 89 | extern void account_idle_ticks(unsigned long ticks); | ||
| 87 | 90 | ||
| 88 | #endif /* _LINUX_KERNEL_STAT_H */ | 91 | #endif /* _LINUX_KERNEL_STAT_H */ |
diff --git a/include/linux/klist.h b/include/linux/klist.h index 8ea98db223e5..e91a4e59b771 100644 --- a/include/linux/klist.h +++ b/include/linux/klist.h | |||
| @@ -13,7 +13,6 @@ | |||
| 13 | #define _LINUX_KLIST_H | 13 | #define _LINUX_KLIST_H |
| 14 | 14 | ||
| 15 | #include <linux/spinlock.h> | 15 | #include <linux/spinlock.h> |
| 16 | #include <linux/completion.h> | ||
| 17 | #include <linux/kref.h> | 16 | #include <linux/kref.h> |
| 18 | #include <linux/list.h> | 17 | #include <linux/list.h> |
| 19 | 18 | ||
| @@ -23,7 +22,7 @@ struct klist { | |||
| 23 | struct list_head k_list; | 22 | struct list_head k_list; |
| 24 | void (*get)(struct klist_node *); | 23 | void (*get)(struct klist_node *); |
| 25 | void (*put)(struct klist_node *); | 24 | void (*put)(struct klist_node *); |
| 26 | }; | 25 | } __attribute__ ((aligned (4))); |
| 27 | 26 | ||
| 28 | #define KLIST_INIT(_name, _get, _put) \ | 27 | #define KLIST_INIT(_name, _get, _put) \ |
| 29 | { .k_lock = __SPIN_LOCK_UNLOCKED(_name.k_lock), \ | 28 | { .k_lock = __SPIN_LOCK_UNLOCKED(_name.k_lock), \ |
| @@ -41,7 +40,6 @@ struct klist_node { | |||
| 41 | void *n_klist; /* never access directly */ | 40 | void *n_klist; /* never access directly */ |
| 42 | struct list_head n_node; | 41 | struct list_head n_node; |
| 43 | struct kref n_ref; | 42 | struct kref n_ref; |
| 44 | struct completion n_removed; | ||
| 45 | }; | 43 | }; |
| 46 | 44 | ||
| 47 | extern void klist_add_tail(struct klist_node *n, struct klist *k); | 45 | extern void klist_add_tail(struct klist_node *n, struct klist *k); |
diff --git a/include/linux/kprobes.h b/include/linux/kprobes.h index 497b1d1f7a05..32851eef48f0 100644 --- a/include/linux/kprobes.h +++ b/include/linux/kprobes.h | |||
| @@ -49,6 +49,13 @@ | |||
| 49 | 49 | ||
| 50 | /* Attach to insert probes on any functions which should be ignored*/ | 50 | /* Attach to insert probes on any functions which should be ignored*/ |
| 51 | #define __kprobes __attribute__((__section__(".kprobes.text"))) notrace | 51 | #define __kprobes __attribute__((__section__(".kprobes.text"))) notrace |
| 52 | #else /* CONFIG_KPROBES */ | ||
| 53 | typedef int kprobe_opcode_t; | ||
| 54 | struct arch_specific_insn { | ||
| 55 | int dummy; | ||
| 56 | }; | ||
| 57 | #define __kprobes notrace | ||
| 58 | #endif /* CONFIG_KPROBES */ | ||
| 52 | 59 | ||
| 53 | struct kprobe; | 60 | struct kprobe; |
| 54 | struct pt_regs; | 61 | struct pt_regs; |
| @@ -69,9 +76,6 @@ struct kprobe { | |||
| 69 | /* list of kprobes for multi-handler support */ | 76 | /* list of kprobes for multi-handler support */ |
| 70 | struct list_head list; | 77 | struct list_head list; |
| 71 | 78 | ||
| 72 | /* Indicates that the corresponding module has been ref counted */ | ||
| 73 | unsigned int mod_refcounted; | ||
| 74 | |||
| 75 | /*count the number of times this probe was temporarily disarmed */ | 79 | /*count the number of times this probe was temporarily disarmed */ |
| 76 | unsigned long nmissed; | 80 | unsigned long nmissed; |
| 77 | 81 | ||
| @@ -103,8 +107,19 @@ struct kprobe { | |||
| 103 | 107 | ||
| 104 | /* copy of the original instruction */ | 108 | /* copy of the original instruction */ |
| 105 | struct arch_specific_insn ainsn; | 109 | struct arch_specific_insn ainsn; |
| 110 | |||
| 111 | /* Indicates various status flags. Protected by kprobe_mutex. */ | ||
| 112 | u32 flags; | ||
| 106 | }; | 113 | }; |
| 107 | 114 | ||
| 115 | /* Kprobe status flags */ | ||
| 116 | #define KPROBE_FLAG_GONE 1 /* breakpoint has already gone */ | ||
| 117 | |||
| 118 | static inline int kprobe_gone(struct kprobe *p) | ||
| 119 | { | ||
| 120 | return p->flags & KPROBE_FLAG_GONE; | ||
| 121 | } | ||
| 122 | |||
| 108 | /* | 123 | /* |
| 109 | * Special probe type that uses setjmp-longjmp type tricks to resume | 124 | * Special probe type that uses setjmp-longjmp type tricks to resume |
| 110 | * execution at a specified entry with a matching prototype corresponding | 125 | * execution at a specified entry with a matching prototype corresponding |
| @@ -123,23 +138,6 @@ struct jprobe { | |||
| 123 | /* For backward compatibility with old code using JPROBE_ENTRY() */ | 138 | /* For backward compatibility with old code using JPROBE_ENTRY() */ |
| 124 | #define JPROBE_ENTRY(handler) (handler) | 139 | #define JPROBE_ENTRY(handler) (handler) |
| 125 | 140 | ||
| 126 | DECLARE_PER_CPU(struct kprobe *, current_kprobe); | ||
| 127 | DECLARE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk); | ||
| 128 | |||
| 129 | #ifdef CONFIG_KRETPROBES | ||
| 130 | extern void arch_prepare_kretprobe(struct kretprobe_instance *ri, | ||
| 131 | struct pt_regs *regs); | ||
| 132 | extern int arch_trampoline_kprobe(struct kprobe *p); | ||
| 133 | #else /* CONFIG_KRETPROBES */ | ||
| 134 | static inline void arch_prepare_kretprobe(struct kretprobe *rp, | ||
| 135 | struct pt_regs *regs) | ||
| 136 | { | ||
| 137 | } | ||
| 138 | static inline int arch_trampoline_kprobe(struct kprobe *p) | ||
| 139 | { | ||
| 140 | return 0; | ||
| 141 | } | ||
| 142 | #endif /* CONFIG_KRETPROBES */ | ||
| 143 | /* | 141 | /* |
| 144 | * Function-return probe - | 142 | * Function-return probe - |
| 145 | * Note: | 143 | * Note: |
| @@ -180,6 +178,25 @@ struct kprobe_blackpoint { | |||
| 180 | unsigned long range; | 178 | unsigned long range; |
| 181 | }; | 179 | }; |
| 182 | 180 | ||
| 181 | #ifdef CONFIG_KPROBES | ||
| 182 | DECLARE_PER_CPU(struct kprobe *, current_kprobe); | ||
| 183 | DECLARE_PER_CPU(struct kprobe_ctlblk, kprobe_ctlblk); | ||
| 184 | |||
| 185 | #ifdef CONFIG_KRETPROBES | ||
| 186 | extern void arch_prepare_kretprobe(struct kretprobe_instance *ri, | ||
| 187 | struct pt_regs *regs); | ||
| 188 | extern int arch_trampoline_kprobe(struct kprobe *p); | ||
| 189 | #else /* CONFIG_KRETPROBES */ | ||
| 190 | static inline void arch_prepare_kretprobe(struct kretprobe *rp, | ||
| 191 | struct pt_regs *regs) | ||
| 192 | { | ||
| 193 | } | ||
| 194 | static inline int arch_trampoline_kprobe(struct kprobe *p) | ||
| 195 | { | ||
| 196 | return 0; | ||
| 197 | } | ||
| 198 | #endif /* CONFIG_KRETPROBES */ | ||
| 199 | |||
| 183 | extern struct kretprobe_blackpoint kretprobe_blacklist[]; | 200 | extern struct kretprobe_blackpoint kretprobe_blacklist[]; |
| 184 | 201 | ||
| 185 | static inline void kretprobe_assert(struct kretprobe_instance *ri, | 202 | static inline void kretprobe_assert(struct kretprobe_instance *ri, |
| @@ -201,7 +218,6 @@ static inline int init_test_probes(void) | |||
| 201 | } | 218 | } |
| 202 | #endif /* CONFIG_KPROBES_SANITY_TEST */ | 219 | #endif /* CONFIG_KPROBES_SANITY_TEST */ |
| 203 | 220 | ||
| 204 | extern struct mutex kprobe_mutex; | ||
| 205 | extern int arch_prepare_kprobe(struct kprobe *p); | 221 | extern int arch_prepare_kprobe(struct kprobe *p); |
| 206 | extern void arch_arm_kprobe(struct kprobe *p); | 222 | extern void arch_arm_kprobe(struct kprobe *p); |
| 207 | extern void arch_disarm_kprobe(struct kprobe *p); | 223 | extern void arch_disarm_kprobe(struct kprobe *p); |
| @@ -257,10 +273,6 @@ void recycle_rp_inst(struct kretprobe_instance *ri, struct hlist_head *head); | |||
| 257 | 273 | ||
| 258 | #else /* CONFIG_KPROBES */ | 274 | #else /* CONFIG_KPROBES */ |
| 259 | 275 | ||
| 260 | #define __kprobes notrace | ||
| 261 | struct jprobe; | ||
| 262 | struct kretprobe; | ||
| 263 | |||
| 264 | static inline struct kprobe *get_kprobe(void *addr) | 276 | static inline struct kprobe *get_kprobe(void *addr) |
| 265 | { | 277 | { |
| 266 | return NULL; | 278 | return NULL; |
diff --git a/include/linux/kvm.h b/include/linux/kvm.h index f18b86fa8655..5715f1907601 100644 --- a/include/linux/kvm.h +++ b/include/linux/kvm.h | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | * Note: you must update KVM_API_VERSION if you change this interface. | 7 | * Note: you must update KVM_API_VERSION if you change this interface. |
| 8 | */ | 8 | */ |
| 9 | 9 | ||
| 10 | #include <asm/types.h> | 10 | #include <linux/types.h> |
| 11 | #include <linux/compiler.h> | 11 | #include <linux/compiler.h> |
| 12 | #include <linux/ioctl.h> | 12 | #include <linux/ioctl.h> |
| 13 | #include <asm/kvm.h> | 13 | #include <asm/kvm.h> |
| @@ -83,6 +83,7 @@ struct kvm_irqchip { | |||
| 83 | #define KVM_EXIT_S390_SIEIC 13 | 83 | #define KVM_EXIT_S390_SIEIC 13 |
| 84 | #define KVM_EXIT_S390_RESET 14 | 84 | #define KVM_EXIT_S390_RESET 14 |
| 85 | #define KVM_EXIT_DCR 15 | 85 | #define KVM_EXIT_DCR 15 |
| 86 | #define KVM_EXIT_NMI 16 | ||
| 86 | 87 | ||
| 87 | /* for KVM_RUN, returned by mmap(vcpu_fd, offset=0) */ | 88 | /* for KVM_RUN, returned by mmap(vcpu_fd, offset=0) */ |
| 88 | struct kvm_run { | 89 | struct kvm_run { |
| @@ -387,6 +388,14 @@ struct kvm_trace_rec { | |||
| 387 | #define KVM_CAP_DEVICE_ASSIGNMENT 17 | 388 | #define KVM_CAP_DEVICE_ASSIGNMENT 17 |
| 388 | #endif | 389 | #endif |
| 389 | #define KVM_CAP_IOMMU 18 | 390 | #define KVM_CAP_IOMMU 18 |
| 391 | #if defined(CONFIG_X86) | ||
| 392 | #define KVM_CAP_DEVICE_MSI 20 | ||
| 393 | #endif | ||
| 394 | /* Bug in KVM_SET_USER_MEMORY_REGION fixed: */ | ||
| 395 | #define KVM_CAP_DESTROY_MEMORY_REGION_WORKS 21 | ||
| 396 | #if defined(CONFIG_X86) | ||
| 397 | #define KVM_CAP_USER_NMI 22 | ||
| 398 | #endif | ||
| 390 | 399 | ||
| 391 | /* | 400 | /* |
| 392 | * ioctls for VM fds | 401 | * ioctls for VM fds |
| @@ -458,6 +467,8 @@ struct kvm_trace_rec { | |||
| 458 | #define KVM_S390_INITIAL_RESET _IO(KVMIO, 0x97) | 467 | #define KVM_S390_INITIAL_RESET _IO(KVMIO, 0x97) |
| 459 | #define KVM_GET_MP_STATE _IOR(KVMIO, 0x98, struct kvm_mp_state) | 468 | #define KVM_GET_MP_STATE _IOR(KVMIO, 0x98, struct kvm_mp_state) |
| 460 | #define KVM_SET_MP_STATE _IOW(KVMIO, 0x99, struct kvm_mp_state) | 469 | #define KVM_SET_MP_STATE _IOW(KVMIO, 0x99, struct kvm_mp_state) |
| 470 | /* Available with KVM_CAP_NMI */ | ||
| 471 | #define KVM_NMI _IO(KVMIO, 0x9a) | ||
| 461 | 472 | ||
| 462 | #define KVM_TRC_INJ_VIRQ (KVM_TRC_HANDLER + 0x02) | 473 | #define KVM_TRC_INJ_VIRQ (KVM_TRC_HANDLER + 0x02) |
| 463 | #define KVM_TRC_REDELIVER_EVT (KVM_TRC_HANDLER + 0x03) | 474 | #define KVM_TRC_REDELIVER_EVT (KVM_TRC_HANDLER + 0x03) |
| @@ -500,10 +511,17 @@ struct kvm_assigned_irq { | |||
| 500 | __u32 guest_irq; | 511 | __u32 guest_irq; |
| 501 | __u32 flags; | 512 | __u32 flags; |
| 502 | union { | 513 | union { |
| 514 | struct { | ||
| 515 | __u32 addr_lo; | ||
| 516 | __u32 addr_hi; | ||
| 517 | __u32 data; | ||
| 518 | } guest_msi; | ||
| 503 | __u32 reserved[12]; | 519 | __u32 reserved[12]; |
| 504 | }; | 520 | }; |
| 505 | }; | 521 | }; |
| 506 | 522 | ||
| 507 | #define KVM_DEV_ASSIGN_ENABLE_IOMMU (1 << 0) | 523 | #define KVM_DEV_ASSIGN_ENABLE_IOMMU (1 << 0) |
| 508 | 524 | ||
| 525 | #define KVM_DEV_IRQ_ASSIGN_ENABLE_MSI (1 << 0) | ||
| 526 | |||
| 509 | #endif | 527 | #endif |
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h index bb92be2153bc..ec49d0be7f52 100644 --- a/include/linux/kvm_host.h +++ b/include/linux/kvm_host.h | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | #include <linux/mm.h> | 16 | #include <linux/mm.h> |
| 17 | #include <linux/preempt.h> | 17 | #include <linux/preempt.h> |
| 18 | #include <linux/marker.h> | 18 | #include <linux/marker.h> |
| 19 | #include <linux/msi.h> | ||
| 19 | #include <asm/signal.h> | 20 | #include <asm/signal.h> |
| 20 | 21 | ||
| 21 | #include <linux/kvm.h> | 22 | #include <linux/kvm.h> |
| @@ -306,9 +307,16 @@ struct kvm_assigned_dev_kernel { | |||
| 306 | int host_busnr; | 307 | int host_busnr; |
| 307 | int host_devfn; | 308 | int host_devfn; |
| 308 | int host_irq; | 309 | int host_irq; |
| 310 | bool host_irq_disabled; | ||
| 309 | int guest_irq; | 311 | int guest_irq; |
| 310 | int irq_requested; | 312 | struct msi_msg guest_msi; |
| 313 | #define KVM_ASSIGNED_DEV_GUEST_INTX (1 << 0) | ||
| 314 | #define KVM_ASSIGNED_DEV_GUEST_MSI (1 << 1) | ||
| 315 | #define KVM_ASSIGNED_DEV_HOST_INTX (1 << 8) | ||
| 316 | #define KVM_ASSIGNED_DEV_HOST_MSI (1 << 9) | ||
| 317 | unsigned long irq_requested_type; | ||
| 311 | int irq_source_id; | 318 | int irq_source_id; |
| 319 | int flags; | ||
| 312 | struct pci_dev *dev; | 320 | struct pci_dev *dev; |
| 313 | struct kvm *kvm; | 321 | struct kvm *kvm; |
| 314 | }; | 322 | }; |
| @@ -316,18 +324,20 @@ void kvm_set_irq(struct kvm *kvm, int irq_source_id, int irq, int level); | |||
| 316 | void kvm_notify_acked_irq(struct kvm *kvm, unsigned gsi); | 324 | void kvm_notify_acked_irq(struct kvm *kvm, unsigned gsi); |
| 317 | void kvm_register_irq_ack_notifier(struct kvm *kvm, | 325 | void kvm_register_irq_ack_notifier(struct kvm *kvm, |
| 318 | struct kvm_irq_ack_notifier *kian); | 326 | struct kvm_irq_ack_notifier *kian); |
| 319 | void kvm_unregister_irq_ack_notifier(struct kvm *kvm, | 327 | void kvm_unregister_irq_ack_notifier(struct kvm_irq_ack_notifier *kian); |
| 320 | struct kvm_irq_ack_notifier *kian); | ||
| 321 | int kvm_request_irq_source_id(struct kvm *kvm); | 328 | int kvm_request_irq_source_id(struct kvm *kvm); |
| 322 | void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id); | 329 | void kvm_free_irq_source_id(struct kvm *kvm, int irq_source_id); |
| 323 | 330 | ||
| 324 | #ifdef CONFIG_DMAR | 331 | #ifdef CONFIG_IOMMU_API |
| 325 | int kvm_iommu_map_pages(struct kvm *kvm, gfn_t base_gfn, | 332 | int kvm_iommu_map_pages(struct kvm *kvm, gfn_t base_gfn, |
| 326 | unsigned long npages); | 333 | unsigned long npages); |
| 327 | int kvm_iommu_map_guest(struct kvm *kvm, | 334 | int kvm_iommu_map_guest(struct kvm *kvm); |
| 328 | struct kvm_assigned_dev_kernel *assigned_dev); | ||
| 329 | int kvm_iommu_unmap_guest(struct kvm *kvm); | 335 | int kvm_iommu_unmap_guest(struct kvm *kvm); |
| 330 | #else /* CONFIG_DMAR */ | 336 | int kvm_assign_device(struct kvm *kvm, |
| 337 | struct kvm_assigned_dev_kernel *assigned_dev); | ||
| 338 | int kvm_deassign_device(struct kvm *kvm, | ||
| 339 | struct kvm_assigned_dev_kernel *assigned_dev); | ||
| 340 | #else /* CONFIG_IOMMU_API */ | ||
| 331 | static inline int kvm_iommu_map_pages(struct kvm *kvm, | 341 | static inline int kvm_iommu_map_pages(struct kvm *kvm, |
| 332 | gfn_t base_gfn, | 342 | gfn_t base_gfn, |
| 333 | unsigned long npages) | 343 | unsigned long npages) |
| @@ -335,9 +345,7 @@ static inline int kvm_iommu_map_pages(struct kvm *kvm, | |||
| 335 | return 0; | 345 | return 0; |
| 336 | } | 346 | } |
| 337 | 347 | ||
| 338 | static inline int kvm_iommu_map_guest(struct kvm *kvm, | 348 | static inline int kvm_iommu_map_guest(struct kvm *kvm) |
| 339 | struct kvm_assigned_dev_kernel | ||
| 340 | *assigned_dev) | ||
| 341 | { | 349 | { |
| 342 | return -ENODEV; | 350 | return -ENODEV; |
| 343 | } | 351 | } |
| @@ -346,7 +354,19 @@ static inline int kvm_iommu_unmap_guest(struct kvm *kvm) | |||
| 346 | { | 354 | { |
| 347 | return 0; | 355 | return 0; |
| 348 | } | 356 | } |
| 349 | #endif /* CONFIG_DMAR */ | 357 | |
| 358 | static inline int kvm_assign_device(struct kvm *kvm, | ||
| 359 | struct kvm_assigned_dev_kernel *assigned_dev) | ||
| 360 | { | ||
| 361 | return 0; | ||
| 362 | } | ||
| 363 | |||
| 364 | static inline int kvm_deassign_device(struct kvm *kvm, | ||
| 365 | struct kvm_assigned_dev_kernel *assigned_dev) | ||
| 366 | { | ||
| 367 | return 0; | ||
| 368 | } | ||
| 369 | #endif /* CONFIG_IOMMU_API */ | ||
| 350 | 370 | ||
| 351 | static inline void kvm_guest_enter(void) | 371 | static inline void kvm_guest_enter(void) |
| 352 | { | 372 | { |
diff --git a/include/linux/leds-pca9532.h b/include/linux/leds-pca9532.h index 81b4207deb95..96eea90f01a8 100644 --- a/include/linux/leds-pca9532.h +++ b/include/linux/leds-pca9532.h | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | #define __LINUX_PCA9532_H | 15 | #define __LINUX_PCA9532_H |
| 16 | 16 | ||
| 17 | #include <linux/leds.h> | 17 | #include <linux/leds.h> |
| 18 | #include <linux/workqueue.h> | ||
| 18 | 19 | ||
| 19 | enum pca9532_state { | 20 | enum pca9532_state { |
| 20 | PCA9532_OFF = 0x0, | 21 | PCA9532_OFF = 0x0, |
| @@ -31,6 +32,7 @@ struct pca9532_led { | |||
| 31 | struct i2c_client *client; | 32 | struct i2c_client *client; |
| 32 | char *name; | 33 | char *name; |
| 33 | struct led_classdev ldev; | 34 | struct led_classdev ldev; |
| 35 | struct work_struct work; | ||
| 34 | enum pca9532_type type; | 36 | enum pca9532_type type; |
| 35 | enum pca9532_state state; | 37 | enum pca9532_state state; |
| 36 | }; | 38 | }; |
diff --git a/include/linux/leds.h b/include/linux/leds.h index d3a73f5a48c3..24489da701e3 100644 --- a/include/linux/leds.h +++ b/include/linux/leds.h | |||
| @@ -32,7 +32,10 @@ struct led_classdev { | |||
| 32 | int brightness; | 32 | int brightness; |
| 33 | int flags; | 33 | int flags; |
| 34 | 34 | ||
| 35 | /* Lower 16 bits reflect status */ | ||
| 35 | #define LED_SUSPENDED (1 << 0) | 36 | #define LED_SUSPENDED (1 << 0) |
| 37 | /* Upper 16 bits reflect control information */ | ||
| 38 | #define LED_CORE_SUSPENDRESUME (1 << 16) | ||
| 36 | 39 | ||
| 37 | /* Set LED brightness level */ | 40 | /* Set LED brightness level */ |
| 38 | /* Must not sleep, use a workqueue if needed */ | 41 | /* Must not sleep, use a workqueue if needed */ |
| @@ -62,7 +65,7 @@ struct led_classdev { | |||
| 62 | 65 | ||
| 63 | extern int led_classdev_register(struct device *parent, | 66 | extern int led_classdev_register(struct device *parent, |
| 64 | struct led_classdev *led_cdev); | 67 | struct led_classdev *led_cdev); |
| 65 | extern void led_classdev_unregister(struct led_classdev *lcd); | 68 | extern void led_classdev_unregister(struct led_classdev *led_cdev); |
| 66 | extern void led_classdev_suspend(struct led_classdev *led_cdev); | 69 | extern void led_classdev_suspend(struct led_classdev *led_cdev); |
| 67 | extern void led_classdev_resume(struct led_classdev *led_cdev); | 70 | extern void led_classdev_resume(struct led_classdev *led_cdev); |
| 68 | 71 | ||
diff --git a/include/linux/libata.h b/include/linux/libata.h index 3449de597eff..5d87bc09a1f5 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
| @@ -187,6 +187,8 @@ enum { | |||
| 187 | ATA_FLAG_PIO_POLLING = (1 << 9), /* use polling PIO if LLD | 187 | ATA_FLAG_PIO_POLLING = (1 << 9), /* use polling PIO if LLD |
| 188 | * doesn't handle PIO interrupts */ | 188 | * doesn't handle PIO interrupts */ |
| 189 | ATA_FLAG_NCQ = (1 << 10), /* host supports NCQ */ | 189 | ATA_FLAG_NCQ = (1 << 10), /* host supports NCQ */ |
| 190 | ATA_FLAG_NO_POWEROFF_SPINDOWN = (1 << 11), /* don't spindown before poweroff */ | ||
| 191 | ATA_FLAG_NO_HIBERNATE_SPINDOWN = (1 << 12), /* don't spindown before hibernation */ | ||
| 190 | ATA_FLAG_DEBUGMSG = (1 << 13), | 192 | ATA_FLAG_DEBUGMSG = (1 << 13), |
| 191 | ATA_FLAG_IGN_SIMPLEX = (1 << 15), /* ignore SIMPLEX */ | 193 | ATA_FLAG_IGN_SIMPLEX = (1 << 15), /* ignore SIMPLEX */ |
| 192 | ATA_FLAG_NO_IORDY = (1 << 16), /* controller lacks iordy */ | 194 | ATA_FLAG_NO_IORDY = (1 << 16), /* controller lacks iordy */ |
| @@ -239,6 +241,7 @@ enum { | |||
| 239 | /* host set flags */ | 241 | /* host set flags */ |
| 240 | ATA_HOST_SIMPLEX = (1 << 0), /* Host is simplex, one DMA channel per host only */ | 242 | ATA_HOST_SIMPLEX = (1 << 0), /* Host is simplex, one DMA channel per host only */ |
| 241 | ATA_HOST_STARTED = (1 << 1), /* Host started */ | 243 | ATA_HOST_STARTED = (1 << 1), /* Host started */ |
| 244 | ATA_HOST_PARALLEL_SCAN = (1 << 2), /* Ports on this host can be scanned in parallel */ | ||
| 242 | 245 | ||
| 243 | /* bits 24:31 of host->flags are reserved for LLD specific flags */ | 246 | /* bits 24:31 of host->flags are reserved for LLD specific flags */ |
| 244 | 247 | ||
| @@ -377,6 +380,7 @@ enum { | |||
| 377 | ATA_HORKAGE_ATAPI_MOD16_DMA = (1 << 11), /* use ATAPI DMA for commands | 380 | ATA_HORKAGE_ATAPI_MOD16_DMA = (1 << 11), /* use ATAPI DMA for commands |
| 378 | not multiple of 16 bytes */ | 381 | not multiple of 16 bytes */ |
| 379 | ATA_HORKAGE_FIRMWARE_WARN = (1 << 12), /* firwmare update warning */ | 382 | ATA_HORKAGE_FIRMWARE_WARN = (1 << 12), /* firwmare update warning */ |
| 383 | ATA_HORKAGE_1_5_GBPS = (1 << 13), /* force 1.5 Gbps */ | ||
| 380 | 384 | ||
| 381 | /* DMA mask for user DMA control: User visible values; DO NOT | 385 | /* DMA mask for user DMA control: User visible values; DO NOT |
| 382 | renumber */ | 386 | renumber */ |
| @@ -400,12 +404,14 @@ enum { | |||
| 400 | ATA_TIMING_CYC8B, | 404 | ATA_TIMING_CYC8B, |
| 401 | ATA_TIMING_ACTIVE = (1 << 4), | 405 | ATA_TIMING_ACTIVE = (1 << 4), |
| 402 | ATA_TIMING_RECOVER = (1 << 5), | 406 | ATA_TIMING_RECOVER = (1 << 5), |
| 403 | ATA_TIMING_CYCLE = (1 << 6), | 407 | ATA_TIMING_DMACK_HOLD = (1 << 6), |
| 404 | ATA_TIMING_UDMA = (1 << 7), | 408 | ATA_TIMING_CYCLE = (1 << 7), |
| 409 | ATA_TIMING_UDMA = (1 << 8), | ||
| 405 | ATA_TIMING_ALL = ATA_TIMING_SETUP | ATA_TIMING_ACT8B | | 410 | ATA_TIMING_ALL = ATA_TIMING_SETUP | ATA_TIMING_ACT8B | |
| 406 | ATA_TIMING_REC8B | ATA_TIMING_CYC8B | | 411 | ATA_TIMING_REC8B | ATA_TIMING_CYC8B | |
| 407 | ATA_TIMING_ACTIVE | ATA_TIMING_RECOVER | | 412 | ATA_TIMING_ACTIVE | ATA_TIMING_RECOVER | |
| 408 | ATA_TIMING_CYCLE | ATA_TIMING_UDMA, | 413 | ATA_TIMING_DMACK_HOLD | ATA_TIMING_CYCLE | |
| 414 | ATA_TIMING_UDMA, | ||
| 409 | }; | 415 | }; |
| 410 | 416 | ||
| 411 | enum ata_xfer_mask { | 417 | enum ata_xfer_mask { |
| @@ -575,7 +581,7 @@ struct ata_device { | |||
| 575 | acpi_handle acpi_handle; | 581 | acpi_handle acpi_handle; |
| 576 | union acpi_object *gtf_cache; | 582 | union acpi_object *gtf_cache; |
| 577 | #endif | 583 | #endif |
| 578 | /* n_sector is used as CLEAR_OFFSET, read comment above CLEAR_OFFSET */ | 584 | /* n_sector is CLEAR_BEGIN, read comment above CLEAR_BEGIN */ |
| 579 | u64 n_sectors; /* size of device, if ATA */ | 585 | u64 n_sectors; /* size of device, if ATA */ |
| 580 | unsigned int class; /* ATA_DEV_xxx */ | 586 | unsigned int class; /* ATA_DEV_xxx */ |
| 581 | unsigned long unpark_deadline; | 587 | unsigned long unpark_deadline; |
| @@ -600,20 +606,22 @@ struct ata_device { | |||
| 600 | u16 heads; /* Number of heads */ | 606 | u16 heads; /* Number of heads */ |
| 601 | u16 sectors; /* Number of sectors per track */ | 607 | u16 sectors; /* Number of sectors per track */ |
| 602 | 608 | ||
| 603 | /* error history */ | ||
| 604 | int spdn_cnt; | ||
| 605 | struct ata_ering ering; | ||
| 606 | |||
| 607 | union { | 609 | union { |
| 608 | u16 id[ATA_ID_WORDS]; /* IDENTIFY xxx DEVICE data */ | 610 | u16 id[ATA_ID_WORDS]; /* IDENTIFY xxx DEVICE data */ |
| 609 | u32 gscr[SATA_PMP_GSCR_DWORDS]; /* PMP GSCR block */ | 611 | u32 gscr[SATA_PMP_GSCR_DWORDS]; /* PMP GSCR block */ |
| 610 | }; | 612 | }; |
| 613 | |||
| 614 | /* error history */ | ||
| 615 | int spdn_cnt; | ||
| 616 | /* ering is CLEAR_END, read comment above CLEAR_END */ | ||
| 617 | struct ata_ering ering; | ||
| 611 | }; | 618 | }; |
| 612 | 619 | ||
| 613 | /* Offset into struct ata_device. Fields above it are maintained | 620 | /* Fields between ATA_DEVICE_CLEAR_BEGIN and ATA_DEVICE_CLEAR_END are |
| 614 | * acress device init. Fields below are zeroed. | 621 | * cleared to zero on ata_dev_init(). |
| 615 | */ | 622 | */ |
| 616 | #define ATA_DEVICE_CLEAR_OFFSET offsetof(struct ata_device, n_sectors) | 623 | #define ATA_DEVICE_CLEAR_BEGIN offsetof(struct ata_device, n_sectors) |
| 624 | #define ATA_DEVICE_CLEAR_END offsetof(struct ata_device, ering) | ||
| 617 | 625 | ||
| 618 | struct ata_eh_info { | 626 | struct ata_eh_info { |
| 619 | struct ata_device *dev; /* offending device */ | 627 | struct ata_device *dev; /* offending device */ |
| @@ -865,6 +873,7 @@ struct ata_timing { | |||
| 865 | unsigned short cyc8b; /* t0 for 8-bit I/O */ | 873 | unsigned short cyc8b; /* t0 for 8-bit I/O */ |
| 866 | unsigned short active; /* t2 or tD */ | 874 | unsigned short active; /* t2 or tD */ |
| 867 | unsigned short recover; /* t2i or tK */ | 875 | unsigned short recover; /* t2i or tK */ |
| 876 | unsigned short dmack_hold; /* tj */ | ||
| 868 | unsigned short cycle; /* t0 */ | 877 | unsigned short cycle; /* t0 */ |
| 869 | unsigned short udma; /* t2CYCTYP/2 */ | 878 | unsigned short udma; /* t2CYCTYP/2 */ |
| 870 | }; | 879 | }; |
| @@ -926,6 +935,8 @@ extern void ata_host_init(struct ata_host *, struct device *, | |||
| 926 | extern int ata_scsi_detect(struct scsi_host_template *sht); | 935 | extern int ata_scsi_detect(struct scsi_host_template *sht); |
| 927 | extern int ata_scsi_ioctl(struct scsi_device *dev, int cmd, void __user *arg); | 936 | extern int ata_scsi_ioctl(struct scsi_device *dev, int cmd, void __user *arg); |
| 928 | extern int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *)); | 937 | extern int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *)); |
| 938 | extern int ata_sas_scsi_ioctl(struct ata_port *ap, struct scsi_device *dev, | ||
| 939 | int cmd, void __user *arg); | ||
| 929 | extern void ata_sas_port_destroy(struct ata_port *); | 940 | extern void ata_sas_port_destroy(struct ata_port *); |
| 930 | extern struct ata_port *ata_sas_port_alloc(struct ata_host *, | 941 | extern struct ata_port *ata_sas_port_alloc(struct ata_host *, |
| 931 | struct ata_port_info *, struct Scsi_Host *); | 942 | struct ata_port_info *, struct Scsi_Host *); |
| @@ -1518,6 +1529,7 @@ extern void sata_pmp_error_handler(struct ata_port *ap); | |||
| 1518 | 1529 | ||
| 1519 | extern const struct ata_port_operations ata_sff_port_ops; | 1530 | extern const struct ata_port_operations ata_sff_port_ops; |
| 1520 | extern const struct ata_port_operations ata_bmdma_port_ops; | 1531 | extern const struct ata_port_operations ata_bmdma_port_ops; |
| 1532 | extern const struct ata_port_operations ata_bmdma32_port_ops; | ||
| 1521 | 1533 | ||
| 1522 | /* PIO only, sg_tablesize and dma_boundary limits can be removed */ | 1534 | /* PIO only, sg_tablesize and dma_boundary limits can be removed */ |
| 1523 | #define ATA_PIO_SHT(drv_name) \ | 1535 | #define ATA_PIO_SHT(drv_name) \ |
| @@ -1545,6 +1557,8 @@ extern void ata_sff_exec_command(struct ata_port *ap, | |||
| 1545 | const struct ata_taskfile *tf); | 1557 | const struct ata_taskfile *tf); |
| 1546 | extern unsigned int ata_sff_data_xfer(struct ata_device *dev, | 1558 | extern unsigned int ata_sff_data_xfer(struct ata_device *dev, |
| 1547 | unsigned char *buf, unsigned int buflen, int rw); | 1559 | unsigned char *buf, unsigned int buflen, int rw); |
| 1560 | extern unsigned int ata_sff_data_xfer32(struct ata_device *dev, | ||
| 1561 | unsigned char *buf, unsigned int buflen, int rw); | ||
| 1548 | extern unsigned int ata_sff_data_xfer_noirq(struct ata_device *dev, | 1562 | extern unsigned int ata_sff_data_xfer_noirq(struct ata_device *dev, |
| 1549 | unsigned char *buf, unsigned int buflen, int rw); | 1563 | unsigned char *buf, unsigned int buflen, int rw); |
| 1550 | extern u8 ata_sff_irq_on(struct ata_port *ap); | 1564 | extern u8 ata_sff_irq_on(struct ata_port *ap); |
diff --git a/include/linux/libps2.h b/include/linux/libps2.h index afc413369101..b94534b7e266 100644 --- a/include/linux/libps2.h +++ b/include/linux/libps2.h | |||
| @@ -18,11 +18,13 @@ | |||
| 18 | #define PS2_RET_ID 0x00 | 18 | #define PS2_RET_ID 0x00 |
| 19 | #define PS2_RET_ACK 0xfa | 19 | #define PS2_RET_ACK 0xfa |
| 20 | #define PS2_RET_NAK 0xfe | 20 | #define PS2_RET_NAK 0xfe |
| 21 | #define PS2_RET_ERR 0xfc | ||
| 21 | 22 | ||
| 22 | #define PS2_FLAG_ACK 1 /* Waiting for ACK/NAK */ | 23 | #define PS2_FLAG_ACK 1 /* Waiting for ACK/NAK */ |
| 23 | #define PS2_FLAG_CMD 2 /* Waiting for command to finish */ | 24 | #define PS2_FLAG_CMD 2 /* Waiting for command to finish */ |
| 24 | #define PS2_FLAG_CMD1 4 /* Waiting for the first byte of command response */ | 25 | #define PS2_FLAG_CMD1 4 /* Waiting for the first byte of command response */ |
| 25 | #define PS2_FLAG_WAITID 8 /* Command execiting is GET ID */ | 26 | #define PS2_FLAG_WAITID 8 /* Command execiting is GET ID */ |
| 27 | #define PS2_FLAG_NAK 16 /* Last transmission was NAKed */ | ||
| 26 | 28 | ||
| 27 | struct ps2dev { | 29 | struct ps2dev { |
| 28 | struct serio *serio; | 30 | struct serio *serio; |
diff --git a/include/linux/lockd/lockd.h b/include/linux/lockd/lockd.h index 23da3fa69efa..aa6fe7026de7 100644 --- a/include/linux/lockd/lockd.h +++ b/include/linux/lockd/lockd.h | |||
| @@ -43,8 +43,8 @@ struct nlm_host { | |||
| 43 | struct sockaddr_storage h_addr; /* peer address */ | 43 | struct sockaddr_storage h_addr; /* peer address */ |
| 44 | size_t h_addrlen; | 44 | size_t h_addrlen; |
| 45 | struct sockaddr_storage h_srcaddr; /* our address (optional) */ | 45 | struct sockaddr_storage h_srcaddr; /* our address (optional) */ |
| 46 | struct rpc_clnt * h_rpcclnt; /* RPC client to talk to peer */ | 46 | struct rpc_clnt *h_rpcclnt; /* RPC client to talk to peer */ |
| 47 | char * h_name; /* remote hostname */ | 47 | char *h_name; /* remote hostname */ |
| 48 | u32 h_version; /* interface version */ | 48 | u32 h_version; /* interface version */ |
| 49 | unsigned short h_proto; /* transport proto */ | 49 | unsigned short h_proto; /* transport proto */ |
| 50 | unsigned short h_reclaiming : 1, | 50 | unsigned short h_reclaiming : 1, |
| @@ -64,21 +64,29 @@ struct nlm_host { | |||
| 64 | spinlock_t h_lock; | 64 | spinlock_t h_lock; |
| 65 | struct list_head h_granted; /* Locks in GRANTED state */ | 65 | struct list_head h_granted; /* Locks in GRANTED state */ |
| 66 | struct list_head h_reclaim; /* Locks in RECLAIM state */ | 66 | struct list_head h_reclaim; /* Locks in RECLAIM state */ |
| 67 | struct nsm_handle * h_nsmhandle; /* NSM status handle */ | 67 | struct nsm_handle *h_nsmhandle; /* NSM status handle */ |
| 68 | 68 | char *h_addrbuf; /* address eyecatcher */ | |
| 69 | char h_addrbuf[48], /* address eyecatchers */ | ||
| 70 | h_srcaddrbuf[48]; | ||
| 71 | }; | 69 | }; |
| 72 | 70 | ||
| 71 | /* | ||
| 72 | * The largest string sm_addrbuf should hold is a full-size IPv6 address | ||
| 73 | * (no "::" anywhere) with a scope ID. The buffer size is computed to | ||
| 74 | * hold eight groups of colon-separated four-hex-digit numbers, a | ||
| 75 | * percent sign, a scope id (at most 32 bits, in decimal), and NUL. | ||
| 76 | */ | ||
| 77 | #define NSM_ADDRBUF ((8 * 4 + 7) + (1 + 10) + 1) | ||
| 78 | |||
| 73 | struct nsm_handle { | 79 | struct nsm_handle { |
| 74 | struct list_head sm_link; | 80 | struct list_head sm_link; |
| 75 | atomic_t sm_count; | 81 | atomic_t sm_count; |
| 76 | char * sm_name; | 82 | char *sm_mon_name; |
| 83 | char *sm_name; | ||
| 77 | struct sockaddr_storage sm_addr; | 84 | struct sockaddr_storage sm_addr; |
| 78 | size_t sm_addrlen; | 85 | size_t sm_addrlen; |
| 79 | unsigned int sm_monitored : 1, | 86 | unsigned int sm_monitored : 1, |
| 80 | sm_sticky : 1; /* don't unmonitor */ | 87 | sm_sticky : 1; /* don't unmonitor */ |
| 81 | char sm_addrbuf[48]; /* address eyecatcher */ | 88 | struct nsm_private sm_priv; |
| 89 | char sm_addrbuf[NSM_ADDRBUF]; | ||
| 82 | }; | 90 | }; |
| 83 | 91 | ||
| 84 | /* | 92 | /* |
| @@ -104,16 +112,6 @@ static inline struct sockaddr *nlm_srcaddr(const struct nlm_host *host) | |||
| 104 | return (struct sockaddr *)&host->h_srcaddr; | 112 | return (struct sockaddr *)&host->h_srcaddr; |
| 105 | } | 113 | } |
| 106 | 114 | ||
| 107 | static inline struct sockaddr_in *nsm_addr_in(const struct nsm_handle *handle) | ||
| 108 | { | ||
| 109 | return (struct sockaddr_in *)&handle->sm_addr; | ||
| 110 | } | ||
| 111 | |||
| 112 | static inline struct sockaddr *nsm_addr(const struct nsm_handle *handle) | ||
| 113 | { | ||
| 114 | return (struct sockaddr *)&handle->sm_addr; | ||
| 115 | } | ||
| 116 | |||
| 117 | /* | 115 | /* |
| 118 | * Map an fl_owner_t into a unique 32-bit "pid" | 116 | * Map an fl_owner_t into a unique 32-bit "pid" |
| 119 | */ | 117 | */ |
| @@ -197,6 +195,7 @@ extern struct svc_procedure nlmsvc_procedures4[]; | |||
| 197 | extern int nlmsvc_grace_period; | 195 | extern int nlmsvc_grace_period; |
| 198 | extern unsigned long nlmsvc_timeout; | 196 | extern unsigned long nlmsvc_timeout; |
| 199 | extern int nsm_use_hostnames; | 197 | extern int nsm_use_hostnames; |
| 198 | extern int nsm_local_state; | ||
| 200 | 199 | ||
| 201 | /* | 200 | /* |
| 202 | * Lockd client functions | 201 | * Lockd client functions |
| @@ -231,10 +230,20 @@ void nlm_rebind_host(struct nlm_host *); | |||
| 231 | struct nlm_host * nlm_get_host(struct nlm_host *); | 230 | struct nlm_host * nlm_get_host(struct nlm_host *); |
| 232 | void nlm_release_host(struct nlm_host *); | 231 | void nlm_release_host(struct nlm_host *); |
| 233 | void nlm_shutdown_hosts(void); | 232 | void nlm_shutdown_hosts(void); |
| 234 | extern void nlm_host_rebooted(const struct sockaddr_in *, const char *, | 233 | void nlm_host_rebooted(const struct nlm_reboot *); |
| 235 | unsigned int, u32); | ||
| 236 | void nsm_release(struct nsm_handle *); | ||
| 237 | 234 | ||
| 235 | /* | ||
| 236 | * Host monitoring | ||
| 237 | */ | ||
| 238 | int nsm_monitor(const struct nlm_host *host); | ||
| 239 | void nsm_unmonitor(const struct nlm_host *host); | ||
| 240 | |||
| 241 | struct nsm_handle *nsm_get_handle(const struct sockaddr *sap, | ||
| 242 | const size_t salen, | ||
| 243 | const char *hostname, | ||
| 244 | const size_t hostname_len); | ||
| 245 | struct nsm_handle *nsm_reboot_lookup(const struct nlm_reboot *info); | ||
| 246 | void nsm_release(struct nsm_handle *nsm); | ||
| 238 | 247 | ||
| 239 | /* | 248 | /* |
| 240 | * This is used in garbage collection and resource reclaim | 249 | * This is used in garbage collection and resource reclaim |
| @@ -282,16 +291,25 @@ static inline struct inode *nlmsvc_file_inode(struct nlm_file *file) | |||
| 282 | static inline int __nlm_privileged_request4(const struct sockaddr *sap) | 291 | static inline int __nlm_privileged_request4(const struct sockaddr *sap) |
| 283 | { | 292 | { |
| 284 | const struct sockaddr_in *sin = (struct sockaddr_in *)sap; | 293 | const struct sockaddr_in *sin = (struct sockaddr_in *)sap; |
| 285 | return (sin->sin_addr.s_addr == htonl(INADDR_LOOPBACK)) && | 294 | |
| 286 | (ntohs(sin->sin_port) < 1024); | 295 | if (ntohs(sin->sin_port) > 1023) |
| 296 | return 0; | ||
| 297 | |||
| 298 | return ipv4_is_loopback(sin->sin_addr.s_addr); | ||
| 287 | } | 299 | } |
| 288 | 300 | ||
| 289 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) | 301 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) |
| 290 | static inline int __nlm_privileged_request6(const struct sockaddr *sap) | 302 | static inline int __nlm_privileged_request6(const struct sockaddr *sap) |
| 291 | { | 303 | { |
| 292 | const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap; | 304 | const struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)sap; |
| 293 | return (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LOOPBACK) && | 305 | |
| 294 | (ntohs(sin6->sin6_port) < 1024); | 306 | if (ntohs(sin6->sin6_port) > 1023) |
| 307 | return 0; | ||
| 308 | |||
| 309 | if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_MAPPED) | ||
| 310 | return ipv4_is_loopback(sin6->sin6_addr.s6_addr32[3]); | ||
| 311 | |||
| 312 | return ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LOOPBACK; | ||
| 295 | } | 313 | } |
| 296 | #else /* defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) */ | 314 | #else /* defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) */ |
| 297 | static inline int __nlm_privileged_request6(const struct sockaddr *sap) | 315 | static inline int __nlm_privileged_request6(const struct sockaddr *sap) |
diff --git a/include/linux/lockd/sm_inter.h b/include/linux/lockd/sm_inter.h deleted file mode 100644 index 5a5448bdb17d..000000000000 --- a/include/linux/lockd/sm_inter.h +++ /dev/null | |||
| @@ -1,48 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * linux/include/linux/lockd/sm_inter.h | ||
| 3 | * | ||
| 4 | * Declarations for the kernel statd client. | ||
| 5 | * | ||
| 6 | * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de> | ||
| 7 | */ | ||
| 8 | |||
| 9 | #ifndef LINUX_LOCKD_SM_INTER_H | ||
| 10 | #define LINUX_LOCKD_SM_INTER_H | ||
| 11 | |||
| 12 | #define SM_PROGRAM 100024 | ||
| 13 | #define SM_VERSION 1 | ||
| 14 | #define SM_STAT 1 | ||
| 15 | #define SM_MON 2 | ||
| 16 | #define SM_UNMON 3 | ||
| 17 | #define SM_UNMON_ALL 4 | ||
| 18 | #define SM_SIMU_CRASH 5 | ||
| 19 | #define SM_NOTIFY 6 | ||
| 20 | |||
| 21 | #define SM_MAXSTRLEN 1024 | ||
| 22 | #define SM_PRIV_SIZE 16 | ||
| 23 | |||
| 24 | /* | ||
| 25 | * Arguments for all calls to statd | ||
| 26 | */ | ||
| 27 | struct nsm_args { | ||
| 28 | __be32 addr; /* remote address */ | ||
| 29 | u32 prog; /* RPC callback info */ | ||
| 30 | u32 vers; | ||
| 31 | u32 proc; | ||
| 32 | |||
| 33 | char * mon_name; | ||
| 34 | }; | ||
| 35 | |||
| 36 | /* | ||
| 37 | * Result returned by statd | ||
| 38 | */ | ||
| 39 | struct nsm_res { | ||
| 40 | u32 status; | ||
| 41 | u32 state; | ||
| 42 | }; | ||
| 43 | |||
| 44 | int nsm_monitor(struct nlm_host *); | ||
| 45 | int nsm_unmonitor(struct nlm_host *); | ||
| 46 | extern int nsm_local_state; | ||
| 47 | |||
| 48 | #endif /* LINUX_LOCKD_SM_INTER_H */ | ||
diff --git a/include/linux/lockd/xdr.h b/include/linux/lockd/xdr.h index d6b3a802c046..7dc5b6cb44cd 100644 --- a/include/linux/lockd/xdr.h +++ b/include/linux/lockd/xdr.h | |||
| @@ -13,6 +13,13 @@ | |||
| 13 | #include <linux/nfs.h> | 13 | #include <linux/nfs.h> |
| 14 | #include <linux/sunrpc/xdr.h> | 14 | #include <linux/sunrpc/xdr.h> |
| 15 | 15 | ||
| 16 | #define SM_MAXSTRLEN 1024 | ||
| 17 | #define SM_PRIV_SIZE 16 | ||
| 18 | |||
| 19 | struct nsm_private { | ||
| 20 | unsigned char data[SM_PRIV_SIZE]; | ||
| 21 | }; | ||
| 22 | |||
| 16 | struct svc_rqst; | 23 | struct svc_rqst; |
| 17 | 24 | ||
| 18 | #define NLM_MAXCOOKIELEN 32 | 25 | #define NLM_MAXCOOKIELEN 32 |
| @@ -77,10 +84,10 @@ struct nlm_res { | |||
| 77 | * statd callback when client has rebooted | 84 | * statd callback when client has rebooted |
| 78 | */ | 85 | */ |
| 79 | struct nlm_reboot { | 86 | struct nlm_reboot { |
| 80 | char * mon; | 87 | char *mon; |
| 81 | unsigned int len; | 88 | unsigned int len; |
| 82 | u32 state; | 89 | u32 state; |
| 83 | __be32 addr; | 90 | struct nsm_private priv; |
| 84 | }; | 91 | }; |
| 85 | 92 | ||
| 86 | /* | 93 | /* |
diff --git a/include/linux/loop.h b/include/linux/loop.h index 46169a7b559b..6ffd6db5bb0d 100644 --- a/include/linux/loop.h +++ b/include/linux/loop.h | |||
| @@ -80,7 +80,7 @@ enum { | |||
| 80 | }; | 80 | }; |
| 81 | 81 | ||
| 82 | #include <asm/posix_types.h> /* for __kernel_old_dev_t */ | 82 | #include <asm/posix_types.h> /* for __kernel_old_dev_t */ |
| 83 | #include <asm/types.h> /* for __u64 */ | 83 | #include <linux/types.h> /* for __u64 */ |
| 84 | 84 | ||
| 85 | /* Backwards compatibility version */ | 85 | /* Backwards compatibility version */ |
| 86 | struct loop_info { | 86 | struct loop_info { |
diff --git a/include/linux/mISDNhw.h b/include/linux/mISDNhw.h index e794dfb87504..97ffdc1d3442 100644 --- a/include/linux/mISDNhw.h +++ b/include/linux/mISDNhw.h | |||
| @@ -57,20 +57,21 @@ | |||
| 57 | #define FLG_L2DATA 14 /* channel use L2 DATA primitivs */ | 57 | #define FLG_L2DATA 14 /* channel use L2 DATA primitivs */ |
| 58 | #define FLG_ORIGIN 15 /* channel is on origin site */ | 58 | #define FLG_ORIGIN 15 /* channel is on origin site */ |
| 59 | /* channel specific stuff */ | 59 | /* channel specific stuff */ |
| 60 | #define FLG_FILLEMPTY 16 /* fill fifo on first frame (empty) */ | ||
| 60 | /* arcofi specific */ | 61 | /* arcofi specific */ |
| 61 | #define FLG_ARCOFI_TIMER 16 | 62 | #define FLG_ARCOFI_TIMER 17 |
| 62 | #define FLG_ARCOFI_ERROR 17 | 63 | #define FLG_ARCOFI_ERROR 18 |
| 63 | /* isar specific */ | 64 | /* isar specific */ |
| 64 | #define FLG_INITIALIZED 16 | 65 | #define FLG_INITIALIZED 17 |
| 65 | #define FLG_DLEETX 17 | 66 | #define FLG_DLEETX 18 |
| 66 | #define FLG_LASTDLE 18 | 67 | #define FLG_LASTDLE 19 |
| 67 | #define FLG_FIRST 19 | 68 | #define FLG_FIRST 20 |
| 68 | #define FLG_LASTDATA 20 | 69 | #define FLG_LASTDATA 21 |
| 69 | #define FLG_NMD_DATA 21 | 70 | #define FLG_NMD_DATA 22 |
| 70 | #define FLG_FTI_RUN 22 | 71 | #define FLG_FTI_RUN 23 |
| 71 | #define FLG_LL_OK 23 | 72 | #define FLG_LL_OK 24 |
| 72 | #define FLG_LL_CONN 24 | 73 | #define FLG_LL_CONN 25 |
| 73 | #define FLG_DTMFSEND 25 | 74 | #define FLG_DTMFSEND 26 |
| 74 | 75 | ||
| 75 | /* workq events */ | 76 | /* workq events */ |
| 76 | #define FLG_RECVQUEUE 30 | 77 | #define FLG_RECVQUEUE 30 |
| @@ -183,6 +184,7 @@ extern void queue_ch_frame(struct mISDNchannel *, u_int, | |||
| 183 | extern int dchannel_senddata(struct dchannel *, struct sk_buff *); | 184 | extern int dchannel_senddata(struct dchannel *, struct sk_buff *); |
| 184 | extern int bchannel_senddata(struct bchannel *, struct sk_buff *); | 185 | extern int bchannel_senddata(struct bchannel *, struct sk_buff *); |
| 185 | extern void recv_Dchannel(struct dchannel *); | 186 | extern void recv_Dchannel(struct dchannel *); |
| 187 | extern void recv_Echannel(struct dchannel *, struct dchannel *); | ||
| 186 | extern void recv_Bchannel(struct bchannel *); | 188 | extern void recv_Bchannel(struct bchannel *); |
| 187 | extern void recv_Dchannel_skb(struct dchannel *, struct sk_buff *); | 189 | extern void recv_Dchannel_skb(struct dchannel *, struct sk_buff *); |
| 188 | extern void recv_Bchannel_skb(struct bchannel *, struct sk_buff *); | 190 | extern void recv_Bchannel_skb(struct bchannel *, struct sk_buff *); |
diff --git a/include/linux/mISDNif.h b/include/linux/mISDNif.h index 8f2d60da04e7..5da3d95b27f1 100644 --- a/include/linux/mISDNif.h +++ b/include/linux/mISDNif.h | |||
| @@ -36,8 +36,8 @@ | |||
| 36 | * - should be incremented on every checkin | 36 | * - should be incremented on every checkin |
| 37 | */ | 37 | */ |
| 38 | #define MISDN_MAJOR_VERSION 1 | 38 | #define MISDN_MAJOR_VERSION 1 |
| 39 | #define MISDN_MINOR_VERSION 0 | 39 | #define MISDN_MINOR_VERSION 1 |
| 40 | #define MISDN_RELEASE 19 | 40 | #define MISDN_RELEASE 20 |
| 41 | 41 | ||
| 42 | /* primitives for information exchange | 42 | /* primitives for information exchange |
| 43 | * generell format | 43 | * generell format |
| @@ -80,6 +80,7 @@ | |||
| 80 | #define PH_DEACTIVATE_IND 0x0202 | 80 | #define PH_DEACTIVATE_IND 0x0202 |
| 81 | #define PH_DEACTIVATE_CNF 0x4202 | 81 | #define PH_DEACTIVATE_CNF 0x4202 |
| 82 | #define PH_DATA_IND 0x2002 | 82 | #define PH_DATA_IND 0x2002 |
| 83 | #define PH_DATA_E_IND 0x3002 | ||
| 83 | #define MPH_ACTIVATE_IND 0x0502 | 84 | #define MPH_ACTIVATE_IND 0x0502 |
| 84 | #define MPH_DEACTIVATE_IND 0x0602 | 85 | #define MPH_DEACTIVATE_IND 0x0602 |
| 85 | #define MPH_INFORMATION_IND 0x0702 | 86 | #define MPH_INFORMATION_IND 0x0702 |
| @@ -199,6 +200,18 @@ | |||
| 199 | #define ISDN_P_NT_S0 0x02 | 200 | #define ISDN_P_NT_S0 0x02 |
| 200 | #define ISDN_P_TE_E1 0x03 | 201 | #define ISDN_P_TE_E1 0x03 |
| 201 | #define ISDN_P_NT_E1 0x04 | 202 | #define ISDN_P_NT_E1 0x04 |
| 203 | #define ISDN_P_TE_UP0 0x05 | ||
| 204 | #define ISDN_P_NT_UP0 0x06 | ||
| 205 | |||
| 206 | #define IS_ISDN_P_TE(p) ((p == ISDN_P_TE_S0) || (p == ISDN_P_TE_E1) || \ | ||
| 207 | (p == ISDN_P_TE_UP0) || (p == ISDN_P_LAPD_TE)) | ||
| 208 | #define IS_ISDN_P_NT(p) ((p == ISDN_P_NT_S0) || (p == ISDN_P_NT_E1) || \ | ||
| 209 | (p == ISDN_P_NT_UP0) || (p == ISDN_P_LAPD_NT)) | ||
| 210 | #define IS_ISDN_P_S0(p) ((p == ISDN_P_TE_S0) || (p == ISDN_P_NT_S0)) | ||
| 211 | #define IS_ISDN_P_E1(p) ((p == ISDN_P_TE_E1) || (p == ISDN_P_NT_E1)) | ||
| 212 | #define IS_ISDN_P_UP0(p) ((p == ISDN_P_TE_UP0) || (p == ISDN_P_NT_UP0)) | ||
| 213 | |||
| 214 | |||
| 202 | #define ISDN_P_LAPD_TE 0x10 | 215 | #define ISDN_P_LAPD_TE 0x10 |
| 203 | #define ISDN_P_LAPD_NT 0x11 | 216 | #define ISDN_P_LAPD_NT 0x11 |
| 204 | 217 | ||
| @@ -255,16 +268,6 @@ struct sockaddr_mISDN { | |||
| 255 | unsigned char tei; | 268 | unsigned char tei; |
| 256 | }; | 269 | }; |
| 257 | 270 | ||
| 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 { | 271 | struct mISDNversion { |
| 269 | unsigned char major; | 272 | unsigned char major; |
| 270 | unsigned char minor; | 273 | unsigned char minor; |
| @@ -281,6 +284,40 @@ struct mISDN_devinfo { | |||
| 281 | char name[MISDN_MAX_IDLEN]; | 284 | char name[MISDN_MAX_IDLEN]; |
| 282 | }; | 285 | }; |
| 283 | 286 | ||
| 287 | struct mISDN_devrename { | ||
| 288 | u_int id; | ||
| 289 | char name[MISDN_MAX_IDLEN]; /* new name */ | ||
| 290 | }; | ||
| 291 | |||
| 292 | /* MPH_INFORMATION_REQ payload */ | ||
| 293 | struct ph_info_ch { | ||
| 294 | __u32 protocol; | ||
| 295 | __u64 Flags; | ||
| 296 | }; | ||
| 297 | |||
| 298 | struct ph_info_dch { | ||
| 299 | struct ph_info_ch ch; | ||
| 300 | __u16 state; | ||
| 301 | __u16 num_bch; | ||
| 302 | }; | ||
| 303 | |||
| 304 | struct ph_info { | ||
| 305 | struct ph_info_dch dch; | ||
| 306 | struct ph_info_ch bch[]; | ||
| 307 | }; | ||
| 308 | |||
| 309 | /* timer device ioctl */ | ||
| 310 | #define IMADDTIMER _IOR('I', 64, int) | ||
| 311 | #define IMDELTIMER _IOR('I', 65, int) | ||
| 312 | |||
| 313 | /* socket ioctls */ | ||
| 314 | #define IMGETVERSION _IOR('I', 66, int) | ||
| 315 | #define IMGETCOUNT _IOR('I', 67, int) | ||
| 316 | #define IMGETDEVINFO _IOR('I', 68, int) | ||
| 317 | #define IMCTRLREQ _IOR('I', 69, int) | ||
| 318 | #define IMCLEAR_L2 _IOR('I', 70, int) | ||
| 319 | #define IMSETDEVNAME _IOR('I', 71, struct mISDN_devrename) | ||
| 320 | |||
| 284 | static inline int | 321 | static inline int |
| 285 | test_channelmap(u_int nr, u_char *map) | 322 | test_channelmap(u_int nr, u_char *map) |
| 286 | { | 323 | { |
| @@ -312,6 +349,8 @@ clear_channelmap(u_int nr, u_char *map) | |||
| 312 | #define MISDN_CTRL_SETPEER 0x0040 | 349 | #define MISDN_CTRL_SETPEER 0x0040 |
| 313 | #define MISDN_CTRL_UNSETPEER 0x0080 | 350 | #define MISDN_CTRL_UNSETPEER 0x0080 |
| 314 | #define MISDN_CTRL_RX_OFF 0x0100 | 351 | #define MISDN_CTRL_RX_OFF 0x0100 |
| 352 | #define MISDN_CTRL_FILL_EMPTY 0x0200 | ||
| 353 | #define MISDN_CTRL_GETPEER 0x0400 | ||
| 315 | #define MISDN_CTRL_HW_FEATURES_OP 0x2000 | 354 | #define MISDN_CTRL_HW_FEATURES_OP 0x2000 |
| 316 | #define MISDN_CTRL_HW_FEATURES 0x2001 | 355 | #define MISDN_CTRL_HW_FEATURES 0x2001 |
| 317 | #define MISDN_CTRL_HFC_OP 0x4000 | 356 | #define MISDN_CTRL_HFC_OP 0x4000 |
| @@ -362,6 +401,7 @@ struct mISDN_ctrl_req { | |||
| 362 | #define DEBUG_L2_TEI 0x00100000 | 401 | #define DEBUG_L2_TEI 0x00100000 |
| 363 | #define DEBUG_L2_TEIFSM 0x00200000 | 402 | #define DEBUG_L2_TEIFSM 0x00200000 |
| 364 | #define DEBUG_TIMER 0x01000000 | 403 | #define DEBUG_TIMER 0x01000000 |
| 404 | #define DEBUG_CLOCK 0x02000000 | ||
| 365 | 405 | ||
| 366 | #define mISDN_HEAD_P(s) ((struct mISDNhead *)&s->cb[0]) | 406 | #define mISDN_HEAD_P(s) ((struct mISDNhead *)&s->cb[0]) |
| 367 | #define mISDN_HEAD_PRIM(s) (((struct mISDNhead *)&s->cb[0])->prim) | 407 | #define mISDN_HEAD_PRIM(s) (((struct mISDNhead *)&s->cb[0])->prim) |
| @@ -375,6 +415,7 @@ struct mISDN_ctrl_req { | |||
| 375 | struct mISDNchannel; | 415 | struct mISDNchannel; |
| 376 | struct mISDNdevice; | 416 | struct mISDNdevice; |
| 377 | struct mISDNstack; | 417 | struct mISDNstack; |
| 418 | struct mISDNclock; | ||
| 378 | 419 | ||
| 379 | struct channel_req { | 420 | struct channel_req { |
| 380 | u_int protocol; | 421 | u_int protocol; |
| @@ -423,7 +464,6 @@ struct mISDN_sock { | |||
| 423 | struct mISDNdevice { | 464 | struct mISDNdevice { |
| 424 | struct mISDNchannel D; | 465 | struct mISDNchannel D; |
| 425 | u_int id; | 466 | u_int id; |
| 426 | char name[MISDN_MAX_IDLEN]; | ||
| 427 | u_int Dprotocols; | 467 | u_int Dprotocols; |
| 428 | u_int Bprotocols; | 468 | u_int Bprotocols; |
| 429 | u_int nrbchan; | 469 | u_int nrbchan; |
| @@ -452,6 +492,16 @@ struct mISDNstack { | |||
| 452 | #endif | 492 | #endif |
| 453 | }; | 493 | }; |
| 454 | 494 | ||
| 495 | typedef int (clockctl_func_t)(void *, int); | ||
| 496 | |||
| 497 | struct mISDNclock { | ||
| 498 | struct list_head list; | ||
| 499 | char name[64]; | ||
| 500 | int pri; | ||
| 501 | clockctl_func_t *ctl; | ||
| 502 | void *priv; | ||
| 503 | }; | ||
| 504 | |||
| 455 | /* global alloc/queue functions */ | 505 | /* global alloc/queue functions */ |
| 456 | 506 | ||
| 457 | static inline struct sk_buff * | 507 | static inline struct sk_buff * |
| @@ -498,12 +548,26 @@ _queue_data(struct mISDNchannel *ch, u_int prim, | |||
| 498 | 548 | ||
| 499 | /* global register/unregister functions */ | 549 | /* global register/unregister functions */ |
| 500 | 550 | ||
| 501 | extern int mISDN_register_device(struct mISDNdevice *, char *name); | 551 | extern int mISDN_register_device(struct mISDNdevice *, |
| 552 | struct device *parent, char *name); | ||
| 502 | extern void mISDN_unregister_device(struct mISDNdevice *); | 553 | extern void mISDN_unregister_device(struct mISDNdevice *); |
| 503 | extern int mISDN_register_Bprotocol(struct Bprotocol *); | 554 | extern int mISDN_register_Bprotocol(struct Bprotocol *); |
| 504 | extern void mISDN_unregister_Bprotocol(struct Bprotocol *); | 555 | extern void mISDN_unregister_Bprotocol(struct Bprotocol *); |
| 556 | extern struct mISDNclock *mISDN_register_clock(char *, int, clockctl_func_t *, | ||
| 557 | void *); | ||
| 558 | extern void mISDN_unregister_clock(struct mISDNclock *); | ||
| 559 | |||
| 560 | static inline struct mISDNdevice *dev_to_mISDN(struct device *dev) | ||
| 561 | { | ||
| 562 | if (dev) | ||
| 563 | return dev_get_drvdata(dev); | ||
| 564 | else | ||
| 565 | return NULL; | ||
| 566 | } | ||
| 505 | 567 | ||
| 506 | extern void set_channel_address(struct mISDNchannel *, u_int, u_int); | 568 | extern void set_channel_address(struct mISDNchannel *, u_int, u_int); |
| 569 | extern void mISDN_clock_update(struct mISDNclock *, int, struct timeval *); | ||
| 570 | extern unsigned short mISDN_clock_get(void); | ||
| 507 | 571 | ||
| 508 | #endif /* __KERNEL__ */ | 572 | #endif /* __KERNEL__ */ |
| 509 | #endif /* mISDNIF_H */ | 573 | #endif /* mISDNIF_H */ |
diff --git a/include/linux/magic.h b/include/linux/magic.h index f7f3fdddbef0..0b4df7eba852 100644 --- a/include/linux/magic.h +++ b/include/linux/magic.h | |||
| @@ -10,10 +10,13 @@ | |||
| 10 | #define SYSFS_MAGIC 0x62656572 | 10 | #define SYSFS_MAGIC 0x62656572 |
| 11 | #define SECURITYFS_MAGIC 0x73636673 | 11 | #define SECURITYFS_MAGIC 0x73636673 |
| 12 | #define TMPFS_MAGIC 0x01021994 | 12 | #define TMPFS_MAGIC 0x01021994 |
| 13 | #define SQUASHFS_MAGIC 0x73717368 | ||
| 13 | #define EFS_SUPER_MAGIC 0x414A53 | 14 | #define EFS_SUPER_MAGIC 0x414A53 |
| 14 | #define EXT2_SUPER_MAGIC 0xEF53 | 15 | #define EXT2_SUPER_MAGIC 0xEF53 |
| 15 | #define EXT3_SUPER_MAGIC 0xEF53 | 16 | #define EXT3_SUPER_MAGIC 0xEF53 |
| 17 | #define XENFS_SUPER_MAGIC 0xabba1974 | ||
| 16 | #define EXT4_SUPER_MAGIC 0xEF53 | 18 | #define EXT4_SUPER_MAGIC 0xEF53 |
| 19 | #define BTRFS_SUPER_MAGIC 0x9123683E | ||
| 17 | #define HPFS_SUPER_MAGIC 0xf995e849 | 20 | #define HPFS_SUPER_MAGIC 0xf995e849 |
| 18 | #define ISOFS_SUPER_MAGIC 0x9660 | 21 | #define ISOFS_SUPER_MAGIC 0x9660 |
| 19 | #define JFFS2_SUPER_MAGIC 0x72b6 | 22 | #define JFFS2_SUPER_MAGIC 0x72b6 |
diff --git a/include/linux/map_to_7segment.h b/include/linux/map_to_7segment.h index 7df8432c4402..12d62a54d470 100644 --- a/include/linux/map_to_7segment.h +++ b/include/linux/map_to_7segment.h | |||
| @@ -75,7 +75,7 @@ struct seg7_conversion_map { | |||
| 75 | unsigned char table[128]; | 75 | unsigned char table[128]; |
| 76 | }; | 76 | }; |
| 77 | 77 | ||
| 78 | static inline int map_to_seg7(struct seg7_conversion_map *map, int c) | 78 | static __inline__ int map_to_seg7(struct seg7_conversion_map *map, int c) |
| 79 | { | 79 | { |
| 80 | return c >= 0 && c < sizeof(map->table) ? map->table[c] : -EINVAL; | 80 | return c >= 0 && c < sizeof(map->table) ? map->table[c] : -EINVAL; |
| 81 | } | 81 | } |
diff --git a/include/linux/matroxfb.h b/include/linux/matroxfb.h index ae5b09493062..404f678e734b 100644 --- a/include/linux/matroxfb.h +++ b/include/linux/matroxfb.h | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | #define __LINUX_MATROXFB_H__ | 2 | #define __LINUX_MATROXFB_H__ |
| 3 | 3 | ||
| 4 | #include <asm/ioctl.h> | 4 | #include <asm/ioctl.h> |
| 5 | #include <asm/types.h> | 5 | #include <linux/types.h> |
| 6 | #include <linux/videodev2.h> | 6 | #include <linux/videodev2.h> |
| 7 | 7 | ||
| 8 | struct matroxioc_output_mode { | 8 | struct matroxioc_output_mode { |
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h index 1fbe14d39521..326f45c86530 100644 --- a/include/linux/memcontrol.h +++ b/include/linux/memcontrol.h | |||
| @@ -19,22 +19,45 @@ | |||
| 19 | 19 | ||
| 20 | #ifndef _LINUX_MEMCONTROL_H | 20 | #ifndef _LINUX_MEMCONTROL_H |
| 21 | #define _LINUX_MEMCONTROL_H | 21 | #define _LINUX_MEMCONTROL_H |
| 22 | 22 | #include <linux/cgroup.h> | |
| 23 | struct mem_cgroup; | 23 | struct mem_cgroup; |
| 24 | struct page_cgroup; | 24 | struct page_cgroup; |
| 25 | struct page; | 25 | struct page; |
| 26 | struct mm_struct; | 26 | struct mm_struct; |
| 27 | 27 | ||
| 28 | #ifdef CONFIG_CGROUP_MEM_RES_CTLR | 28 | #ifdef CONFIG_CGROUP_MEM_RES_CTLR |
| 29 | /* | ||
| 30 | * All "charge" functions with gfp_mask should use GFP_KERNEL or | ||
| 31 | * (gfp_mask & GFP_RECLAIM_MASK). In current implementatin, memcg doesn't | ||
| 32 | * alloc memory but reclaims memory from all available zones. So, "where I want | ||
| 33 | * memory from" bits of gfp_mask has no meaning. So any bits of that field is | ||
| 34 | * available but adding a rule is better. charge functions' gfp_mask should | ||
| 35 | * be set to GFP_KERNEL or gfp_mask & GFP_RECLAIM_MASK for avoiding ambiguous | ||
| 36 | * codes. | ||
| 37 | * (Of course, if memcg does memory allocation in future, GFP_KERNEL is sane.) | ||
| 38 | */ | ||
| 29 | 39 | ||
| 30 | extern int mem_cgroup_charge(struct page *page, struct mm_struct *mm, | 40 | extern int mem_cgroup_newpage_charge(struct page *page, struct mm_struct *mm, |
| 31 | gfp_t gfp_mask); | 41 | gfp_t gfp_mask); |
| 42 | /* for swap handling */ | ||
| 43 | extern int mem_cgroup_try_charge_swapin(struct mm_struct *mm, | ||
| 44 | struct page *page, gfp_t mask, struct mem_cgroup **ptr); | ||
| 45 | extern void mem_cgroup_commit_charge_swapin(struct page *page, | ||
| 46 | struct mem_cgroup *ptr); | ||
| 47 | extern void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *ptr); | ||
| 48 | |||
| 32 | extern int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm, | 49 | extern int mem_cgroup_cache_charge(struct page *page, struct mm_struct *mm, |
| 33 | gfp_t gfp_mask); | 50 | gfp_t gfp_mask); |
| 34 | extern void mem_cgroup_move_lists(struct page *page, enum lru_list lru); | 51 | extern void mem_cgroup_add_lru_list(struct page *page, enum lru_list lru); |
| 52 | extern void mem_cgroup_del_lru_list(struct page *page, enum lru_list lru); | ||
| 53 | extern void mem_cgroup_rotate_lru_list(struct page *page, enum lru_list lru); | ||
| 54 | extern void mem_cgroup_del_lru(struct page *page); | ||
| 55 | extern void mem_cgroup_move_lists(struct page *page, | ||
| 56 | enum lru_list from, enum lru_list to); | ||
| 35 | extern void mem_cgroup_uncharge_page(struct page *page); | 57 | extern void mem_cgroup_uncharge_page(struct page *page); |
| 36 | extern void mem_cgroup_uncharge_cache_page(struct page *page); | 58 | extern void mem_cgroup_uncharge_cache_page(struct page *page); |
| 37 | extern int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask); | 59 | extern int mem_cgroup_shrink_usage(struct page *page, |
| 60 | struct mm_struct *mm, gfp_t gfp_mask); | ||
| 38 | 61 | ||
| 39 | extern unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan, | 62 | extern unsigned long mem_cgroup_isolate_pages(unsigned long nr_to_scan, |
| 40 | struct list_head *dst, | 63 | struct list_head *dst, |
| @@ -47,12 +70,20 @@ int task_in_mem_cgroup(struct task_struct *task, const struct mem_cgroup *mem); | |||
| 47 | 70 | ||
| 48 | extern struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p); | 71 | extern struct mem_cgroup *mem_cgroup_from_task(struct task_struct *p); |
| 49 | 72 | ||
| 50 | #define mm_match_cgroup(mm, cgroup) \ | 73 | static inline |
| 51 | ((cgroup) == mem_cgroup_from_task((mm)->owner)) | 74 | int mm_match_cgroup(const struct mm_struct *mm, const struct mem_cgroup *cgroup) |
| 75 | { | ||
| 76 | struct mem_cgroup *mem; | ||
| 77 | rcu_read_lock(); | ||
| 78 | mem = mem_cgroup_from_task((mm)->owner); | ||
| 79 | rcu_read_unlock(); | ||
| 80 | return cgroup == mem; | ||
| 81 | } | ||
| 52 | 82 | ||
| 53 | extern int | 83 | extern int |
| 54 | mem_cgroup_prepare_migration(struct page *page, struct page *newpage); | 84 | mem_cgroup_prepare_migration(struct page *page, struct mem_cgroup **ptr); |
| 55 | extern void mem_cgroup_end_migration(struct page *page); | 85 | extern void mem_cgroup_end_migration(struct mem_cgroup *mem, |
| 86 | struct page *oldpage, struct page *newpage); | ||
| 56 | 87 | ||
| 57 | /* | 88 | /* |
| 58 | * For memory reclaim. | 89 | * For memory reclaim. |
| @@ -65,13 +96,32 @@ extern void mem_cgroup_note_reclaim_priority(struct mem_cgroup *mem, | |||
| 65 | int priority); | 96 | int priority); |
| 66 | extern void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, | 97 | extern void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, |
| 67 | int priority); | 98 | int priority); |
| 99 | int mem_cgroup_inactive_anon_is_low(struct mem_cgroup *memcg); | ||
| 100 | unsigned long mem_cgroup_zone_nr_pages(struct mem_cgroup *memcg, | ||
| 101 | struct zone *zone, | ||
| 102 | enum lru_list lru); | ||
| 103 | struct zone_reclaim_stat *mem_cgroup_get_reclaim_stat(struct mem_cgroup *memcg, | ||
| 104 | struct zone *zone); | ||
| 105 | struct zone_reclaim_stat* | ||
| 106 | mem_cgroup_get_reclaim_stat_from_page(struct page *page); | ||
| 68 | 107 | ||
| 69 | extern long mem_cgroup_calc_reclaim(struct mem_cgroup *mem, struct zone *zone, | 108 | #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP |
| 70 | int priority, enum lru_list lru); | 109 | extern int do_swap_account; |
| 110 | #endif | ||
| 71 | 111 | ||
| 112 | static inline bool mem_cgroup_disabled(void) | ||
| 113 | { | ||
| 114 | if (mem_cgroup_subsys.disabled) | ||
| 115 | return true; | ||
| 116 | return false; | ||
| 117 | } | ||
| 118 | |||
| 119 | extern bool mem_cgroup_oom_called(struct task_struct *task); | ||
| 72 | 120 | ||
| 73 | #else /* CONFIG_CGROUP_MEM_RES_CTLR */ | 121 | #else /* CONFIG_CGROUP_MEM_RES_CTLR */ |
| 74 | static inline int mem_cgroup_charge(struct page *page, | 122 | struct mem_cgroup; |
| 123 | |||
| 124 | static inline int mem_cgroup_newpage_charge(struct page *page, | ||
| 75 | struct mm_struct *mm, gfp_t gfp_mask) | 125 | struct mm_struct *mm, gfp_t gfp_mask) |
| 76 | { | 126 | { |
| 77 | return 0; | 127 | return 0; |
| @@ -83,6 +133,21 @@ static inline int mem_cgroup_cache_charge(struct page *page, | |||
| 83 | return 0; | 133 | return 0; |
| 84 | } | 134 | } |
| 85 | 135 | ||
| 136 | static inline int mem_cgroup_try_charge_swapin(struct mm_struct *mm, | ||
| 137 | struct page *page, gfp_t gfp_mask, struct mem_cgroup **ptr) | ||
| 138 | { | ||
| 139 | return 0; | ||
| 140 | } | ||
| 141 | |||
| 142 | static inline void mem_cgroup_commit_charge_swapin(struct page *page, | ||
| 143 | struct mem_cgroup *ptr) | ||
| 144 | { | ||
| 145 | } | ||
| 146 | |||
| 147 | static inline void mem_cgroup_cancel_charge_swapin(struct mem_cgroup *ptr) | ||
| 148 | { | ||
| 149 | } | ||
| 150 | |||
| 86 | static inline void mem_cgroup_uncharge_page(struct page *page) | 151 | static inline void mem_cgroup_uncharge_page(struct page *page) |
| 87 | { | 152 | { |
| 88 | } | 153 | } |
| @@ -91,12 +156,33 @@ static inline void mem_cgroup_uncharge_cache_page(struct page *page) | |||
| 91 | { | 156 | { |
| 92 | } | 157 | } |
| 93 | 158 | ||
| 94 | static inline int mem_cgroup_shrink_usage(struct mm_struct *mm, gfp_t gfp_mask) | 159 | static inline int mem_cgroup_shrink_usage(struct page *page, |
| 160 | struct mm_struct *mm, gfp_t gfp_mask) | ||
| 95 | { | 161 | { |
| 96 | return 0; | 162 | return 0; |
| 97 | } | 163 | } |
| 98 | 164 | ||
| 99 | static inline void mem_cgroup_move_lists(struct page *page, bool active) | 165 | static inline void mem_cgroup_add_lru_list(struct page *page, int lru) |
| 166 | { | ||
| 167 | } | ||
| 168 | |||
| 169 | static inline void mem_cgroup_del_lru_list(struct page *page, int lru) | ||
| 170 | { | ||
| 171 | return ; | ||
| 172 | } | ||
| 173 | |||
| 174 | static inline void mem_cgroup_rotate_lru_list(struct page *page, int lru) | ||
| 175 | { | ||
| 176 | return ; | ||
| 177 | } | ||
| 178 | |||
| 179 | static inline void mem_cgroup_del_lru(struct page *page) | ||
| 180 | { | ||
| 181 | return ; | ||
| 182 | } | ||
| 183 | |||
| 184 | static inline void | ||
| 185 | mem_cgroup_move_lists(struct page *page, enum lru_list from, enum lru_list to) | ||
| 100 | { | 186 | { |
| 101 | } | 187 | } |
| 102 | 188 | ||
| @@ -112,12 +198,14 @@ static inline int task_in_mem_cgroup(struct task_struct *task, | |||
| 112 | } | 198 | } |
| 113 | 199 | ||
| 114 | static inline int | 200 | static inline int |
| 115 | mem_cgroup_prepare_migration(struct page *page, struct page *newpage) | 201 | mem_cgroup_prepare_migration(struct page *page, struct mem_cgroup **ptr) |
| 116 | { | 202 | { |
| 117 | return 0; | 203 | return 0; |
| 118 | } | 204 | } |
| 119 | 205 | ||
| 120 | static inline void mem_cgroup_end_migration(struct page *page) | 206 | static inline void mem_cgroup_end_migration(struct mem_cgroup *mem, |
| 207 | struct page *oldpage, | ||
| 208 | struct page *newpage) | ||
| 121 | { | 209 | { |
| 122 | } | 210 | } |
| 123 | 211 | ||
| @@ -146,12 +234,42 @@ static inline void mem_cgroup_record_reclaim_priority(struct mem_cgroup *mem, | |||
| 146 | { | 234 | { |
| 147 | } | 235 | } |
| 148 | 236 | ||
| 149 | static inline long mem_cgroup_calc_reclaim(struct mem_cgroup *mem, | 237 | static inline bool mem_cgroup_disabled(void) |
| 150 | struct zone *zone, int priority, | 238 | { |
| 151 | enum lru_list lru) | 239 | return true; |
| 240 | } | ||
| 241 | |||
| 242 | static inline bool mem_cgroup_oom_called(struct task_struct *task) | ||
| 243 | { | ||
| 244 | return false; | ||
| 245 | } | ||
| 246 | |||
| 247 | static inline int | ||
| 248 | mem_cgroup_inactive_anon_is_low(struct mem_cgroup *memcg) | ||
| 249 | { | ||
| 250 | return 1; | ||
| 251 | } | ||
| 252 | |||
| 253 | static inline unsigned long | ||
| 254 | mem_cgroup_zone_nr_pages(struct mem_cgroup *memcg, struct zone *zone, | ||
| 255 | enum lru_list lru) | ||
| 152 | { | 256 | { |
| 153 | return 0; | 257 | return 0; |
| 154 | } | 258 | } |
| 259 | |||
| 260 | |||
| 261 | static inline struct zone_reclaim_stat* | ||
| 262 | mem_cgroup_get_reclaim_stat(struct mem_cgroup *memcg, struct zone *zone) | ||
| 263 | { | ||
| 264 | return NULL; | ||
| 265 | } | ||
| 266 | |||
| 267 | static inline struct zone_reclaim_stat* | ||
| 268 | mem_cgroup_get_reclaim_stat_from_page(struct page *page) | ||
| 269 | { | ||
| 270 | return NULL; | ||
| 271 | } | ||
| 272 | |||
| 155 | #endif /* CONFIG_CGROUP_MEM_CONT */ | 273 | #endif /* CONFIG_CGROUP_MEM_CONT */ |
| 156 | 274 | ||
| 157 | #endif /* _LINUX_MEMCONTROL_H */ | 275 | #endif /* _LINUX_MEMCONTROL_H */ |
diff --git a/include/linux/memory.h b/include/linux/memory.h index 36c82c9e6ea7..3fdc10806d31 100644 --- a/include/linux/memory.h +++ b/include/linux/memory.h | |||
| @@ -79,14 +79,14 @@ static inline int memory_notify(unsigned long val, void *v) | |||
| 79 | #else | 79 | #else |
| 80 | extern int register_memory_notifier(struct notifier_block *nb); | 80 | extern int register_memory_notifier(struct notifier_block *nb); |
| 81 | extern void unregister_memory_notifier(struct notifier_block *nb); | 81 | extern void unregister_memory_notifier(struct notifier_block *nb); |
| 82 | extern int register_new_memory(struct mem_section *); | 82 | extern int register_new_memory(int, struct mem_section *); |
| 83 | extern int unregister_memory_section(struct mem_section *); | 83 | extern int unregister_memory_section(struct mem_section *); |
| 84 | extern int memory_dev_init(void); | 84 | extern int memory_dev_init(void); |
| 85 | extern int remove_memory_block(unsigned long, struct mem_section *, int); | 85 | extern int remove_memory_block(unsigned long, struct mem_section *, int); |
| 86 | extern int memory_notify(unsigned long val, void *v); | 86 | extern int memory_notify(unsigned long val, void *v); |
| 87 | extern struct memory_block *find_memory_block(struct mem_section *); | ||
| 87 | #define CONFIG_MEM_BLOCK_SIZE (PAGES_PER_SECTION<<PAGE_SHIFT) | 88 | #define CONFIG_MEM_BLOCK_SIZE (PAGES_PER_SECTION<<PAGE_SHIFT) |
| 88 | 89 | enum mem_add_context { BOOT, HOTPLUG }; | |
| 89 | |||
| 90 | #endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */ | 90 | #endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */ |
| 91 | 91 | ||
| 92 | #ifdef CONFIG_MEMORY_HOTPLUG | 92 | #ifdef CONFIG_MEMORY_HOTPLUG |
diff --git a/include/linux/memory_hotplug.h b/include/linux/memory_hotplug.h index 763ba81fc0f0..d95f72e79b82 100644 --- a/include/linux/memory_hotplug.h +++ b/include/linux/memory_hotplug.h | |||
| @@ -72,7 +72,7 @@ extern void __offline_isolated_pages(unsigned long, unsigned long); | |||
| 72 | extern int offline_pages(unsigned long, unsigned long, unsigned long); | 72 | extern int offline_pages(unsigned long, unsigned long, unsigned long); |
| 73 | 73 | ||
| 74 | /* reasonably generic interface to expand the physical pages in a zone */ | 74 | /* reasonably generic interface to expand the physical pages in a zone */ |
| 75 | extern int __add_pages(struct zone *zone, unsigned long start_pfn, | 75 | extern int __add_pages(int nid, struct zone *zone, unsigned long start_pfn, |
| 76 | unsigned long nr_pages); | 76 | unsigned long nr_pages); |
| 77 | extern int __remove_pages(struct zone *zone, unsigned long start_pfn, | 77 | extern int __remove_pages(struct zone *zone, unsigned long start_pfn, |
| 78 | unsigned long nr_pages); | 78 | unsigned long nr_pages); |
diff --git a/include/linux/memstick.h b/include/linux/memstick.h index d0c37e682234..690c35a9d4cc 100644 --- a/include/linux/memstick.h +++ b/include/linux/memstick.h | |||
| @@ -100,8 +100,8 @@ struct mspro_param_register { | |||
| 100 | #define MEMSTICK_SYS_PAR8 0x40 | 100 | #define MEMSTICK_SYS_PAR8 0x40 |
| 101 | #define MEMSTICK_SYS_SERIAL 0x80 | 101 | #define MEMSTICK_SYS_SERIAL 0x80 |
| 102 | 102 | ||
| 103 | unsigned short data_count; | 103 | __be16 data_count; |
| 104 | unsigned int data_address; | 104 | __be32 data_address; |
| 105 | unsigned char tpc_param; | 105 | unsigned char tpc_param; |
| 106 | } __attribute__((packed)); | 106 | } __attribute__((packed)); |
| 107 | 107 | ||
diff --git a/include/linux/mfd/da903x.h b/include/linux/mfd/da903x.h index cad314c12439..115dbe965082 100644 --- a/include/linux/mfd/da903x.h +++ b/include/linux/mfd/da903x.h | |||
| @@ -32,6 +32,7 @@ enum { | |||
| 32 | DA9030_ID_LDO18, | 32 | DA9030_ID_LDO18, |
| 33 | DA9030_ID_LDO19, | 33 | DA9030_ID_LDO19, |
| 34 | DA9030_ID_LDO_INT, /* LDO Internal */ | 34 | DA9030_ID_LDO_INT, /* LDO Internal */ |
| 35 | DA9030_ID_BAT, /* battery charger */ | ||
| 35 | 36 | ||
| 36 | DA9034_ID_LED_1, | 37 | DA9034_ID_LED_1, |
| 37 | DA9034_ID_LED_2, | 38 | DA9034_ID_LED_2, |
| @@ -93,6 +94,43 @@ struct da9034_touch_pdata { | |||
| 93 | int y_inverted; | 94 | int y_inverted; |
| 94 | }; | 95 | }; |
| 95 | 96 | ||
| 97 | /* DA9030 battery charger data */ | ||
| 98 | struct power_supply_info; | ||
| 99 | |||
| 100 | struct da9030_battery_info { | ||
| 101 | /* battery parameters */ | ||
| 102 | struct power_supply_info *battery_info; | ||
| 103 | |||
| 104 | /* current and voltage to use for battery charging */ | ||
| 105 | unsigned int charge_milliamp; | ||
| 106 | unsigned int charge_millivolt; | ||
| 107 | |||
| 108 | /* voltage thresholds (in millivolts) */ | ||
| 109 | int vbat_low; | ||
| 110 | int vbat_crit; | ||
| 111 | int vbat_charge_start; | ||
| 112 | int vbat_charge_stop; | ||
| 113 | int vbat_charge_restart; | ||
| 114 | |||
| 115 | /* battery nominal minimal and maximal voltages in millivolts */ | ||
| 116 | int vcharge_min; | ||
| 117 | int vcharge_max; | ||
| 118 | |||
| 119 | /* Temperature thresholds. These are DA9030 register values | ||
| 120 | "as is" and should be measured for each battery type */ | ||
| 121 | int tbat_low; | ||
| 122 | int tbat_high; | ||
| 123 | int tbat_restart; | ||
| 124 | |||
| 125 | |||
| 126 | /* battery monitor interval (seconds) */ | ||
| 127 | unsigned int batmon_interval; | ||
| 128 | |||
| 129 | /* platform callbacks for battery low and critical events */ | ||
| 130 | void (*battery_low)(void); | ||
| 131 | void (*battery_critical)(void); | ||
| 132 | }; | ||
| 133 | |||
| 96 | struct da903x_subdev_info { | 134 | struct da903x_subdev_info { |
| 97 | int id; | 135 | int id; |
| 98 | const char *name; | 136 | const char *name; |
| @@ -190,11 +228,13 @@ extern int da903x_unregister_notifier(struct device *dev, | |||
| 190 | extern int da903x_query_status(struct device *dev, unsigned int status); | 228 | extern int da903x_query_status(struct device *dev, unsigned int status); |
| 191 | 229 | ||
| 192 | 230 | ||
| 193 | /* NOTE: the two functions below are not intended for use outside | 231 | /* NOTE: the functions below are not intended for use outside |
| 194 | * of the DA9034 sub-device drivers | 232 | * of the DA903x sub-device drivers |
| 195 | */ | 233 | */ |
| 196 | extern int da903x_write(struct device *dev, int reg, uint8_t val); | 234 | extern int da903x_write(struct device *dev, int reg, uint8_t val); |
| 235 | extern int da903x_writes(struct device *dev, int reg, int len, uint8_t *val); | ||
| 197 | extern int da903x_read(struct device *dev, int reg, uint8_t *val); | 236 | extern int da903x_read(struct device *dev, int reg, uint8_t *val); |
| 237 | extern int da903x_reads(struct device *dev, int reg, int len, uint8_t *val); | ||
| 198 | extern int da903x_update(struct device *dev, int reg, uint8_t val, uint8_t mask); | 238 | extern int da903x_update(struct device *dev, int reg, uint8_t val, uint8_t mask); |
| 199 | extern int da903x_set_bits(struct device *dev, int reg, uint8_t bit_mask); | 239 | extern int da903x_set_bits(struct device *dev, int reg, uint8_t bit_mask); |
| 200 | extern int da903x_clr_bits(struct device *dev, int reg, uint8_t bit_mask); | 240 | extern int da903x_clr_bits(struct device *dev, int reg, uint8_t bit_mask); |
diff --git a/include/linux/mfd/pcf50633/adc.h b/include/linux/mfd/pcf50633/adc.h new file mode 100644 index 000000000000..56669b4183ad --- /dev/null +++ b/include/linux/mfd/pcf50633/adc.h | |||
| @@ -0,0 +1,72 @@ | |||
| 1 | /* | ||
| 2 | * adc.h -- Driver for NXP PCF50633 ADC | ||
| 3 | * | ||
| 4 | * (C) 2006-2008 by Openmoko, Inc. | ||
| 5 | * All rights reserved. | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify it | ||
| 8 | * under the terms of the GNU General Public License as published by the | ||
| 9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 10 | * option) any later version. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #ifndef __LINUX_MFD_PCF50633_ADC_H | ||
| 14 | #define __LINUX_MFD_PCF50633_ADC_H | ||
| 15 | |||
| 16 | #include <linux/mfd/pcf50633/core.h> | ||
| 17 | #include <linux/platform_device.h> | ||
| 18 | |||
| 19 | /* ADC Registers */ | ||
| 20 | #define PCF50633_REG_ADCC3 0x52 | ||
| 21 | #define PCF50633_REG_ADCC2 0x53 | ||
| 22 | #define PCF50633_REG_ADCC1 0x54 | ||
| 23 | #define PCF50633_REG_ADCS1 0x55 | ||
| 24 | #define PCF50633_REG_ADCS2 0x56 | ||
| 25 | #define PCF50633_REG_ADCS3 0x57 | ||
| 26 | |||
| 27 | #define PCF50633_ADCC1_ADCSTART 0x01 | ||
| 28 | #define PCF50633_ADCC1_RES_10BIT 0x02 | ||
| 29 | #define PCF50633_ADCC1_AVERAGE_NO 0x00 | ||
| 30 | #define PCF50633_ADCC1_AVERAGE_4 0x04 | ||
| 31 | #define PCF50633_ADCC1_AVERAGE_8 0x08 | ||
| 32 | #define PCF50633_ADCC1_AVERAGE_16 0x0c | ||
| 33 | #define PCF50633_ADCC1_MUX_BATSNS_RES 0x00 | ||
| 34 | #define PCF50633_ADCC1_MUX_BATSNS_SUBTR 0x10 | ||
| 35 | #define PCF50633_ADCC1_MUX_ADCIN2_RES 0x20 | ||
| 36 | #define PCF50633_ADCC1_MUX_ADCIN2_SUBTR 0x30 | ||
| 37 | #define PCF50633_ADCC1_MUX_BATTEMP 0x60 | ||
| 38 | #define PCF50633_ADCC1_MUX_ADCIN1 0x70 | ||
| 39 | #define PCF50633_ADCC1_AVERAGE_MASK 0x0c | ||
| 40 | #define PCF50633_ADCC1_ADCMUX_MASK 0xf0 | ||
| 41 | |||
| 42 | #define PCF50633_ADCC2_RATIO_NONE 0x00 | ||
| 43 | #define PCF50633_ADCC2_RATIO_BATTEMP 0x01 | ||
| 44 | #define PCF50633_ADCC2_RATIO_ADCIN1 0x02 | ||
| 45 | #define PCF50633_ADCC2_RATIO_BOTH 0x03 | ||
| 46 | #define PCF50633_ADCC2_RATIOSETTL_100US 0x04 | ||
| 47 | |||
| 48 | #define PCF50633_ADCC3_ACCSW_EN 0x01 | ||
| 49 | #define PCF50633_ADCC3_NTCSW_EN 0x04 | ||
| 50 | #define PCF50633_ADCC3_RES_DIV_TWO 0x10 | ||
| 51 | #define PCF50633_ADCC3_RES_DIV_THREE 0x00 | ||
| 52 | |||
| 53 | #define PCF50633_ADCS3_REF_NTCSW 0x00 | ||
| 54 | #define PCF50633_ADCS3_REF_ACCSW 0x10 | ||
| 55 | #define PCF50633_ADCS3_REF_2V0 0x20 | ||
| 56 | #define PCF50633_ADCS3_REF_VISA 0x30 | ||
| 57 | #define PCF50633_ADCS3_REF_2V0_2 0x70 | ||
| 58 | #define PCF50633_ADCS3_ADCRDY 0x80 | ||
| 59 | |||
| 60 | #define PCF50633_ADCS3_ADCDAT1L_MASK 0x03 | ||
| 61 | #define PCF50633_ADCS3_ADCDAT2L_MASK 0x0c | ||
| 62 | #define PCF50633_ADCS3_ADCDAT2L_SHIFT 2 | ||
| 63 | #define PCF50633_ASCS3_REF_MASK 0x70 | ||
| 64 | |||
| 65 | extern int | ||
| 66 | pcf50633_adc_async_read(struct pcf50633 *pcf, int mux, int avg, | ||
| 67 | void (*callback)(struct pcf50633 *, void *, int), | ||
| 68 | void *callback_param); | ||
| 69 | extern int | ||
| 70 | pcf50633_adc_sync_read(struct pcf50633 *pcf, int mux, int avg); | ||
| 71 | |||
| 72 | #endif /* __LINUX_PCF50633_ADC_H */ | ||
diff --git a/include/linux/mfd/pcf50633/core.h b/include/linux/mfd/pcf50633/core.h new file mode 100644 index 000000000000..4455b212d75a --- /dev/null +++ b/include/linux/mfd/pcf50633/core.h | |||
| @@ -0,0 +1,218 @@ | |||
| 1 | /* | ||
| 2 | * core.h -- Core driver for NXP PCF50633 | ||
| 3 | * | ||
| 4 | * (C) 2006-2008 by Openmoko, Inc. | ||
| 5 | * All rights reserved. | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify it | ||
| 8 | * under the terms of the GNU General Public License as published by the | ||
| 9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 10 | * option) any later version. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #ifndef __LINUX_MFD_PCF50633_CORE_H | ||
| 14 | #define __LINUX_MFD_PCF50633_CORE_H | ||
| 15 | |||
| 16 | #include <linux/i2c.h> | ||
| 17 | #include <linux/workqueue.h> | ||
| 18 | #include <linux/regulator/driver.h> | ||
| 19 | #include <linux/regulator/machine.h> | ||
| 20 | #include <linux/power_supply.h> | ||
| 21 | |||
| 22 | struct pcf50633; | ||
| 23 | |||
| 24 | #define PCF50633_NUM_REGULATORS 11 | ||
| 25 | |||
| 26 | struct pcf50633_platform_data { | ||
| 27 | struct regulator_init_data reg_init_data[PCF50633_NUM_REGULATORS]; | ||
| 28 | |||
| 29 | char **batteries; | ||
| 30 | int num_batteries; | ||
| 31 | |||
| 32 | /* Callbacks */ | ||
| 33 | void (*probe_done)(struct pcf50633 *); | ||
| 34 | void (*mbc_event_callback)(struct pcf50633 *, int); | ||
| 35 | void (*regulator_registered)(struct pcf50633 *, int); | ||
| 36 | void (*force_shutdown)(struct pcf50633 *); | ||
| 37 | |||
| 38 | u8 resumers[5]; | ||
| 39 | }; | ||
| 40 | |||
| 41 | struct pcf50633_subdev_pdata { | ||
| 42 | struct pcf50633 *pcf; | ||
| 43 | }; | ||
| 44 | |||
| 45 | struct pcf50633_irq { | ||
| 46 | void (*handler) (int, void *); | ||
| 47 | void *data; | ||
| 48 | }; | ||
| 49 | |||
| 50 | int pcf50633_register_irq(struct pcf50633 *pcf, int irq, | ||
| 51 | void (*handler) (int, void *), void *data); | ||
| 52 | int pcf50633_free_irq(struct pcf50633 *pcf, int irq); | ||
| 53 | |||
| 54 | int pcf50633_irq_mask(struct pcf50633 *pcf, int irq); | ||
| 55 | int pcf50633_irq_unmask(struct pcf50633 *pcf, int irq); | ||
| 56 | int pcf50633_irq_mask_get(struct pcf50633 *pcf, int irq); | ||
| 57 | |||
| 58 | int pcf50633_read_block(struct pcf50633 *, u8 reg, | ||
| 59 | int nr_regs, u8 *data); | ||
| 60 | int pcf50633_write_block(struct pcf50633 *pcf, u8 reg, | ||
| 61 | int nr_regs, u8 *data); | ||
| 62 | u8 pcf50633_reg_read(struct pcf50633 *, u8 reg); | ||
| 63 | int pcf50633_reg_write(struct pcf50633 *pcf, u8 reg, u8 val); | ||
| 64 | |||
| 65 | int pcf50633_reg_set_bit_mask(struct pcf50633 *pcf, u8 reg, u8 mask, u8 val); | ||
| 66 | int pcf50633_reg_clear_bits(struct pcf50633 *pcf, u8 reg, u8 bits); | ||
| 67 | |||
| 68 | /* Interrupt registers */ | ||
| 69 | |||
| 70 | #define PCF50633_REG_INT1 0x02 | ||
| 71 | #define PCF50633_REG_INT2 0x03 | ||
| 72 | #define PCF50633_REG_INT3 0x04 | ||
| 73 | #define PCF50633_REG_INT4 0x05 | ||
| 74 | #define PCF50633_REG_INT5 0x06 | ||
| 75 | |||
| 76 | #define PCF50633_REG_INT1M 0x07 | ||
| 77 | #define PCF50633_REG_INT2M 0x08 | ||
| 78 | #define PCF50633_REG_INT3M 0x09 | ||
| 79 | #define PCF50633_REG_INT4M 0x0a | ||
| 80 | #define PCF50633_REG_INT5M 0x0b | ||
| 81 | |||
| 82 | enum { | ||
| 83 | /* Chip IRQs */ | ||
| 84 | PCF50633_IRQ_ADPINS, | ||
| 85 | PCF50633_IRQ_ADPREM, | ||
| 86 | PCF50633_IRQ_USBINS, | ||
| 87 | PCF50633_IRQ_USBREM, | ||
| 88 | PCF50633_IRQ_RESERVED1, | ||
| 89 | PCF50633_IRQ_RESERVED2, | ||
| 90 | PCF50633_IRQ_ALARM, | ||
| 91 | PCF50633_IRQ_SECOND, | ||
| 92 | PCF50633_IRQ_ONKEYR, | ||
| 93 | PCF50633_IRQ_ONKEYF, | ||
| 94 | PCF50633_IRQ_EXTON1R, | ||
| 95 | PCF50633_IRQ_EXTON1F, | ||
| 96 | PCF50633_IRQ_EXTON2R, | ||
| 97 | PCF50633_IRQ_EXTON2F, | ||
| 98 | PCF50633_IRQ_EXTON3R, | ||
| 99 | PCF50633_IRQ_EXTON3F, | ||
| 100 | PCF50633_IRQ_BATFULL, | ||
| 101 | PCF50633_IRQ_CHGHALT, | ||
| 102 | PCF50633_IRQ_THLIMON, | ||
| 103 | PCF50633_IRQ_THLIMOFF, | ||
| 104 | PCF50633_IRQ_USBLIMON, | ||
| 105 | PCF50633_IRQ_USBLIMOFF, | ||
| 106 | PCF50633_IRQ_ADCRDY, | ||
| 107 | PCF50633_IRQ_ONKEY1S, | ||
| 108 | PCF50633_IRQ_LOWSYS, | ||
| 109 | PCF50633_IRQ_LOWBAT, | ||
| 110 | PCF50633_IRQ_HIGHTMP, | ||
| 111 | PCF50633_IRQ_AUTOPWRFAIL, | ||
| 112 | PCF50633_IRQ_DWN1PWRFAIL, | ||
| 113 | PCF50633_IRQ_DWN2PWRFAIL, | ||
| 114 | PCF50633_IRQ_LEDPWRFAIL, | ||
| 115 | PCF50633_IRQ_LEDOVP, | ||
| 116 | PCF50633_IRQ_LDO1PWRFAIL, | ||
| 117 | PCF50633_IRQ_LDO2PWRFAIL, | ||
| 118 | PCF50633_IRQ_LDO3PWRFAIL, | ||
| 119 | PCF50633_IRQ_LDO4PWRFAIL, | ||
| 120 | PCF50633_IRQ_LDO5PWRFAIL, | ||
| 121 | PCF50633_IRQ_LDO6PWRFAIL, | ||
| 122 | PCF50633_IRQ_HCLDOPWRFAIL, | ||
| 123 | PCF50633_IRQ_HCLDOOVL, | ||
| 124 | |||
| 125 | /* Always last */ | ||
| 126 | PCF50633_NUM_IRQ, | ||
| 127 | }; | ||
| 128 | |||
| 129 | struct pcf50633 { | ||
| 130 | struct device *dev; | ||
| 131 | struct i2c_client *i2c_client; | ||
| 132 | |||
| 133 | struct pcf50633_platform_data *pdata; | ||
| 134 | int irq; | ||
| 135 | struct pcf50633_irq irq_handler[PCF50633_NUM_IRQ]; | ||
| 136 | struct work_struct irq_work; | ||
| 137 | struct mutex lock; | ||
| 138 | |||
| 139 | u8 mask_regs[5]; | ||
| 140 | |||
| 141 | u8 suspend_irq_masks[5]; | ||
| 142 | u8 resume_reason[5]; | ||
| 143 | int is_suspended; | ||
| 144 | |||
| 145 | int onkey1s_held; | ||
| 146 | |||
| 147 | struct platform_device *rtc_pdev; | ||
| 148 | struct platform_device *mbc_pdev; | ||
| 149 | struct platform_device *adc_pdev; | ||
| 150 | struct platform_device *input_pdev; | ||
| 151 | struct platform_device *regulator_pdev[PCF50633_NUM_REGULATORS]; | ||
| 152 | }; | ||
| 153 | |||
| 154 | enum pcf50633_reg_int1 { | ||
| 155 | PCF50633_INT1_ADPINS = 0x01, /* Adapter inserted */ | ||
| 156 | PCF50633_INT1_ADPREM = 0x02, /* Adapter removed */ | ||
| 157 | PCF50633_INT1_USBINS = 0x04, /* USB inserted */ | ||
| 158 | PCF50633_INT1_USBREM = 0x08, /* USB removed */ | ||
| 159 | /* reserved */ | ||
| 160 | PCF50633_INT1_ALARM = 0x40, /* RTC alarm time is reached */ | ||
| 161 | PCF50633_INT1_SECOND = 0x80, /* RTC periodic second interrupt */ | ||
| 162 | }; | ||
| 163 | |||
| 164 | enum pcf50633_reg_int2 { | ||
| 165 | PCF50633_INT2_ONKEYR = 0x01, /* ONKEY rising edge */ | ||
| 166 | PCF50633_INT2_ONKEYF = 0x02, /* ONKEY falling edge */ | ||
| 167 | PCF50633_INT2_EXTON1R = 0x04, /* EXTON1 rising edge */ | ||
| 168 | PCF50633_INT2_EXTON1F = 0x08, /* EXTON1 falling edge */ | ||
| 169 | PCF50633_INT2_EXTON2R = 0x10, /* EXTON2 rising edge */ | ||
| 170 | PCF50633_INT2_EXTON2F = 0x20, /* EXTON2 falling edge */ | ||
| 171 | PCF50633_INT2_EXTON3R = 0x40, /* EXTON3 rising edge */ | ||
| 172 | PCF50633_INT2_EXTON3F = 0x80, /* EXTON3 falling edge */ | ||
| 173 | }; | ||
| 174 | |||
| 175 | enum pcf50633_reg_int3 { | ||
| 176 | PCF50633_INT3_BATFULL = 0x01, /* Battery full */ | ||
| 177 | PCF50633_INT3_CHGHALT = 0x02, /* Charger halt */ | ||
| 178 | PCF50633_INT3_THLIMON = 0x04, | ||
| 179 | PCF50633_INT3_THLIMOFF = 0x08, | ||
| 180 | PCF50633_INT3_USBLIMON = 0x10, | ||
| 181 | PCF50633_INT3_USBLIMOFF = 0x20, | ||
| 182 | PCF50633_INT3_ADCRDY = 0x40, /* ADC result ready */ | ||
| 183 | PCF50633_INT3_ONKEY1S = 0x80, /* ONKEY pressed 1 second */ | ||
| 184 | }; | ||
| 185 | |||
| 186 | enum pcf50633_reg_int4 { | ||
| 187 | PCF50633_INT4_LOWSYS = 0x01, | ||
| 188 | PCF50633_INT4_LOWBAT = 0x02, | ||
| 189 | PCF50633_INT4_HIGHTMP = 0x04, | ||
| 190 | PCF50633_INT4_AUTOPWRFAIL = 0x08, | ||
| 191 | PCF50633_INT4_DWN1PWRFAIL = 0x10, | ||
| 192 | PCF50633_INT4_DWN2PWRFAIL = 0x20, | ||
| 193 | PCF50633_INT4_LEDPWRFAIL = 0x40, | ||
| 194 | PCF50633_INT4_LEDOVP = 0x80, | ||
| 195 | }; | ||
| 196 | |||
| 197 | enum pcf50633_reg_int5 { | ||
| 198 | PCF50633_INT5_LDO1PWRFAIL = 0x01, | ||
| 199 | PCF50633_INT5_LDO2PWRFAIL = 0x02, | ||
| 200 | PCF50633_INT5_LDO3PWRFAIL = 0x04, | ||
| 201 | PCF50633_INT5_LDO4PWRFAIL = 0x08, | ||
| 202 | PCF50633_INT5_LDO5PWRFAIL = 0x10, | ||
| 203 | PCF50633_INT5_LDO6PWRFAIL = 0x20, | ||
| 204 | PCF50633_INT5_HCLDOPWRFAIL = 0x40, | ||
| 205 | PCF50633_INT5_HCLDOOVL = 0x80, | ||
| 206 | }; | ||
| 207 | |||
| 208 | /* misc. registers */ | ||
| 209 | #define PCF50633_REG_OOCSHDWN 0x0c | ||
| 210 | |||
| 211 | /* LED registers */ | ||
| 212 | #define PCF50633_REG_LEDOUT 0x28 | ||
| 213 | #define PCF50633_REG_LEDENA 0x29 | ||
| 214 | #define PCF50633_REG_LEDCTL 0x2a | ||
| 215 | #define PCF50633_REG_LEDDIM 0x2b | ||
| 216 | |||
| 217 | #endif | ||
| 218 | |||
diff --git a/include/linux/mfd/pcf50633/gpio.h b/include/linux/mfd/pcf50633/gpio.h new file mode 100644 index 000000000000..a42b845efc54 --- /dev/null +++ b/include/linux/mfd/pcf50633/gpio.h | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | /* | ||
| 2 | * gpio.h -- GPIO driver for NXP PCF50633 | ||
| 3 | * | ||
| 4 | * (C) 2006-2008 by Openmoko, Inc. | ||
| 5 | * All rights reserved. | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify it | ||
| 8 | * under the terms of the GNU General Public License as published by the | ||
| 9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 10 | * option) any later version. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #ifndef __LINUX_MFD_PCF50633_GPIO_H | ||
| 14 | #define __LINUX_MFD_PCF50633_GPIO_H | ||
| 15 | |||
| 16 | #include <linux/mfd/pcf50633/core.h> | ||
| 17 | |||
| 18 | #define PCF50633_GPIO1 1 | ||
| 19 | #define PCF50633_GPIO2 2 | ||
| 20 | #define PCF50633_GPIO3 3 | ||
| 21 | #define PCF50633_GPO 4 | ||
| 22 | |||
| 23 | #define PCF50633_REG_GPIO1CFG 0x14 | ||
| 24 | #define PCF50633_REG_GPIO2CFG 0x15 | ||
| 25 | #define PCF50633_REG_GPIO3CFG 0x16 | ||
| 26 | #define PCF50633_REG_GPOCFG 0x17 | ||
| 27 | |||
| 28 | #define PCF50633_GPOCFG_GPOSEL_MASK 0x07 | ||
| 29 | |||
| 30 | enum pcf50633_reg_gpocfg { | ||
| 31 | PCF50633_GPOCFG_GPOSEL_0 = 0x00, | ||
| 32 | PCF50633_GPOCFG_GPOSEL_LED_NFET = 0x01, | ||
| 33 | PCF50633_GPOCFG_GPOSEL_SYSxOK = 0x02, | ||
| 34 | PCF50633_GPOCFG_GPOSEL_CLK32K = 0x03, | ||
| 35 | PCF50633_GPOCFG_GPOSEL_ADAPUSB = 0x04, | ||
| 36 | PCF50633_GPOCFG_GPOSEL_USBxOK = 0x05, | ||
| 37 | PCF50633_GPOCFG_GPOSEL_ACTPH4 = 0x06, | ||
| 38 | PCF50633_GPOCFG_GPOSEL_1 = 0x07, | ||
| 39 | PCF50633_GPOCFG_GPOSEL_INVERSE = 0x08, | ||
| 40 | }; | ||
| 41 | |||
| 42 | int pcf50633_gpio_set(struct pcf50633 *pcf, int gpio, u8 val); | ||
| 43 | u8 pcf50633_gpio_get(struct pcf50633 *pcf, int gpio); | ||
| 44 | |||
| 45 | int pcf50633_gpio_invert_set(struct pcf50633 *, int gpio, int invert); | ||
| 46 | int pcf50633_gpio_invert_get(struct pcf50633 *pcf, int gpio); | ||
| 47 | |||
| 48 | int pcf50633_gpio_power_supply_set(struct pcf50633 *, | ||
| 49 | int gpio, int regulator, int on); | ||
| 50 | #endif /* __LINUX_MFD_PCF50633_GPIO_H */ | ||
| 51 | |||
| 52 | |||
diff --git a/include/linux/mfd/pcf50633/mbc.h b/include/linux/mfd/pcf50633/mbc.h new file mode 100644 index 000000000000..6e17619b773a --- /dev/null +++ b/include/linux/mfd/pcf50633/mbc.h | |||
| @@ -0,0 +1,134 @@ | |||
| 1 | /* | ||
| 2 | * mbc.h -- Driver for NXP PCF50633 Main Battery Charger | ||
| 3 | * | ||
| 4 | * (C) 2006-2008 by Openmoko, Inc. | ||
| 5 | * All rights reserved. | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify it | ||
| 8 | * under the terms of the GNU General Public License as published by the | ||
| 9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
| 10 | * option) any later version. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #ifndef __LINUX_MFD_PCF50633_MBC_H | ||
| 14 | #define __LINUX_MFD_PCF50633_MBC_H | ||
| 15 | |||
| 16 | #include <linux/mfd/pcf50633/core.h> | ||
| 17 | #include <linux/platform_device.h> | ||
| 18 | |||
| 19 | #define PCF50633_REG_MBCC1 0x43 | ||
| 20 | #define PCF50633_REG_MBCC2 0x44 | ||
| 21 | #define PCF50633_REG_MBCC3 0x45 | ||
| 22 | #define PCF50633_REG_MBCC4 0x46 | ||
| 23 | #define PCF50633_REG_MBCC5 0x47 | ||
| 24 | #define PCF50633_REG_MBCC6 0x48 | ||
| 25 | #define PCF50633_REG_MBCC7 0x49 | ||
| 26 | #define PCF50633_REG_MBCC8 0x4a | ||
| 27 | #define PCF50633_REG_MBCS1 0x4b | ||
| 28 | #define PCF50633_REG_MBCS2 0x4c | ||
| 29 | #define PCF50633_REG_MBCS3 0x4d | ||
| 30 | |||
| 31 | enum pcf50633_reg_mbcc1 { | ||
| 32 | PCF50633_MBCC1_CHGENA = 0x01, /* Charger enable */ | ||
| 33 | PCF50633_MBCC1_AUTOSTOP = 0x02, | ||
| 34 | PCF50633_MBCC1_AUTORES = 0x04, /* automatic resume */ | ||
| 35 | PCF50633_MBCC1_RESUME = 0x08, /* explicit resume cmd */ | ||
| 36 | PCF50633_MBCC1_RESTART = 0x10, /* restart charging */ | ||
| 37 | PCF50633_MBCC1_PREWDTIME_60M = 0x20, /* max. precharging time */ | ||
| 38 | PCF50633_MBCC1_WDTIME_1H = 0x00, | ||
| 39 | PCF50633_MBCC1_WDTIME_2H = 0x40, | ||
| 40 | PCF50633_MBCC1_WDTIME_4H = 0x80, | ||
| 41 | PCF50633_MBCC1_WDTIME_6H = 0xc0, | ||
| 42 | }; | ||
| 43 | #define PCF50633_MBCC1_WDTIME_MASK 0xc0 | ||
| 44 | |||
| 45 | enum pcf50633_reg_mbcc2 { | ||
| 46 | PCF50633_MBCC2_VBATCOND_2V7 = 0x00, | ||
| 47 | PCF50633_MBCC2_VBATCOND_2V85 = 0x01, | ||
| 48 | PCF50633_MBCC2_VBATCOND_3V0 = 0x02, | ||
| 49 | PCF50633_MBCC2_VBATCOND_3V15 = 0x03, | ||
| 50 | PCF50633_MBCC2_VMAX_4V = 0x00, | ||
| 51 | PCF50633_MBCC2_VMAX_4V20 = 0x28, | ||
| 52 | PCF50633_MBCC2_VRESDEBTIME_64S = 0x80, /* debounce time (32/64sec) */ | ||
| 53 | }; | ||
| 54 | |||
| 55 | enum pcf50633_reg_mbcc7 { | ||
| 56 | PCF50633_MBCC7_USB_100mA = 0x00, | ||
| 57 | PCF50633_MBCC7_USB_500mA = 0x01, | ||
| 58 | PCF50633_MBCC7_USB_1000mA = 0x02, | ||
| 59 | PCF50633_MBCC7_USB_SUSPEND = 0x03, | ||
| 60 | PCF50633_MBCC7_BATTEMP_EN = 0x04, | ||
| 61 | PCF50633_MBCC7_BATSYSIMAX_1A6 = 0x00, | ||
| 62 | PCF50633_MBCC7_BATSYSIMAX_1A8 = 0x40, | ||
| 63 | PCF50633_MBCC7_BATSYSIMAX_2A0 = 0x80, | ||
| 64 | PCF50633_MBCC7_BATSYSIMAX_2A2 = 0xc0, | ||
| 65 | }; | ||
| 66 | #define PCF50633_MBCC7_USB_MASK 0x03 | ||
| 67 | |||
| 68 | enum pcf50633_reg_mbcc8 { | ||
| 69 | PCF50633_MBCC8_USBENASUS = 0x10, | ||
| 70 | }; | ||
| 71 | |||
| 72 | enum pcf50633_reg_mbcs1 { | ||
| 73 | PCF50633_MBCS1_USBPRES = 0x01, | ||
| 74 | PCF50633_MBCS1_USBOK = 0x02, | ||
| 75 | PCF50633_MBCS1_ADAPTPRES = 0x04, | ||
| 76 | PCF50633_MBCS1_ADAPTOK = 0x08, | ||
| 77 | PCF50633_MBCS1_TBAT_OK = 0x00, | ||
| 78 | PCF50633_MBCS1_TBAT_ABOVE = 0x10, | ||
| 79 | PCF50633_MBCS1_TBAT_BELOW = 0x20, | ||
| 80 | PCF50633_MBCS1_TBAT_UNDEF = 0x30, | ||
| 81 | PCF50633_MBCS1_PREWDTEXP = 0x40, | ||
| 82 | PCF50633_MBCS1_WDTEXP = 0x80, | ||
| 83 | }; | ||
| 84 | |||
| 85 | enum pcf50633_reg_mbcs2_mbcmod { | ||
| 86 | PCF50633_MBCS2_MBC_PLAY = 0x00, | ||
| 87 | PCF50633_MBCS2_MBC_USB_PRE = 0x01, | ||
| 88 | PCF50633_MBCS2_MBC_USB_PRE_WAIT = 0x02, | ||
| 89 | PCF50633_MBCS2_MBC_USB_FAST = 0x03, | ||
| 90 | PCF50633_MBCS2_MBC_USB_FAST_WAIT = 0x04, | ||
| 91 | PCF50633_MBCS2_MBC_USB_SUSPEND = 0x05, | ||
| 92 | PCF50633_MBCS2_MBC_ADP_PRE = 0x06, | ||
| 93 | PCF50633_MBCS2_MBC_ADP_PRE_WAIT = 0x07, | ||
| 94 | PCF50633_MBCS2_MBC_ADP_FAST = 0x08, | ||
| 95 | PCF50633_MBCS2_MBC_ADP_FAST_WAIT = 0x09, | ||
| 96 | PCF50633_MBCS2_MBC_BAT_FULL = 0x0a, | ||
| 97 | PCF50633_MBCS2_MBC_HALT = 0x0b, | ||
| 98 | }; | ||
| 99 | #define PCF50633_MBCS2_MBC_MASK 0x0f | ||
| 100 | enum pcf50633_reg_mbcs2_chgstat { | ||
| 101 | PCF50633_MBCS2_CHGS_NONE = 0x00, | ||
| 102 | PCF50633_MBCS2_CHGS_ADAPTER = 0x10, | ||
| 103 | PCF50633_MBCS2_CHGS_USB = 0x20, | ||
| 104 | PCF50633_MBCS2_CHGS_BOTH = 0x30, | ||
| 105 | }; | ||
| 106 | #define PCF50633_MBCS2_RESSTAT_AUTO 0x40 | ||
| 107 | |||
| 108 | enum pcf50633_reg_mbcs3 { | ||
| 109 | PCF50633_MBCS3_USBLIM_PLAY = 0x01, | ||
| 110 | PCF50633_MBCS3_USBLIM_CGH = 0x02, | ||
| 111 | PCF50633_MBCS3_TLIM_PLAY = 0x04, | ||
| 112 | PCF50633_MBCS3_TLIM_CHG = 0x08, | ||
| 113 | PCF50633_MBCS3_ILIM = 0x10, /* 1: Ibat > Icutoff */ | ||
| 114 | PCF50633_MBCS3_VLIM = 0x20, /* 1: Vbat == Vmax */ | ||
| 115 | PCF50633_MBCS3_VBATSTAT = 0x40, /* 1: Vbat > Vbatcond */ | ||
| 116 | PCF50633_MBCS3_VRES = 0x80, /* 1: Vbat > Vth(RES) */ | ||
| 117 | }; | ||
| 118 | |||
| 119 | #define PCF50633_MBCC2_VBATCOND_MASK 0x03 | ||
| 120 | #define PCF50633_MBCC2_VMAX_MASK 0x3c | ||
| 121 | |||
| 122 | /* Charger status */ | ||
| 123 | #define PCF50633_MBC_USB_ONLINE 0x01 | ||
| 124 | #define PCF50633_MBC_USB_ACTIVE 0x02 | ||
| 125 | #define PCF50633_MBC_ADAPTER_ONLINE 0x04 | ||
| 126 | #define PCF50633_MBC_ADAPTER_ACTIVE 0x08 | ||
| 127 | |||
| 128 | int pcf50633_mbc_usb_curlim_set(struct pcf50633 *pcf, int ma); | ||
| 129 | |||
| 130 | int pcf50633_mbc_get_status(struct pcf50633 *); | ||
| 131 | void pcf50633_mbc_set_status(struct pcf50633 *, int what, int status); | ||
| 132 | |||
| 133 | #endif | ||
| 134 | |||
diff --git a/include/linux/mfd/pcf50633/pmic.h b/include/linux/mfd/pcf50633/pmic.h new file mode 100644 index 000000000000..2d3dbe53b235 --- /dev/null +++ b/include/linux/mfd/pcf50633/pmic.h | |||
| @@ -0,0 +1,67 @@ | |||
| 1 | #ifndef __LINUX_MFD_PCF50633_PMIC_H | ||
| 2 | #define __LINUX_MFD_PCF50633_PMIC_H | ||
| 3 | |||
| 4 | #include <linux/mfd/pcf50633/core.h> | ||
| 5 | #include <linux/platform_device.h> | ||
| 6 | |||
| 7 | #define PCF50633_REG_AUTOOUT 0x1a | ||
| 8 | #define PCF50633_REG_AUTOENA 0x1b | ||
| 9 | #define PCF50633_REG_AUTOCTL 0x1c | ||
| 10 | #define PCF50633_REG_AUTOMXC 0x1d | ||
| 11 | #define PCF50633_REG_DOWN1OUT 0x1e | ||
| 12 | #define PCF50633_REG_DOWN1ENA 0x1f | ||
| 13 | #define PCF50633_REG_DOWN1CTL 0x20 | ||
| 14 | #define PCF50633_REG_DOWN1MXC 0x21 | ||
| 15 | #define PCF50633_REG_DOWN2OUT 0x22 | ||
| 16 | #define PCF50633_REG_DOWN2ENA 0x23 | ||
| 17 | #define PCF50633_REG_DOWN2CTL 0x24 | ||
| 18 | #define PCF50633_REG_DOWN2MXC 0x25 | ||
| 19 | #define PCF50633_REG_MEMLDOOUT 0x26 | ||
| 20 | #define PCF50633_REG_MEMLDOENA 0x27 | ||
| 21 | #define PCF50633_REG_LDO1OUT 0x2d | ||
| 22 | #define PCF50633_REG_LDO1ENA 0x2e | ||
| 23 | #define PCF50633_REG_LDO2OUT 0x2f | ||
| 24 | #define PCF50633_REG_LDO2ENA 0x30 | ||
| 25 | #define PCF50633_REG_LDO3OUT 0x31 | ||
| 26 | #define PCF50633_REG_LDO3ENA 0x32 | ||
| 27 | #define PCF50633_REG_LDO4OUT 0x33 | ||
| 28 | #define PCF50633_REG_LDO4ENA 0x34 | ||
| 29 | #define PCF50633_REG_LDO5OUT 0x35 | ||
| 30 | #define PCF50633_REG_LDO5ENA 0x36 | ||
| 31 | #define PCF50633_REG_LDO6OUT 0x37 | ||
| 32 | #define PCF50633_REG_LDO6ENA 0x38 | ||
| 33 | #define PCF50633_REG_HCLDOOUT 0x39 | ||
| 34 | #define PCF50633_REG_HCLDOENA 0x3a | ||
| 35 | #define PCF50633_REG_HCLDOOVL 0x40 | ||
| 36 | |||
| 37 | enum pcf50633_regulator_enable { | ||
| 38 | PCF50633_REGULATOR_ON = 0x01, | ||
| 39 | PCF50633_REGULATOR_ON_GPIO1 = 0x02, | ||
| 40 | PCF50633_REGULATOR_ON_GPIO2 = 0x04, | ||
| 41 | PCF50633_REGULATOR_ON_GPIO3 = 0x08, | ||
| 42 | }; | ||
| 43 | #define PCF50633_REGULATOR_ON_MASK 0x0f | ||
| 44 | |||
| 45 | enum pcf50633_regulator_phase { | ||
| 46 | PCF50633_REGULATOR_ACTPH1 = 0x00, | ||
| 47 | PCF50633_REGULATOR_ACTPH2 = 0x10, | ||
| 48 | PCF50633_REGULATOR_ACTPH3 = 0x20, | ||
| 49 | PCF50633_REGULATOR_ACTPH4 = 0x30, | ||
| 50 | }; | ||
| 51 | #define PCF50633_REGULATOR_ACTPH_MASK 0x30 | ||
| 52 | |||
| 53 | enum pcf50633_regulator_id { | ||
| 54 | PCF50633_REGULATOR_AUTO, | ||
| 55 | PCF50633_REGULATOR_DOWN1, | ||
| 56 | PCF50633_REGULATOR_DOWN2, | ||
| 57 | PCF50633_REGULATOR_LDO1, | ||
| 58 | PCF50633_REGULATOR_LDO2, | ||
| 59 | PCF50633_REGULATOR_LDO3, | ||
| 60 | PCF50633_REGULATOR_LDO4, | ||
| 61 | PCF50633_REGULATOR_LDO5, | ||
| 62 | PCF50633_REGULATOR_LDO6, | ||
| 63 | PCF50633_REGULATOR_HCLDO, | ||
| 64 | PCF50633_REGULATOR_MEMLDO, | ||
| 65 | }; | ||
| 66 | #endif | ||
| 67 | |||
diff --git a/include/linux/mfd/wm8350/comparator.h b/include/linux/mfd/wm8350/comparator.h index 053788649452..54bc5d0fd502 100644 --- a/include/linux/mfd/wm8350/comparator.h +++ b/include/linux/mfd/wm8350/comparator.h | |||
| @@ -164,4 +164,12 @@ | |||
| 164 | #define WM8350_AUXADC_BATT 6 | 164 | #define WM8350_AUXADC_BATT 6 |
| 165 | #define WM8350_AUXADC_TEMP 7 | 165 | #define WM8350_AUXADC_TEMP 7 |
| 166 | 166 | ||
| 167 | struct wm8350; | ||
| 168 | |||
| 169 | /* | ||
| 170 | * AUX ADC Readback | ||
| 171 | */ | ||
| 172 | int wm8350_read_auxadc(struct wm8350 *wm8350, int channel, int scale, | ||
| 173 | int vref); | ||
| 174 | |||
| 167 | #endif | 175 | #endif |
diff --git a/include/linux/mfd/wm8350/core.h b/include/linux/mfd/wm8350/core.h index 6ebf97f2a475..980669d50dca 100644 --- a/include/linux/mfd/wm8350/core.h +++ b/include/linux/mfd/wm8350/core.h | |||
| @@ -29,6 +29,7 @@ | |||
| 29 | */ | 29 | */ |
| 30 | #define WM8350_RESET_ID 0x00 | 30 | #define WM8350_RESET_ID 0x00 |
| 31 | #define WM8350_ID 0x01 | 31 | #define WM8350_ID 0x01 |
| 32 | #define WM8350_REVISION 0x02 | ||
| 32 | #define WM8350_SYSTEM_CONTROL_1 0x03 | 33 | #define WM8350_SYSTEM_CONTROL_1 0x03 |
| 33 | #define WM8350_SYSTEM_CONTROL_2 0x04 | 34 | #define WM8350_SYSTEM_CONTROL_2 0x04 |
| 34 | #define WM8350_SYSTEM_HIBERNATE 0x05 | 35 | #define WM8350_SYSTEM_HIBERNATE 0x05 |
| @@ -57,6 +58,10 @@ | |||
| 57 | #define WM8350_OVER_CURRENT_INT_STATUS_MASK 0x25 | 58 | #define WM8350_OVER_CURRENT_INT_STATUS_MASK 0x25 |
| 58 | #define WM8350_GPIO_INT_STATUS_MASK 0x26 | 59 | #define WM8350_GPIO_INT_STATUS_MASK 0x26 |
| 59 | #define WM8350_COMPARATOR_INT_STATUS_MASK 0x27 | 60 | #define WM8350_COMPARATOR_INT_STATUS_MASK 0x27 |
| 61 | #define WM8350_CHARGER_OVERRIDES 0xE2 | ||
| 62 | #define WM8350_MISC_OVERRIDES 0xE3 | ||
| 63 | #define WM8350_COMPARATOR_OVERRIDES 0xE7 | ||
| 64 | #define WM8350_STATE_MACHINE_STATUS 0xE9 | ||
| 60 | 65 | ||
| 61 | #define WM8350_MAX_REGISTER 0xFF | 66 | #define WM8350_MAX_REGISTER 0xFF |
| 62 | 67 | ||
| @@ -77,6 +82,11 @@ | |||
| 77 | #define WM8350_CUST_ID_MASK 0x00FF | 82 | #define WM8350_CUST_ID_MASK 0x00FF |
| 78 | 83 | ||
| 79 | /* | 84 | /* |
| 85 | * R2 (0x02) - Revision | ||
| 86 | */ | ||
| 87 | #define WM8350_MASK_REV_MASK 0x00FF | ||
| 88 | |||
| 89 | /* | ||
| 80 | * R3 (0x03) - System Control 1 | 90 | * R3 (0x03) - System Control 1 |
| 81 | */ | 91 | */ |
| 82 | #define WM8350_CHIP_ON 0x8000 | 92 | #define WM8350_CHIP_ON 0x8000 |
| @@ -523,6 +533,35 @@ | |||
| 523 | #define WM8350_DC2_STS 0x0002 | 533 | #define WM8350_DC2_STS 0x0002 |
| 524 | #define WM8350_DC1_STS 0x0001 | 534 | #define WM8350_DC1_STS 0x0001 |
| 525 | 535 | ||
| 536 | /* | ||
| 537 | * R226 (0xE2) - Charger status | ||
| 538 | */ | ||
| 539 | #define WM8350_CHG_BATT_HOT_OVRDE 0x8000 | ||
| 540 | #define WM8350_CHG_BATT_COLD_OVRDE 0x4000 | ||
| 541 | |||
| 542 | /* | ||
| 543 | * R227 (0xE3) - Misc Overrides | ||
| 544 | */ | ||
| 545 | #define WM8350_USB_LIMIT_OVRDE 0x0400 | ||
| 546 | |||
| 547 | /* | ||
| 548 | * R227 (0xE7) - Comparator Overrides | ||
| 549 | */ | ||
| 550 | #define WM8350_USB_FB_OVRDE 0x8000 | ||
| 551 | #define WM8350_WALL_FB_OVRDE 0x4000 | ||
| 552 | #define WM8350_BATT_FB_OVRDE 0x2000 | ||
| 553 | |||
| 554 | |||
| 555 | /* | ||
| 556 | * R233 (0xE9) - State Machinine Status | ||
| 557 | */ | ||
| 558 | #define WM8350_USB_SM_MASK 0x0700 | ||
| 559 | #define WM8350_USB_SM_SHIFT 8 | ||
| 560 | |||
| 561 | #define WM8350_USB_SM_100_SLV 1 | ||
| 562 | #define WM8350_USB_SM_500_SLV 5 | ||
| 563 | #define WM8350_USB_SM_STDBY_SLV 7 | ||
| 564 | |||
| 526 | /* WM8350 wake up conditions */ | 565 | /* WM8350 wake up conditions */ |
| 527 | #define WM8350_IRQ_WKUP_OFF_STATE 43 | 566 | #define WM8350_IRQ_WKUP_OFF_STATE 43 |
| 528 | #define WM8350_IRQ_WKUP_HIB_STATE 44 | 567 | #define WM8350_IRQ_WKUP_HIB_STATE 44 |
| @@ -536,6 +575,7 @@ | |||
| 536 | #define WM8350_REV_E 0x4 | 575 | #define WM8350_REV_E 0x4 |
| 537 | #define WM8350_REV_F 0x5 | 576 | #define WM8350_REV_F 0x5 |
| 538 | #define WM8350_REV_G 0x6 | 577 | #define WM8350_REV_G 0x6 |
| 578 | #define WM8350_REV_H 0x7 | ||
| 539 | 579 | ||
| 540 | #define WM8350_NUM_IRQ 63 | 580 | #define WM8350_NUM_IRQ 63 |
| 541 | 581 | ||
| @@ -549,6 +589,14 @@ extern const u16 wm8350_mode0_defaults[]; | |||
| 549 | extern const u16 wm8350_mode1_defaults[]; | 589 | extern const u16 wm8350_mode1_defaults[]; |
| 550 | extern const u16 wm8350_mode2_defaults[]; | 590 | extern const u16 wm8350_mode2_defaults[]; |
| 551 | extern const u16 wm8350_mode3_defaults[]; | 591 | extern const u16 wm8350_mode3_defaults[]; |
| 592 | extern const u16 wm8351_mode0_defaults[]; | ||
| 593 | extern const u16 wm8351_mode1_defaults[]; | ||
| 594 | extern const u16 wm8351_mode2_defaults[]; | ||
| 595 | extern const u16 wm8351_mode3_defaults[]; | ||
| 596 | extern const u16 wm8352_mode0_defaults[]; | ||
| 597 | extern const u16 wm8352_mode1_defaults[]; | ||
| 598 | extern const u16 wm8352_mode2_defaults[]; | ||
| 599 | extern const u16 wm8352_mode3_defaults[]; | ||
| 552 | 600 | ||
| 553 | struct wm8350; | 601 | struct wm8350; |
| 554 | 602 | ||
| @@ -558,8 +606,6 @@ struct wm8350_irq { | |||
| 558 | }; | 606 | }; |
| 559 | 607 | ||
| 560 | struct wm8350 { | 608 | struct wm8350 { |
| 561 | int rev; /* chip revision */ | ||
| 562 | |||
| 563 | struct device *dev; | 609 | struct device *dev; |
| 564 | 610 | ||
| 565 | /* device IO */ | 611 | /* device IO */ |
| @@ -572,6 +618,8 @@ struct wm8350 { | |||
| 572 | void *src); | 618 | void *src); |
| 573 | u16 *reg_cache; | 619 | u16 *reg_cache; |
| 574 | 620 | ||
| 621 | struct mutex auxadc_mutex; | ||
| 622 | |||
| 575 | /* Interrupt handling */ | 623 | /* Interrupt handling */ |
| 576 | struct work_struct irq_work; | 624 | struct work_struct irq_work; |
| 577 | struct mutex irq_mutex; /* IRQ table mutex */ | 625 | struct mutex irq_mutex; /* IRQ table mutex */ |
diff --git a/include/linux/mfd/wm8350/pmic.h b/include/linux/mfd/wm8350/pmic.h index 69b69e07f62f..be3264e286e0 100644 --- a/include/linux/mfd/wm8350/pmic.h +++ b/include/linux/mfd/wm8350/pmic.h | |||
| @@ -13,6 +13,10 @@ | |||
| 13 | #ifndef __LINUX_MFD_WM8350_PMIC_H | 13 | #ifndef __LINUX_MFD_WM8350_PMIC_H |
| 14 | #define __LINUX_MFD_WM8350_PMIC_H | 14 | #define __LINUX_MFD_WM8350_PMIC_H |
| 15 | 15 | ||
| 16 | #include <linux/platform_device.h> | ||
| 17 | #include <linux/leds.h> | ||
| 18 | #include <linux/regulator/machine.h> | ||
| 19 | |||
| 16 | /* | 20 | /* |
| 17 | * Register values. | 21 | * Register values. |
| 18 | */ | 22 | */ |
| @@ -700,7 +704,38 @@ struct wm8350; | |||
| 700 | struct platform_device; | 704 | struct platform_device; |
| 701 | struct regulator_init_data; | 705 | struct regulator_init_data; |
| 702 | 706 | ||
| 707 | /* | ||
| 708 | * WM8350 LED platform data | ||
| 709 | */ | ||
| 710 | struct wm8350_led_platform_data { | ||
| 711 | const char *name; | ||
| 712 | const char *default_trigger; | ||
| 713 | int max_uA; | ||
| 714 | }; | ||
| 715 | |||
| 716 | struct wm8350_led { | ||
| 717 | struct platform_device *pdev; | ||
| 718 | struct mutex mutex; | ||
| 719 | struct work_struct work; | ||
| 720 | spinlock_t value_lock; | ||
| 721 | enum led_brightness value; | ||
| 722 | struct led_classdev cdev; | ||
| 723 | int max_uA_index; | ||
| 724 | int enabled; | ||
| 725 | |||
| 726 | struct regulator *isink; | ||
| 727 | struct regulator_consumer_supply isink_consumer; | ||
| 728 | struct regulator_init_data isink_init; | ||
| 729 | struct regulator *dcdc; | ||
| 730 | struct regulator_consumer_supply dcdc_consumer; | ||
| 731 | struct regulator_init_data dcdc_init; | ||
| 732 | }; | ||
| 733 | |||
| 703 | struct wm8350_pmic { | 734 | struct wm8350_pmic { |
| 735 | /* Number of regulators of each type on this device */ | ||
| 736 | int max_dcdc; | ||
| 737 | int max_isink; | ||
| 738 | |||
| 704 | /* ISINK to DCDC mapping */ | 739 | /* ISINK to DCDC mapping */ |
| 705 | int isink_A_dcdc; | 740 | int isink_A_dcdc; |
| 706 | int isink_B_dcdc; | 741 | int isink_B_dcdc; |
| @@ -713,10 +748,15 @@ struct wm8350_pmic { | |||
| 713 | 748 | ||
| 714 | /* regulator devices */ | 749 | /* regulator devices */ |
| 715 | struct platform_device *pdev[NUM_WM8350_REGULATORS]; | 750 | struct platform_device *pdev[NUM_WM8350_REGULATORS]; |
| 751 | |||
| 752 | /* LED devices */ | ||
| 753 | struct wm8350_led led[2]; | ||
| 716 | }; | 754 | }; |
| 717 | 755 | ||
| 718 | int wm8350_register_regulator(struct wm8350 *wm8350, int reg, | 756 | int wm8350_register_regulator(struct wm8350 *wm8350, int reg, |
| 719 | struct regulator_init_data *initdata); | 757 | struct regulator_init_data *initdata); |
| 758 | int wm8350_register_led(struct wm8350 *wm8350, int lednum, int dcdc, int isink, | ||
| 759 | struct wm8350_led_platform_data *pdata); | ||
| 720 | 760 | ||
| 721 | /* | 761 | /* |
| 722 | * Additional DCDC control not supported via regulator API | 762 | * Additional DCDC control not supported via regulator API |
diff --git a/include/linux/mfd/wm8350/supply.h b/include/linux/mfd/wm8350/supply.h index 1c8f3cde79b0..2b9479310bbd 100644 --- a/include/linux/mfd/wm8350/supply.h +++ b/include/linux/mfd/wm8350/supply.h | |||
| @@ -13,7 +13,8 @@ | |||
| 13 | #ifndef __LINUX_MFD_WM8350_SUPPLY_H_ | 13 | #ifndef __LINUX_MFD_WM8350_SUPPLY_H_ |
| 14 | #define __LINUX_MFD_WM8350_SUPPLY_H_ | 14 | #define __LINUX_MFD_WM8350_SUPPLY_H_ |
| 15 | 15 | ||
| 16 | #include <linux/platform_device.h> | 16 | #include <linux/mutex.h> |
| 17 | #include <linux/power_supply.h> | ||
| 17 | 18 | ||
| 18 | /* | 19 | /* |
| 19 | * Charger registers | 20 | * Charger registers |
| @@ -104,8 +105,30 @@ | |||
| 104 | #define WM8350_IRQ_EXT_WALL_FB 37 | 105 | #define WM8350_IRQ_EXT_WALL_FB 37 |
| 105 | #define WM8350_IRQ_EXT_BAT_FB 38 | 106 | #define WM8350_IRQ_EXT_BAT_FB 38 |
| 106 | 107 | ||
| 108 | /* | ||
| 109 | * Policy to control charger state machine. | ||
| 110 | */ | ||
| 111 | struct wm8350_charger_policy { | ||
| 112 | |||
| 113 | /* charger state machine policy - set in machine driver */ | ||
| 114 | int eoc_mA; /* end of charge current (mA) */ | ||
| 115 | int charge_mV; /* charge voltage */ | ||
| 116 | int fast_limit_mA; /* fast charge current limit */ | ||
| 117 | int fast_limit_USB_mA; /* USB fast charge current limit */ | ||
| 118 | int charge_timeout; /* charge timeout (mins) */ | ||
| 119 | int trickle_start_mV; /* trickle charge starts at mV */ | ||
| 120 | int trickle_charge_mA; /* trickle charge current */ | ||
| 121 | int trickle_charge_USB_mA; /* USB trickle charge current */ | ||
| 122 | }; | ||
| 123 | |||
| 107 | struct wm8350_power { | 124 | struct wm8350_power { |
| 108 | struct platform_device *pdev; | 125 | struct platform_device *pdev; |
| 126 | struct power_supply battery; | ||
| 127 | struct power_supply usb; | ||
| 128 | struct power_supply ac; | ||
| 129 | struct wm8350_charger_policy *policy; | ||
| 130 | |||
| 131 | int rev_g_coeff; | ||
| 109 | }; | 132 | }; |
| 110 | 133 | ||
| 111 | #endif | 134 | #endif |
diff --git a/include/linux/migrate.h b/include/linux/migrate.h index 3f34005068d4..527602cdea1c 100644 --- a/include/linux/migrate.h +++ b/include/linux/migrate.h | |||
| @@ -7,6 +7,8 @@ | |||
| 7 | 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 **); |
| 8 | 8 | ||
| 9 | #ifdef CONFIG_MIGRATION | 9 | #ifdef CONFIG_MIGRATION |
| 10 | #define PAGE_MIGRATION 1 | ||
| 11 | |||
| 10 | extern int putback_lru_pages(struct list_head *l); | 12 | extern int putback_lru_pages(struct list_head *l); |
| 11 | extern int migrate_page(struct address_space *, | 13 | extern int migrate_page(struct address_space *, |
| 12 | struct page *, struct page *); | 14 | struct page *, struct page *); |
| @@ -20,6 +22,8 @@ extern int migrate_vmas(struct mm_struct *mm, | |||
| 20 | const nodemask_t *from, const nodemask_t *to, | 22 | const nodemask_t *from, const nodemask_t *to, |
| 21 | unsigned long flags); | 23 | unsigned long flags); |
| 22 | #else | 24 | #else |
| 25 | #define PAGE_MIGRATION 0 | ||
| 26 | |||
| 23 | static inline int putback_lru_pages(struct list_head *l) { return 0; } | 27 | static inline int putback_lru_pages(struct list_head *l) { return 0; } |
| 24 | static inline int migrate_pages(struct list_head *l, new_page_t x, | 28 | static inline int migrate_pages(struct list_head *l, new_page_t x, |
| 25 | unsigned long private) { return -ENOSYS; } | 29 | unsigned long private) { return -ENOSYS; } |
diff --git a/include/linux/minix_fs.h b/include/linux/minix_fs.h index 0e39745f5111..13fe09e0576a 100644 --- a/include/linux/minix_fs.h +++ b/include/linux/minix_fs.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef _LINUX_MINIX_FS_H | 1 | #ifndef _LINUX_MINIX_FS_H |
| 2 | #define _LINUX_MINIX_FS_H | 2 | #define _LINUX_MINIX_FS_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/magic.h> | 5 | #include <linux/magic.h> |
| 5 | 6 | ||
| 6 | /* | 7 | /* |
diff --git a/include/linux/miscdevice.h b/include/linux/miscdevice.h index 26433ec520b3..a820f816a49e 100644 --- a/include/linux/miscdevice.h +++ b/include/linux/miscdevice.h | |||
| @@ -3,33 +3,33 @@ | |||
| 3 | #include <linux/module.h> | 3 | #include <linux/module.h> |
| 4 | #include <linux/major.h> | 4 | #include <linux/major.h> |
| 5 | 5 | ||
| 6 | #define PSMOUSE_MINOR 1 | 6 | #define PSMOUSE_MINOR 1 |
| 7 | #define MS_BUSMOUSE_MINOR 2 | 7 | #define MS_BUSMOUSE_MINOR 2 |
| 8 | #define ATIXL_BUSMOUSE_MINOR 3 | 8 | #define ATIXL_BUSMOUSE_MINOR 3 |
| 9 | /*#define AMIGAMOUSE_MINOR 4 FIXME OBSOLETE */ | 9 | /*#define AMIGAMOUSE_MINOR 4 FIXME OBSOLETE */ |
| 10 | #define ATARIMOUSE_MINOR 5 | 10 | #define ATARIMOUSE_MINOR 5 |
| 11 | #define SUN_MOUSE_MINOR 6 | 11 | #define SUN_MOUSE_MINOR 6 |
| 12 | #define APOLLO_MOUSE_MINOR 7 | 12 | #define APOLLO_MOUSE_MINOR 7 |
| 13 | #define PC110PAD_MINOR 9 | 13 | #define PC110PAD_MINOR 9 |
| 14 | /*#define ADB_MOUSE_MINOR 10 FIXME OBSOLETE */ | 14 | /*#define ADB_MOUSE_MINOR 10 FIXME OBSOLETE */ |
| 15 | #define WATCHDOG_MINOR 130 /* Watchdog timer */ | 15 | #define WATCHDOG_MINOR 130 /* Watchdog timer */ |
| 16 | #define TEMP_MINOR 131 /* Temperature Sensor */ | 16 | #define TEMP_MINOR 131 /* Temperature Sensor */ |
| 17 | #define RTC_MINOR 135 | 17 | #define RTC_MINOR 135 |
| 18 | #define EFI_RTC_MINOR 136 /* EFI Time services */ | 18 | #define EFI_RTC_MINOR 136 /* EFI Time services */ |
| 19 | #define SUN_OPENPROM_MINOR 139 | 19 | #define SUN_OPENPROM_MINOR 139 |
| 20 | #define DMAPI_MINOR 140 /* DMAPI */ | 20 | #define DMAPI_MINOR 140 /* DMAPI */ |
| 21 | #define NVRAM_MINOR 144 | 21 | #define NVRAM_MINOR 144 |
| 22 | #define SGI_MMTIMER 153 | 22 | #define SGI_MMTIMER 153 |
| 23 | #define STORE_QUEUE_MINOR 155 | 23 | #define STORE_QUEUE_MINOR 155 |
| 24 | #define I2O_MINOR 166 | 24 | #define I2O_MINOR 166 |
| 25 | #define MICROCODE_MINOR 184 | 25 | #define MICROCODE_MINOR 184 |
| 26 | #define MWAVE_MINOR 219 /* ACP/Mwave Modem */ | 26 | #define TUN_MINOR 200 |
| 27 | #define MPT_MINOR 220 | 27 | #define MWAVE_MINOR 219 /* ACP/Mwave Modem */ |
| 28 | #define MISC_DYNAMIC_MINOR 255 | 28 | #define MPT_MINOR 220 |
| 29 | 29 | #define HPET_MINOR 228 | |
| 30 | #define TUN_MINOR 200 | 30 | #define FUSE_MINOR 229 |
| 31 | #define HPET_MINOR 228 | 31 | #define KVM_MINOR 232 |
| 32 | #define KVM_MINOR 232 | 32 | #define MISC_DYNAMIC_MINOR 255 |
| 33 | 33 | ||
| 34 | struct device; | 34 | struct device; |
| 35 | 35 | ||
diff --git a/include/linux/mm.h b/include/linux/mm.h index aaa8b843be28..e8ddc98b8405 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
| @@ -56,19 +56,9 @@ extern unsigned long mmap_min_addr; | |||
| 56 | 56 | ||
| 57 | extern struct kmem_cache *vm_area_cachep; | 57 | extern struct kmem_cache *vm_area_cachep; |
| 58 | 58 | ||
| 59 | /* | ||
| 60 | * This struct defines the per-mm list of VMAs for uClinux. If CONFIG_MMU is | ||
| 61 | * disabled, then there's a single shared list of VMAs maintained by the | ||
| 62 | * system, and mm's subscribe to these individually | ||
| 63 | */ | ||
| 64 | struct vm_list_struct { | ||
| 65 | struct vm_list_struct *next; | ||
| 66 | struct vm_area_struct *vma; | ||
| 67 | }; | ||
| 68 | |||
| 69 | #ifndef CONFIG_MMU | 59 | #ifndef CONFIG_MMU |
| 70 | extern struct rb_root nommu_vma_tree; | 60 | extern struct rb_root nommu_region_tree; |
| 71 | extern struct rw_semaphore nommu_vma_sem; | 61 | extern struct rw_semaphore nommu_region_sem; |
| 72 | 62 | ||
| 73 | extern unsigned int kobjsize(const void *objp); | 63 | extern unsigned int kobjsize(const void *objp); |
| 74 | #endif | 64 | #endif |
| @@ -270,7 +260,6 @@ static inline int put_page_testzero(struct page *page) | |||
| 270 | */ | 260 | */ |
| 271 | static inline int get_page_unless_zero(struct page *page) | 261 | static inline int get_page_unless_zero(struct page *page) |
| 272 | { | 262 | { |
| 273 | VM_BUG_ON(PageTail(page)); | ||
| 274 | return atomic_inc_not_zero(&page->_count); | 263 | return atomic_inc_not_zero(&page->_count); |
| 275 | } | 264 | } |
| 276 | 265 | ||
| @@ -717,6 +706,11 @@ static inline int page_mapped(struct page *page) | |||
| 717 | 706 | ||
| 718 | #define VM_FAULT_ERROR (VM_FAULT_OOM | VM_FAULT_SIGBUS) | 707 | #define VM_FAULT_ERROR (VM_FAULT_OOM | VM_FAULT_SIGBUS) |
| 719 | 708 | ||
| 709 | /* | ||
| 710 | * Can be called by the pagefault handler when it gets a VM_FAULT_OOM. | ||
| 711 | */ | ||
| 712 | extern void pagefault_out_of_memory(void); | ||
| 713 | |||
| 720 | #define offset_in_page(p) ((unsigned long)(p) & ~PAGE_MASK) | 714 | #define offset_in_page(p) ((unsigned long)(p) & ~PAGE_MASK) |
| 721 | 715 | ||
| 722 | extern void show_free_areas(void); | 716 | extern void show_free_areas(void); |
| @@ -1056,6 +1050,7 @@ extern void memmap_init_zone(unsigned long, int, unsigned long, | |||
| 1056 | unsigned long, enum memmap_context); | 1050 | unsigned long, enum memmap_context); |
| 1057 | extern void setup_per_zone_pages_min(void); | 1051 | extern void setup_per_zone_pages_min(void); |
| 1058 | extern void mem_init(void); | 1052 | extern void mem_init(void); |
| 1053 | extern void __init mmap_init(void); | ||
| 1059 | extern void show_mem(void); | 1054 | extern void show_mem(void); |
| 1060 | extern void si_meminfo(struct sysinfo * val); | 1055 | extern void si_meminfo(struct sysinfo * val); |
| 1061 | extern void si_meminfo_node(struct sysinfo *val, int nid); | 1056 | extern void si_meminfo_node(struct sysinfo *val, int nid); |
| @@ -1067,6 +1062,9 @@ extern void setup_per_cpu_pageset(void); | |||
| 1067 | static inline void setup_per_cpu_pageset(void) {} | 1062 | static inline void setup_per_cpu_pageset(void) {} |
| 1068 | #endif | 1063 | #endif |
| 1069 | 1064 | ||
| 1065 | /* nommu.c */ | ||
| 1066 | extern atomic_t mmap_pages_allocated; | ||
| 1067 | |||
| 1070 | /* prio_tree.c */ | 1068 | /* prio_tree.c */ |
| 1071 | void vma_prio_tree_add(struct vm_area_struct *, struct vm_area_struct *old); | 1069 | void vma_prio_tree_add(struct vm_area_struct *, struct vm_area_struct *old); |
| 1072 | void vma_prio_tree_insert(struct vm_area_struct *, struct prio_tree_root *); | 1070 | void vma_prio_tree_insert(struct vm_area_struct *, struct prio_tree_root *); |
diff --git a/include/linux/mm_inline.h b/include/linux/mm_inline.h index c948350c378e..7fbb97267556 100644 --- a/include/linux/mm_inline.h +++ b/include/linux/mm_inline.h | |||
| @@ -28,6 +28,7 @@ add_page_to_lru_list(struct zone *zone, struct page *page, enum lru_list l) | |||
| 28 | { | 28 | { |
| 29 | list_add(&page->lru, &zone->lru[l].list); | 29 | list_add(&page->lru, &zone->lru[l].list); |
| 30 | __inc_zone_state(zone, NR_LRU_BASE + l); | 30 | __inc_zone_state(zone, NR_LRU_BASE + l); |
| 31 | mem_cgroup_add_lru_list(page, l); | ||
| 31 | } | 32 | } |
| 32 | 33 | ||
| 33 | static inline void | 34 | static inline void |
| @@ -35,6 +36,7 @@ del_page_from_lru_list(struct zone *zone, struct page *page, enum lru_list l) | |||
| 35 | { | 36 | { |
| 36 | list_del(&page->lru); | 37 | list_del(&page->lru); |
| 37 | __dec_zone_state(zone, NR_LRU_BASE + l); | 38 | __dec_zone_state(zone, NR_LRU_BASE + l); |
| 39 | mem_cgroup_del_lru_list(page, l); | ||
| 38 | } | 40 | } |
| 39 | 41 | ||
| 40 | static inline void | 42 | static inline void |
| @@ -54,6 +56,7 @@ del_page_from_lru(struct zone *zone, struct page *page) | |||
| 54 | l += page_is_file_cache(page); | 56 | l += page_is_file_cache(page); |
| 55 | } | 57 | } |
| 56 | __dec_zone_state(zone, NR_LRU_BASE + l); | 58 | __dec_zone_state(zone, NR_LRU_BASE + l); |
| 59 | mem_cgroup_del_lru_list(page, l); | ||
| 57 | } | 60 | } |
| 58 | 61 | ||
| 59 | /** | 62 | /** |
| @@ -78,23 +81,4 @@ static inline enum lru_list page_lru(struct page *page) | |||
| 78 | return lru; | 81 | return lru; |
| 79 | } | 82 | } |
| 80 | 83 | ||
| 81 | /** | ||
| 82 | * inactive_anon_is_low - check if anonymous pages need to be deactivated | ||
| 83 | * @zone: zone to check | ||
| 84 | * | ||
| 85 | * Returns true if the zone does not have enough inactive anon pages, | ||
| 86 | * meaning some active anon pages need to be deactivated. | ||
| 87 | */ | ||
| 88 | static inline int inactive_anon_is_low(struct zone *zone) | ||
| 89 | { | ||
| 90 | unsigned long active, inactive; | ||
| 91 | |||
| 92 | active = zone_page_state(zone, NR_ACTIVE_ANON); | ||
| 93 | inactive = zone_page_state(zone, NR_INACTIVE_ANON); | ||
| 94 | |||
| 95 | if (inactive * zone->inactive_ratio < active) | ||
| 96 | return 1; | ||
| 97 | |||
| 98 | return 0; | ||
| 99 | } | ||
| 100 | #endif | 84 | #endif |
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index 9cfc9b627fdd..92915e81443f 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h | |||
| @@ -97,6 +97,23 @@ struct page { | |||
| 97 | }; | 97 | }; |
| 98 | 98 | ||
| 99 | /* | 99 | /* |
| 100 | * A region containing a mapping of a non-memory backed file under NOMMU | ||
| 101 | * conditions. These are held in a global tree and are pinned by the VMAs that | ||
| 102 | * map parts of them. | ||
| 103 | */ | ||
| 104 | struct vm_region { | ||
| 105 | struct rb_node vm_rb; /* link in global region tree */ | ||
| 106 | unsigned long vm_flags; /* VMA vm_flags */ | ||
| 107 | unsigned long vm_start; /* start address of region */ | ||
| 108 | unsigned long vm_end; /* region initialised to here */ | ||
| 109 | unsigned long vm_top; /* region allocated to here */ | ||
| 110 | unsigned long vm_pgoff; /* the offset in vm_file corresponding to vm_start */ | ||
| 111 | struct file *vm_file; /* the backing file or NULL */ | ||
| 112 | |||
| 113 | atomic_t vm_usage; /* region usage count */ | ||
| 114 | }; | ||
| 115 | |||
| 116 | /* | ||
| 100 | * This struct defines a memory VMM memory area. There is one of these | 117 | * This struct defines a memory VMM memory area. There is one of these |
| 101 | * per VM-area/task. A VM area is any part of the process virtual memory | 118 | * per VM-area/task. A VM area is any part of the process virtual memory |
| 102 | * space that has a special rule for the page-fault handlers (ie a shared | 119 | * space that has a special rule for the page-fault handlers (ie a shared |
| @@ -152,7 +169,7 @@ struct vm_area_struct { | |||
| 152 | unsigned long vm_truncate_count;/* truncate_count or restart_addr */ | 169 | unsigned long vm_truncate_count;/* truncate_count or restart_addr */ |
| 153 | 170 | ||
| 154 | #ifndef CONFIG_MMU | 171 | #ifndef CONFIG_MMU |
| 155 | atomic_t vm_usage; /* refcount (VMAs shared if !MMU) */ | 172 | struct vm_region *vm_region; /* NOMMU mapping region */ |
| 156 | #endif | 173 | #endif |
| 157 | #ifdef CONFIG_NUMA | 174 | #ifdef CONFIG_NUMA |
| 158 | struct mempolicy *vm_policy; /* NUMA policy for the VMA */ | 175 | struct mempolicy *vm_policy; /* NUMA policy for the VMA */ |
diff --git a/include/linux/mmc/core.h b/include/linux/mmc/core.h index 143cebf0586f..7ac8b500d55c 100644 --- a/include/linux/mmc/core.h +++ b/include/linux/mmc/core.h | |||
| @@ -151,4 +151,6 @@ static inline void mmc_claim_host(struct mmc_host *host) | |||
| 151 | __mmc_claim_host(host, NULL); | 151 | __mmc_claim_host(host, NULL); |
| 152 | } | 152 | } |
| 153 | 153 | ||
| 154 | extern u32 mmc_vddrange_to_ocrmask(int vdd_min, int vdd_max); | ||
| 155 | |||
| 154 | #endif | 156 | #endif |
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index f842f234e44f..4e457256bd33 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h | |||
| @@ -41,6 +41,7 @@ struct mmc_ios { | |||
| 41 | 41 | ||
| 42 | #define MMC_BUS_WIDTH_1 0 | 42 | #define MMC_BUS_WIDTH_1 0 |
| 43 | #define MMC_BUS_WIDTH_4 2 | 43 | #define MMC_BUS_WIDTH_4 2 |
| 44 | #define MMC_BUS_WIDTH_8 3 | ||
| 44 | 45 | ||
| 45 | unsigned char timing; /* timing specification used */ | 46 | unsigned char timing; /* timing specification used */ |
| 46 | 47 | ||
| @@ -116,6 +117,7 @@ struct mmc_host { | |||
| 116 | #define MMC_CAP_SDIO_IRQ (1 << 3) /* Can signal pending SDIO IRQs */ | 117 | #define MMC_CAP_SDIO_IRQ (1 << 3) /* Can signal pending SDIO IRQs */ |
| 117 | #define MMC_CAP_SPI (1 << 4) /* Talks only SPI protocols */ | 118 | #define MMC_CAP_SPI (1 << 4) /* Talks only SPI protocols */ |
| 118 | #define MMC_CAP_NEEDS_POLL (1 << 5) /* Needs polling for card-detection */ | 119 | #define MMC_CAP_NEEDS_POLL (1 << 5) /* Needs polling for card-detection */ |
| 120 | #define MMC_CAP_8_BIT_DATA (1 << 6) /* Can the host do 8 bit transfers */ | ||
| 119 | 121 | ||
| 120 | /* host specific block data */ | 122 | /* host specific block data */ |
| 121 | unsigned int max_seg_size; /* see blk_queue_max_segment_size */ | 123 | unsigned int max_seg_size; /* see blk_queue_max_segment_size */ |
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 35a7b5e19465..09c14e213b63 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h | |||
| @@ -263,6 +263,19 @@ enum zone_type { | |||
| 263 | #error ZONES_SHIFT -- too many zones configured adjust calculation | 263 | #error ZONES_SHIFT -- too many zones configured adjust calculation |
| 264 | #endif | 264 | #endif |
| 265 | 265 | ||
| 266 | struct zone_reclaim_stat { | ||
| 267 | /* | ||
| 268 | * The pageout code in vmscan.c keeps track of how many of the | ||
| 269 | * mem/swap backed and file backed pages are refeferenced. | ||
| 270 | * The higher the rotated/scanned ratio, the more valuable | ||
| 271 | * that cache is. | ||
| 272 | * | ||
| 273 | * The anon LRU stats live in [0], file LRU stats in [1] | ||
| 274 | */ | ||
| 275 | unsigned long recent_rotated[2]; | ||
| 276 | unsigned long recent_scanned[2]; | ||
| 277 | }; | ||
| 278 | |||
| 266 | struct zone { | 279 | struct zone { |
| 267 | /* Fields commonly accessed by the page allocator */ | 280 | /* Fields commonly accessed by the page allocator */ |
| 268 | unsigned long pages_min, pages_low, pages_high; | 281 | unsigned long pages_min, pages_low, pages_high; |
| @@ -315,16 +328,7 @@ struct zone { | |||
| 315 | unsigned long nr_scan; | 328 | unsigned long nr_scan; |
| 316 | } lru[NR_LRU_LISTS]; | 329 | } lru[NR_LRU_LISTS]; |
| 317 | 330 | ||
| 318 | /* | 331 | struct zone_reclaim_stat reclaim_stat; |
| 319 | * The pageout code in vmscan.c keeps track of how many of the | ||
| 320 | * mem/swap backed and file backed pages are refeferenced. | ||
| 321 | * The higher the rotated/scanned ratio, the more valuable | ||
| 322 | * that cache is. | ||
| 323 | * | ||
| 324 | * The anon LRU stats live in [0], file LRU stats in [1] | ||
| 325 | */ | ||
| 326 | unsigned long recent_rotated[2]; | ||
| 327 | unsigned long recent_scanned[2]; | ||
| 328 | 332 | ||
| 329 | unsigned long pages_scanned; /* since last reclaim */ | 333 | unsigned long pages_scanned; /* since last reclaim */ |
| 330 | unsigned long flags; /* zone flags, see below */ | 334 | unsigned long flags; /* zone flags, see below */ |
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index 97b91d1abb43..fde86671f48f 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h | |||
| @@ -443,6 +443,13 @@ struct dmi_system_id { | |||
| 443 | struct dmi_strmatch matches[4]; | 443 | struct dmi_strmatch matches[4]; |
| 444 | void *driver_data; | 444 | void *driver_data; |
| 445 | }; | 445 | }; |
| 446 | /* | ||
| 447 | * struct dmi_device_id appears during expansion of | ||
| 448 | * "MODULE_DEVICE_TABLE(dmi, x)". Compiler doesn't look inside it | ||
| 449 | * but this is enough for gcc 3.4.6 to error out: | ||
| 450 | * error: storage size of '__mod_dmi_device_table' isn't known | ||
| 451 | */ | ||
| 452 | #define dmi_device_id dmi_system_id | ||
| 446 | #endif | 453 | #endif |
| 447 | 454 | ||
| 448 | #define DMI_MATCH(a, b) { a, b } | 455 | #define DMI_MATCH(a, b) { a, b } |
diff --git a/include/linux/module.h b/include/linux/module.h index 3bfed013350b..f3b8329eb5b8 100644 --- a/include/linux/module.h +++ b/include/linux/module.h | |||
| @@ -219,11 +219,6 @@ void *__symbol_get_gpl(const char *symbol); | |||
| 219 | 219 | ||
| 220 | #endif | 220 | #endif |
| 221 | 221 | ||
| 222 | struct module_ref | ||
| 223 | { | ||
| 224 | local_t count; | ||
| 225 | } ____cacheline_aligned; | ||
| 226 | |||
| 227 | enum module_state | 222 | enum module_state |
| 228 | { | 223 | { |
| 229 | MODULE_STATE_LIVE, | 224 | MODULE_STATE_LIVE, |
| @@ -294,9 +289,6 @@ struct module | |||
| 294 | /* The size of the executable code in each section. */ | 289 | /* The size of the executable code in each section. */ |
| 295 | unsigned int init_text_size, core_text_size; | 290 | unsigned int init_text_size, core_text_size; |
| 296 | 291 | ||
| 297 | /* The handle returned from unwind_add_table. */ | ||
| 298 | void *unwind_info; | ||
| 299 | |||
| 300 | /* Arch-specific module values */ | 292 | /* Arch-specific module values */ |
| 301 | struct mod_arch_specific arch; | 293 | struct mod_arch_specific arch; |
| 302 | 294 | ||
| @@ -347,8 +339,11 @@ struct module | |||
| 347 | /* Destruction function. */ | 339 | /* Destruction function. */ |
| 348 | void (*exit)(void); | 340 | void (*exit)(void); |
| 349 | 341 | ||
| 350 | /* Reference counts */ | 342 | #ifdef CONFIG_SMP |
| 351 | struct module_ref ref[NR_CPUS]; | 343 | char *refptr; |
| 344 | #else | ||
| 345 | local_t ref; | ||
| 346 | #endif | ||
| 352 | #endif | 347 | #endif |
| 353 | }; | 348 | }; |
| 354 | #ifndef MODULE_ARCH_INIT | 349 | #ifndef MODULE_ARCH_INIT |
| @@ -368,6 +363,18 @@ struct module *module_text_address(unsigned long addr); | |||
| 368 | struct module *__module_text_address(unsigned long addr); | 363 | struct module *__module_text_address(unsigned long addr); |
| 369 | int is_module_address(unsigned long addr); | 364 | int is_module_address(unsigned long addr); |
| 370 | 365 | ||
| 366 | static inline int within_module_core(unsigned long addr, struct module *mod) | ||
| 367 | { | ||
| 368 | return (unsigned long)mod->module_core <= addr && | ||
| 369 | addr < (unsigned long)mod->module_core + mod->core_size; | ||
| 370 | } | ||
| 371 | |||
| 372 | static inline int within_module_init(unsigned long addr, struct module *mod) | ||
| 373 | { | ||
| 374 | return (unsigned long)mod->module_init <= addr && | ||
| 375 | addr < (unsigned long)mod->module_init + mod->init_size; | ||
| 376 | } | ||
| 377 | |||
| 371 | /* Returns 0 and fills in value, defined and namebuf, or -ERANGE if | 378 | /* Returns 0 and fills in value, defined and namebuf, or -ERANGE if |
| 372 | symnum out of range. */ | 379 | symnum out of range. */ |
| 373 | int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type, | 380 | int module_get_kallsym(unsigned int symnum, unsigned long *value, char *type, |
| @@ -386,13 +393,22 @@ void __symbol_put(const char *symbol); | |||
| 386 | #define symbol_put(x) __symbol_put(MODULE_SYMBOL_PREFIX #x) | 393 | #define symbol_put(x) __symbol_put(MODULE_SYMBOL_PREFIX #x) |
| 387 | void symbol_put_addr(void *addr); | 394 | void symbol_put_addr(void *addr); |
| 388 | 395 | ||
| 396 | static inline local_t *__module_ref_addr(struct module *mod, int cpu) | ||
| 397 | { | ||
| 398 | #ifdef CONFIG_SMP | ||
| 399 | return (local_t *) (mod->refptr + per_cpu_offset(cpu)); | ||
| 400 | #else | ||
| 401 | return &mod->ref; | ||
| 402 | #endif | ||
| 403 | } | ||
| 404 | |||
| 389 | /* Sometimes we know we already have a refcount, and it's easier not | 405 | /* Sometimes we know we already have a refcount, and it's easier not |
| 390 | to handle the error case (which only happens with rmmod --wait). */ | 406 | to handle the error case (which only happens with rmmod --wait). */ |
| 391 | static inline void __module_get(struct module *module) | 407 | static inline void __module_get(struct module *module) |
| 392 | { | 408 | { |
| 393 | if (module) { | 409 | if (module) { |
| 394 | BUG_ON(module_refcount(module) == 0); | 410 | BUG_ON(module_refcount(module) == 0); |
| 395 | local_inc(&module->ref[get_cpu()].count); | 411 | local_inc(__module_ref_addr(module, get_cpu())); |
| 396 | put_cpu(); | 412 | put_cpu(); |
| 397 | } | 413 | } |
| 398 | } | 414 | } |
| @@ -404,7 +420,7 @@ static inline int try_module_get(struct module *module) | |||
| 404 | if (module) { | 420 | if (module) { |
| 405 | unsigned int cpu = get_cpu(); | 421 | unsigned int cpu = get_cpu(); |
| 406 | if (likely(module_is_live(module))) | 422 | if (likely(module_is_live(module))) |
| 407 | local_inc(&module->ref[cpu].count); | 423 | local_inc(__module_ref_addr(module, cpu)); |
| 408 | else | 424 | else |
| 409 | ret = 0; | 425 | ret = 0; |
| 410 | put_cpu(); | 426 | put_cpu(); |
diff --git a/include/linux/moduleloader.h b/include/linux/moduleloader.h index eb1033957486..c1f40c2f7ffb 100644 --- a/include/linux/moduleloader.h +++ b/include/linux/moduleloader.h | |||
| @@ -13,6 +13,9 @@ int module_frob_arch_sections(Elf_Ehdr *hdr, | |||
| 13 | char *secstrings, | 13 | char *secstrings, |
| 14 | struct module *mod); | 14 | struct module *mod); |
| 15 | 15 | ||
| 16 | /* Additional bytes needed by arch in front of individual sections */ | ||
| 17 | unsigned int arch_mod_section_prepend(struct module *mod, unsigned int section); | ||
| 18 | |||
| 16 | /* Allocator used for allocating struct module, core sections and init | 19 | /* Allocator used for allocating struct module, core sections and init |
| 17 | sections. Returns NULL on failure. */ | 20 | sections. Returns NULL on failure. */ |
| 18 | void *module_alloc(unsigned long size); | 21 | void *module_alloc(unsigned long size); |
diff --git a/include/linux/msdos_fs.h b/include/linux/msdos_fs.h index e0a9b207920d..ce38f1caa5e1 100644 --- a/include/linux/msdos_fs.h +++ b/include/linux/msdos_fs.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef _LINUX_MSDOS_FS_H | 1 | #ifndef _LINUX_MSDOS_FS_H |
| 2 | #define _LINUX_MSDOS_FS_H | 2 | #define _LINUX_MSDOS_FS_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/magic.h> | 5 | #include <linux/magic.h> |
| 5 | #include <asm/byteorder.h> | 6 | #include <asm/byteorder.h> |
| 6 | 7 | ||
diff --git a/include/linux/mtd/cfi.h b/include/linux/mtd/cfi.h index 00e2b575021f..88d3d8fbf9f2 100644 --- a/include/linux/mtd/cfi.h +++ b/include/linux/mtd/cfi.h | |||
| @@ -520,6 +520,7 @@ struct cfi_fixup { | |||
| 520 | 520 | ||
| 521 | #define CFI_MFR_AMD 0x0001 | 521 | #define CFI_MFR_AMD 0x0001 |
| 522 | #define CFI_MFR_ATMEL 0x001F | 522 | #define CFI_MFR_ATMEL 0x001F |
| 523 | #define CFI_MFR_SAMSUNG 0x00EC | ||
| 523 | #define CFI_MFR_ST 0x0020 /* STMicroelectronics */ | 524 | #define CFI_MFR_ST 0x0020 /* STMicroelectronics */ |
| 524 | 525 | ||
| 525 | void cfi_fixup(struct mtd_info *mtd, struct cfi_fixup* fixups); | 526 | void cfi_fixup(struct mtd_info *mtd, struct cfi_fixup* fixups); |
diff --git a/include/linux/mtd/concat.h b/include/linux/mtd/concat.h index c02f3d264ecf..e80c674daeb3 100644 --- a/include/linux/mtd/concat.h +++ b/include/linux/mtd/concat.h | |||
| @@ -13,7 +13,7 @@ | |||
| 13 | struct mtd_info *mtd_concat_create( | 13 | struct mtd_info *mtd_concat_create( |
| 14 | struct mtd_info *subdev[], /* subdevices to concatenate */ | 14 | struct mtd_info *subdev[], /* subdevices to concatenate */ |
| 15 | int num_devs, /* number of subdevices */ | 15 | int num_devs, /* number of subdevices */ |
| 16 | char *name); /* name for the new device */ | 16 | const char *name); /* name for the new device */ |
| 17 | 17 | ||
| 18 | void mtd_concat_destroy(struct mtd_info *mtd); | 18 | void mtd_concat_destroy(struct mtd_info *mtd); |
| 19 | 19 | ||
diff --git a/include/linux/mtd/ftl.h b/include/linux/mtd/ftl.h index 0be442f881dd..0555f7a0b9ed 100644 --- a/include/linux/mtd/ftl.h +++ b/include/linux/mtd/ftl.h | |||
| @@ -32,25 +32,25 @@ | |||
| 32 | #define _LINUX_FTL_H | 32 | #define _LINUX_FTL_H |
| 33 | 33 | ||
| 34 | typedef struct erase_unit_header_t { | 34 | typedef struct erase_unit_header_t { |
| 35 | u_int8_t LinkTargetTuple[5]; | 35 | uint8_t LinkTargetTuple[5]; |
| 36 | u_int8_t DataOrgTuple[10]; | 36 | uint8_t DataOrgTuple[10]; |
| 37 | u_int8_t NumTransferUnits; | 37 | uint8_t NumTransferUnits; |
| 38 | u_int32_t EraseCount; | 38 | uint32_t EraseCount; |
| 39 | u_int16_t LogicalEUN; | 39 | uint16_t LogicalEUN; |
| 40 | u_int8_t BlockSize; | 40 | uint8_t BlockSize; |
| 41 | u_int8_t EraseUnitSize; | 41 | uint8_t EraseUnitSize; |
| 42 | u_int16_t FirstPhysicalEUN; | 42 | uint16_t FirstPhysicalEUN; |
| 43 | u_int16_t NumEraseUnits; | 43 | uint16_t NumEraseUnits; |
| 44 | u_int32_t FormattedSize; | 44 | uint32_t FormattedSize; |
| 45 | u_int32_t FirstVMAddress; | 45 | uint32_t FirstVMAddress; |
| 46 | u_int16_t NumVMPages; | 46 | uint16_t NumVMPages; |
| 47 | u_int8_t Flags; | 47 | uint8_t Flags; |
| 48 | u_int8_t Code; | 48 | uint8_t Code; |
| 49 | u_int32_t SerialNumber; | 49 | uint32_t SerialNumber; |
| 50 | u_int32_t AltEUHOffset; | 50 | uint32_t AltEUHOffset; |
| 51 | u_int32_t BAMOffset; | 51 | uint32_t BAMOffset; |
| 52 | u_int8_t Reserved[12]; | 52 | uint8_t Reserved[12]; |
| 53 | u_int8_t EndTuple[2]; | 53 | uint8_t EndTuple[2]; |
| 54 | } erase_unit_header_t; | 54 | } erase_unit_header_t; |
| 55 | 55 | ||
| 56 | /* Flags in erase_unit_header_t */ | 56 | /* Flags in erase_unit_header_t */ |
diff --git a/include/linux/mtd/map.h b/include/linux/mtd/map.h index aa30244492c6..b981b8772217 100644 --- a/include/linux/mtd/map.h +++ b/include/linux/mtd/map.h | |||
| @@ -223,6 +223,7 @@ struct map_info { | |||
| 223 | must leave it enabled. */ | 223 | must leave it enabled. */ |
| 224 | void (*set_vpp)(struct map_info *, int); | 224 | void (*set_vpp)(struct map_info *, int); |
| 225 | 225 | ||
| 226 | unsigned long pfow_base; | ||
| 226 | unsigned long map_priv_1; | 227 | unsigned long map_priv_1; |
| 227 | unsigned long map_priv_2; | 228 | unsigned long map_priv_2; |
| 228 | void *fldrv_priv; | 229 | void *fldrv_priv; |
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h index eae26bb6430a..3aa5d77c2cdb 100644 --- a/include/linux/mtd/mtd.h +++ b/include/linux/mtd/mtd.h | |||
| @@ -15,6 +15,8 @@ | |||
| 15 | #include <linux/mtd/compatmac.h> | 15 | #include <linux/mtd/compatmac.h> |
| 16 | #include <mtd/mtd-abi.h> | 16 | #include <mtd/mtd-abi.h> |
| 17 | 17 | ||
| 18 | #include <asm/div64.h> | ||
| 19 | |||
| 18 | #define MTD_CHAR_MAJOR 90 | 20 | #define MTD_CHAR_MAJOR 90 |
| 19 | #define MTD_BLOCK_MAJOR 31 | 21 | #define MTD_BLOCK_MAJOR 31 |
| 20 | #define MAX_MTD_DEVICES 32 | 22 | #define MAX_MTD_DEVICES 32 |
| @@ -25,20 +27,20 @@ | |||
| 25 | #define MTD_ERASE_DONE 0x08 | 27 | #define MTD_ERASE_DONE 0x08 |
| 26 | #define MTD_ERASE_FAILED 0x10 | 28 | #define MTD_ERASE_FAILED 0x10 |
| 27 | 29 | ||
| 28 | #define MTD_FAIL_ADDR_UNKNOWN 0xffffffff | 30 | #define MTD_FAIL_ADDR_UNKNOWN -1LL |
| 29 | 31 | ||
| 30 | /* If the erase fails, fail_addr might indicate exactly which block failed. If | 32 | /* If the erase fails, fail_addr might indicate exactly which block failed. If |
| 31 | fail_addr = MTD_FAIL_ADDR_UNKNOWN, the failure was not at the device level or was not | 33 | fail_addr = MTD_FAIL_ADDR_UNKNOWN, the failure was not at the device level or was not |
| 32 | specific to any particular block. */ | 34 | specific to any particular block. */ |
| 33 | struct erase_info { | 35 | struct erase_info { |
| 34 | struct mtd_info *mtd; | 36 | struct mtd_info *mtd; |
| 35 | u_int32_t addr; | 37 | uint64_t addr; |
| 36 | u_int32_t len; | 38 | uint64_t len; |
| 37 | u_int32_t fail_addr; | 39 | uint64_t fail_addr; |
| 38 | u_long time; | 40 | u_long time; |
| 39 | u_long retries; | 41 | u_long retries; |
| 40 | u_int dev; | 42 | unsigned dev; |
| 41 | u_int cell; | 43 | unsigned cell; |
| 42 | void (*callback) (struct erase_info *self); | 44 | void (*callback) (struct erase_info *self); |
| 43 | u_long priv; | 45 | u_long priv; |
| 44 | u_char state; | 46 | u_char state; |
| @@ -46,9 +48,9 @@ struct erase_info { | |||
| 46 | }; | 48 | }; |
| 47 | 49 | ||
| 48 | struct mtd_erase_region_info { | 50 | struct mtd_erase_region_info { |
| 49 | u_int32_t offset; /* At which this region starts, from the beginning of the MTD */ | 51 | uint64_t offset; /* At which this region starts, from the beginning of the MTD */ |
| 50 | u_int32_t erasesize; /* For this region */ | 52 | uint32_t erasesize; /* For this region */ |
| 51 | u_int32_t numblocks; /* Number of blocks of erasesize in this region */ | 53 | uint32_t numblocks; /* Number of blocks of erasesize in this region */ |
| 52 | unsigned long *lockmap; /* If keeping bitmap of locks */ | 54 | unsigned long *lockmap; /* If keeping bitmap of locks */ |
| 53 | }; | 55 | }; |
| 54 | 56 | ||
| @@ -83,7 +85,7 @@ typedef enum { | |||
| 83 | * @datbuf: data buffer - if NULL only oob data are read/written | 85 | * @datbuf: data buffer - if NULL only oob data are read/written |
| 84 | * @oobbuf: oob data buffer | 86 | * @oobbuf: oob data buffer |
| 85 | * | 87 | * |
| 86 | * Note, it is allowed to read more then one OOB area at one go, but not write. | 88 | * Note, it is allowed to read more than one OOB area at one go, but not write. |
| 87 | * The interface assumes that the OOB write requests program only one page's | 89 | * The interface assumes that the OOB write requests program only one page's |
| 88 | * OOB area. | 90 | * OOB area. |
| 89 | */ | 91 | */ |
| @@ -100,14 +102,14 @@ struct mtd_oob_ops { | |||
| 100 | 102 | ||
| 101 | struct mtd_info { | 103 | struct mtd_info { |
| 102 | u_char type; | 104 | u_char type; |
| 103 | u_int32_t flags; | 105 | uint32_t flags; |
| 104 | u_int32_t size; // Total size of the MTD | 106 | uint64_t size; // Total size of the MTD |
| 105 | 107 | ||
| 106 | /* "Major" erase size for the device. Naïve users may take this | 108 | /* "Major" erase size for the device. Naïve users may take this |
| 107 | * to be the only erase size available, or may use the more detailed | 109 | * to be the only erase size available, or may use the more detailed |
| 108 | * information below if they desire | 110 | * information below if they desire |
| 109 | */ | 111 | */ |
| 110 | u_int32_t erasesize; | 112 | uint32_t erasesize; |
| 111 | /* Minimal writable flash unit size. In case of NOR flash it is 1 (even | 113 | /* Minimal writable flash unit size. In case of NOR flash it is 1 (even |
| 112 | * though individual bits can be cleared), in case of NAND flash it is | 114 | * though individual bits can be cleared), in case of NAND flash it is |
| 113 | * one NAND page (or half, or one-fourths of it), in case of ECC-ed NOR | 115 | * one NAND page (or half, or one-fourths of it), in case of ECC-ed NOR |
| @@ -115,10 +117,20 @@ struct mtd_info { | |||
| 115 | * Any driver registering a struct mtd_info must ensure a writesize of | 117 | * Any driver registering a struct mtd_info must ensure a writesize of |
| 116 | * 1 or larger. | 118 | * 1 or larger. |
| 117 | */ | 119 | */ |
| 118 | u_int32_t writesize; | 120 | uint32_t writesize; |
| 121 | |||
| 122 | uint32_t oobsize; // Amount of OOB data per block (e.g. 16) | ||
| 123 | uint32_t oobavail; // Available OOB bytes per block | ||
| 119 | 124 | ||
| 120 | u_int32_t oobsize; // Amount of OOB data per block (e.g. 16) | 125 | /* |
| 121 | u_int32_t oobavail; // Available OOB bytes per block | 126 | * If erasesize is a power of 2 then the shift is stored in |
| 127 | * erasesize_shift otherwise erasesize_shift is zero. Ditto writesize. | ||
| 128 | */ | ||
| 129 | unsigned int erasesize_shift; | ||
| 130 | unsigned int writesize_shift; | ||
| 131 | /* Masks based on erasesize_shift and writesize_shift */ | ||
| 132 | unsigned int erasesize_mask; | ||
| 133 | unsigned int writesize_mask; | ||
| 122 | 134 | ||
| 123 | // Kernel-only stuff starts here. | 135 | // Kernel-only stuff starts here. |
| 124 | const char *name; | 136 | const char *name; |
| @@ -190,8 +202,8 @@ struct mtd_info { | |||
| 190 | void (*sync) (struct mtd_info *mtd); | 202 | void (*sync) (struct mtd_info *mtd); |
| 191 | 203 | ||
| 192 | /* Chip-supported device locking */ | 204 | /* Chip-supported device locking */ |
| 193 | int (*lock) (struct mtd_info *mtd, loff_t ofs, size_t len); | 205 | int (*lock) (struct mtd_info *mtd, loff_t ofs, uint64_t len); |
| 194 | int (*unlock) (struct mtd_info *mtd, loff_t ofs, size_t len); | 206 | int (*unlock) (struct mtd_info *mtd, loff_t ofs, uint64_t len); |
| 195 | 207 | ||
| 196 | /* Power Management functions */ | 208 | /* Power Management functions */ |
| 197 | int (*suspend) (struct mtd_info *mtd); | 209 | int (*suspend) (struct mtd_info *mtd); |
| @@ -221,6 +233,35 @@ struct mtd_info { | |||
| 221 | void (*put_device) (struct mtd_info *mtd); | 233 | void (*put_device) (struct mtd_info *mtd); |
| 222 | }; | 234 | }; |
| 223 | 235 | ||
| 236 | static inline uint32_t mtd_div_by_eb(uint64_t sz, struct mtd_info *mtd) | ||
| 237 | { | ||
| 238 | if (mtd->erasesize_shift) | ||
| 239 | return sz >> mtd->erasesize_shift; | ||
| 240 | do_div(sz, mtd->erasesize); | ||
| 241 | return sz; | ||
| 242 | } | ||
| 243 | |||
| 244 | static inline uint32_t mtd_mod_by_eb(uint64_t sz, struct mtd_info *mtd) | ||
| 245 | { | ||
| 246 | if (mtd->erasesize_shift) | ||
| 247 | return sz & mtd->erasesize_mask; | ||
| 248 | return do_div(sz, mtd->erasesize); | ||
| 249 | } | ||
| 250 | |||
| 251 | static inline uint32_t mtd_div_by_ws(uint64_t sz, struct mtd_info *mtd) | ||
| 252 | { | ||
| 253 | if (mtd->writesize_shift) | ||
| 254 | return sz >> mtd->writesize_shift; | ||
| 255 | do_div(sz, mtd->writesize); | ||
| 256 | return sz; | ||
| 257 | } | ||
| 258 | |||
| 259 | static inline uint32_t mtd_mod_by_ws(uint64_t sz, struct mtd_info *mtd) | ||
| 260 | { | ||
| 261 | if (mtd->writesize_shift) | ||
| 262 | return sz & mtd->writesize_mask; | ||
| 263 | return do_div(sz, mtd->writesize); | ||
| 264 | } | ||
| 224 | 265 | ||
| 225 | /* Kernel-side ioctl definitions */ | 266 | /* Kernel-side ioctl definitions */ |
| 226 | 267 | ||
diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h index 733d3f3b4eb8..db5b63da2a7e 100644 --- a/include/linux/mtd/nand.h +++ b/include/linux/mtd/nand.h | |||
| @@ -335,17 +335,12 @@ struct nand_buffers { | |||
| 335 | * @erase_cmd: [INTERN] erase command write function, selectable due to AND support | 335 | * @erase_cmd: [INTERN] erase command write function, selectable due to AND support |
| 336 | * @scan_bbt: [REPLACEABLE] function to scan bad block table | 336 | * @scan_bbt: [REPLACEABLE] function to scan bad block table |
| 337 | * @chip_delay: [BOARDSPECIFIC] chip dependent delay for transfering data from array to read regs (tR) | 337 | * @chip_delay: [BOARDSPECIFIC] chip dependent delay for transfering data from array to read regs (tR) |
| 338 | * @wq: [INTERN] wait queue to sleep on if a NAND operation is in progress | ||
| 339 | * @state: [INTERN] the current state of the NAND device | 338 | * @state: [INTERN] the current state of the NAND device |
| 340 | * @oob_poi: poison value buffer | 339 | * @oob_poi: poison value buffer |
| 341 | * @page_shift: [INTERN] number of address bits in a page (column address bits) | 340 | * @page_shift: [INTERN] number of address bits in a page (column address bits) |
| 342 | * @phys_erase_shift: [INTERN] number of address bits in a physical eraseblock | 341 | * @phys_erase_shift: [INTERN] number of address bits in a physical eraseblock |
| 343 | * @bbt_erase_shift: [INTERN] number of address bits in a bbt entry | 342 | * @bbt_erase_shift: [INTERN] number of address bits in a bbt entry |
| 344 | * @chip_shift: [INTERN] number of address bits in one chip | 343 | * @chip_shift: [INTERN] number of address bits in one chip |
| 345 | * @datbuf: [INTERN] internal buffer for one page + oob | ||
| 346 | * @oobbuf: [INTERN] oob buffer for one eraseblock | ||
| 347 | * @oobdirty: [INTERN] indicates that oob_buf must be reinitialized | ||
| 348 | * @data_poi: [INTERN] pointer to a data buffer | ||
| 349 | * @options: [BOARDSPECIFIC] various chip options. They can partly be set to inform nand_scan about | 344 | * @options: [BOARDSPECIFIC] various chip options. They can partly be set to inform nand_scan about |
| 350 | * special functionality. See the defines for further explanation | 345 | * special functionality. See the defines for further explanation |
| 351 | * @badblockpos: [INTERN] position of the bad block marker in the oob area | 346 | * @badblockpos: [INTERN] position of the bad block marker in the oob area |
| @@ -399,7 +394,7 @@ struct nand_chip { | |||
| 399 | int bbt_erase_shift; | 394 | int bbt_erase_shift; |
| 400 | int chip_shift; | 395 | int chip_shift; |
| 401 | int numchips; | 396 | int numchips; |
| 402 | unsigned long chipsize; | 397 | uint64_t chipsize; |
| 403 | int pagemask; | 398 | int pagemask; |
| 404 | int pagebuf; | 399 | int pagebuf; |
| 405 | int subpagesize; | 400 | int subpagesize; |
diff --git a/include/linux/mtd/partitions.h b/include/linux/mtd/partitions.h index c92b4d439609..a45dd831b3f8 100644 --- a/include/linux/mtd/partitions.h +++ b/include/linux/mtd/partitions.h | |||
| @@ -36,9 +36,9 @@ | |||
| 36 | 36 | ||
| 37 | struct mtd_partition { | 37 | struct mtd_partition { |
| 38 | char *name; /* identifier string */ | 38 | char *name; /* identifier string */ |
| 39 | u_int32_t size; /* partition size */ | 39 | uint64_t size; /* partition size */ |
| 40 | u_int32_t offset; /* offset within the master MTD space */ | 40 | uint64_t offset; /* offset within the master MTD space */ |
| 41 | u_int32_t mask_flags; /* master MTD flags to mask out for this partition */ | 41 | uint32_t mask_flags; /* master MTD flags to mask out for this partition */ |
| 42 | struct nand_ecclayout *ecclayout; /* out of band layout for this partition (NAND only)*/ | 42 | struct nand_ecclayout *ecclayout; /* out of band layout for this partition (NAND only)*/ |
| 43 | struct mtd_info **mtdp; /* pointer to store the MTD object */ | 43 | struct mtd_info **mtdp; /* pointer to store the MTD object */ |
| 44 | }; | 44 | }; |
diff --git a/include/linux/mtd/pfow.h b/include/linux/mtd/pfow.h new file mode 100644 index 000000000000..b730d4f84655 --- /dev/null +++ b/include/linux/mtd/pfow.h | |||
| @@ -0,0 +1,159 @@ | |||
| 1 | /* Primary function overlay window definitions | ||
| 2 | * and service functions used by LPDDR chips | ||
| 3 | */ | ||
| 4 | #ifndef __LINUX_MTD_PFOW_H | ||
| 5 | #define __LINUX_MTD_PFOW_H | ||
| 6 | |||
| 7 | #include <linux/mtd/qinfo.h> | ||
| 8 | |||
| 9 | /* PFOW registers addressing */ | ||
| 10 | /* Address of symbol "P" */ | ||
| 11 | #define PFOW_QUERY_STRING_P 0x0000 | ||
| 12 | /* Address of symbol "F" */ | ||
| 13 | #define PFOW_QUERY_STRING_F 0x0002 | ||
| 14 | /* Address of symbol "O" */ | ||
| 15 | #define PFOW_QUERY_STRING_O 0x0004 | ||
| 16 | /* Address of symbol "W" */ | ||
| 17 | #define PFOW_QUERY_STRING_W 0x0006 | ||
| 18 | /* Identification info for LPDDR chip */ | ||
| 19 | #define PFOW_MANUFACTURER_ID 0x0020 | ||
| 20 | #define PFOW_DEVICE_ID 0x0022 | ||
| 21 | /* Address in PFOW where prog buffer can can be found */ | ||
| 22 | #define PFOW_PROGRAM_BUFFER_OFFSET 0x0040 | ||
| 23 | /* Size of program buffer in words */ | ||
| 24 | #define PFOW_PROGRAM_BUFFER_SIZE 0x0042 | ||
| 25 | /* Address command code register */ | ||
| 26 | #define PFOW_COMMAND_CODE 0x0080 | ||
| 27 | /* command data register */ | ||
| 28 | #define PFOW_COMMAND_DATA 0x0084 | ||
| 29 | /* command address register lower address bits */ | ||
| 30 | #define PFOW_COMMAND_ADDRESS_L 0x0088 | ||
| 31 | /* command address register upper address bits */ | ||
| 32 | #define PFOW_COMMAND_ADDRESS_H 0x008a | ||
| 33 | /* number of bytes to be proggrammed lower address bits */ | ||
| 34 | #define PFOW_DATA_COUNT_L 0x0090 | ||
| 35 | /* number of bytes to be proggrammed higher address bits */ | ||
| 36 | #define PFOW_DATA_COUNT_H 0x0092 | ||
| 37 | /* command execution register, the only possible value is 0x01 */ | ||
| 38 | #define PFOW_COMMAND_EXECUTE 0x00c0 | ||
| 39 | /* 0x01 should be written at this address to clear buffer */ | ||
| 40 | #define PFOW_CLEAR_PROGRAM_BUFFER 0x00c4 | ||
| 41 | /* device program/erase suspend register */ | ||
| 42 | #define PFOW_PROGRAM_ERASE_SUSPEND 0x00c8 | ||
| 43 | /* device status register */ | ||
| 44 | #define PFOW_DSR 0x00cc | ||
| 45 | |||
| 46 | /* LPDDR memory device command codes */ | ||
| 47 | /* They are possible values of PFOW command code register */ | ||
| 48 | #define LPDDR_WORD_PROGRAM 0x0041 | ||
| 49 | #define LPDDR_BUFF_PROGRAM 0x00E9 | ||
| 50 | #define LPDDR_BLOCK_ERASE 0x0020 | ||
| 51 | #define LPDDR_LOCK_BLOCK 0x0061 | ||
| 52 | #define LPDDR_UNLOCK_BLOCK 0x0062 | ||
| 53 | #define LPDDR_READ_BLOCK_LOCK_STATUS 0x0065 | ||
| 54 | #define LPDDR_INFO_QUERY 0x0098 | ||
| 55 | #define LPDDR_READ_OTP 0x0097 | ||
| 56 | #define LPDDR_PROG_OTP 0x00C0 | ||
| 57 | #define LPDDR_RESUME 0x00D0 | ||
| 58 | |||
| 59 | /* Defines possible value of PFOW command execution register */ | ||
| 60 | #define LPDDR_START_EXECUTION 0x0001 | ||
| 61 | |||
| 62 | /* Defines possible value of PFOW program/erase suspend register */ | ||
| 63 | #define LPDDR_SUSPEND 0x0001 | ||
| 64 | |||
| 65 | /* Possible values of PFOW device status register */ | ||
| 66 | /* access R - read; RC read & clearable */ | ||
| 67 | #define DSR_DPS (1<<1) /* RC; device protect status | ||
| 68 | * 0 - not protected 1 - locked */ | ||
| 69 | #define DSR_PSS (1<<2) /* R; program suspend status; | ||
| 70 | * 0-prog in progress/completed, | ||
| 71 | * 1- prog suspended */ | ||
| 72 | #define DSR_VPPS (1<<3) /* RC; 0-Vpp OK, * 1-Vpp low */ | ||
| 73 | #define DSR_PROGRAM_STATUS (1<<4) /* RC; 0-successful, 1-error */ | ||
| 74 | #define DSR_ERASE_STATUS (1<<5) /* RC; erase or blank check status; | ||
| 75 | * 0-success erase/blank check, | ||
| 76 | * 1 blank check error */ | ||
| 77 | #define DSR_ESS (1<<6) /* R; erase suspend status; | ||
| 78 | * 0-erase in progress/complete, | ||
| 79 | * 1 erase suspended */ | ||
| 80 | #define DSR_READY_STATUS (1<<7) /* R; Device status | ||
| 81 | * 0-busy, | ||
| 82 | * 1-ready */ | ||
| 83 | #define DSR_RPS (0x3<<8) /* RC; region program status | ||
| 84 | * 00 - Success, | ||
| 85 | * 01-re-program attempt in region with | ||
| 86 | * object mode data, | ||
| 87 | * 10-object mode program w attempt in | ||
| 88 | * region with control mode data | ||
| 89 | * 11-attempt to program invalid half | ||
| 90 | * with 0x41 command */ | ||
| 91 | #define DSR_AOS (1<<12) /* RC; 1- AO related failure */ | ||
| 92 | #define DSR_AVAILABLE (1<<15) /* R; Device availbility | ||
| 93 | * 1 - Device available | ||
| 94 | * 0 - not available */ | ||
| 95 | |||
| 96 | /* The superset of all possible error bits in DSR */ | ||
| 97 | #define DSR_ERR 0x133A | ||
| 98 | |||
| 99 | static inline void send_pfow_command(struct map_info *map, | ||
| 100 | unsigned long cmd_code, unsigned long adr, | ||
| 101 | unsigned long len, map_word *datum) | ||
| 102 | { | ||
| 103 | int bits_per_chip = map_bankwidth(map) * 8; | ||
| 104 | int chipnum; | ||
| 105 | struct lpddr_private *lpddr = map->fldrv_priv; | ||
| 106 | chipnum = adr >> lpddr->chipshift; | ||
| 107 | |||
| 108 | map_write(map, CMD(cmd_code), map->pfow_base + PFOW_COMMAND_CODE); | ||
| 109 | map_write(map, CMD(adr & ((1<<bits_per_chip) - 1)), | ||
| 110 | map->pfow_base + PFOW_COMMAND_ADDRESS_L); | ||
| 111 | map_write(map, CMD(adr>>bits_per_chip), | ||
| 112 | map->pfow_base + PFOW_COMMAND_ADDRESS_H); | ||
| 113 | if (len) { | ||
| 114 | map_write(map, CMD(len & ((1<<bits_per_chip) - 1)), | ||
| 115 | map->pfow_base + PFOW_DATA_COUNT_L); | ||
| 116 | map_write(map, CMD(len>>bits_per_chip), | ||
| 117 | map->pfow_base + PFOW_DATA_COUNT_H); | ||
| 118 | } | ||
| 119 | if (datum) | ||
| 120 | map_write(map, *datum, map->pfow_base + PFOW_COMMAND_DATA); | ||
| 121 | |||
| 122 | /* Command execution start */ | ||
| 123 | map_write(map, CMD(LPDDR_START_EXECUTION), | ||
| 124 | map->pfow_base + PFOW_COMMAND_EXECUTE); | ||
| 125 | } | ||
| 126 | |||
| 127 | static inline void print_drs_error(unsigned dsr) | ||
| 128 | { | ||
| 129 | int prog_status = (dsr & DSR_RPS) >> 8; | ||
| 130 | |||
| 131 | if (!(dsr & DSR_AVAILABLE)) | ||
| 132 | printk(KERN_NOTICE"DSR.15: (0) Device not Available\n"); | ||
| 133 | if (prog_status & 0x03) | ||
| 134 | printk(KERN_NOTICE"DSR.9,8: (11) Attempt to program invalid " | ||
| 135 | "half with 41h command\n"); | ||
| 136 | else if (prog_status & 0x02) | ||
| 137 | printk(KERN_NOTICE"DSR.9,8: (10) Object Mode Program attempt " | ||
| 138 | "in region with Control Mode data\n"); | ||
| 139 | else if (prog_status & 0x01) | ||
| 140 | printk(KERN_NOTICE"DSR.9,8: (01) Program attempt in region " | ||
| 141 | "with Object Mode data\n"); | ||
| 142 | if (!(dsr & DSR_READY_STATUS)) | ||
| 143 | printk(KERN_NOTICE"DSR.7: (0) Device is Busy\n"); | ||
| 144 | if (dsr & DSR_ESS) | ||
| 145 | printk(KERN_NOTICE"DSR.6: (1) Erase Suspended\n"); | ||
| 146 | if (dsr & DSR_ERASE_STATUS) | ||
| 147 | printk(KERN_NOTICE"DSR.5: (1) Erase/Blank check error\n"); | ||
| 148 | if (dsr & DSR_PROGRAM_STATUS) | ||
| 149 | printk(KERN_NOTICE"DSR.4: (1) Program Error\n"); | ||
| 150 | if (dsr & DSR_VPPS) | ||
| 151 | printk(KERN_NOTICE"DSR.3: (1) Vpp low detect, operation " | ||
| 152 | "aborted\n"); | ||
| 153 | if (dsr & DSR_PSS) | ||
| 154 | printk(KERN_NOTICE"DSR.2: (1) Program suspended\n"); | ||
| 155 | if (dsr & DSR_DPS) | ||
| 156 | printk(KERN_NOTICE"DSR.1: (1) Aborted Erase/Program attempt " | ||
| 157 | "on locked block\n"); | ||
| 158 | } | ||
| 159 | #endif /* __LINUX_MTD_PFOW_H */ | ||
diff --git a/include/linux/mtd/physmap.h b/include/linux/mtd/physmap.h index c8e63a5ee72e..76f7cabf07d3 100644 --- a/include/linux/mtd/physmap.h +++ b/include/linux/mtd/physmap.h | |||
| @@ -24,6 +24,7 @@ struct physmap_flash_data { | |||
| 24 | unsigned int width; | 24 | unsigned int width; |
| 25 | void (*set_vpp)(struct map_info *, int); | 25 | void (*set_vpp)(struct map_info *, int); |
| 26 | unsigned int nr_parts; | 26 | unsigned int nr_parts; |
| 27 | unsigned int pfow_base; | ||
| 27 | struct mtd_partition *parts; | 28 | struct mtd_partition *parts; |
| 28 | }; | 29 | }; |
| 29 | 30 | ||
diff --git a/include/linux/mtd/qinfo.h b/include/linux/mtd/qinfo.h new file mode 100644 index 000000000000..7b3d487d8b3f --- /dev/null +++ b/include/linux/mtd/qinfo.h | |||
| @@ -0,0 +1,91 @@ | |||
| 1 | #ifndef __LINUX_MTD_QINFO_H | ||
| 2 | #define __LINUX_MTD_QINFO_H | ||
| 3 | |||
| 4 | #include <linux/mtd/map.h> | ||
| 5 | #include <linux/wait.h> | ||
| 6 | #include <linux/spinlock.h> | ||
| 7 | #include <linux/delay.h> | ||
| 8 | #include <linux/mtd/mtd.h> | ||
| 9 | #include <linux/mtd/flashchip.h> | ||
| 10 | #include <linux/mtd/partitions.h> | ||
| 11 | |||
| 12 | /* lpddr_private describes lpddr flash chip in memory map | ||
| 13 | * @ManufactId - Chip Manufacture ID | ||
| 14 | * @DevId - Chip Device ID | ||
| 15 | * @qinfo - pointer to qinfo records describing the chip | ||
| 16 | * @numchips - number of chips including virual RWW partitions | ||
| 17 | * @chipshift - Chip/partiton size 2^chipshift | ||
| 18 | * @chips - per-chip data structure | ||
| 19 | */ | ||
| 20 | struct lpddr_private { | ||
| 21 | uint16_t ManufactId; | ||
| 22 | uint16_t DevId; | ||
| 23 | struct qinfo_chip *qinfo; | ||
| 24 | int numchips; | ||
| 25 | unsigned long chipshift; | ||
| 26 | struct flchip chips[0]; | ||
| 27 | }; | ||
| 28 | |||
| 29 | /* qinfo_query_info structure contains request information for | ||
| 30 | * each qinfo record | ||
| 31 | * @major - major number of qinfo record | ||
| 32 | * @major - minor number of qinfo record | ||
| 33 | * @id_str - descriptive string to access the record | ||
| 34 | * @desc - detailed description for the qinfo record | ||
| 35 | */ | ||
| 36 | struct qinfo_query_info { | ||
| 37 | uint8_t major; | ||
| 38 | uint8_t minor; | ||
| 39 | char *id_str; | ||
| 40 | char *desc; | ||
| 41 | }; | ||
| 42 | |||
| 43 | /* | ||
| 44 | * qinfo_chip structure contains necessary qinfo records data | ||
| 45 | * @DevSizeShift - Device size 2^n bytes | ||
| 46 | * @BufSizeShift - Program buffer size 2^n bytes | ||
| 47 | * @TotalBlocksNum - Total number of blocks | ||
| 48 | * @UniformBlockSizeShift - Uniform block size 2^UniformBlockSizeShift bytes | ||
| 49 | * @HWPartsNum - Number of hardware partitions | ||
| 50 | * @SuspEraseSupp - Suspend erase supported | ||
| 51 | * @SingleWordProgTime - Single word program 2^SingleWordProgTime u-sec | ||
| 52 | * @ProgBufferTime - Program buffer write 2^ProgBufferTime u-sec | ||
| 53 | * @BlockEraseTime - Block erase 2^BlockEraseTime m-sec | ||
| 54 | */ | ||
| 55 | struct qinfo_chip { | ||
| 56 | /* General device info */ | ||
| 57 | uint16_t DevSizeShift; | ||
| 58 | uint16_t BufSizeShift; | ||
| 59 | /* Erase block information */ | ||
| 60 | uint16_t TotalBlocksNum; | ||
| 61 | uint16_t UniformBlockSizeShift; | ||
| 62 | /* Partition information */ | ||
| 63 | uint16_t HWPartsNum; | ||
| 64 | /* Optional features */ | ||
| 65 | uint16_t SuspEraseSupp; | ||
| 66 | /* Operation typical time */ | ||
| 67 | uint16_t SingleWordProgTime; | ||
| 68 | uint16_t ProgBufferTime; | ||
| 69 | uint16_t BlockEraseTime; | ||
| 70 | }; | ||
| 71 | |||
| 72 | /* defines for fixup usage */ | ||
| 73 | #define LPDDR_MFR_ANY 0xffff | ||
| 74 | #define LPDDR_ID_ANY 0xffff | ||
| 75 | #define NUMONYX_MFGR_ID 0x0089 | ||
| 76 | #define R18_DEVICE_ID_1G 0x893c | ||
| 77 | |||
| 78 | static inline map_word lpddr_build_cmd(u_long cmd, struct map_info *map) | ||
| 79 | { | ||
| 80 | map_word val = { {0} }; | ||
| 81 | val.x[0] = cmd; | ||
| 82 | return val; | ||
| 83 | } | ||
| 84 | |||
| 85 | #define CMD(x) lpddr_build_cmd(x, map) | ||
| 86 | #define CMDVAL(cmd) cmd.x[0] | ||
| 87 | |||
| 88 | struct mtd_info *lpddr_cmdset(struct map_info *); | ||
| 89 | |||
| 90 | #endif | ||
| 91 | |||
diff --git a/include/linux/mtd/sharpsl.h b/include/linux/mtd/sharpsl.h new file mode 100644 index 000000000000..25f4d2a845c1 --- /dev/null +++ b/include/linux/mtd/sharpsl.h | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | /* | ||
| 2 | * SharpSL NAND support | ||
| 3 | * | ||
| 4 | * Copyright (C) 2008 Dmitry Baryshkov | ||
| 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 | #include <linux/mtd/nand.h> | ||
| 12 | #include <linux/mtd/nand_ecc.h> | ||
| 13 | #include <linux/mtd/partitions.h> | ||
| 14 | |||
| 15 | struct sharpsl_nand_platform_data { | ||
| 16 | struct nand_bbt_descr *badblock_pattern; | ||
| 17 | struct nand_ecclayout *ecc_layout; | ||
| 18 | struct mtd_partition *partitions; | ||
| 19 | unsigned int nr_partitions; | ||
| 20 | }; | ||
diff --git a/include/linux/namei.h b/include/linux/namei.h index 99eb80306dc5..fc2e03579877 100644 --- a/include/linux/namei.h +++ b/include/linux/namei.h | |||
| @@ -94,4 +94,9 @@ static inline char *nd_get_link(struct nameidata *nd) | |||
| 94 | return nd->saved_names[nd->depth]; | 94 | return nd->saved_names[nd->depth]; |
| 95 | } | 95 | } |
| 96 | 96 | ||
| 97 | static inline void nd_terminate_link(void *name, size_t len, size_t maxlen) | ||
| 98 | { | ||
| 99 | ((char *) name)[min(len, maxlen)] = '\0'; | ||
| 100 | } | ||
| 101 | |||
| 97 | #endif /* _LINUX_NAMEI_H */ | 102 | #endif /* _LINUX_NAMEI_H */ |
diff --git a/include/linux/ncp_fs.h b/include/linux/ncp_fs.h index 9f2d76347f19..f69e66d151cc 100644 --- a/include/linux/ncp_fs.h +++ b/include/linux/ncp_fs.h | |||
| @@ -87,7 +87,7 @@ struct ncp_objectname_ioctl | |||
| 87 | #define NCP_AUTH_NDS 0x32 | 87 | #define NCP_AUTH_NDS 0x32 |
| 88 | int auth_type; | 88 | int auth_type; |
| 89 | size_t object_name_len; | 89 | size_t object_name_len; |
| 90 | void __user * object_name; /* an userspace data, in most cases user name */ | 90 | void __user * object_name; /* a userspace data, in most cases user name */ |
| 91 | }; | 91 | }; |
| 92 | 92 | ||
| 93 | struct ncp_privatedata_ioctl | 93 | struct ncp_privatedata_ioctl |
diff --git a/include/linux/neighbour.h b/include/linux/neighbour.h index bd3bbf668cdb..8730d5dae1bc 100644 --- a/include/linux/neighbour.h +++ b/include/linux/neighbour.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __LINUX_NEIGHBOUR_H | 1 | #ifndef __LINUX_NEIGHBOUR_H |
| 2 | #define __LINUX_NEIGHBOUR_H | 2 | #define __LINUX_NEIGHBOUR_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/netlink.h> | 5 | #include <linux/netlink.h> |
| 5 | 6 | ||
| 6 | struct ndmsg | 7 | struct ndmsg |
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 41e1224651cf..ec54785d34f9 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
| @@ -313,10 +313,11 @@ struct napi_struct { | |||
| 313 | #ifdef CONFIG_NETPOLL | 313 | #ifdef CONFIG_NETPOLL |
| 314 | spinlock_t poll_lock; | 314 | spinlock_t poll_lock; |
| 315 | int poll_owner; | 315 | int poll_owner; |
| 316 | struct net_device *dev; | ||
| 317 | #endif | 316 | #endif |
| 317 | struct net_device *dev; | ||
| 318 | struct list_head dev_list; | 318 | struct list_head dev_list; |
| 319 | struct sk_buff *gro_list; | 319 | struct sk_buff *gro_list; |
| 320 | struct sk_buff *skb; | ||
| 320 | }; | 321 | }; |
| 321 | 322 | ||
| 322 | enum | 323 | enum |
| @@ -466,7 +467,7 @@ struct netdev_queue { | |||
| 466 | * This function is called when network device transistions to the down | 467 | * This function is called when network device transistions to the down |
| 467 | * state. | 468 | * state. |
| 468 | * | 469 | * |
| 469 | * int (*ndo_hard_start_xmit)(struct sk_buff *skb, struct net_device *dev); | 470 | * int (*ndo_start_xmit)(struct sk_buff *skb, struct net_device *dev); |
| 470 | * Called when a packet needs to be transmitted. | 471 | * Called when a packet needs to be transmitted. |
| 471 | * Must return NETDEV_TX_OK , NETDEV_TX_BUSY, or NETDEV_TX_LOCKED, | 472 | * Must return NETDEV_TX_OK , NETDEV_TX_BUSY, or NETDEV_TX_LOCKED, |
| 472 | * Required can not be NULL. | 473 | * Required can not be NULL. |
| @@ -794,6 +795,7 @@ struct net_device | |||
| 794 | NETREG_UNREGISTERING, /* called unregister_netdevice */ | 795 | NETREG_UNREGISTERING, /* called unregister_netdevice */ |
| 795 | NETREG_UNREGISTERED, /* completed unregister todo */ | 796 | NETREG_UNREGISTERED, /* completed unregister todo */ |
| 796 | NETREG_RELEASED, /* called free_netdev */ | 797 | NETREG_RELEASED, /* called free_netdev */ |
| 798 | NETREG_DUMMY, /* dummy device for NAPI poll */ | ||
| 797 | } reg_state; | 799 | } reg_state; |
| 798 | 800 | ||
| 799 | /* Called from unregister, can be used to call free_netdev */ | 801 | /* Called from unregister, can be used to call free_netdev */ |
| @@ -990,6 +992,9 @@ struct napi_gro_cb { | |||
| 990 | 992 | ||
| 991 | /* Number of segments aggregated. */ | 993 | /* Number of segments aggregated. */ |
| 992 | int count; | 994 | int count; |
| 995 | |||
| 996 | /* Free the skb? */ | ||
| 997 | int free; | ||
| 993 | }; | 998 | }; |
| 994 | 999 | ||
| 995 | #define NAPI_GRO_CB(skb) ((struct napi_gro_cb *)(skb)->cb) | 1000 | #define NAPI_GRO_CB(skb) ((struct napi_gro_cb *)(skb)->cb) |
| @@ -1011,6 +1016,14 @@ struct packet_type { | |||
| 1011 | struct list_head list; | 1016 | struct list_head list; |
| 1012 | }; | 1017 | }; |
| 1013 | 1018 | ||
| 1019 | struct napi_gro_fraginfo { | ||
| 1020 | skb_frag_t frags[MAX_SKB_FRAGS]; | ||
| 1021 | unsigned int nr_frags; | ||
| 1022 | unsigned int ip_summed; | ||
| 1023 | unsigned int len; | ||
| 1024 | __wsum csum; | ||
| 1025 | }; | ||
| 1026 | |||
| 1014 | #include <linux/interrupt.h> | 1027 | #include <linux/interrupt.h> |
| 1015 | #include <linux/notifier.h> | 1028 | #include <linux/notifier.h> |
| 1016 | 1029 | ||
| @@ -1065,6 +1078,8 @@ extern void free_netdev(struct net_device *dev); | |||
| 1065 | extern void synchronize_net(void); | 1078 | extern void synchronize_net(void); |
| 1066 | extern int register_netdevice_notifier(struct notifier_block *nb); | 1079 | extern int register_netdevice_notifier(struct notifier_block *nb); |
| 1067 | extern int unregister_netdevice_notifier(struct notifier_block *nb); | 1080 | extern int unregister_netdevice_notifier(struct notifier_block *nb); |
| 1081 | extern int init_dummy_netdev(struct net_device *dev); | ||
| 1082 | |||
| 1068 | extern int call_netdevice_notifiers(unsigned long val, struct net_device *dev); | 1083 | extern int call_netdevice_notifiers(unsigned long val, struct net_device *dev); |
| 1069 | extern struct net_device *dev_get_by_index(struct net *net, int ifindex); | 1084 | extern struct net_device *dev_get_by_index(struct net *net, int ifindex); |
| 1070 | extern struct net_device *__dev_get_by_index(struct net *net, int ifindex); | 1085 | extern struct net_device *__dev_get_by_index(struct net *net, int ifindex); |
| @@ -1113,9 +1128,6 @@ struct softnet_data | |||
| 1113 | struct sk_buff *completion_queue; | 1128 | struct sk_buff *completion_queue; |
| 1114 | 1129 | ||
| 1115 | struct napi_struct backlog; | 1130 | struct napi_struct backlog; |
| 1116 | #ifdef CONFIG_NET_DMA | ||
| 1117 | struct dma_chan *net_dma; | ||
| 1118 | #endif | ||
| 1119 | }; | 1131 | }; |
| 1120 | 1132 | ||
| 1121 | DECLARE_PER_CPU(struct softnet_data,softnet_data); | 1133 | DECLARE_PER_CPU(struct softnet_data,softnet_data); |
| @@ -1361,8 +1373,16 @@ extern int netif_rx_ni(struct sk_buff *skb); | |||
| 1361 | #define HAVE_NETIF_RECEIVE_SKB 1 | 1373 | #define HAVE_NETIF_RECEIVE_SKB 1 |
| 1362 | extern int netif_receive_skb(struct sk_buff *skb); | 1374 | extern int netif_receive_skb(struct sk_buff *skb); |
| 1363 | extern void napi_gro_flush(struct napi_struct *napi); | 1375 | extern void napi_gro_flush(struct napi_struct *napi); |
| 1376 | extern int dev_gro_receive(struct napi_struct *napi, | ||
| 1377 | struct sk_buff *skb); | ||
| 1364 | extern int napi_gro_receive(struct napi_struct *napi, | 1378 | extern int napi_gro_receive(struct napi_struct *napi, |
| 1365 | struct sk_buff *skb); | 1379 | struct sk_buff *skb); |
| 1380 | extern void napi_reuse_skb(struct napi_struct *napi, | ||
| 1381 | struct sk_buff *skb); | ||
| 1382 | extern struct sk_buff * napi_fraginfo_skb(struct napi_struct *napi, | ||
| 1383 | struct napi_gro_fraginfo *info); | ||
| 1384 | extern int napi_gro_frags(struct napi_struct *napi, | ||
| 1385 | struct napi_gro_fraginfo *info); | ||
| 1366 | extern void netif_nit_deliver(struct sk_buff *skb); | 1386 | extern void netif_nit_deliver(struct sk_buff *skb); |
| 1367 | extern int dev_valid_name(const char *name); | 1387 | extern int dev_valid_name(const char *name); |
| 1368 | extern int dev_ioctl(struct net *net, unsigned int cmd, void __user *); | 1388 | extern int dev_ioctl(struct net *net, unsigned int cmd, void __user *); |
diff --git a/include/linux/netfilter/x_tables.h b/include/linux/netfilter/x_tables.h index e52ce475d19f..c7ee8744d26b 100644 --- a/include/linux/netfilter/x_tables.h +++ b/include/linux/netfilter/x_tables.h | |||
| @@ -270,6 +270,7 @@ struct xt_match | |||
| 270 | struct list_head list; | 270 | struct list_head list; |
| 271 | 271 | ||
| 272 | const char name[XT_FUNCTION_MAXNAMELEN-1]; | 272 | const char name[XT_FUNCTION_MAXNAMELEN-1]; |
| 273 | u_int8_t revision; | ||
| 273 | 274 | ||
| 274 | /* Return true or false: return FALSE and set *hotdrop = 1 to | 275 | /* Return true or false: return FALSE and set *hotdrop = 1 to |
| 275 | force immediate packet drop. */ | 276 | force immediate packet drop. */ |
| @@ -302,7 +303,6 @@ struct xt_match | |||
| 302 | unsigned short proto; | 303 | unsigned short proto; |
| 303 | 304 | ||
| 304 | unsigned short family; | 305 | unsigned short family; |
| 305 | u_int8_t revision; | ||
| 306 | }; | 306 | }; |
| 307 | 307 | ||
| 308 | /* Registration hooks for targets. */ | 308 | /* Registration hooks for targets. */ |
diff --git a/include/linux/netfilter/xt_conntrack.h b/include/linux/netfilter/xt_conntrack.h index f3fd83e46bab..8f5345275393 100644 --- a/include/linux/netfilter/xt_conntrack.h +++ b/include/linux/netfilter/xt_conntrack.h | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | #ifndef _XT_CONNTRACK_H | 5 | #ifndef _XT_CONNTRACK_H |
| 6 | #define _XT_CONNTRACK_H | 6 | #define _XT_CONNTRACK_H |
| 7 | 7 | ||
| 8 | #include <linux/types.h> | ||
| 8 | #include <linux/netfilter/nf_conntrack_tuple_common.h> | 9 | #include <linux/netfilter/nf_conntrack_tuple_common.h> |
| 9 | 10 | ||
| 10 | #define XT_CONNTRACK_STATE_BIT(ctinfo) (1 << ((ctinfo)%IP_CT_IS_REPLY+1)) | 11 | #define XT_CONNTRACK_STATE_BIT(ctinfo) (1 << ((ctinfo)%IP_CT_IS_REPLY+1)) |
diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h index ea0366769484..b912311a56b1 100644 --- a/include/linux/nfs4.h +++ b/include/linux/nfs4.h | |||
| @@ -88,6 +88,8 @@ | |||
| 88 | #define NFS4_ACE_GENERIC_EXECUTE 0x001200A0 | 88 | #define NFS4_ACE_GENERIC_EXECUTE 0x001200A0 |
| 89 | #define NFS4_ACE_MASK_ALL 0x001F01FF | 89 | #define NFS4_ACE_MASK_ALL 0x001F01FF |
| 90 | 90 | ||
| 91 | #define NFS4_MAX_UINT64 (~(u64)0) | ||
| 92 | |||
| 91 | enum nfs4_acl_whotype { | 93 | enum nfs4_acl_whotype { |
| 92 | NFS4_ACL_WHO_NAMED = 0, | 94 | NFS4_ACL_WHO_NAMED = 0, |
| 93 | NFS4_ACL_WHO_OWNER, | 95 | NFS4_ACL_WHO_OWNER, |
diff --git a/include/linux/nfs_idmap.h b/include/linux/nfs_idmap.h index 15a9f3b7289a..91a1c24e0cbf 100644 --- a/include/linux/nfs_idmap.h +++ b/include/linux/nfs_idmap.h | |||
| @@ -37,6 +37,8 @@ | |||
| 37 | #ifndef NFS_IDMAP_H | 37 | #ifndef NFS_IDMAP_H |
| 38 | #define NFS_IDMAP_H | 38 | #define NFS_IDMAP_H |
| 39 | 39 | ||
| 40 | #include <linux/types.h> | ||
| 41 | |||
| 40 | /* XXX from bits/utmp.h */ | 42 | /* XXX from bits/utmp.h */ |
| 41 | #define IDMAP_NAMESZ 128 | 43 | #define IDMAP_NAMESZ 128 |
| 42 | 44 | ||
diff --git a/include/linux/nfsd/export.h b/include/linux/nfsd/export.h index 5431512b2757..bcd0201589f8 100644 --- a/include/linux/nfsd/export.h +++ b/include/linux/nfsd/export.h | |||
| @@ -10,9 +10,8 @@ | |||
| 10 | #ifndef NFSD_EXPORT_H | 10 | #ifndef NFSD_EXPORT_H |
| 11 | #define NFSD_EXPORT_H | 11 | #define NFSD_EXPORT_H |
| 12 | 12 | ||
| 13 | #include <asm/types.h> | ||
| 14 | #ifdef __KERNEL__ | ||
| 15 | # include <linux/types.h> | 13 | # include <linux/types.h> |
| 14 | #ifdef __KERNEL__ | ||
| 16 | # include <linux/in.h> | 15 | # include <linux/in.h> |
| 17 | #endif | 16 | #endif |
| 18 | 17 | ||
diff --git a/include/linux/nfsd/nfsd.h b/include/linux/nfsd/nfsd.h index 21269405ffe2..e19f45991b2e 100644 --- a/include/linux/nfsd/nfsd.h +++ b/include/linux/nfsd/nfsd.h | |||
| @@ -23,7 +23,6 @@ | |||
| 23 | /* | 23 | /* |
| 24 | * nfsd version | 24 | * nfsd version |
| 25 | */ | 25 | */ |
| 26 | #define NFSD_VERSION "0.5" | ||
| 27 | #define NFSD_SUPPORTED_MINOR_VERSION 0 | 26 | #define NFSD_SUPPORTED_MINOR_VERSION 0 |
| 28 | 27 | ||
| 29 | /* | 28 | /* |
diff --git a/include/linux/nfsd/nfsfh.h b/include/linux/nfsd/nfsfh.h index d1941cb965e9..fa317f6c154b 100644 --- a/include/linux/nfsd/nfsfh.h +++ b/include/linux/nfsd/nfsfh.h | |||
| @@ -14,9 +14,8 @@ | |||
| 14 | #ifndef _LINUX_NFSD_FH_H | 14 | #ifndef _LINUX_NFSD_FH_H |
| 15 | #define _LINUX_NFSD_FH_H | 15 | #define _LINUX_NFSD_FH_H |
| 16 | 16 | ||
| 17 | #include <asm/types.h> | ||
| 18 | #ifdef __KERNEL__ | ||
| 19 | # include <linux/types.h> | 17 | # include <linux/types.h> |
| 18 | #ifdef __KERNEL__ | ||
| 20 | # include <linux/string.h> | 19 | # include <linux/string.h> |
| 21 | # include <linux/fs.h> | 20 | # include <linux/fs.h> |
| 22 | #endif | 21 | #endif |
| @@ -68,6 +67,10 @@ struct nfs_fhbase_old { | |||
| 68 | * 1 - 4 byte user specified identifier | 67 | * 1 - 4 byte user specified identifier |
| 69 | * 2 - 4 byte major, 4 byte minor, 4 byte inode number - DEPRECATED | 68 | * 2 - 4 byte major, 4 byte minor, 4 byte inode number - DEPRECATED |
| 70 | * 3 - 4 byte device id, encoded for user-space, 4 byte inode number | 69 | * 3 - 4 byte device id, encoded for user-space, 4 byte inode number |
| 70 | * 4 - 4 byte inode number and 4 byte uuid | ||
| 71 | * 5 - 8 byte uuid | ||
| 72 | * 6 - 16 byte uuid | ||
| 73 | * 7 - 8 byte inode number and 16 byte uuid | ||
| 71 | * | 74 | * |
| 72 | * The fileid_type identified how the file within the filesystem is encoded. | 75 | * The fileid_type identified how the file within the filesystem is encoded. |
| 73 | * This is (will be) passed to, and set by, the underlying filesystem if it supports | 76 | * This is (will be) passed to, and set by, the underlying filesystem if it supports |
diff --git a/include/linux/nfsd/syscall.h b/include/linux/nfsd/syscall.h index 4e439765b705..7a3b565b898f 100644 --- a/include/linux/nfsd/syscall.h +++ b/include/linux/nfsd/syscall.h | |||
| @@ -9,9 +9,8 @@ | |||
| 9 | #ifndef NFSD_SYSCALL_H | 9 | #ifndef NFSD_SYSCALL_H |
| 10 | #define NFSD_SYSCALL_H | 10 | #define NFSD_SYSCALL_H |
| 11 | 11 | ||
| 12 | #include <asm/types.h> | ||
| 13 | #ifdef __KERNEL__ | ||
| 14 | # include <linux/types.h> | 12 | # include <linux/types.h> |
| 13 | #ifdef __KERNEL__ | ||
| 15 | # include <linux/in.h> | 14 | # include <linux/in.h> |
| 16 | #endif | 15 | #endif |
| 17 | #include <linux/posix_types.h> | 16 | #include <linux/posix_types.h> |
diff --git a/include/linux/node.h b/include/linux/node.h index bc001bc225c3..681a697b9a86 100644 --- a/include/linux/node.h +++ b/include/linux/node.h | |||
| @@ -26,6 +26,7 @@ struct node { | |||
| 26 | struct sys_device sysdev; | 26 | struct sys_device sysdev; |
| 27 | }; | 27 | }; |
| 28 | 28 | ||
| 29 | struct memory_block; | ||
| 29 | extern struct node node_devices[]; | 30 | extern struct node node_devices[]; |
| 30 | 31 | ||
| 31 | extern int register_node(struct node *, int, struct node *); | 32 | extern int register_node(struct node *, int, struct node *); |
| @@ -35,6 +36,9 @@ extern int register_one_node(int nid); | |||
| 35 | extern void unregister_one_node(int nid); | 36 | extern void unregister_one_node(int nid); |
| 36 | extern int register_cpu_under_node(unsigned int cpu, unsigned int nid); | 37 | extern int register_cpu_under_node(unsigned int cpu, unsigned int nid); |
| 37 | extern int unregister_cpu_under_node(unsigned int cpu, unsigned int nid); | 38 | extern int unregister_cpu_under_node(unsigned int cpu, unsigned int nid); |
| 39 | extern int register_mem_sect_under_node(struct memory_block *mem_blk, | ||
| 40 | int nid); | ||
| 41 | extern int unregister_mem_sect_under_nodes(struct memory_block *mem_blk); | ||
| 38 | #else | 42 | #else |
| 39 | static inline int register_one_node(int nid) | 43 | static inline int register_one_node(int nid) |
| 40 | { | 44 | { |
| @@ -52,6 +56,15 @@ static inline int unregister_cpu_under_node(unsigned int cpu, unsigned int nid) | |||
| 52 | { | 56 | { |
| 53 | return 0; | 57 | return 0; |
| 54 | } | 58 | } |
| 59 | static inline int register_mem_sect_under_node(struct memory_block *mem_blk, | ||
| 60 | int nid) | ||
| 61 | { | ||
| 62 | return 0; | ||
| 63 | } | ||
| 64 | static inline int unregister_mem_sect_under_nodes(struct memory_block *mem_blk) | ||
| 65 | { | ||
| 66 | return 0; | ||
| 67 | } | ||
| 55 | #endif | 68 | #endif |
| 56 | 69 | ||
| 57 | #define to_node(sys_device) container_of(sys_device, struct node, sysdev) | 70 | #define to_node(sys_device) container_of(sys_device, struct node, sysdev) |
diff --git a/include/linux/nubus.h b/include/linux/nubus.h index c4355076d1a5..7382af374731 100644 --- a/include/linux/nubus.h +++ b/include/linux/nubus.h | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | #ifndef LINUX_NUBUS_H | 12 | #ifndef LINUX_NUBUS_H |
| 13 | #define LINUX_NUBUS_H | 13 | #define LINUX_NUBUS_H |
| 14 | 14 | ||
| 15 | #include <linux/types.h> | ||
| 15 | #ifdef __KERNEL__ | 16 | #ifdef __KERNEL__ |
| 16 | #include <asm/nubus.h> | 17 | #include <asm/nubus.h> |
| 17 | #endif | 18 | #endif |
diff --git a/include/linux/nwpserial.h b/include/linux/nwpserial.h new file mode 100644 index 000000000000..9acb21572eaf --- /dev/null +++ b/include/linux/nwpserial.h | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | /* | ||
| 2 | * Serial Port driver for a NWP uart device | ||
| 3 | * | ||
| 4 | * Copyright (C) 2008 IBM Corp., Benjamin Krill <ben@codiert.org> | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or | ||
| 7 | * modify it under the terms of the GNU General Public License | ||
| 8 | * as published by the Free Software Foundation; either version | ||
| 9 | * 2 of the License, or (at your option) any later version. | ||
| 10 | * | ||
| 11 | */ | ||
| 12 | #ifndef _NWPSERIAL_H | ||
| 13 | #define _NWPSERIAL_H | ||
| 14 | |||
| 15 | int nwpserial_register_port(struct uart_port *port); | ||
| 16 | void nwpserial_unregister_port(int line); | ||
| 17 | |||
| 18 | #endif /* _NWPSERIAL_H */ | ||
diff --git a/include/linux/of_i2c.h b/include/linux/of_i2c.h index bd2a870ec296..34974b5a76f7 100644 --- a/include/linux/of_i2c.h +++ b/include/linux/of_i2c.h | |||
| @@ -17,4 +17,7 @@ | |||
| 17 | void of_register_i2c_devices(struct i2c_adapter *adap, | 17 | void of_register_i2c_devices(struct i2c_adapter *adap, |
| 18 | struct device_node *adap_node); | 18 | struct device_node *adap_node); |
| 19 | 19 | ||
| 20 | /* must call put_device() when done with returned i2c_client device */ | ||
| 21 | struct i2c_client *of_find_i2c_device_by_node(struct device_node *node); | ||
| 22 | |||
| 20 | #endif /* __LINUX_OF_I2C_H */ | 23 | #endif /* __LINUX_OF_I2C_H */ |
diff --git a/include/linux/oprofile.h b/include/linux/oprofile.h index 1ce9fe572e51..1d9518bc4c58 100644 --- a/include/linux/oprofile.h +++ b/include/linux/oprofile.h | |||
| @@ -164,4 +164,22 @@ void oprofile_put_buff(unsigned long *buf, unsigned int start, | |||
| 164 | unsigned long oprofile_get_cpu_buffer_size(void); | 164 | unsigned long oprofile_get_cpu_buffer_size(void); |
| 165 | void oprofile_cpu_buffer_inc_smpl_lost(void); | 165 | void oprofile_cpu_buffer_inc_smpl_lost(void); |
| 166 | 166 | ||
| 167 | /* cpu buffer functions */ | ||
| 168 | |||
| 169 | struct op_sample; | ||
| 170 | |||
| 171 | struct op_entry { | ||
| 172 | struct ring_buffer_event *event; | ||
| 173 | struct op_sample *sample; | ||
| 174 | unsigned long irq_flags; | ||
| 175 | unsigned long size; | ||
| 176 | unsigned long *data; | ||
| 177 | }; | ||
| 178 | |||
| 179 | void oprofile_write_reserve(struct op_entry *entry, | ||
| 180 | struct pt_regs * const regs, | ||
| 181 | unsigned long pc, int code, int size); | ||
| 182 | int oprofile_add_data(struct op_entry *entry, unsigned long val); | ||
| 183 | int oprofile_write_commit(struct op_entry *entry); | ||
| 184 | |||
| 167 | #endif /* OPROFILE_H */ | 185 | #endif /* OPROFILE_H */ |
diff --git a/include/linux/oxu210hp.h b/include/linux/oxu210hp.h new file mode 100644 index 000000000000..0bf96eae5389 --- /dev/null +++ b/include/linux/oxu210hp.h | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | /* platform data for the OXU210HP HCD */ | ||
| 2 | |||
| 3 | struct oxu210hp_platform_data { | ||
| 4 | unsigned int bus16:1; | ||
| 5 | unsigned int use_hcd_otg:1; | ||
| 6 | unsigned int use_hcd_sph:1; | ||
| 7 | }; | ||
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h index b12f93a3c345..219a523ecdb0 100644 --- a/include/linux/page-flags.h +++ b/include/linux/page-flags.h | |||
| @@ -228,6 +228,7 @@ PAGEFLAG_FALSE(HighMem) | |||
| 228 | PAGEFLAG(SwapCache, swapcache) | 228 | PAGEFLAG(SwapCache, swapcache) |
| 229 | #else | 229 | #else |
| 230 | PAGEFLAG_FALSE(SwapCache) | 230 | PAGEFLAG_FALSE(SwapCache) |
| 231 | SETPAGEFLAG_NOOP(SwapCache) CLEARPAGEFLAG_NOOP(SwapCache) | ||
| 231 | #endif | 232 | #endif |
| 232 | 233 | ||
| 233 | #ifdef CONFIG_UNEVICTABLE_LRU | 234 | #ifdef CONFIG_UNEVICTABLE_LRU |
| @@ -372,31 +373,22 @@ static inline void __ClearPageTail(struct page *page) | |||
| 372 | #define __PG_MLOCKED 0 | 373 | #define __PG_MLOCKED 0 |
| 373 | #endif | 374 | #endif |
| 374 | 375 | ||
| 375 | #define PAGE_FLAGS (1 << PG_lru | 1 << PG_private | 1 << PG_locked | \ | ||
| 376 | 1 << PG_buddy | 1 << PG_writeback | \ | ||
| 377 | 1 << PG_slab | 1 << PG_swapcache | 1 << PG_active | \ | ||
| 378 | __PG_UNEVICTABLE | __PG_MLOCKED) | ||
| 379 | |||
| 380 | /* | ||
| 381 | * Flags checked in bad_page(). Pages on the free list should not have | ||
| 382 | * these flags set. It they are, there is a problem. | ||
| 383 | */ | ||
| 384 | #define PAGE_FLAGS_CLEAR_WHEN_BAD (PAGE_FLAGS | \ | ||
| 385 | 1 << PG_reclaim | 1 << PG_dirty | 1 << PG_swapbacked) | ||
| 386 | |||
| 387 | /* | 376 | /* |
| 388 | * Flags checked when a page is freed. Pages being freed should not have | 377 | * Flags checked when a page is freed. Pages being freed should not have |
| 389 | * these flags set. It they are, there is a problem. | 378 | * these flags set. It they are, there is a problem. |
| 390 | */ | 379 | */ |
| 391 | #define PAGE_FLAGS_CHECK_AT_FREE (PAGE_FLAGS | 1 << PG_reserved) | 380 | #define PAGE_FLAGS_CHECK_AT_FREE \ |
| 381 | (1 << PG_lru | 1 << PG_private | 1 << PG_locked | \ | ||
| 382 | 1 << PG_buddy | 1 << PG_writeback | 1 << PG_reserved | \ | ||
| 383 | 1 << PG_slab | 1 << PG_swapcache | 1 << PG_active | \ | ||
| 384 | __PG_UNEVICTABLE | __PG_MLOCKED) | ||
| 392 | 385 | ||
| 393 | /* | 386 | /* |
| 394 | * Flags checked when a page is prepped for return by the page allocator. | 387 | * Flags checked when a page is prepped for return by the page allocator. |
| 395 | * Pages being prepped should not have these flags set. It they are, there | 388 | * Pages being prepped should not have any flags set. It they are set, |
| 396 | * is a problem. | 389 | * there has been a kernel bug or struct page corruption. |
| 397 | */ | 390 | */ |
| 398 | #define PAGE_FLAGS_CHECK_AT_PREP (PAGE_FLAGS | \ | 391 | #define PAGE_FLAGS_CHECK_AT_PREP ((1 << NR_PAGEFLAGS) - 1) |
| 399 | 1 << PG_reserved | 1 << PG_dirty | 1 << PG_swapbacked) | ||
| 400 | 392 | ||
| 401 | #endif /* !__GENERATING_BOUNDS_H */ | 393 | #endif /* !__GENERATING_BOUNDS_H */ |
| 402 | #endif /* PAGE_FLAGS_H */ | 394 | #endif /* PAGE_FLAGS_H */ |
diff --git a/include/linux/page_cgroup.h b/include/linux/page_cgroup.h index 1e6d34bfa094..602cc1fdee90 100644 --- a/include/linux/page_cgroup.h +++ b/include/linux/page_cgroup.h | |||
| @@ -26,10 +26,6 @@ enum { | |||
| 26 | PCG_LOCK, /* page cgroup is locked */ | 26 | PCG_LOCK, /* page cgroup is locked */ |
| 27 | PCG_CACHE, /* charged as cache */ | 27 | PCG_CACHE, /* charged as cache */ |
| 28 | PCG_USED, /* this object is in use. */ | 28 | PCG_USED, /* this object is in use. */ |
| 29 | /* flags for LRU placement */ | ||
| 30 | PCG_ACTIVE, /* page is active in this cgroup */ | ||
| 31 | PCG_FILE, /* page is file system backed */ | ||
| 32 | PCG_UNEVICTABLE, /* page is unevictableable */ | ||
| 33 | }; | 29 | }; |
| 34 | 30 | ||
| 35 | #define TESTPCGFLAG(uname, lname) \ | 31 | #define TESTPCGFLAG(uname, lname) \ |
| @@ -50,19 +46,6 @@ TESTPCGFLAG(Cache, CACHE) | |||
| 50 | TESTPCGFLAG(Used, USED) | 46 | TESTPCGFLAG(Used, USED) |
| 51 | CLEARPCGFLAG(Used, USED) | 47 | CLEARPCGFLAG(Used, USED) |
| 52 | 48 | ||
| 53 | /* LRU management flags (from global-lru definition) */ | ||
| 54 | TESTPCGFLAG(File, FILE) | ||
| 55 | SETPCGFLAG(File, FILE) | ||
| 56 | CLEARPCGFLAG(File, FILE) | ||
| 57 | |||
| 58 | TESTPCGFLAG(Active, ACTIVE) | ||
| 59 | SETPCGFLAG(Active, ACTIVE) | ||
| 60 | CLEARPCGFLAG(Active, ACTIVE) | ||
| 61 | |||
| 62 | TESTPCGFLAG(Unevictable, UNEVICTABLE) | ||
| 63 | SETPCGFLAG(Unevictable, UNEVICTABLE) | ||
| 64 | CLEARPCGFLAG(Unevictable, UNEVICTABLE) | ||
| 65 | |||
| 66 | static inline int page_cgroup_nid(struct page_cgroup *pc) | 49 | static inline int page_cgroup_nid(struct page_cgroup *pc) |
| 67 | { | 50 | { |
| 68 | return page_to_nid(pc->page); | 51 | return page_to_nid(pc->page); |
| @@ -105,4 +88,39 @@ static inline void page_cgroup_init(void) | |||
| 105 | } | 88 | } |
| 106 | 89 | ||
| 107 | #endif | 90 | #endif |
| 91 | |||
| 92 | #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP | ||
| 93 | #include <linux/swap.h> | ||
| 94 | extern struct mem_cgroup * | ||
| 95 | swap_cgroup_record(swp_entry_t ent, struct mem_cgroup *mem); | ||
| 96 | extern struct mem_cgroup *lookup_swap_cgroup(swp_entry_t ent); | ||
| 97 | extern int swap_cgroup_swapon(int type, unsigned long max_pages); | ||
| 98 | extern void swap_cgroup_swapoff(int type); | ||
| 99 | #else | ||
| 100 | #include <linux/swap.h> | ||
| 101 | |||
| 102 | static inline | ||
| 103 | struct mem_cgroup *swap_cgroup_record(swp_entry_t ent, struct mem_cgroup *mem) | ||
| 104 | { | ||
| 105 | return NULL; | ||
| 106 | } | ||
| 107 | |||
| 108 | static inline | ||
| 109 | struct mem_cgroup *lookup_swap_cgroup(swp_entry_t ent) | ||
| 110 | { | ||
| 111 | return NULL; | ||
| 112 | } | ||
| 113 | |||
| 114 | static inline int | ||
| 115 | swap_cgroup_swapon(int type, unsigned long max_pages) | ||
| 116 | { | ||
| 117 | return 0; | ||
| 118 | } | ||
| 119 | |||
| 120 | static inline void swap_cgroup_swapoff(int type) | ||
| 121 | { | ||
| 122 | return; | ||
| 123 | } | ||
| 124 | |||
| 125 | #endif | ||
| 108 | #endif | 126 | #endif |
diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h index 709742be02f0..01ca0856caff 100644 --- a/include/linux/pagemap.h +++ b/include/linux/pagemap.h | |||
| @@ -241,7 +241,8 @@ unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t start, | |||
| 241 | unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index, | 241 | unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index, |
| 242 | int tag, unsigned int nr_pages, struct page **pages); | 242 | int tag, unsigned int nr_pages, struct page **pages); |
| 243 | 243 | ||
| 244 | struct page *__grab_cache_page(struct address_space *mapping, pgoff_t index); | 244 | struct page *grab_cache_page_write_begin(struct address_space *mapping, |
| 245 | pgoff_t index, unsigned flags); | ||
| 245 | 246 | ||
| 246 | /* | 247 | /* |
| 247 | * Returns locked page at given index in given cache, creating it if needed. | 248 | * Returns locked page at given index in given cache, creating it if needed. |
diff --git a/include/linux/pagevec.h b/include/linux/pagevec.h index e90a2cb02915..7b2886fa7fdc 100644 --- a/include/linux/pagevec.h +++ b/include/linux/pagevec.h | |||
| @@ -21,7 +21,6 @@ struct pagevec { | |||
| 21 | }; | 21 | }; |
| 22 | 22 | ||
| 23 | void __pagevec_release(struct pagevec *pvec); | 23 | void __pagevec_release(struct pagevec *pvec); |
| 24 | void __pagevec_release_nonlru(struct pagevec *pvec); | ||
| 25 | void __pagevec_free(struct pagevec *pvec); | 24 | void __pagevec_free(struct pagevec *pvec); |
| 26 | void ____pagevec_lru_add(struct pagevec *pvec, enum lru_list lru); | 25 | void ____pagevec_lru_add(struct pagevec *pvec, enum lru_list lru); |
| 27 | void pagevec_strip(struct pagevec *pvec); | 26 | void pagevec_strip(struct pagevec *pvec); |
| @@ -69,12 +68,6 @@ static inline void pagevec_release(struct pagevec *pvec) | |||
| 69 | __pagevec_release(pvec); | 68 | __pagevec_release(pvec); |
| 70 | } | 69 | } |
| 71 | 70 | ||
| 72 | static inline void pagevec_release_nonlru(struct pagevec *pvec) | ||
| 73 | { | ||
| 74 | if (pagevec_count(pvec)) | ||
| 75 | __pagevec_release_nonlru(pvec); | ||
| 76 | } | ||
| 77 | |||
| 78 | static inline void pagevec_free(struct pagevec *pvec) | 71 | static inline void pagevec_free(struct pagevec *pvec) |
| 79 | { | 72 | { |
| 80 | if (pagevec_count(pvec)) | 73 | if (pagevec_count(pvec)) |
diff --git a/include/linux/pci-acpi.h b/include/linux/pci-acpi.h index 8837928fbf33..042c166f65d5 100644 --- a/include/linux/pci-acpi.h +++ b/include/linux/pci-acpi.h | |||
| @@ -8,6 +8,8 @@ | |||
| 8 | #ifndef _PCI_ACPI_H_ | 8 | #ifndef _PCI_ACPI_H_ |
| 9 | #define _PCI_ACPI_H_ | 9 | #define _PCI_ACPI_H_ |
| 10 | 10 | ||
| 11 | #include <linux/acpi.h> | ||
| 12 | |||
| 11 | #define OSC_QUERY_TYPE 0 | 13 | #define OSC_QUERY_TYPE 0 |
| 12 | #define OSC_SUPPORT_TYPE 1 | 14 | #define OSC_SUPPORT_TYPE 1 |
| 13 | #define OSC_CONTROL_TYPE 2 | 15 | #define OSC_CONTROL_TYPE 2 |
| @@ -48,15 +50,7 @@ | |||
| 48 | 50 | ||
| 49 | #ifdef CONFIG_ACPI | 51 | #ifdef CONFIG_ACPI |
| 50 | extern acpi_status pci_osc_control_set(acpi_handle handle, u32 flags); | 52 | extern acpi_status pci_osc_control_set(acpi_handle handle, u32 flags); |
| 51 | extern acpi_status __pci_osc_support_set(u32 flags, const char *hid); | 53 | int pci_acpi_osc_support(acpi_handle handle, u32 flags); |
| 52 | static inline acpi_status pci_osc_support_set(u32 flags) | ||
| 53 | { | ||
| 54 | return __pci_osc_support_set(flags, PCI_ROOT_HID_STRING); | ||
| 55 | } | ||
| 56 | static inline acpi_status pcie_osc_support_set(u32 flags) | ||
| 57 | { | ||
| 58 | return __pci_osc_support_set(flags, PCI_EXPRESS_ROOT_HID_STRING); | ||
| 59 | } | ||
| 60 | static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev) | 54 | static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev) |
| 61 | { | 55 | { |
| 62 | /* Find root host bridge */ | 56 | /* Find root host bridge */ |
| @@ -66,6 +60,15 @@ static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev) | |||
| 66 | return acpi_get_pci_rootbridge_handle(pci_domain_nr(pdev->bus), | 60 | return acpi_get_pci_rootbridge_handle(pci_domain_nr(pdev->bus), |
| 67 | pdev->bus->number); | 61 | pdev->bus->number); |
| 68 | } | 62 | } |
| 63 | |||
| 64 | static inline acpi_handle acpi_pci_get_bridge_handle(struct pci_bus *pbus) | ||
| 65 | { | ||
| 66 | int seg = pci_domain_nr(pbus), busnr = pbus->number; | ||
| 67 | struct pci_dev *bridge = pbus->self; | ||
| 68 | if (bridge) | ||
| 69 | return DEVICE_ACPI_HANDLE(&(bridge->dev)); | ||
| 70 | return acpi_get_pci_rootbridge_handle(seg, busnr); | ||
| 71 | } | ||
| 69 | #else | 72 | #else |
| 70 | #if !defined(AE_ERROR) | 73 | #if !defined(AE_ERROR) |
| 71 | typedef u32 acpi_status; | 74 | typedef u32 acpi_status; |
| @@ -73,8 +76,6 @@ typedef u32 acpi_status; | |||
| 73 | #endif | 76 | #endif |
| 74 | static inline acpi_status pci_osc_control_set(acpi_handle handle, u32 flags) | 77 | static inline acpi_status pci_osc_control_set(acpi_handle handle, u32 flags) |
| 75 | {return AE_ERROR;} | 78 | {return AE_ERROR;} |
| 76 | static inline acpi_status pci_osc_support_set(u32 flags) {return AE_ERROR;} | ||
| 77 | static inline acpi_status pcie_osc_support_set(u32 flags) {return AE_ERROR;} | ||
| 78 | static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev) | 79 | static inline acpi_handle acpi_find_root_bridge_handle(struct pci_dev *pdev) |
| 79 | { return NULL; } | 80 | { return NULL; } |
| 80 | #endif | 81 | #endif |
diff --git a/include/linux/pci.h b/include/linux/pci.h index 03b0b8c3c81b..48890cf3f96e 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
| @@ -82,7 +82,30 @@ enum pci_mmap_state { | |||
| 82 | #define PCI_DMA_FROMDEVICE 2 | 82 | #define PCI_DMA_FROMDEVICE 2 |
| 83 | #define PCI_DMA_NONE 3 | 83 | #define PCI_DMA_NONE 3 |
| 84 | 84 | ||
| 85 | #define DEVICE_COUNT_RESOURCE 12 | 85 | /* |
| 86 | * For PCI devices, the region numbers are assigned this way: | ||
| 87 | */ | ||
| 88 | enum { | ||
| 89 | /* #0-5: standard PCI resources */ | ||
| 90 | PCI_STD_RESOURCES, | ||
| 91 | PCI_STD_RESOURCE_END = 5, | ||
| 92 | |||
| 93 | /* #6: expansion ROM resource */ | ||
| 94 | PCI_ROM_RESOURCE, | ||
| 95 | |||
| 96 | /* resources assigned to buses behind the bridge */ | ||
| 97 | #define PCI_BRIDGE_RESOURCE_NUM 4 | ||
| 98 | |||
| 99 | PCI_BRIDGE_RESOURCES, | ||
| 100 | PCI_BRIDGE_RESOURCE_END = PCI_BRIDGE_RESOURCES + | ||
| 101 | PCI_BRIDGE_RESOURCE_NUM - 1, | ||
| 102 | |||
| 103 | /* total resources associated with a PCI device */ | ||
| 104 | PCI_NUM_RESOURCES, | ||
| 105 | |||
| 106 | /* preserve this for compatibility */ | ||
| 107 | DEVICE_COUNT_RESOURCE | ||
| 108 | }; | ||
| 86 | 109 | ||
| 87 | typedef int __bitwise pci_power_t; | 110 | typedef int __bitwise pci_power_t; |
| 88 | 111 | ||
| @@ -94,6 +117,10 @@ typedef int __bitwise pci_power_t; | |||
| 94 | #define PCI_UNKNOWN ((pci_power_t __force) 5) | 117 | #define PCI_UNKNOWN ((pci_power_t __force) 5) |
| 95 | #define PCI_POWER_ERROR ((pci_power_t __force) -1) | 118 | #define PCI_POWER_ERROR ((pci_power_t __force) -1) |
| 96 | 119 | ||
| 120 | #define PCI_PM_D2_DELAY 200 | ||
| 121 | #define PCI_PM_D3_WAIT 10 | ||
| 122 | #define PCI_PM_BUS_WAIT 50 | ||
| 123 | |||
| 97 | /** The pci_channel state describes connectivity between the CPU and | 124 | /** The pci_channel state describes connectivity between the CPU and |
| 98 | * the pci device. If some PCI bus between here and the pci device | 125 | * the pci device. If some PCI bus between here and the pci device |
| 99 | * has crashed or locked up, this info is reflected here. | 126 | * has crashed or locked up, this info is reflected here. |
| @@ -229,6 +256,7 @@ struct pci_dev { | |||
| 229 | unsigned int ari_enabled:1; /* ARI forwarding */ | 256 | unsigned int ari_enabled:1; /* ARI forwarding */ |
| 230 | unsigned int is_managed:1; | 257 | unsigned int is_managed:1; |
| 231 | unsigned int is_pcie:1; | 258 | unsigned int is_pcie:1; |
| 259 | unsigned int state_saved:1; | ||
| 232 | pci_dev_flags_t dev_flags; | 260 | pci_dev_flags_t dev_flags; |
| 233 | atomic_t enable_cnt; /* pci_enable_device has been called */ | 261 | atomic_t enable_cnt; /* pci_enable_device has been called */ |
| 234 | 262 | ||
| @@ -274,18 +302,6 @@ static inline void pci_add_saved_cap(struct pci_dev *pci_dev, | |||
| 274 | hlist_add_head(&new_cap->next, &pci_dev->saved_cap_space); | 302 | hlist_add_head(&new_cap->next, &pci_dev->saved_cap_space); |
| 275 | } | 303 | } |
| 276 | 304 | ||
| 277 | /* | ||
| 278 | * For PCI devices, the region numbers are assigned this way: | ||
| 279 | * | ||
| 280 | * 0-5 standard PCI regions | ||
| 281 | * 6 expansion ROM | ||
| 282 | * 7-10 bridges: address space assigned to buses behind the bridge | ||
| 283 | */ | ||
| 284 | |||
| 285 | #define PCI_ROM_RESOURCE 6 | ||
| 286 | #define PCI_BRIDGE_RESOURCES 7 | ||
| 287 | #define PCI_NUM_RESOURCES 11 | ||
| 288 | |||
| 289 | #ifndef PCI_BUS_NUM_RESOURCES | 305 | #ifndef PCI_BUS_NUM_RESOURCES |
| 290 | #define PCI_BUS_NUM_RESOURCES 16 | 306 | #define PCI_BUS_NUM_RESOURCES 16 |
| 291 | #endif | 307 | #endif |
| @@ -325,6 +341,15 @@ struct pci_bus { | |||
| 325 | #define pci_bus_b(n) list_entry(n, struct pci_bus, node) | 341 | #define pci_bus_b(n) list_entry(n, struct pci_bus, node) |
| 326 | #define to_pci_bus(n) container_of(n, struct pci_bus, dev) | 342 | #define to_pci_bus(n) container_of(n, struct pci_bus, dev) |
| 327 | 343 | ||
| 344 | #ifdef CONFIG_PCI_MSI | ||
| 345 | static inline bool pci_dev_msi_enabled(struct pci_dev *pci_dev) | ||
| 346 | { | ||
| 347 | return pci_dev->msi_enabled || pci_dev->msix_enabled; | ||
| 348 | } | ||
| 349 | #else | ||
| 350 | static inline bool pci_dev_msi_enabled(struct pci_dev *pci_dev) { return false; } | ||
| 351 | #endif | ||
| 352 | |||
| 328 | /* | 353 | /* |
| 329 | * Error values that may be returned by PCI functions. | 354 | * Error values that may be returned by PCI functions. |
| 330 | */ | 355 | */ |
| @@ -421,7 +446,6 @@ struct pci_driver { | |||
| 421 | int (*resume_early) (struct pci_dev *dev); | 446 | int (*resume_early) (struct pci_dev *dev); |
| 422 | int (*resume) (struct pci_dev *dev); /* Device woken up */ | 447 | int (*resume) (struct pci_dev *dev); /* Device woken up */ |
| 423 | void (*shutdown) (struct pci_dev *dev); | 448 | void (*shutdown) (struct pci_dev *dev); |
| 424 | struct pm_ext_ops *pm; | ||
| 425 | struct pci_error_handlers *err_handler; | 449 | struct pci_error_handlers *err_handler; |
| 426 | struct device_driver driver; | 450 | struct device_driver driver; |
| 427 | struct pci_dynids dynids; | 451 | struct pci_dynids dynids; |
| @@ -533,7 +557,9 @@ int __must_check pci_bus_add_device(struct pci_dev *dev); | |||
| 533 | void pci_read_bridge_bases(struct pci_bus *child); | 557 | void pci_read_bridge_bases(struct pci_bus *child); |
| 534 | struct resource *pci_find_parent_resource(const struct pci_dev *dev, | 558 | struct resource *pci_find_parent_resource(const struct pci_dev *dev, |
| 535 | struct resource *res); | 559 | struct resource *res); |
| 560 | u8 pci_swizzle_interrupt_pin(struct pci_dev *dev, u8 pin); | ||
| 536 | int pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge); | 561 | int pci_get_interrupt_pin(struct pci_dev *dev, struct pci_dev **bridge); |
| 562 | u8 pci_common_swizzle(struct pci_dev *dev, u8 *pinp); | ||
| 537 | extern struct pci_dev *pci_dev_get(struct pci_dev *dev); | 563 | extern struct pci_dev *pci_dev_get(struct pci_dev *dev); |
| 538 | extern void pci_dev_put(struct pci_dev *dev); | 564 | extern void pci_dev_put(struct pci_dev *dev); |
| 539 | extern void pci_remove_bus(struct pci_bus *b); | 565 | extern void pci_remove_bus(struct pci_bus *b); |
| @@ -630,6 +656,7 @@ static inline int pci_is_managed(struct pci_dev *pdev) | |||
| 630 | 656 | ||
| 631 | void pci_disable_device(struct pci_dev *dev); | 657 | void pci_disable_device(struct pci_dev *dev); |
| 632 | void pci_set_master(struct pci_dev *dev); | 658 | void pci_set_master(struct pci_dev *dev); |
| 659 | void pci_clear_master(struct pci_dev *dev); | ||
| 633 | int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state); | 660 | int pci_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state); |
| 634 | #define HAVE_PCI_SET_MWI | 661 | #define HAVE_PCI_SET_MWI |
| 635 | int __must_check pci_set_mwi(struct pci_dev *dev); | 662 | int __must_check pci_set_mwi(struct pci_dev *dev); |
| @@ -648,7 +675,7 @@ int pcie_get_readrq(struct pci_dev *dev); | |||
| 648 | int pcie_set_readrq(struct pci_dev *dev, int rq); | 675 | int pcie_set_readrq(struct pci_dev *dev, int rq); |
| 649 | int pci_reset_function(struct pci_dev *dev); | 676 | int pci_reset_function(struct pci_dev *dev); |
| 650 | int pci_execute_reset_function(struct pci_dev *dev); | 677 | int pci_execute_reset_function(struct pci_dev *dev); |
| 651 | void pci_update_resource(struct pci_dev *dev, struct resource *res, int resno); | 678 | void pci_update_resource(struct pci_dev *dev, int resno); |
| 652 | int __must_check pci_assign_resource(struct pci_dev *dev, int i); | 679 | int __must_check pci_assign_resource(struct pci_dev *dev, int i); |
| 653 | int pci_select_bars(struct pci_dev *dev, unsigned long flags); | 680 | int pci_select_bars(struct pci_dev *dev, unsigned long flags); |
| 654 | 681 | ||
| @@ -675,6 +702,11 @@ int pci_back_from_sleep(struct pci_dev *dev); | |||
| 675 | /* Functions for PCI Hotplug drivers to use */ | 702 | /* Functions for PCI Hotplug drivers to use */ |
| 676 | int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap); | 703 | int pci_bus_find_capability(struct pci_bus *bus, unsigned int devfn, int cap); |
| 677 | 704 | ||
| 705 | /* Vital product data routines */ | ||
| 706 | ssize_t pci_read_vpd(struct pci_dev *dev, loff_t pos, size_t count, void *buf); | ||
| 707 | ssize_t pci_write_vpd(struct pci_dev *dev, loff_t pos, size_t count, const void *buf); | ||
| 708 | int pci_vpd_truncate(struct pci_dev *dev, size_t size); | ||
| 709 | |||
| 678 | /* Helper functions for low-level code (drivers/pci/setup-[bus,res].c) */ | 710 | /* Helper functions for low-level code (drivers/pci/setup-[bus,res].c) */ |
| 679 | void pci_bus_assign_resources(struct pci_bus *bus); | 711 | void pci_bus_assign_resources(struct pci_bus *bus); |
| 680 | void pci_bus_size_bridges(struct pci_bus *bus); | 712 | void pci_bus_size_bridges(struct pci_bus *bus); |
| @@ -687,10 +719,13 @@ void pci_fixup_irqs(u8 (*)(struct pci_dev *, u8 *), | |||
| 687 | int (*)(struct pci_dev *, u8, u8)); | 719 | int (*)(struct pci_dev *, u8, u8)); |
| 688 | #define HAVE_PCI_REQ_REGIONS 2 | 720 | #define HAVE_PCI_REQ_REGIONS 2 |
| 689 | int __must_check pci_request_regions(struct pci_dev *, const char *); | 721 | int __must_check pci_request_regions(struct pci_dev *, const char *); |
| 722 | int __must_check pci_request_regions_exclusive(struct pci_dev *, const char *); | ||
| 690 | void pci_release_regions(struct pci_dev *); | 723 | void pci_release_regions(struct pci_dev *); |
| 691 | int __must_check pci_request_region(struct pci_dev *, int, const char *); | 724 | int __must_check pci_request_region(struct pci_dev *, int, const char *); |
| 725 | int __must_check pci_request_region_exclusive(struct pci_dev *, int, const char *); | ||
| 692 | void pci_release_region(struct pci_dev *, int); | 726 | void pci_release_region(struct pci_dev *, int); |
| 693 | int pci_request_selected_regions(struct pci_dev *, int, const char *); | 727 | int pci_request_selected_regions(struct pci_dev *, int, const char *); |
| 728 | int pci_request_selected_regions_exclusive(struct pci_dev *, int, const char *); | ||
| 694 | void pci_release_selected_regions(struct pci_dev *, int); | 729 | void pci_release_selected_regions(struct pci_dev *, int); |
| 695 | 730 | ||
| 696 | /* drivers/pci/bus.c */ | 731 | /* drivers/pci/bus.c */ |
| @@ -780,6 +815,10 @@ static inline void msi_remove_pci_irq_vectors(struct pci_dev *dev) | |||
| 780 | 815 | ||
| 781 | static inline void pci_restore_msi_state(struct pci_dev *dev) | 816 | static inline void pci_restore_msi_state(struct pci_dev *dev) |
| 782 | { } | 817 | { } |
| 818 | static inline int pci_msi_enabled(void) | ||
| 819 | { | ||
| 820 | return 0; | ||
| 821 | } | ||
| 783 | #else | 822 | #else |
| 784 | extern int pci_enable_msi(struct pci_dev *dev); | 823 | extern int pci_enable_msi(struct pci_dev *dev); |
| 785 | extern void pci_msi_shutdown(struct pci_dev *dev); | 824 | extern void pci_msi_shutdown(struct pci_dev *dev); |
| @@ -790,6 +829,16 @@ extern void pci_msix_shutdown(struct pci_dev *dev); | |||
| 790 | extern void pci_disable_msix(struct pci_dev *dev); | 829 | extern void pci_disable_msix(struct pci_dev *dev); |
| 791 | extern void msi_remove_pci_irq_vectors(struct pci_dev *dev); | 830 | extern void msi_remove_pci_irq_vectors(struct pci_dev *dev); |
| 792 | extern void pci_restore_msi_state(struct pci_dev *dev); | 831 | extern void pci_restore_msi_state(struct pci_dev *dev); |
| 832 | extern int pci_msi_enabled(void); | ||
| 833 | #endif | ||
| 834 | |||
| 835 | #ifndef CONFIG_PCIEASPM | ||
| 836 | static inline int pcie_aspm_enabled(void) | ||
| 837 | { | ||
| 838 | return 0; | ||
| 839 | } | ||
| 840 | #else | ||
| 841 | extern int pcie_aspm_enabled(void); | ||
| 793 | #endif | 842 | #endif |
| 794 | 843 | ||
| 795 | #ifdef CONFIG_HT_IRQ | 844 | #ifdef CONFIG_HT_IRQ |
| @@ -1141,20 +1190,9 @@ static inline void pci_mmcfg_early_init(void) { } | |||
| 1141 | static inline void pci_mmcfg_late_init(void) { } | 1190 | static inline void pci_mmcfg_late_init(void) { } |
| 1142 | #endif | 1191 | #endif |
| 1143 | 1192 | ||
| 1144 | #ifdef CONFIG_HAS_IOMEM | 1193 | int pci_ext_cfg_avail(struct pci_dev *dev); |
| 1145 | static inline void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar) | 1194 | |
| 1146 | { | 1195 | void __iomem *pci_ioremap_bar(struct pci_dev *pdev, int bar); |
| 1147 | /* | ||
| 1148 | * Make sure the BAR is actually a memory resource, not an IO resource | ||
| 1149 | */ | ||
| 1150 | if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) { | ||
| 1151 | WARN_ON(1); | ||
| 1152 | return NULL; | ||
| 1153 | } | ||
| 1154 | return ioremap_nocache(pci_resource_start(pdev, bar), | ||
| 1155 | pci_resource_len(pdev, bar)); | ||
| 1156 | } | ||
| 1157 | #endif | ||
| 1158 | 1196 | ||
| 1159 | #endif /* __KERNEL__ */ | 1197 | #endif /* __KERNEL__ */ |
| 1160 | #endif /* LINUX_PCI_H */ | 1198 | #endif /* LINUX_PCI_H */ |
diff --git a/include/linux/pci_hotplug.h b/include/linux/pci_hotplug.h index a00bd1a0f156..20998746518e 100644 --- a/include/linux/pci_hotplug.h +++ b/include/linux/pci_hotplug.h | |||
| @@ -223,11 +223,12 @@ struct hotplug_params { | |||
| 223 | #ifdef CONFIG_ACPI | 223 | #ifdef CONFIG_ACPI |
| 224 | #include <acpi/acpi.h> | 224 | #include <acpi/acpi.h> |
| 225 | #include <acpi/acpi_bus.h> | 225 | #include <acpi/acpi_bus.h> |
| 226 | #include <acpi/actypes.h> | ||
| 227 | extern acpi_status acpi_get_hp_params_from_firmware(struct pci_bus *bus, | 226 | extern acpi_status acpi_get_hp_params_from_firmware(struct pci_bus *bus, |
| 228 | struct hotplug_params *hpp); | 227 | struct hotplug_params *hpp); |
| 229 | int acpi_get_hp_hw_control_from_firmware(struct pci_dev *dev, u32 flags); | 228 | int acpi_get_hp_hw_control_from_firmware(struct pci_dev *dev, u32 flags); |
| 230 | int acpi_root_bridge(acpi_handle handle); | 229 | int acpi_root_bridge(acpi_handle handle); |
| 230 | int acpi_pci_check_ejectable(struct pci_bus *pbus, acpi_handle handle); | ||
| 231 | int acpi_pci_detect_ejectable(struct pci_bus *pbus); | ||
| 231 | #endif | 232 | #endif |
| 232 | #endif | 233 | #endif |
| 233 | 234 | ||
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index b6e694454280..52a9fe08451c 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h | |||
| @@ -1357,6 +1357,7 @@ | |||
| 1357 | #define PCI_DEVICE_ID_VIA_8783_0 0x3208 | 1357 | #define PCI_DEVICE_ID_VIA_8783_0 0x3208 |
| 1358 | #define PCI_DEVICE_ID_VIA_8237 0x3227 | 1358 | #define PCI_DEVICE_ID_VIA_8237 0x3227 |
| 1359 | #define PCI_DEVICE_ID_VIA_8251 0x3287 | 1359 | #define PCI_DEVICE_ID_VIA_8251 0x3287 |
| 1360 | #define PCI_DEVICE_ID_VIA_8261 0x3402 | ||
| 1360 | #define PCI_DEVICE_ID_VIA_8237A 0x3337 | 1361 | #define PCI_DEVICE_ID_VIA_8237A 0x3337 |
| 1361 | #define PCI_DEVICE_ID_VIA_8237S 0x3372 | 1362 | #define PCI_DEVICE_ID_VIA_8237S 0x3372 |
| 1362 | #define PCI_DEVICE_ID_VIA_SATA_EIDE 0x5324 | 1363 | #define PCI_DEVICE_ID_VIA_SATA_EIDE 0x5324 |
| @@ -1366,10 +1367,13 @@ | |||
| 1366 | #define PCI_DEVICE_ID_VIA_CX700 0x8324 | 1367 | #define PCI_DEVICE_ID_VIA_CX700 0x8324 |
| 1367 | #define PCI_DEVICE_ID_VIA_CX700_IDE 0x0581 | 1368 | #define PCI_DEVICE_ID_VIA_CX700_IDE 0x0581 |
| 1368 | #define PCI_DEVICE_ID_VIA_VX800 0x8353 | 1369 | #define PCI_DEVICE_ID_VIA_VX800 0x8353 |
| 1370 | #define PCI_DEVICE_ID_VIA_VX855 0x8409 | ||
| 1369 | #define PCI_DEVICE_ID_VIA_8371_1 0x8391 | 1371 | #define PCI_DEVICE_ID_VIA_8371_1 0x8391 |
| 1370 | #define PCI_DEVICE_ID_VIA_82C598_1 0x8598 | 1372 | #define PCI_DEVICE_ID_VIA_82C598_1 0x8598 |
| 1371 | #define PCI_DEVICE_ID_VIA_838X_1 0xB188 | 1373 | #define PCI_DEVICE_ID_VIA_838X_1 0xB188 |
| 1372 | #define PCI_DEVICE_ID_VIA_83_87XX_1 0xB198 | 1374 | #define PCI_DEVICE_ID_VIA_83_87XX_1 0xB198 |
| 1375 | #define PCI_DEVICE_ID_VIA_C409_IDE 0XC409 | ||
| 1376 | #define PCI_DEVICE_ID_VIA_ANON 0xFFFF | ||
| 1373 | 1377 | ||
| 1374 | #define PCI_VENDOR_ID_SIEMENS 0x110A | 1378 | #define PCI_VENDOR_ID_SIEMENS 0x110A |
| 1375 | #define PCI_DEVICE_ID_SIEMENS_DSCC4 0x2102 | 1379 | #define PCI_DEVICE_ID_SIEMENS_DSCC4 0x2102 |
| @@ -1658,6 +1662,7 @@ | |||
| 1658 | #define PCI_VENDOR_ID_ROCKWELL 0x127A | 1662 | #define PCI_VENDOR_ID_ROCKWELL 0x127A |
| 1659 | 1663 | ||
| 1660 | #define PCI_VENDOR_ID_ITE 0x1283 | 1664 | #define PCI_VENDOR_ID_ITE 0x1283 |
| 1665 | #define PCI_DEVICE_ID_ITE_8172 0x8172 | ||
| 1661 | #define PCI_DEVICE_ID_ITE_8211 0x8211 | 1666 | #define PCI_DEVICE_ID_ITE_8211 0x8211 |
| 1662 | #define PCI_DEVICE_ID_ITE_8212 0x8212 | 1667 | #define PCI_DEVICE_ID_ITE_8212 0x8212 |
| 1663 | #define PCI_DEVICE_ID_ITE_8213 0x8213 | 1668 | #define PCI_DEVICE_ID_ITE_8213 0x8213 |
| @@ -1766,6 +1771,7 @@ | |||
| 1766 | #define PCI_DEVICE_ID_SIIG_8S_20x_650 0x2081 | 1771 | #define PCI_DEVICE_ID_SIIG_8S_20x_650 0x2081 |
| 1767 | #define PCI_DEVICE_ID_SIIG_8S_20x_850 0x2082 | 1772 | #define PCI_DEVICE_ID_SIIG_8S_20x_850 0x2082 |
| 1768 | #define PCI_SUBDEVICE_ID_SIIG_QUARTET_SERIAL 0x2050 | 1773 | #define PCI_SUBDEVICE_ID_SIIG_QUARTET_SERIAL 0x2050 |
| 1774 | #define PCI_SUBDEVICE_ID_SIIG_DUAL_SERIAL 0x2530 | ||
| 1769 | 1775 | ||
| 1770 | #define PCI_VENDOR_ID_RADISYS 0x1331 | 1776 | #define PCI_VENDOR_ID_RADISYS 0x1331 |
| 1771 | 1777 | ||
| @@ -1795,6 +1801,7 @@ | |||
| 1795 | #define PCI_DEVICE_ID_SEALEVEL_UCOMM232 0x7202 | 1801 | #define PCI_DEVICE_ID_SEALEVEL_UCOMM232 0x7202 |
| 1796 | #define PCI_DEVICE_ID_SEALEVEL_COMM4 0x7401 | 1802 | #define PCI_DEVICE_ID_SEALEVEL_COMM4 0x7401 |
| 1797 | #define PCI_DEVICE_ID_SEALEVEL_COMM8 0x7801 | 1803 | #define PCI_DEVICE_ID_SEALEVEL_COMM8 0x7801 |
| 1804 | #define PCI_DEVICE_ID_SEALEVEL_7803 0x7803 | ||
| 1798 | #define PCI_DEVICE_ID_SEALEVEL_UCOMM8 0x7804 | 1805 | #define PCI_DEVICE_ID_SEALEVEL_UCOMM8 0x7804 |
| 1799 | 1806 | ||
| 1800 | #define PCI_VENDOR_ID_HYPERCOPE 0x1365 | 1807 | #define PCI_VENDOR_ID_HYPERCOPE 0x1365 |
| @@ -2171,6 +2178,7 @@ | |||
| 2171 | #define PCI_DEVICE_ID_RDC_R6040 0x6040 | 2178 | #define PCI_DEVICE_ID_RDC_R6040 0x6040 |
| 2172 | #define PCI_DEVICE_ID_RDC_R6060 0x6060 | 2179 | #define PCI_DEVICE_ID_RDC_R6060 0x6060 |
| 2173 | #define PCI_DEVICE_ID_RDC_R6061 0x6061 | 2180 | #define PCI_DEVICE_ID_RDC_R6061 0x6061 |
| 2181 | #define PCI_DEVICE_ID_RDC_D1010 0x1010 | ||
| 2174 | 2182 | ||
| 2175 | #define PCI_VENDOR_ID_LENOVO 0x17aa | 2183 | #define PCI_VENDOR_ID_LENOVO 0x17aa |
| 2176 | 2184 | ||
| @@ -2417,6 +2425,7 @@ | |||
| 2417 | #define PCI_DEVICE_ID_INTEL_ICH7_0 0x27b8 | 2425 | #define PCI_DEVICE_ID_INTEL_ICH7_0 0x27b8 |
| 2418 | #define PCI_DEVICE_ID_INTEL_ICH7_1 0x27b9 | 2426 | #define PCI_DEVICE_ID_INTEL_ICH7_1 0x27b9 |
| 2419 | #define PCI_DEVICE_ID_INTEL_ICH7_30 0x27b0 | 2427 | #define PCI_DEVICE_ID_INTEL_ICH7_30 0x27b0 |
| 2428 | #define PCI_DEVICE_ID_INTEL_TGP_LPC 0x27bc | ||
| 2420 | #define PCI_DEVICE_ID_INTEL_ICH7_31 0x27bd | 2429 | #define PCI_DEVICE_ID_INTEL_ICH7_31 0x27bd |
| 2421 | #define PCI_DEVICE_ID_INTEL_ICH7_17 0x27da | 2430 | #define PCI_DEVICE_ID_INTEL_ICH7_17 0x27da |
| 2422 | #define PCI_DEVICE_ID_INTEL_ICH7_19 0x27dd | 2431 | #define PCI_DEVICE_ID_INTEL_ICH7_19 0x27dd |
diff --git a/include/linux/pci_regs.h b/include/linux/pci_regs.h index e5effd47ed74..027815b4635e 100644 --- a/include/linux/pci_regs.h +++ b/include/linux/pci_regs.h | |||
| @@ -210,6 +210,7 @@ | |||
| 210 | #define PCI_CAP_ID_AGP3 0x0E /* AGP Target PCI-PCI bridge */ | 210 | #define PCI_CAP_ID_AGP3 0x0E /* AGP Target PCI-PCI bridge */ |
| 211 | #define PCI_CAP_ID_EXP 0x10 /* PCI Express */ | 211 | #define PCI_CAP_ID_EXP 0x10 /* PCI Express */ |
| 212 | #define PCI_CAP_ID_MSIX 0x11 /* MSI-X */ | 212 | #define PCI_CAP_ID_MSIX 0x11 /* MSI-X */ |
| 213 | #define PCI_CAP_ID_AF 0x13 /* PCI Advanced Features */ | ||
| 213 | #define PCI_CAP_LIST_NEXT 1 /* Next capability in the list */ | 214 | #define PCI_CAP_LIST_NEXT 1 /* Next capability in the list */ |
| 214 | #define PCI_CAP_FLAGS 2 /* Capability defined flags (16 bits) */ | 215 | #define PCI_CAP_FLAGS 2 /* Capability defined flags (16 bits) */ |
| 215 | #define PCI_CAP_SIZEOF 4 | 216 | #define PCI_CAP_SIZEOF 4 |
| @@ -316,6 +317,17 @@ | |||
| 316 | #define PCI_CHSWP_EXT 0x40 /* ENUM# status - extraction */ | 317 | #define PCI_CHSWP_EXT 0x40 /* ENUM# status - extraction */ |
| 317 | #define PCI_CHSWP_INS 0x80 /* ENUM# status - insertion */ | 318 | #define PCI_CHSWP_INS 0x80 /* ENUM# status - insertion */ |
| 318 | 319 | ||
| 320 | /* PCI Advanced Feature registers */ | ||
| 321 | |||
| 322 | #define PCI_AF_LENGTH 2 | ||
| 323 | #define PCI_AF_CAP 3 | ||
| 324 | #define PCI_AF_CAP_TP 0x01 | ||
| 325 | #define PCI_AF_CAP_FLR 0x02 | ||
| 326 | #define PCI_AF_CTRL 4 | ||
| 327 | #define PCI_AF_CTRL_FLR 0x01 | ||
| 328 | #define PCI_AF_STATUS 5 | ||
| 329 | #define PCI_AF_STATUS_TP 0x01 | ||
| 330 | |||
| 319 | /* PCI-X registers */ | 331 | /* PCI-X registers */ |
| 320 | 332 | ||
| 321 | #define PCI_X_CMD 2 /* Modes & Features */ | 333 | #define PCI_X_CMD 2 /* Modes & Features */ |
| @@ -399,20 +411,70 @@ | |||
| 399 | #define PCI_EXP_DEVSTA_AUXPD 0x10 /* AUX Power Detected */ | 411 | #define PCI_EXP_DEVSTA_AUXPD 0x10 /* AUX Power Detected */ |
| 400 | #define PCI_EXP_DEVSTA_TRPND 0x20 /* Transactions Pending */ | 412 | #define PCI_EXP_DEVSTA_TRPND 0x20 /* Transactions Pending */ |
| 401 | #define PCI_EXP_LNKCAP 12 /* Link Capabilities */ | 413 | #define PCI_EXP_LNKCAP 12 /* Link Capabilities */ |
| 402 | #define PCI_EXP_LNKCAP_ASPMS 0xc00 /* ASPM Support */ | 414 | #define PCI_EXP_LNKCAP_SLS 0x0000000f /* Supported Link Speeds */ |
| 403 | #define PCI_EXP_LNKCAP_L0SEL 0x7000 /* L0s Exit Latency */ | 415 | #define PCI_EXP_LNKCAP_MLW 0x000003f0 /* Maximum Link Width */ |
| 404 | #define PCI_EXP_LNKCAP_L1EL 0x38000 /* L1 Exit Latency */ | 416 | #define PCI_EXP_LNKCAP_ASPMS 0x00000c00 /* ASPM Support */ |
| 405 | #define PCI_EXP_LNKCAP_CLKPM 0x40000 /* L1 Clock Power Management */ | 417 | #define PCI_EXP_LNKCAP_L0SEL 0x00007000 /* L0s Exit Latency */ |
| 418 | #define PCI_EXP_LNKCAP_L1EL 0x00038000 /* L1 Exit Latency */ | ||
| 419 | #define PCI_EXP_LNKCAP_CLKPM 0x00040000 /* L1 Clock Power Management */ | ||
| 420 | #define PCI_EXP_LNKCAP_SDERC 0x00080000 /* Suprise Down Error Reporting Capable */ | ||
| 421 | #define PCI_EXP_LNKCAP_DLLLARC 0x00100000 /* Data Link Layer Link Active Reporting Capable */ | ||
| 422 | #define PCI_EXP_LNKCAP_LBNC 0x00200000 /* Link Bandwidth Notification Capability */ | ||
| 423 | #define PCI_EXP_LNKCAP_PN 0xff000000 /* Port Number */ | ||
| 406 | #define PCI_EXP_LNKCTL 16 /* Link Control */ | 424 | #define PCI_EXP_LNKCTL 16 /* Link Control */ |
| 407 | #define PCI_EXP_LNKCTL_RL 0x20 /* Retrain Link */ | 425 | #define PCI_EXP_LNKCTL_ASPMC 0x0003 /* ASPM Control */ |
| 408 | #define PCI_EXP_LNKCTL_CCC 0x40 /* Common Clock COnfiguration */ | 426 | #define PCI_EXP_LNKCTL_RCB 0x0008 /* Read Completion Boundary */ |
| 427 | #define PCI_EXP_LNKCTL_LD 0x0010 /* Link Disable */ | ||
| 428 | #define PCI_EXP_LNKCTL_RL 0x0020 /* Retrain Link */ | ||
| 429 | #define PCI_EXP_LNKCTL_CCC 0x0040 /* Common Clock Configuration */ | ||
| 430 | #define PCI_EXP_LNKCTL_ES 0x0080 /* Extended Synch */ | ||
| 409 | #define PCI_EXP_LNKCTL_CLKREQ_EN 0x100 /* Enable clkreq */ | 431 | #define PCI_EXP_LNKCTL_CLKREQ_EN 0x100 /* Enable clkreq */ |
| 432 | #define PCI_EXP_LNKCTL_HAWD 0x0200 /* Hardware Autonomous Width Disable */ | ||
| 433 | #define PCI_EXP_LNKCTL_LBMIE 0x0400 /* Link Bandwidth Management Interrupt Enable */ | ||
| 434 | #define PCI_EXP_LNKCTL_LABIE 0x0800 /* Lnk Autonomous Bandwidth Interrupt Enable */ | ||
| 410 | #define PCI_EXP_LNKSTA 18 /* Link Status */ | 435 | #define PCI_EXP_LNKSTA 18 /* Link Status */ |
| 411 | #define PCI_EXP_LNKSTA_LT 0x800 /* Link Training */ | 436 | #define PCI_EXP_LNKSTA_CLS 0x000f /* Current Link Speed */ |
| 437 | #define PCI_EXP_LNKSTA_NLW 0x03f0 /* Nogotiated Link Width */ | ||
| 438 | #define PCI_EXP_LNKSTA_LT 0x0800 /* Link Training */ | ||
| 412 | #define PCI_EXP_LNKSTA_SLC 0x1000 /* Slot Clock Configuration */ | 439 | #define PCI_EXP_LNKSTA_SLC 0x1000 /* Slot Clock Configuration */ |
| 440 | #define PCI_EXP_LNKSTA_DLLLA 0x2000 /* Data Link Layer Link Active */ | ||
| 441 | #define PCI_EXP_LNKSTA_LBMS 0x4000 /* Link Bandwidth Management Status */ | ||
| 442 | #define PCI_EXP_LNKSTA_LABS 0x8000 /* Link Autonomous Bandwidth Status */ | ||
| 413 | #define PCI_EXP_SLTCAP 20 /* Slot Capabilities */ | 443 | #define PCI_EXP_SLTCAP 20 /* Slot Capabilities */ |
| 444 | #define PCI_EXP_SLTCAP_ABP 0x00000001 /* Attention Button Present */ | ||
| 445 | #define PCI_EXP_SLTCAP_PCP 0x00000002 /* Power Controller Present */ | ||
| 446 | #define PCI_EXP_SLTCAP_MRLSP 0x00000004 /* MRL Sensor Present */ | ||
| 447 | #define PCI_EXP_SLTCAP_AIP 0x00000008 /* Attention Indicator Present */ | ||
| 448 | #define PCI_EXP_SLTCAP_PIP 0x00000010 /* Power Indicator Present */ | ||
| 449 | #define PCI_EXP_SLTCAP_HPS 0x00000020 /* Hot-Plug Surprise */ | ||
| 450 | #define PCI_EXP_SLTCAP_HPC 0x00000040 /* Hot-Plug Capable */ | ||
| 451 | #define PCI_EXP_SLTCAP_SPLV 0x00007f80 /* Slot Power Limit Value */ | ||
| 452 | #define PCI_EXP_SLTCAP_SPLS 0x00018000 /* Slot Power Limit Scale */ | ||
| 453 | #define PCI_EXP_SLTCAP_EIP 0x00020000 /* Electromechanical Interlock Present */ | ||
| 454 | #define PCI_EXP_SLTCAP_NCCS 0x00040000 /* No Command Completed Support */ | ||
| 455 | #define PCI_EXP_SLTCAP_PSN 0xfff80000 /* Physical Slot Number */ | ||
| 414 | #define PCI_EXP_SLTCTL 24 /* Slot Control */ | 456 | #define PCI_EXP_SLTCTL 24 /* Slot Control */ |
| 457 | #define PCI_EXP_SLTCTL_ABPE 0x0001 /* Attention Button Pressed Enable */ | ||
| 458 | #define PCI_EXP_SLTCTL_PFDE 0x0002 /* Power Fault Detected Enable */ | ||
| 459 | #define PCI_EXP_SLTCTL_MRLSCE 0x0004 /* MRL Sensor Changed Enable */ | ||
| 460 | #define PCI_EXP_SLTCTL_PDCE 0x0008 /* Presence Detect Changed Enable */ | ||
| 461 | #define PCI_EXP_SLTCTL_CCIE 0x0010 /* Command Completed Interrupt Enable */ | ||
| 462 | #define PCI_EXP_SLTCTL_HPIE 0x0020 /* Hot-Plug Interrupt Enable */ | ||
| 463 | #define PCI_EXP_SLTCTL_AIC 0x00c0 /* Attention Indicator Control */ | ||
| 464 | #define PCI_EXP_SLTCTL_PIC 0x0300 /* Power Indicator Control */ | ||
| 465 | #define PCI_EXP_SLTCTL_PCC 0x0400 /* Power Controller Control */ | ||
| 466 | #define PCI_EXP_SLTCTL_EIC 0x0800 /* Electromechanical Interlock Control */ | ||
| 467 | #define PCI_EXP_SLTCTL_DLLSCE 0x1000 /* Data Link Layer State Changed Enable */ | ||
| 415 | #define PCI_EXP_SLTSTA 26 /* Slot Status */ | 468 | #define PCI_EXP_SLTSTA 26 /* Slot Status */ |
| 469 | #define PCI_EXP_SLTSTA_ABP 0x0001 /* Attention Button Pressed */ | ||
| 470 | #define PCI_EXP_SLTSTA_PFD 0x0002 /* Power Fault Detected */ | ||
| 471 | #define PCI_EXP_SLTSTA_MRLSC 0x0004 /* MRL Sensor Changed */ | ||
| 472 | #define PCI_EXP_SLTSTA_PDC 0x0008 /* Presence Detect Changed */ | ||
| 473 | #define PCI_EXP_SLTSTA_CC 0x0010 /* Command Completed */ | ||
| 474 | #define PCI_EXP_SLTSTA_MRLSS 0x0020 /* MRL Sensor State */ | ||
| 475 | #define PCI_EXP_SLTSTA_PDS 0x0040 /* Presence Detect State */ | ||
| 476 | #define PCI_EXP_SLTSTA_EIS 0x0080 /* Electromechanical Interlock Status */ | ||
| 477 | #define PCI_EXP_SLTSTA_DLLSC 0x0100 /* Data Link Layer State Changed */ | ||
| 416 | #define PCI_EXP_RTCTL 28 /* Root Control */ | 478 | #define PCI_EXP_RTCTL 28 /* Root Control */ |
| 417 | #define PCI_EXP_RTCTL_SECEE 0x01 /* System Error on Correctable Error */ | 479 | #define PCI_EXP_RTCTL_SECEE 0x01 /* System Error on Correctable Error */ |
| 418 | #define PCI_EXP_RTCTL_SENFEE 0x02 /* System Error on Non-Fatal Error */ | 480 | #define PCI_EXP_RTCTL_SENFEE 0x02 /* System Error on Non-Fatal Error */ |
diff --git a/include/linux/percpu_counter.h b/include/linux/percpu_counter.h index 9007ccdfc112..a7684a513994 100644 --- a/include/linux/percpu_counter.h +++ b/include/linux/percpu_counter.h | |||
| @@ -24,14 +24,18 @@ struct percpu_counter { | |||
| 24 | s32 *counters; | 24 | s32 *counters; |
| 25 | }; | 25 | }; |
| 26 | 26 | ||
| 27 | #if NR_CPUS >= 16 | 27 | extern int percpu_counter_batch; |
| 28 | #define FBC_BATCH (NR_CPUS*2) | 28 | |
| 29 | #else | 29 | int __percpu_counter_init(struct percpu_counter *fbc, s64 amount, |
| 30 | #define FBC_BATCH (NR_CPUS*4) | 30 | struct lock_class_key *key); |
| 31 | #endif | 31 | |
| 32 | #define percpu_counter_init(fbc, value) \ | ||
| 33 | ({ \ | ||
| 34 | static struct lock_class_key __key; \ | ||
| 35 | \ | ||
| 36 | __percpu_counter_init(fbc, value, &__key); \ | ||
| 37 | }) | ||
| 32 | 38 | ||
| 33 | int percpu_counter_init(struct percpu_counter *fbc, s64 amount); | ||
| 34 | int percpu_counter_init_irq(struct percpu_counter *fbc, s64 amount); | ||
| 35 | void percpu_counter_destroy(struct percpu_counter *fbc); | 39 | void percpu_counter_destroy(struct percpu_counter *fbc); |
| 36 | void percpu_counter_set(struct percpu_counter *fbc, s64 amount); | 40 | void percpu_counter_set(struct percpu_counter *fbc, s64 amount); |
| 37 | void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch); | 41 | void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch); |
| @@ -39,7 +43,7 @@ s64 __percpu_counter_sum(struct percpu_counter *fbc); | |||
| 39 | 43 | ||
| 40 | static inline void percpu_counter_add(struct percpu_counter *fbc, s64 amount) | 44 | static inline void percpu_counter_add(struct percpu_counter *fbc, s64 amount) |
| 41 | { | 45 | { |
| 42 | __percpu_counter_add(fbc, amount, FBC_BATCH); | 46 | __percpu_counter_add(fbc, amount, percpu_counter_batch); |
| 43 | } | 47 | } |
| 44 | 48 | ||
| 45 | static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc) | 49 | static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc) |
| @@ -85,8 +89,6 @@ static inline int percpu_counter_init(struct percpu_counter *fbc, s64 amount) | |||
| 85 | return 0; | 89 | return 0; |
| 86 | } | 90 | } |
| 87 | 91 | ||
| 88 | #define percpu_counter_init_irq percpu_counter_init | ||
| 89 | |||
| 90 | static inline void percpu_counter_destroy(struct percpu_counter *fbc) | 92 | static inline void percpu_counter_destroy(struct percpu_counter *fbc) |
| 91 | { | 93 | { |
| 92 | } | 94 | } |
diff --git a/include/linux/phantom.h b/include/linux/phantom.h index 02268c54c250..94dd6645c60a 100644 --- a/include/linux/phantom.h +++ b/include/linux/phantom.h | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | #ifndef __PHANTOM_H | 10 | #ifndef __PHANTOM_H |
| 11 | #define __PHANTOM_H | 11 | #define __PHANTOM_H |
| 12 | 12 | ||
| 13 | #include <asm/types.h> | 13 | #include <linux/types.h> |
| 14 | 14 | ||
| 15 | /* PHN_(G/S)ET_REG param */ | 15 | /* PHN_(G/S)ET_REG param */ |
| 16 | struct phm_reg { | 16 | struct phm_reg { |
diff --git a/include/linux/phonet.h b/include/linux/phonet.h index 4157faa857b6..ee5e3c9e2bca 100644 --- a/include/linux/phonet.h +++ b/include/linux/phonet.h | |||
| @@ -23,6 +23,8 @@ | |||
| 23 | #ifndef LINUX_PHONET_H | 23 | #ifndef LINUX_PHONET_H |
| 24 | #define LINUX_PHONET_H | 24 | #define LINUX_PHONET_H |
| 25 | 25 | ||
| 26 | #include <linux/types.h> | ||
| 27 | |||
| 26 | /* Automatic protocol selection */ | 28 | /* Automatic protocol selection */ |
| 27 | #define PN_PROTO_TRANSPORT 0 | 29 | #define PN_PROTO_TRANSPORT 0 |
| 28 | /* Phonet datagram socket */ | 30 | /* Phonet datagram socket */ |
diff --git a/include/linux/pid.h b/include/linux/pid.h index bb206c56d1f0..49f1c2f66e95 100644 --- a/include/linux/pid.h +++ b/include/linux/pid.h | |||
| @@ -123,6 +123,24 @@ extern struct pid *alloc_pid(struct pid_namespace *ns); | |||
| 123 | extern void free_pid(struct pid *pid); | 123 | extern void free_pid(struct pid *pid); |
| 124 | 124 | ||
| 125 | /* | 125 | /* |
| 126 | * ns_of_pid() returns the pid namespace in which the specified pid was | ||
| 127 | * allocated. | ||
| 128 | * | ||
| 129 | * NOTE: | ||
| 130 | * ns_of_pid() is expected to be called for a process (task) that has | ||
| 131 | * an attached 'struct pid' (see attach_pid(), detach_pid()) i.e @pid | ||
| 132 | * is expected to be non-NULL. If @pid is NULL, caller should handle | ||
| 133 | * the resulting NULL pid-ns. | ||
| 134 | */ | ||
| 135 | static inline struct pid_namespace *ns_of_pid(struct pid *pid) | ||
| 136 | { | ||
| 137 | struct pid_namespace *ns = NULL; | ||
| 138 | if (pid) | ||
| 139 | ns = pid->numbers[pid->level].ns; | ||
| 140 | return ns; | ||
| 141 | } | ||
| 142 | |||
| 143 | /* | ||
| 126 | * the helpers to get the pid's id seen from different namespaces | 144 | * the helpers to get the pid's id seen from different namespaces |
| 127 | * | 145 | * |
| 128 | * pid_nr() : global id, i.e. the id seen from the init namespace; | 146 | * pid_nr() : global id, i.e. the id seen from the init namespace; |
diff --git a/include/linux/pid_namespace.h b/include/linux/pid_namespace.h index d82fe825d62f..38d10326246a 100644 --- a/include/linux/pid_namespace.h +++ b/include/linux/pid_namespace.h | |||
| @@ -79,11 +79,7 @@ static inline void zap_pid_ns_processes(struct pid_namespace *ns) | |||
| 79 | } | 79 | } |
| 80 | #endif /* CONFIG_PID_NS */ | 80 | #endif /* CONFIG_PID_NS */ |
| 81 | 81 | ||
| 82 | static inline struct pid_namespace *task_active_pid_ns(struct task_struct *tsk) | 82 | extern struct pid_namespace *task_active_pid_ns(struct task_struct *tsk); |
| 83 | { | ||
| 84 | return tsk->nsproxy->pid_ns; | ||
| 85 | } | ||
| 86 | |||
| 87 | void pidhash_init(void); | 83 | void pidhash_init(void); |
| 88 | void pidmap_init(void); | 84 | void pidmap_init(void); |
| 89 | 85 | ||
diff --git a/include/linux/pkt_cls.h b/include/linux/pkt_cls.h index e6aa8482ad7a..3c842edff388 100644 --- a/include/linux/pkt_cls.h +++ b/include/linux/pkt_cls.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __LINUX_PKT_CLS_H | 1 | #ifndef __LINUX_PKT_CLS_H |
| 2 | #define __LINUX_PKT_CLS_H | 2 | #define __LINUX_PKT_CLS_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/pkt_sched.h> | 5 | #include <linux/pkt_sched.h> |
| 5 | 6 | ||
| 6 | /* I think i could have done better macros ; for now this is stolen from | 7 | /* I think i could have done better macros ; for now this is stolen from |
diff --git a/include/linux/pkt_sched.h b/include/linux/pkt_sched.h index e3f133adba78..b2648e8e4987 100644 --- a/include/linux/pkt_sched.h +++ b/include/linux/pkt_sched.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef __LINUX_PKT_SCHED_H | 1 | #ifndef __LINUX_PKT_SCHED_H |
| 2 | #define __LINUX_PKT_SCHED_H | 2 | #define __LINUX_PKT_SCHED_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 5 | |||
| 4 | /* Logical priority bands not depending on specific packet scheduler. | 6 | /* Logical priority bands not depending on specific packet scheduler. |
| 5 | Every scheduler will map them to real traffic classes, if it has | 7 | Every scheduler will map them to real traffic classes, if it has |
| 6 | no more precise mechanism to classify packets. | 8 | no more precise mechanism to classify packets. |
diff --git a/include/linux/platform_device.h b/include/linux/platform_device.h index 4b8cc6a32479..9a342699c607 100644 --- a/include/linux/platform_device.h +++ b/include/linux/platform_device.h | |||
| @@ -55,7 +55,6 @@ struct platform_driver { | |||
| 55 | int (*suspend_late)(struct platform_device *, pm_message_t state); | 55 | int (*suspend_late)(struct platform_device *, pm_message_t state); |
| 56 | int (*resume_early)(struct platform_device *); | 56 | int (*resume_early)(struct platform_device *); |
| 57 | int (*resume)(struct platform_device *); | 57 | int (*resume)(struct platform_device *); |
| 58 | struct pm_ext_ops *pm; | ||
| 59 | struct device_driver driver; | 58 | struct device_driver driver; |
| 60 | }; | 59 | }; |
| 61 | 60 | ||
diff --git a/include/linux/pm.h b/include/linux/pm.h index 42de4003c4ee..de2e0a8f6728 100644 --- a/include/linux/pm.h +++ b/include/linux/pm.h | |||
| @@ -41,7 +41,7 @@ typedef struct pm_message { | |||
| 41 | } pm_message_t; | 41 | } pm_message_t; |
| 42 | 42 | ||
| 43 | /** | 43 | /** |
| 44 | * struct pm_ops - device PM callbacks | 44 | * struct dev_pm_ops - device PM callbacks |
| 45 | * | 45 | * |
| 46 | * Several driver power state transitions are externally visible, affecting | 46 | * Several driver power state transitions are externally visible, affecting |
| 47 | * the state of pending I/O queues and (for drivers that touch hardware) | 47 | * the state of pending I/O queues and (for drivers that touch hardware) |
| @@ -126,46 +126,6 @@ typedef struct pm_message { | |||
| 126 | * On most platforms, there are no restrictions on availability of | 126 | * On most platforms, there are no restrictions on availability of |
| 127 | * resources like clocks during @restore(). | 127 | * resources like clocks during @restore(). |
| 128 | * | 128 | * |
| 129 | * All of the above callbacks, except for @complete(), return error codes. | ||
| 130 | * However, the error codes returned by the resume operations, @resume(), | ||
| 131 | * @thaw(), and @restore(), do not cause the PM core to abort the resume | ||
| 132 | * transition during which they are returned. The error codes returned in | ||
| 133 | * that cases are only printed by the PM core to the system logs for debugging | ||
| 134 | * purposes. Still, it is recommended that drivers only return error codes | ||
| 135 | * from their resume methods in case of an unrecoverable failure (i.e. when the | ||
| 136 | * device being handled refuses to resume and becomes unusable) to allow us to | ||
| 137 | * modify the PM core in the future, so that it can avoid attempting to handle | ||
| 138 | * devices that failed to resume and their children. | ||
| 139 | * | ||
| 140 | * It is allowed to unregister devices while the above callbacks are being | ||
| 141 | * executed. However, it is not allowed to unregister a device from within any | ||
| 142 | * of its own callbacks. | ||
| 143 | */ | ||
| 144 | |||
| 145 | struct pm_ops { | ||
| 146 | int (*prepare)(struct device *dev); | ||
| 147 | void (*complete)(struct device *dev); | ||
| 148 | int (*suspend)(struct device *dev); | ||
| 149 | int (*resume)(struct device *dev); | ||
| 150 | int (*freeze)(struct device *dev); | ||
| 151 | int (*thaw)(struct device *dev); | ||
| 152 | int (*poweroff)(struct device *dev); | ||
| 153 | int (*restore)(struct device *dev); | ||
| 154 | }; | ||
| 155 | |||
| 156 | /** | ||
| 157 | * struct pm_ext_ops - extended device PM callbacks | ||
| 158 | * | ||
| 159 | * Some devices require certain operations related to suspend and hibernation | ||
| 160 | * to be carried out with interrupts disabled. Thus, 'struct pm_ext_ops' below | ||
| 161 | * is defined, adding callbacks to be executed with interrupts disabled to | ||
| 162 | * 'struct pm_ops'. | ||
| 163 | * | ||
| 164 | * The following callbacks included in 'struct pm_ext_ops' are executed with | ||
| 165 | * the nonboot CPUs switched off and with interrupts disabled on the only | ||
| 166 | * functional CPU. They also are executed with the PM core list of devices | ||
| 167 | * locked, so they must NOT unregister any devices. | ||
| 168 | * | ||
| 169 | * @suspend_noirq: Complete the operations of ->suspend() by carrying out any | 129 | * @suspend_noirq: Complete the operations of ->suspend() by carrying out any |
| 170 | * actions required for suspending the device that need interrupts to be | 130 | * actions required for suspending the device that need interrupts to be |
| 171 | * disabled | 131 | * disabled |
| @@ -190,18 +150,32 @@ struct pm_ops { | |||
| 190 | * actions required for restoring the operations of the device that need | 150 | * actions required for restoring the operations of the device that need |
| 191 | * interrupts to be disabled | 151 | * interrupts to be disabled |
| 192 | * | 152 | * |
| 193 | * All of the above callbacks return error codes, but the error codes returned | 153 | * All of the above callbacks, except for @complete(), return error codes. |
| 194 | * by the resume operations, @resume_noirq(), @thaw_noirq(), and | 154 | * However, the error codes returned by the resume operations, @resume(), |
| 195 | * @restore_noirq(), do not cause the PM core to abort the resume transition | 155 | * @thaw(), @restore(), @resume_noirq(), @thaw_noirq(), and @restore_noirq() do |
| 196 | * during which they are returned. The error codes returned in that cases are | 156 | * not cause the PM core to abort the resume transition during which they are |
| 197 | * only printed by the PM core to the system logs for debugging purposes. | 157 | * returned. The error codes returned in that cases are only printed by the PM |
| 198 | * Still, as stated above, it is recommended that drivers only return error | 158 | * core to the system logs for debugging purposes. Still, it is recommended |
| 199 | * codes from their resume methods if the device being handled fails to resume | 159 | * that drivers only return error codes from their resume methods in case of an |
| 200 | * and is not usable any more. | 160 | * unrecoverable failure (i.e. when the device being handled refuses to resume |
| 161 | * and becomes unusable) to allow us to modify the PM core in the future, so | ||
| 162 | * that it can avoid attempting to handle devices that failed to resume and | ||
| 163 | * their children. | ||
| 164 | * | ||
| 165 | * It is allowed to unregister devices while the above callbacks are being | ||
| 166 | * executed. However, it is not allowed to unregister a device from within any | ||
| 167 | * of its own callbacks. | ||
| 201 | */ | 168 | */ |
| 202 | 169 | ||
| 203 | struct pm_ext_ops { | 170 | struct dev_pm_ops { |
| 204 | struct pm_ops base; | 171 | int (*prepare)(struct device *dev); |
| 172 | void (*complete)(struct device *dev); | ||
| 173 | int (*suspend)(struct device *dev); | ||
| 174 | int (*resume)(struct device *dev); | ||
| 175 | int (*freeze)(struct device *dev); | ||
| 176 | int (*thaw)(struct device *dev); | ||
| 177 | int (*poweroff)(struct device *dev); | ||
| 178 | int (*restore)(struct device *dev); | ||
| 205 | int (*suspend_noirq)(struct device *dev); | 179 | int (*suspend_noirq)(struct device *dev); |
| 206 | int (*resume_noirq)(struct device *dev); | 180 | int (*resume_noirq)(struct device *dev); |
| 207 | int (*freeze_noirq)(struct device *dev); | 181 | int (*freeze_noirq)(struct device *dev); |
| @@ -278,7 +252,7 @@ struct pm_ext_ops { | |||
| 278 | #define PM_EVENT_SLEEP (PM_EVENT_SUSPEND | PM_EVENT_HIBERNATE) | 252 | #define PM_EVENT_SLEEP (PM_EVENT_SUSPEND | PM_EVENT_HIBERNATE) |
| 279 | #define PM_EVENT_USER_SUSPEND (PM_EVENT_USER | PM_EVENT_SUSPEND) | 253 | #define PM_EVENT_USER_SUSPEND (PM_EVENT_USER | PM_EVENT_SUSPEND) |
| 280 | #define PM_EVENT_USER_RESUME (PM_EVENT_USER | PM_EVENT_RESUME) | 254 | #define PM_EVENT_USER_RESUME (PM_EVENT_USER | PM_EVENT_RESUME) |
| 281 | #define PM_EVENT_REMOTE_WAKEUP (PM_EVENT_REMOTE | PM_EVENT_RESUME) | 255 | #define PM_EVENT_REMOTE_RESUME (PM_EVENT_REMOTE | PM_EVENT_RESUME) |
| 282 | #define PM_EVENT_AUTO_SUSPEND (PM_EVENT_AUTO | PM_EVENT_SUSPEND) | 256 | #define PM_EVENT_AUTO_SUSPEND (PM_EVENT_AUTO | PM_EVENT_SUSPEND) |
| 283 | #define PM_EVENT_AUTO_RESUME (PM_EVENT_AUTO | PM_EVENT_RESUME) | 257 | #define PM_EVENT_AUTO_RESUME (PM_EVENT_AUTO | PM_EVENT_RESUME) |
| 284 | 258 | ||
| @@ -291,15 +265,15 @@ struct pm_ext_ops { | |||
| 291 | #define PMSG_THAW ((struct pm_message){ .event = PM_EVENT_THAW, }) | 265 | #define PMSG_THAW ((struct pm_message){ .event = PM_EVENT_THAW, }) |
| 292 | #define PMSG_RESTORE ((struct pm_message){ .event = PM_EVENT_RESTORE, }) | 266 | #define PMSG_RESTORE ((struct pm_message){ .event = PM_EVENT_RESTORE, }) |
| 293 | #define PMSG_RECOVER ((struct pm_message){ .event = PM_EVENT_RECOVER, }) | 267 | #define PMSG_RECOVER ((struct pm_message){ .event = PM_EVENT_RECOVER, }) |
| 294 | #define PMSG_USER_SUSPEND ((struct pm_messge) \ | 268 | #define PMSG_USER_SUSPEND ((struct pm_message) \ |
| 295 | { .event = PM_EVENT_USER_SUSPEND, }) | 269 | { .event = PM_EVENT_USER_SUSPEND, }) |
| 296 | #define PMSG_USER_RESUME ((struct pm_messge) \ | 270 | #define PMSG_USER_RESUME ((struct pm_message) \ |
| 297 | { .event = PM_EVENT_USER_RESUME, }) | 271 | { .event = PM_EVENT_USER_RESUME, }) |
| 298 | #define PMSG_REMOTE_RESUME ((struct pm_messge) \ | 272 | #define PMSG_REMOTE_RESUME ((struct pm_message) \ |
| 299 | { .event = PM_EVENT_REMOTE_RESUME, }) | 273 | { .event = PM_EVENT_REMOTE_RESUME, }) |
| 300 | #define PMSG_AUTO_SUSPEND ((struct pm_messge) \ | 274 | #define PMSG_AUTO_SUSPEND ((struct pm_message) \ |
| 301 | { .event = PM_EVENT_AUTO_SUSPEND, }) | 275 | { .event = PM_EVENT_AUTO_SUSPEND, }) |
| 302 | #define PMSG_AUTO_RESUME ((struct pm_messge) \ | 276 | #define PMSG_AUTO_RESUME ((struct pm_message) \ |
| 303 | { .event = PM_EVENT_AUTO_RESUME, }) | 277 | { .event = PM_EVENT_AUTO_RESUME, }) |
| 304 | 278 | ||
| 305 | /** | 279 | /** |
diff --git a/include/linux/poll.h b/include/linux/poll.h index badd98ab06f6..8c24ef8d9976 100644 --- a/include/linux/poll.h +++ b/include/linux/poll.h | |||
| @@ -46,9 +46,9 @@ static inline void init_poll_funcptr(poll_table *pt, poll_queue_proc qproc) | |||
| 46 | } | 46 | } |
| 47 | 47 | ||
| 48 | struct poll_table_entry { | 48 | struct poll_table_entry { |
| 49 | struct file * filp; | 49 | struct file *filp; |
| 50 | wait_queue_t wait; | 50 | wait_queue_t wait; |
| 51 | wait_queue_head_t * wait_address; | 51 | wait_queue_head_t *wait_address; |
| 52 | }; | 52 | }; |
| 53 | 53 | ||
| 54 | /* | 54 | /* |
| @@ -56,7 +56,9 @@ struct poll_table_entry { | |||
| 56 | */ | 56 | */ |
| 57 | struct poll_wqueues { | 57 | struct poll_wqueues { |
| 58 | poll_table pt; | 58 | poll_table pt; |
| 59 | struct poll_table_page * table; | 59 | struct poll_table_page *table; |
| 60 | struct task_struct *polling_task; | ||
| 61 | int triggered; | ||
| 60 | int error; | 62 | int error; |
| 61 | int inline_index; | 63 | int inline_index; |
| 62 | struct poll_table_entry inline_entries[N_INLINE_POLL_ENTRIES]; | 64 | struct poll_table_entry inline_entries[N_INLINE_POLL_ENTRIES]; |
| @@ -64,6 +66,13 @@ struct poll_wqueues { | |||
| 64 | 66 | ||
| 65 | extern void poll_initwait(struct poll_wqueues *pwq); | 67 | extern void poll_initwait(struct poll_wqueues *pwq); |
| 66 | extern void poll_freewait(struct poll_wqueues *pwq); | 68 | extern void poll_freewait(struct poll_wqueues *pwq); |
| 69 | extern int poll_schedule_timeout(struct poll_wqueues *pwq, int state, | ||
| 70 | ktime_t *expires, unsigned long slack); | ||
| 71 | |||
| 72 | static inline int poll_schedule(struct poll_wqueues *pwq, int state) | ||
| 73 | { | ||
| 74 | return poll_schedule_timeout(pwq, state, NULL, 0); | ||
| 75 | } | ||
| 67 | 76 | ||
| 68 | /* | 77 | /* |
| 69 | * Scaleable version of the fd_set. | 78 | * Scaleable version of the fd_set. |
diff --git a/include/linux/power_supply.h b/include/linux/power_supply.h index f9348cba6dc1..8ff25e0e7f7a 100644 --- a/include/linux/power_supply.h +++ b/include/linux/power_supply.h | |||
| @@ -45,6 +45,7 @@ enum { | |||
| 45 | POWER_SUPPLY_HEALTH_DEAD, | 45 | POWER_SUPPLY_HEALTH_DEAD, |
| 46 | POWER_SUPPLY_HEALTH_OVERVOLTAGE, | 46 | POWER_SUPPLY_HEALTH_OVERVOLTAGE, |
| 47 | POWER_SUPPLY_HEALTH_UNSPEC_FAILURE, | 47 | POWER_SUPPLY_HEALTH_UNSPEC_FAILURE, |
| 48 | POWER_SUPPLY_HEALTH_COLD, | ||
| 48 | }; | 49 | }; |
| 49 | 50 | ||
| 50 | enum { | 51 | enum { |
diff --git a/include/linux/ppp_defs.h b/include/linux/ppp_defs.h index 6e8adc77522c..1c866bda2018 100644 --- a/include/linux/ppp_defs.h +++ b/include/linux/ppp_defs.h | |||
| @@ -25,6 +25,8 @@ | |||
| 25 | * OR MODIFICATIONS. | 25 | * OR MODIFICATIONS. |
| 26 | */ | 26 | */ |
| 27 | 27 | ||
| 28 | #include <linux/types.h> | ||
| 29 | |||
| 28 | /* | 30 | /* |
| 29 | * ==FILEVERSION 20000114== | 31 | * ==FILEVERSION 20000114== |
| 30 | * | 32 | * |
diff --git a/include/linux/qnx4_fs.h b/include/linux/qnx4_fs.h index 34a196ee7941..787d19ea9f46 100644 --- a/include/linux/qnx4_fs.h +++ b/include/linux/qnx4_fs.h | |||
| @@ -2,14 +2,12 @@ | |||
| 2 | * Name : qnx4_fs.h | 2 | * Name : qnx4_fs.h |
| 3 | * Author : Richard Frowijn | 3 | * Author : Richard Frowijn |
| 4 | * Function : qnx4 global filesystem definitions | 4 | * Function : qnx4 global filesystem definitions |
| 5 | * Version : 1.0.2 | ||
| 6 | * Last modified : 2000-01-31 | ||
| 7 | * | ||
| 8 | * History : 23-03-1998 created | 5 | * History : 23-03-1998 created |
| 9 | */ | 6 | */ |
| 10 | #ifndef _LINUX_QNX4_FS_H | 7 | #ifndef _LINUX_QNX4_FS_H |
| 11 | #define _LINUX_QNX4_FS_H | 8 | #define _LINUX_QNX4_FS_H |
| 12 | 9 | ||
| 10 | #include <linux/types.h> | ||
| 13 | #include <linux/qnxtypes.h> | 11 | #include <linux/qnxtypes.h> |
| 14 | #include <linux/magic.h> | 12 | #include <linux/magic.h> |
| 15 | 13 | ||
diff --git a/include/linux/qnxtypes.h b/include/linux/qnxtypes.h index a3eb1137857b..bebbe5cc4fb8 100644 --- a/include/linux/qnxtypes.h +++ b/include/linux/qnxtypes.h | |||
| @@ -2,9 +2,6 @@ | |||
| 2 | * Name : qnxtypes.h | 2 | * Name : qnxtypes.h |
| 3 | * Author : Richard Frowijn | 3 | * Author : Richard Frowijn |
| 4 | * Function : standard qnx types | 4 | * Function : standard qnx types |
| 5 | * Version : 1.0.2 | ||
| 6 | * Last modified : 2000-01-06 | ||
| 7 | * | ||
| 8 | * History : 22-03-1998 created | 5 | * History : 22-03-1998 created |
| 9 | * | 6 | * |
| 10 | */ | 7 | */ |
| @@ -12,6 +9,8 @@ | |||
| 12 | #ifndef _QNX4TYPES_H | 9 | #ifndef _QNX4TYPES_H |
| 13 | #define _QNX4TYPES_H | 10 | #define _QNX4TYPES_H |
| 14 | 11 | ||
| 12 | #include <linux/types.h> | ||
| 13 | |||
| 15 | typedef __le16 qnx4_nxtnt_t; | 14 | typedef __le16 qnx4_nxtnt_t; |
| 16 | typedef __u8 qnx4_ftype_t; | 15 | typedef __u8 qnx4_ftype_t; |
| 17 | 16 | ||
diff --git a/include/linux/quota.h b/include/linux/quota.h index 40401b554484..d72d5d84fde5 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h | |||
| @@ -36,17 +36,7 @@ | |||
| 36 | #include <linux/errno.h> | 36 | #include <linux/errno.h> |
| 37 | #include <linux/types.h> | 37 | #include <linux/types.h> |
| 38 | 38 | ||
| 39 | #define __DQUOT_VERSION__ "dquot_6.5.1" | 39 | #define __DQUOT_VERSION__ "dquot_6.5.2" |
| 40 | #define __DQUOT_NUM_VERSION__ 6*10000+5*100+1 | ||
| 41 | |||
| 42 | /* Size of blocks in which are counted size limits */ | ||
| 43 | #define QUOTABLOCK_BITS 10 | ||
| 44 | #define QUOTABLOCK_SIZE (1 << QUOTABLOCK_BITS) | ||
| 45 | |||
| 46 | /* Conversion routines from and to quota blocks */ | ||
| 47 | #define qb2kb(x) ((x) << (QUOTABLOCK_BITS-10)) | ||
| 48 | #define kb2qb(x) ((x) >> (QUOTABLOCK_BITS-10)) | ||
| 49 | #define toqb(x) (((x) + QUOTABLOCK_SIZE - 1) >> QUOTABLOCK_BITS) | ||
| 50 | 40 | ||
| 51 | #define MAXQUOTAS 2 | 41 | #define MAXQUOTAS 2 |
| 52 | #define USRQUOTA 0 /* element used for user quotas */ | 42 | #define USRQUOTA 0 /* element used for user quotas */ |
| @@ -80,16 +70,34 @@ | |||
| 80 | #define Q_GETQUOTA 0x800007 /* get user quota structure */ | 70 | #define Q_GETQUOTA 0x800007 /* get user quota structure */ |
| 81 | #define Q_SETQUOTA 0x800008 /* set user quota structure */ | 71 | #define Q_SETQUOTA 0x800008 /* set user quota structure */ |
| 82 | 72 | ||
| 73 | /* Quota format type IDs */ | ||
| 74 | #define QFMT_VFS_OLD 1 | ||
| 75 | #define QFMT_VFS_V0 2 | ||
| 76 | |||
| 77 | /* Size of block in which space limits are passed through the quota | ||
| 78 | * interface */ | ||
| 79 | #define QIF_DQBLKSIZE_BITS 10 | ||
| 80 | #define QIF_DQBLKSIZE (1 << QIF_DQBLKSIZE_BITS) | ||
| 81 | |||
| 83 | /* | 82 | /* |
| 84 | * Quota structure used for communication with userspace via quotactl | 83 | * Quota structure used for communication with userspace via quotactl |
| 85 | * Following flags are used to specify which fields are valid | 84 | * Following flags are used to specify which fields are valid |
| 86 | */ | 85 | */ |
| 87 | #define QIF_BLIMITS 1 | 86 | enum { |
| 88 | #define QIF_SPACE 2 | 87 | QIF_BLIMITS_B = 0, |
| 89 | #define QIF_ILIMITS 4 | 88 | QIF_SPACE_B, |
| 90 | #define QIF_INODES 8 | 89 | QIF_ILIMITS_B, |
| 91 | #define QIF_BTIME 16 | 90 | QIF_INODES_B, |
| 92 | #define QIF_ITIME 32 | 91 | QIF_BTIME_B, |
| 92 | QIF_ITIME_B, | ||
| 93 | }; | ||
| 94 | |||
| 95 | #define QIF_BLIMITS (1 << QIF_BLIMITS_B) | ||
| 96 | #define QIF_SPACE (1 << QIF_SPACE_B) | ||
| 97 | #define QIF_ILIMITS (1 << QIF_ILIMITS_B) | ||
| 98 | #define QIF_INODES (1 << QIF_INODES_B) | ||
| 99 | #define QIF_BTIME (1 << QIF_BTIME_B) | ||
| 100 | #define QIF_ITIME (1 << QIF_ITIME_B) | ||
| 93 | #define QIF_LIMITS (QIF_BLIMITS | QIF_ILIMITS) | 101 | #define QIF_LIMITS (QIF_BLIMITS | QIF_ILIMITS) |
| 94 | #define QIF_USAGE (QIF_SPACE | QIF_INODES) | 102 | #define QIF_USAGE (QIF_SPACE | QIF_INODES) |
| 95 | #define QIF_TIMES (QIF_BTIME | QIF_ITIME) | 103 | #define QIF_TIMES (QIF_BTIME | QIF_ITIME) |
| @@ -172,7 +180,7 @@ enum { | |||
| 172 | #include <asm/atomic.h> | 180 | #include <asm/atomic.h> |
| 173 | 181 | ||
| 174 | typedef __kernel_uid32_t qid_t; /* Type in which we store ids in memory */ | 182 | typedef __kernel_uid32_t qid_t; /* Type in which we store ids in memory */ |
| 175 | typedef __u64 qsize_t; /* Type in which we store sizes */ | 183 | typedef long long qsize_t; /* Type in which we store sizes */ |
| 176 | 184 | ||
| 177 | extern spinlock_t dq_data_lock; | 185 | extern spinlock_t dq_data_lock; |
| 178 | 186 | ||
| @@ -187,12 +195,12 @@ extern spinlock_t dq_data_lock; | |||
| 187 | * Data for one user/group kept in memory | 195 | * Data for one user/group kept in memory |
| 188 | */ | 196 | */ |
| 189 | struct mem_dqblk { | 197 | struct mem_dqblk { |
| 190 | __u32 dqb_bhardlimit; /* absolute limit on disk blks alloc */ | 198 | qsize_t dqb_bhardlimit; /* absolute limit on disk blks alloc */ |
| 191 | __u32 dqb_bsoftlimit; /* preferred limit on disk blks */ | 199 | qsize_t dqb_bsoftlimit; /* preferred limit on disk blks */ |
| 192 | qsize_t dqb_curspace; /* current used space */ | 200 | qsize_t dqb_curspace; /* current used space */ |
| 193 | __u32 dqb_ihardlimit; /* absolute limit on allocated inodes */ | 201 | qsize_t dqb_ihardlimit; /* absolute limit on allocated inodes */ |
| 194 | __u32 dqb_isoftlimit; /* preferred inode limit */ | 202 | qsize_t dqb_isoftlimit; /* preferred inode limit */ |
| 195 | __u32 dqb_curinodes; /* current # allocated inodes */ | 203 | qsize_t dqb_curinodes; /* current # allocated inodes */ |
| 196 | time_t dqb_btime; /* time limit for excessive disk use */ | 204 | time_t dqb_btime; /* time limit for excessive disk use */ |
| 197 | time_t dqb_itime; /* time limit for excessive inode use */ | 205 | time_t dqb_itime; /* time limit for excessive inode use */ |
| 198 | }; | 206 | }; |
| @@ -212,10 +220,7 @@ struct mem_dqinfo { | |||
| 212 | unsigned int dqi_igrace; | 220 | unsigned int dqi_igrace; |
| 213 | qsize_t dqi_maxblimit; | 221 | qsize_t dqi_maxblimit; |
| 214 | qsize_t dqi_maxilimit; | 222 | qsize_t dqi_maxilimit; |
| 215 | union { | 223 | void *dqi_priv; |
| 216 | struct v1_mem_dqinfo v1_i; | ||
| 217 | struct v2_mem_dqinfo v2_i; | ||
| 218 | } u; | ||
| 219 | }; | 224 | }; |
| 220 | 225 | ||
| 221 | struct super_block; | 226 | struct super_block; |
| @@ -249,6 +254,11 @@ extern struct dqstats dqstats; | |||
| 249 | #define DQ_FAKE_B 3 /* no limits only usage */ | 254 | #define DQ_FAKE_B 3 /* no limits only usage */ |
| 250 | #define DQ_READ_B 4 /* dquot was read into memory */ | 255 | #define DQ_READ_B 4 /* dquot was read into memory */ |
| 251 | #define DQ_ACTIVE_B 5 /* dquot is active (dquot_release not called) */ | 256 | #define DQ_ACTIVE_B 5 /* dquot is active (dquot_release not called) */ |
| 257 | #define DQ_LASTSET_B 6 /* Following 6 bits (see QIF_) are reserved\ | ||
| 258 | * for the mask of entries set via SETQUOTA\ | ||
| 259 | * quotactl. They are set under dq_data_lock\ | ||
| 260 | * and the quota format handling dquot can\ | ||
| 261 | * clear them when it sees fit. */ | ||
| 252 | 262 | ||
| 253 | struct dquot { | 263 | struct dquot { |
| 254 | struct hlist_node dq_hash; /* Hash list in memory */ | 264 | struct hlist_node dq_hash; /* Hash list in memory */ |
| @@ -287,11 +297,13 @@ struct dquot_operations { | |||
| 287 | int (*initialize) (struct inode *, int); | 297 | int (*initialize) (struct inode *, int); |
| 288 | int (*drop) (struct inode *); | 298 | int (*drop) (struct inode *); |
| 289 | int (*alloc_space) (struct inode *, qsize_t, int); | 299 | int (*alloc_space) (struct inode *, qsize_t, int); |
| 290 | int (*alloc_inode) (const struct inode *, unsigned long); | 300 | int (*alloc_inode) (const struct inode *, qsize_t); |
| 291 | int (*free_space) (struct inode *, qsize_t); | 301 | int (*free_space) (struct inode *, qsize_t); |
| 292 | int (*free_inode) (const struct inode *, unsigned long); | 302 | int (*free_inode) (const struct inode *, qsize_t); |
| 293 | int (*transfer) (struct inode *, struct iattr *); | 303 | int (*transfer) (struct inode *, struct iattr *); |
| 294 | int (*write_dquot) (struct dquot *); /* Ordinary dquot write */ | 304 | int (*write_dquot) (struct dquot *); /* Ordinary dquot write */ |
| 305 | struct dquot *(*alloc_dquot)(struct super_block *, int); /* Allocate memory for new dquot */ | ||
| 306 | void (*destroy_dquot)(struct dquot *); /* Free memory for dquot */ | ||
| 295 | int (*acquire_dquot) (struct dquot *); /* Quota is going to be created on disk */ | 307 | int (*acquire_dquot) (struct dquot *); /* Quota is going to be created on disk */ |
| 296 | int (*release_dquot) (struct dquot *); /* Quota is going to be deleted from disk */ | 308 | int (*release_dquot) (struct dquot *); /* Quota is going to be deleted from disk */ |
| 297 | int (*mark_dirty) (struct dquot *); /* Dquot is marked dirty */ | 309 | int (*mark_dirty) (struct dquot *); /* Dquot is marked dirty */ |
| @@ -320,12 +332,42 @@ struct quota_format_type { | |||
| 320 | struct quota_format_type *qf_next; | 332 | struct quota_format_type *qf_next; |
| 321 | }; | 333 | }; |
| 322 | 334 | ||
| 323 | #define DQUOT_USR_ENABLED 0x01 /* User diskquotas enabled */ | 335 | /* Quota state flags - they actually come in two flavors - for users and groups */ |
| 324 | #define DQUOT_GRP_ENABLED 0x02 /* Group diskquotas enabled */ | 336 | enum { |
| 325 | #define DQUOT_USR_SUSPENDED 0x04 /* User diskquotas are off, but | 337 | _DQUOT_USAGE_ENABLED = 0, /* Track disk usage for users */ |
| 338 | _DQUOT_LIMITS_ENABLED, /* Enforce quota limits for users */ | ||
| 339 | _DQUOT_SUSPENDED, /* User diskquotas are off, but | ||
| 326 | * we have necessary info in | 340 | * we have necessary info in |
| 327 | * memory to turn them on */ | 341 | * memory to turn them on */ |
| 328 | #define DQUOT_GRP_SUSPENDED 0x08 /* The same for group quotas */ | 342 | _DQUOT_STATE_FLAGS |
| 343 | }; | ||
| 344 | #define DQUOT_USAGE_ENABLED (1 << _DQUOT_USAGE_ENABLED) | ||
| 345 | #define DQUOT_LIMITS_ENABLED (1 << _DQUOT_LIMITS_ENABLED) | ||
| 346 | #define DQUOT_SUSPENDED (1 << _DQUOT_SUSPENDED) | ||
| 347 | #define DQUOT_STATE_FLAGS (DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED | \ | ||
| 348 | DQUOT_SUSPENDED) | ||
| 349 | /* Other quota flags */ | ||
| 350 | #define DQUOT_QUOTA_SYS_FILE (1 << 6) /* Quota file is a special | ||
| 351 | * system file and user cannot | ||
| 352 | * touch it. Filesystem is | ||
| 353 | * responsible for setting | ||
| 354 | * S_NOQUOTA, S_NOATIME flags | ||
| 355 | */ | ||
| 356 | #define DQUOT_NEGATIVE_USAGE (1 << 7) /* Allow negative quota usage */ | ||
| 357 | |||
| 358 | static inline unsigned int dquot_state_flag(unsigned int flags, int type) | ||
| 359 | { | ||
| 360 | if (type == USRQUOTA) | ||
| 361 | return flags; | ||
| 362 | return flags << _DQUOT_STATE_FLAGS; | ||
| 363 | } | ||
| 364 | |||
| 365 | static inline unsigned int dquot_generic_flag(unsigned int flags, int type) | ||
| 366 | { | ||
| 367 | if (type == USRQUOTA) | ||
| 368 | return flags; | ||
| 369 | return flags >> _DQUOT_STATE_FLAGS; | ||
| 370 | } | ||
| 329 | 371 | ||
| 330 | struct quota_info { | 372 | struct quota_info { |
| 331 | unsigned int flags; /* Flags for diskquotas on this device */ | 373 | unsigned int flags; /* Flags for diskquotas on this device */ |
diff --git a/include/linux/quotaio_v1.h b/include/linux/quotaio_v1.h deleted file mode 100644 index 746654b5de70..000000000000 --- a/include/linux/quotaio_v1.h +++ /dev/null | |||
| @@ -1,33 +0,0 @@ | |||
| 1 | #ifndef _LINUX_QUOTAIO_V1_H | ||
| 2 | #define _LINUX_QUOTAIO_V1_H | ||
| 3 | |||
| 4 | #include <linux/types.h> | ||
| 5 | |||
| 6 | /* | ||
| 7 | * The following constants define the amount of time given a user | ||
| 8 | * before the soft limits are treated as hard limits (usually resulting | ||
| 9 | * in an allocation failure). The timer is started when the user crosses | ||
| 10 | * their soft limit, it is reset when they go below their soft limit. | ||
| 11 | */ | ||
| 12 | #define MAX_IQ_TIME 604800 /* (7*24*60*60) 1 week */ | ||
| 13 | #define MAX_DQ_TIME 604800 /* (7*24*60*60) 1 week */ | ||
| 14 | |||
| 15 | /* | ||
| 16 | * The following structure defines the format of the disk quota file | ||
| 17 | * (as it appears on disk) - the file is an array of these structures | ||
| 18 | * indexed by user or group number. | ||
| 19 | */ | ||
| 20 | struct v1_disk_dqblk { | ||
| 21 | __u32 dqb_bhardlimit; /* absolute limit on disk blks alloc */ | ||
| 22 | __u32 dqb_bsoftlimit; /* preferred limit on disk blks */ | ||
| 23 | __u32 dqb_curblocks; /* current block count */ | ||
| 24 | __u32 dqb_ihardlimit; /* absolute limit on allocated inodes */ | ||
| 25 | __u32 dqb_isoftlimit; /* preferred inode limit */ | ||
| 26 | __u32 dqb_curinodes; /* current # allocated inodes */ | ||
| 27 | time_t dqb_btime; /* time limit for excessive disk use */ | ||
| 28 | time_t dqb_itime; /* time limit for excessive inode use */ | ||
| 29 | }; | ||
| 30 | |||
| 31 | #define v1_dqoff(UID) ((loff_t)((UID) * sizeof (struct v1_disk_dqblk))) | ||
| 32 | |||
| 33 | #endif /* _LINUX_QUOTAIO_V1_H */ | ||
diff --git a/include/linux/quotaio_v2.h b/include/linux/quotaio_v2.h deleted file mode 100644 index 303d7cbe30d4..000000000000 --- a/include/linux/quotaio_v2.h +++ /dev/null | |||
| @@ -1,79 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Definitions of structures for vfsv0 quota format | ||
| 3 | */ | ||
| 4 | |||
| 5 | #ifndef _LINUX_QUOTAIO_V2_H | ||
| 6 | #define _LINUX_QUOTAIO_V2_H | ||
| 7 | |||
| 8 | #include <linux/types.h> | ||
| 9 | #include <linux/quota.h> | ||
| 10 | |||
| 11 | /* | ||
| 12 | * Definitions of magics and versions of current quota files | ||
| 13 | */ | ||
| 14 | #define V2_INITQMAGICS {\ | ||
| 15 | 0xd9c01f11, /* USRQUOTA */\ | ||
| 16 | 0xd9c01927 /* GRPQUOTA */\ | ||
| 17 | } | ||
| 18 | |||
| 19 | #define V2_INITQVERSIONS {\ | ||
| 20 | 0, /* USRQUOTA */\ | ||
| 21 | 0 /* GRPQUOTA */\ | ||
| 22 | } | ||
| 23 | |||
| 24 | /* | ||
| 25 | * The following structure defines the format of the disk quota file | ||
| 26 | * (as it appears on disk) - the file is a radix tree whose leaves point | ||
| 27 | * to blocks of these structures. | ||
| 28 | */ | ||
| 29 | struct v2_disk_dqblk { | ||
| 30 | __le32 dqb_id; /* id this quota applies to */ | ||
| 31 | __le32 dqb_ihardlimit; /* absolute limit on allocated inodes */ | ||
| 32 | __le32 dqb_isoftlimit; /* preferred inode limit */ | ||
| 33 | __le32 dqb_curinodes; /* current # allocated inodes */ | ||
| 34 | __le32 dqb_bhardlimit; /* absolute limit on disk space (in QUOTABLOCK_SIZE) */ | ||
| 35 | __le32 dqb_bsoftlimit; /* preferred limit on disk space (in QUOTABLOCK_SIZE) */ | ||
| 36 | __le64 dqb_curspace; /* current space occupied (in bytes) */ | ||
| 37 | __le64 dqb_btime; /* time limit for excessive disk use */ | ||
| 38 | __le64 dqb_itime; /* time limit for excessive inode use */ | ||
| 39 | }; | ||
| 40 | |||
| 41 | /* | ||
| 42 | * Here are header structures as written on disk and their in-memory copies | ||
| 43 | */ | ||
| 44 | /* First generic header */ | ||
| 45 | struct v2_disk_dqheader { | ||
| 46 | __le32 dqh_magic; /* Magic number identifying file */ | ||
| 47 | __le32 dqh_version; /* File version */ | ||
| 48 | }; | ||
| 49 | |||
| 50 | /* Header with type and version specific information */ | ||
| 51 | struct v2_disk_dqinfo { | ||
| 52 | __le32 dqi_bgrace; /* Time before block soft limit becomes hard limit */ | ||
| 53 | __le32 dqi_igrace; /* Time before inode soft limit becomes hard limit */ | ||
| 54 | __le32 dqi_flags; /* Flags for quotafile (DQF_*) */ | ||
| 55 | __le32 dqi_blocks; /* Number of blocks in file */ | ||
| 56 | __le32 dqi_free_blk; /* Number of first free block in the list */ | ||
| 57 | __le32 dqi_free_entry; /* Number of block with at least one free entry */ | ||
| 58 | }; | ||
| 59 | |||
| 60 | /* | ||
| 61 | * Structure of header of block with quota structures. It is padded to 16 bytes so | ||
| 62 | * there will be space for exactly 21 quota-entries in a block | ||
| 63 | */ | ||
| 64 | struct v2_disk_dqdbheader { | ||
| 65 | __le32 dqdh_next_free; /* Number of next block with free entry */ | ||
| 66 | __le32 dqdh_prev_free; /* Number of previous block with free entry */ | ||
| 67 | __le16 dqdh_entries; /* Number of valid entries in block */ | ||
| 68 | __le16 dqdh_pad1; | ||
| 69 | __le32 dqdh_pad2; | ||
| 70 | }; | ||
| 71 | |||
| 72 | #define V2_DQINFOOFF sizeof(struct v2_disk_dqheader) /* Offset of info header in file */ | ||
| 73 | #define V2_DQBLKSIZE_BITS 10 | ||
| 74 | #define V2_DQBLKSIZE (1 << V2_DQBLKSIZE_BITS) /* Size of block with quota structures */ | ||
| 75 | #define V2_DQTREEOFF 1 /* Offset of tree in file in blocks */ | ||
| 76 | #define V2_DQTREEDEPTH 4 /* Depth of quota tree */ | ||
| 77 | #define V2_DQSTRINBLK ((V2_DQBLKSIZE - sizeof(struct v2_disk_dqdbheader)) / sizeof(struct v2_disk_dqblk)) /* Number of entries in one blocks */ | ||
| 78 | |||
| 79 | #endif /* _LINUX_QUOTAIO_V2_H */ | ||
diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index a558a4c1d35a..0b35b3a1be05 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h | |||
| @@ -24,12 +24,19 @@ void sync_dquots(struct super_block *sb, int type); | |||
| 24 | 24 | ||
| 25 | int dquot_initialize(struct inode *inode, int type); | 25 | int dquot_initialize(struct inode *inode, int type); |
| 26 | int dquot_drop(struct inode *inode); | 26 | int dquot_drop(struct inode *inode); |
| 27 | struct dquot *dqget(struct super_block *sb, unsigned int id, int type); | ||
| 28 | void dqput(struct dquot *dquot); | ||
| 29 | int dquot_scan_active(struct super_block *sb, | ||
| 30 | int (*fn)(struct dquot *dquot, unsigned long priv), | ||
| 31 | unsigned long priv); | ||
| 32 | struct dquot *dquot_alloc(struct super_block *sb, int type); | ||
| 33 | void dquot_destroy(struct dquot *dquot); | ||
| 27 | 34 | ||
| 28 | int dquot_alloc_space(struct inode *inode, qsize_t number, int prealloc); | 35 | int dquot_alloc_space(struct inode *inode, qsize_t number, int prealloc); |
| 29 | int dquot_alloc_inode(const struct inode *inode, unsigned long number); | 36 | int dquot_alloc_inode(const struct inode *inode, qsize_t number); |
| 30 | 37 | ||
| 31 | int dquot_free_space(struct inode *inode, qsize_t number); | 38 | int dquot_free_space(struct inode *inode, qsize_t number); |
| 32 | int dquot_free_inode(const struct inode *inode, unsigned long number); | 39 | int dquot_free_inode(const struct inode *inode, qsize_t number); |
| 33 | 40 | ||
| 34 | int dquot_transfer(struct inode *inode, struct iattr *iattr); | 41 | int dquot_transfer(struct inode *inode, struct iattr *iattr); |
| 35 | int dquot_commit(struct dquot *dquot); | 42 | int dquot_commit(struct dquot *dquot); |
| @@ -40,11 +47,14 @@ int dquot_mark_dquot_dirty(struct dquot *dquot); | |||
| 40 | 47 | ||
| 41 | int vfs_quota_on(struct super_block *sb, int type, int format_id, | 48 | int vfs_quota_on(struct super_block *sb, int type, int format_id, |
| 42 | char *path, int remount); | 49 | char *path, int remount); |
| 50 | int vfs_quota_enable(struct inode *inode, int type, int format_id, | ||
| 51 | unsigned int flags); | ||
| 43 | int vfs_quota_on_path(struct super_block *sb, int type, int format_id, | 52 | int vfs_quota_on_path(struct super_block *sb, int type, int format_id, |
| 44 | struct path *path); | 53 | struct path *path); |
| 45 | int vfs_quota_on_mount(struct super_block *sb, char *qf_name, | 54 | int vfs_quota_on_mount(struct super_block *sb, char *qf_name, |
| 46 | int format_id, int type); | 55 | int format_id, int type); |
| 47 | int vfs_quota_off(struct super_block *sb, int type, int remount); | 56 | int vfs_quota_off(struct super_block *sb, int type, int remount); |
| 57 | int vfs_quota_disable(struct super_block *sb, int type, unsigned int flags); | ||
| 48 | int vfs_quota_sync(struct super_block *sb, int type); | 58 | int vfs_quota_sync(struct super_block *sb, int type); |
| 49 | int vfs_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); | 59 | int vfs_get_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); |
| 50 | int vfs_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); | 60 | int vfs_set_dqinfo(struct super_block *sb, int type, struct if_dqinfo *ii); |
| @@ -64,24 +74,22 @@ static inline struct mem_dqinfo *sb_dqinfo(struct super_block *sb, int type) | |||
| 64 | * Functions for checking status of quota | 74 | * Functions for checking status of quota |
| 65 | */ | 75 | */ |
| 66 | 76 | ||
| 67 | static inline int sb_has_quota_enabled(struct super_block *sb, int type) | 77 | static inline int sb_has_quota_usage_enabled(struct super_block *sb, int type) |
| 68 | { | 78 | { |
| 69 | if (type == USRQUOTA) | 79 | return sb_dqopt(sb)->flags & |
| 70 | return sb_dqopt(sb)->flags & DQUOT_USR_ENABLED; | 80 | dquot_state_flag(DQUOT_USAGE_ENABLED, type); |
| 71 | return sb_dqopt(sb)->flags & DQUOT_GRP_ENABLED; | ||
| 72 | } | 81 | } |
| 73 | 82 | ||
| 74 | static inline int sb_any_quota_enabled(struct super_block *sb) | 83 | static inline int sb_has_quota_limits_enabled(struct super_block *sb, int type) |
| 75 | { | 84 | { |
| 76 | return sb_has_quota_enabled(sb, USRQUOTA) || | 85 | return sb_dqopt(sb)->flags & |
| 77 | sb_has_quota_enabled(sb, GRPQUOTA); | 86 | dquot_state_flag(DQUOT_LIMITS_ENABLED, type); |
| 78 | } | 87 | } |
| 79 | 88 | ||
| 80 | static inline int sb_has_quota_suspended(struct super_block *sb, int type) | 89 | static inline int sb_has_quota_suspended(struct super_block *sb, int type) |
| 81 | { | 90 | { |
| 82 | if (type == USRQUOTA) | 91 | return sb_dqopt(sb)->flags & |
| 83 | return sb_dqopt(sb)->flags & DQUOT_USR_SUSPENDED; | 92 | dquot_state_flag(DQUOT_SUSPENDED, type); |
| 84 | return sb_dqopt(sb)->flags & DQUOT_GRP_SUSPENDED; | ||
| 85 | } | 93 | } |
| 86 | 94 | ||
| 87 | static inline int sb_any_quota_suspended(struct super_block *sb) | 95 | static inline int sb_any_quota_suspended(struct super_block *sb) |
| @@ -90,6 +98,31 @@ static inline int sb_any_quota_suspended(struct super_block *sb) | |||
| 90 | sb_has_quota_suspended(sb, GRPQUOTA); | 98 | sb_has_quota_suspended(sb, GRPQUOTA); |
| 91 | } | 99 | } |
| 92 | 100 | ||
| 101 | /* Does kernel know about any quota information for given sb + type? */ | ||
| 102 | static inline int sb_has_quota_loaded(struct super_block *sb, int type) | ||
| 103 | { | ||
| 104 | /* Currently if anything is on, then quota usage is on as well */ | ||
| 105 | return sb_has_quota_usage_enabled(sb, type); | ||
| 106 | } | ||
| 107 | |||
| 108 | static inline int sb_any_quota_loaded(struct super_block *sb) | ||
| 109 | { | ||
| 110 | return sb_has_quota_loaded(sb, USRQUOTA) || | ||
| 111 | sb_has_quota_loaded(sb, GRPQUOTA); | ||
| 112 | } | ||
| 113 | |||
| 114 | static inline int sb_has_quota_active(struct super_block *sb, int type) | ||
| 115 | { | ||
| 116 | return sb_has_quota_loaded(sb, type) && | ||
| 117 | !sb_has_quota_suspended(sb, type); | ||
| 118 | } | ||
| 119 | |||
| 120 | static inline int sb_any_quota_active(struct super_block *sb) | ||
| 121 | { | ||
| 122 | return sb_has_quota_active(sb, USRQUOTA) || | ||
| 123 | sb_has_quota_active(sb, GRPQUOTA); | ||
| 124 | } | ||
| 125 | |||
| 93 | /* | 126 | /* |
| 94 | * Operations supported for diskquotas. | 127 | * Operations supported for diskquotas. |
| 95 | */ | 128 | */ |
| @@ -104,7 +137,7 @@ extern struct quotactl_ops vfs_quotactl_ops; | |||
| 104 | static inline void vfs_dq_init(struct inode *inode) | 137 | static inline void vfs_dq_init(struct inode *inode) |
| 105 | { | 138 | { |
| 106 | BUG_ON(!inode->i_sb); | 139 | BUG_ON(!inode->i_sb); |
| 107 | if (sb_any_quota_enabled(inode->i_sb) && !IS_NOQUOTA(inode)) | 140 | if (sb_any_quota_active(inode->i_sb) && !IS_NOQUOTA(inode)) |
| 108 | inode->i_sb->dq_op->initialize(inode, -1); | 141 | inode->i_sb->dq_op->initialize(inode, -1); |
| 109 | } | 142 | } |
| 110 | 143 | ||
| @@ -112,7 +145,7 @@ static inline void vfs_dq_init(struct inode *inode) | |||
| 112 | * a transaction (deadlocks possible otherwise) */ | 145 | * a transaction (deadlocks possible otherwise) */ |
| 113 | static inline int vfs_dq_prealloc_space_nodirty(struct inode *inode, qsize_t nr) | 146 | static inline int vfs_dq_prealloc_space_nodirty(struct inode *inode, qsize_t nr) |
| 114 | { | 147 | { |
| 115 | if (sb_any_quota_enabled(inode->i_sb)) { | 148 | if (sb_any_quota_active(inode->i_sb)) { |
| 116 | /* Used space is updated in alloc_space() */ | 149 | /* Used space is updated in alloc_space() */ |
| 117 | if (inode->i_sb->dq_op->alloc_space(inode, nr, 1) == NO_QUOTA) | 150 | if (inode->i_sb->dq_op->alloc_space(inode, nr, 1) == NO_QUOTA) |
| 118 | return 1; | 151 | return 1; |
| @@ -132,7 +165,7 @@ static inline int vfs_dq_prealloc_space(struct inode *inode, qsize_t nr) | |||
| 132 | 165 | ||
| 133 | static inline int vfs_dq_alloc_space_nodirty(struct inode *inode, qsize_t nr) | 166 | static inline int vfs_dq_alloc_space_nodirty(struct inode *inode, qsize_t nr) |
| 134 | { | 167 | { |
| 135 | if (sb_any_quota_enabled(inode->i_sb)) { | 168 | if (sb_any_quota_active(inode->i_sb)) { |
| 136 | /* Used space is updated in alloc_space() */ | 169 | /* Used space is updated in alloc_space() */ |
| 137 | if (inode->i_sb->dq_op->alloc_space(inode, nr, 0) == NO_QUOTA) | 170 | if (inode->i_sb->dq_op->alloc_space(inode, nr, 0) == NO_QUOTA) |
| 138 | return 1; | 171 | return 1; |
| @@ -152,7 +185,7 @@ static inline int vfs_dq_alloc_space(struct inode *inode, qsize_t nr) | |||
| 152 | 185 | ||
| 153 | static inline int vfs_dq_alloc_inode(struct inode *inode) | 186 | static inline int vfs_dq_alloc_inode(struct inode *inode) |
| 154 | { | 187 | { |
| 155 | if (sb_any_quota_enabled(inode->i_sb)) { | 188 | if (sb_any_quota_active(inode->i_sb)) { |
| 156 | vfs_dq_init(inode); | 189 | vfs_dq_init(inode); |
| 157 | if (inode->i_sb->dq_op->alloc_inode(inode, 1) == NO_QUOTA) | 190 | if (inode->i_sb->dq_op->alloc_inode(inode, 1) == NO_QUOTA) |
| 158 | return 1; | 191 | return 1; |
| @@ -162,7 +195,7 @@ static inline int vfs_dq_alloc_inode(struct inode *inode) | |||
| 162 | 195 | ||
| 163 | static inline void vfs_dq_free_space_nodirty(struct inode *inode, qsize_t nr) | 196 | static inline void vfs_dq_free_space_nodirty(struct inode *inode, qsize_t nr) |
| 164 | { | 197 | { |
| 165 | if (sb_any_quota_enabled(inode->i_sb)) | 198 | if (sb_any_quota_active(inode->i_sb)) |
| 166 | inode->i_sb->dq_op->free_space(inode, nr); | 199 | inode->i_sb->dq_op->free_space(inode, nr); |
| 167 | else | 200 | else |
| 168 | inode_sub_bytes(inode, nr); | 201 | inode_sub_bytes(inode, nr); |
| @@ -176,7 +209,7 @@ static inline void vfs_dq_free_space(struct inode *inode, qsize_t nr) | |||
| 176 | 209 | ||
| 177 | static inline void vfs_dq_free_inode(struct inode *inode) | 210 | static inline void vfs_dq_free_inode(struct inode *inode) |
| 178 | { | 211 | { |
| 179 | if (sb_any_quota_enabled(inode->i_sb)) | 212 | if (sb_any_quota_active(inode->i_sb)) |
| 180 | inode->i_sb->dq_op->free_inode(inode, 1); | 213 | inode->i_sb->dq_op->free_inode(inode, 1); |
| 181 | } | 214 | } |
| 182 | 215 | ||
| @@ -197,12 +230,12 @@ static inline int vfs_dq_off(struct super_block *sb, int remount) | |||
| 197 | 230 | ||
| 198 | #else | 231 | #else |
| 199 | 232 | ||
| 200 | static inline int sb_has_quota_enabled(struct super_block *sb, int type) | 233 | static inline int sb_has_quota_usage_enabled(struct super_block *sb, int type) |
| 201 | { | 234 | { |
| 202 | return 0; | 235 | return 0; |
| 203 | } | 236 | } |
| 204 | 237 | ||
| 205 | static inline int sb_any_quota_enabled(struct super_block *sb) | 238 | static inline int sb_has_quota_limits_enabled(struct super_block *sb, int type) |
| 206 | { | 239 | { |
| 207 | return 0; | 240 | return 0; |
| 208 | } | 241 | } |
| @@ -217,6 +250,27 @@ static inline int sb_any_quota_suspended(struct super_block *sb) | |||
| 217 | return 0; | 250 | return 0; |
| 218 | } | 251 | } |
| 219 | 252 | ||
| 253 | /* Does kernel know about any quota information for given sb + type? */ | ||
| 254 | static inline int sb_has_quota_loaded(struct super_block *sb, int type) | ||
| 255 | { | ||
| 256 | return 0; | ||
| 257 | } | ||
| 258 | |||
| 259 | static inline int sb_any_quota_loaded(struct super_block *sb) | ||
| 260 | { | ||
| 261 | return 0; | ||
| 262 | } | ||
| 263 | |||
| 264 | static inline int sb_has_quota_active(struct super_block *sb, int type) | ||
| 265 | { | ||
| 266 | return 0; | ||
| 267 | } | ||
| 268 | |||
| 269 | static inline int sb_any_quota_active(struct super_block *sb) | ||
| 270 | { | ||
| 271 | return 0; | ||
| 272 | } | ||
| 273 | |||
| 220 | /* | 274 | /* |
| 221 | * NO-OP when quota not configured. | 275 | * NO-OP when quota not configured. |
| 222 | */ | 276 | */ |
diff --git a/include/linux/radeonfb.h b/include/linux/radeonfb.h index 5bd8975ed78e..8c4bbdecc44f 100644 --- a/include/linux/radeonfb.h +++ b/include/linux/radeonfb.h | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | #define __LINUX_RADEONFB_H__ | 2 | #define __LINUX_RADEONFB_H__ |
| 3 | 3 | ||
| 4 | #include <asm/ioctl.h> | 4 | #include <asm/ioctl.h> |
| 5 | #include <asm/types.h> | 5 | #include <linux/types.h> |
| 6 | 6 | ||
| 7 | #define ATY_RADEON_LCD_ON 0x00000001 | 7 | #define ATY_RADEON_LCD_ON 0x00000001 |
| 8 | #define ATY_RADEON_CRT_ON 0x00000002 | 8 | #define ATY_RADEON_CRT_ON 0x00000002 |
diff --git a/include/linux/radix-tree.h b/include/linux/radix-tree.h index a916c6660dfa..355f6e80db0d 100644 --- a/include/linux/radix-tree.h +++ b/include/linux/radix-tree.h | |||
| @@ -136,7 +136,7 @@ do { \ | |||
| 136 | */ | 136 | */ |
| 137 | static inline void *radix_tree_deref_slot(void **pslot) | 137 | static inline void *radix_tree_deref_slot(void **pslot) |
| 138 | { | 138 | { |
| 139 | void *ret = *pslot; | 139 | void *ret = rcu_dereference(*pslot); |
| 140 | if (unlikely(radix_tree_is_indirect_ptr(ret))) | 140 | if (unlikely(radix_tree_is_indirect_ptr(ret))) |
| 141 | ret = RADIX_TREE_RETRY; | 141 | ret = RADIX_TREE_RETRY; |
| 142 | return ret; | 142 | return ret; |
diff --git a/include/linux/raid/md_k.h b/include/linux/raid/md_k.h index 8fc909ef6787..9743e4dbc918 100644 --- a/include/linux/raid/md_k.h +++ b/include/linux/raid/md_k.h | |||
| @@ -137,6 +137,9 @@ struct mddev_s | |||
| 137 | struct gendisk *gendisk; | 137 | struct gendisk *gendisk; |
| 138 | 138 | ||
| 139 | struct kobject kobj; | 139 | struct kobject kobj; |
| 140 | int hold_active; | ||
| 141 | #define UNTIL_IOCTL 1 | ||
| 142 | #define UNTIL_STOP 2 | ||
| 140 | 143 | ||
| 141 | /* Superblock information */ | 144 | /* Superblock information */ |
| 142 | int major_version, | 145 | int major_version, |
| @@ -215,6 +218,9 @@ struct mddev_s | |||
| 215 | #define MD_RECOVERY_FROZEN 9 | 218 | #define MD_RECOVERY_FROZEN 9 |
| 216 | 219 | ||
| 217 | unsigned long recovery; | 220 | unsigned long recovery; |
| 221 | int recovery_disabled; /* if we detect that recovery | ||
| 222 | * will always fail, set this | ||
| 223 | * so we don't loop trying */ | ||
| 218 | 224 | ||
| 219 | int in_sync; /* know to not need resync */ | 225 | int in_sync; /* know to not need resync */ |
| 220 | struct mutex reconfig_mutex; | 226 | struct mutex reconfig_mutex; |
| @@ -244,6 +250,9 @@ struct mddev_s | |||
| 244 | struct sysfs_dirent *sysfs_state; /* handle for 'array_state' | 250 | struct sysfs_dirent *sysfs_state; /* handle for 'array_state' |
| 245 | * file in sysfs. | 251 | * file in sysfs. |
| 246 | */ | 252 | */ |
| 253 | struct sysfs_dirent *sysfs_action; /* handle for 'sync_action' */ | ||
| 254 | |||
| 255 | struct work_struct del_work; /* used for delayed sysfs removal */ | ||
| 247 | 256 | ||
| 248 | spinlock_t write_lock; | 257 | spinlock_t write_lock; |
| 249 | wait_queue_head_t sb_wait; /* for waiting on superblock updates */ | 258 | wait_queue_head_t sb_wait; /* for waiting on superblock updates */ |
| @@ -334,17 +343,14 @@ static inline char * mdname (mddev_t * mddev) | |||
| 334 | * iterates through some rdev ringlist. It's safe to remove the | 343 | * iterates through some rdev ringlist. It's safe to remove the |
| 335 | * current 'rdev'. Dont touch 'tmp' though. | 344 | * current 'rdev'. Dont touch 'tmp' though. |
| 336 | */ | 345 | */ |
| 337 | #define rdev_for_each_list(rdev, tmp, list) \ | 346 | #define rdev_for_each_list(rdev, tmp, head) \ |
| 338 | \ | 347 | list_for_each_entry_safe(rdev, tmp, head, same_set) |
| 339 | for ((tmp) = (list).next; \ | 348 | |
| 340 | (rdev) = (list_entry((tmp), mdk_rdev_t, same_set)), \ | ||
| 341 | (tmp) = (tmp)->next, (tmp)->prev != &(list) \ | ||
| 342 | ; ) | ||
| 343 | /* | 349 | /* |
| 344 | * iterates through the 'same array disks' ringlist | 350 | * iterates through the 'same array disks' ringlist |
| 345 | */ | 351 | */ |
| 346 | #define rdev_for_each(rdev, tmp, mddev) \ | 352 | #define rdev_for_each(rdev, tmp, mddev) \ |
| 347 | rdev_for_each_list(rdev, tmp, (mddev)->disks) | 353 | list_for_each_entry_safe(rdev, tmp, &((mddev)->disks), same_set) |
| 348 | 354 | ||
| 349 | #define rdev_for_each_rcu(rdev, mddev) \ | 355 | #define rdev_for_each_rcu(rdev, mddev) \ |
| 350 | list_for_each_entry_rcu(rdev, &((mddev)->disks), same_set) | 356 | list_for_each_entry_rcu(rdev, &((mddev)->disks), same_set) |
diff --git a/include/linux/raid/md_p.h b/include/linux/raid/md_p.h index 8b4de4a41ff1..6ba830fa8538 100644 --- a/include/linux/raid/md_p.h +++ b/include/linux/raid/md_p.h | |||
| @@ -15,6 +15,8 @@ | |||
| 15 | #ifndef _MD_P_H | 15 | #ifndef _MD_P_H |
| 16 | #define _MD_P_H | 16 | #define _MD_P_H |
| 17 | 17 | ||
| 18 | #include <linux/types.h> | ||
| 19 | |||
| 18 | /* | 20 | /* |
| 19 | * RAID superblock. | 21 | * RAID superblock. |
| 20 | * | 22 | * |
| @@ -194,6 +196,8 @@ static inline __u64 md_event(mdp_super_t *sb) { | |||
| 194 | return (ev<<32)| sb->events_lo; | 196 | return (ev<<32)| sb->events_lo; |
| 195 | } | 197 | } |
| 196 | 198 | ||
| 199 | #define MD_SUPERBLOCK_1_TIME_SEC_MASK ((1ULL<<40) - 1) | ||
| 200 | |||
| 197 | /* | 201 | /* |
| 198 | * The version-1 superblock : | 202 | * The version-1 superblock : |
| 199 | * All numeric fields are little-endian. | 203 | * All numeric fields are little-endian. |
diff --git a/include/linux/raid/raid0.h b/include/linux/raid/raid0.h index 1b2dda035f8e..fd42aa87c391 100644 --- a/include/linux/raid/raid0.h +++ b/include/linux/raid/raid0.h | |||
| @@ -5,9 +5,9 @@ | |||
| 5 | 5 | ||
| 6 | struct strip_zone | 6 | struct strip_zone |
| 7 | { | 7 | { |
| 8 | sector_t zone_offset; /* Zone offset in md_dev */ | 8 | sector_t zone_start; /* Zone offset in md_dev (in sectors) */ |
| 9 | sector_t dev_offset; /* Zone offset in real dev */ | 9 | sector_t dev_start; /* Zone offset in real dev (in sectors) */ |
| 10 | sector_t size; /* Zone size */ | 10 | sector_t sectors; /* Zone size in sectors */ |
| 11 | int nb_dev; /* # of devices attached to the zone */ | 11 | int nb_dev; /* # of devices attached to the zone */ |
| 12 | mdk_rdev_t **dev; /* Devices attached to the zone */ | 12 | mdk_rdev_t **dev; /* Devices attached to the zone */ |
| 13 | }; | 13 | }; |
| @@ -19,8 +19,8 @@ struct raid0_private_data | |||
| 19 | mdk_rdev_t **devlist; /* lists of rdevs, pointed to by strip_zone->dev */ | 19 | mdk_rdev_t **devlist; /* lists of rdevs, pointed to by strip_zone->dev */ |
| 20 | int nr_strip_zones; | 20 | int nr_strip_zones; |
| 21 | 21 | ||
| 22 | sector_t hash_spacing; | 22 | sector_t spacing; |
| 23 | int preshift; /* shift this before divide by hash_spacing */ | 23 | int sector_shift; /* shift this before divide by spacing */ |
| 24 | }; | 24 | }; |
| 25 | 25 | ||
| 26 | typedef struct raid0_private_data raid0_conf_t; | 26 | typedef struct raid0_private_data raid0_conf_t; |
diff --git a/include/linux/random.h b/include/linux/random.h index adbf3bd3c6b3..25d02fe5c9b5 100644 --- a/include/linux/random.h +++ b/include/linux/random.h | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | #ifndef _LINUX_RANDOM_H | 7 | #ifndef _LINUX_RANDOM_H |
| 8 | #define _LINUX_RANDOM_H | 8 | #define _LINUX_RANDOM_H |
| 9 | 9 | ||
| 10 | #include <linux/types.h> | ||
| 10 | #include <linux/ioctl.h> | 11 | #include <linux/ioctl.h> |
| 11 | #include <linux/irqnr.h> | 12 | #include <linux/irqnr.h> |
| 12 | 13 | ||
| @@ -45,56 +46,6 @@ struct rand_pool_info { | |||
| 45 | 46 | ||
| 46 | extern void rand_initialize_irq(int irq); | 47 | extern void rand_initialize_irq(int irq); |
| 47 | 48 | ||
| 48 | struct timer_rand_state; | ||
| 49 | #ifndef CONFIG_SPARSE_IRQ | ||
| 50 | |||
| 51 | extern struct timer_rand_state *irq_timer_state[]; | ||
| 52 | |||
| 53 | static inline struct timer_rand_state *get_timer_rand_state(unsigned int irq) | ||
| 54 | { | ||
| 55 | if (irq >= nr_irqs) | ||
| 56 | return NULL; | ||
| 57 | |||
| 58 | return irq_timer_state[irq]; | ||
| 59 | } | ||
| 60 | |||
| 61 | static inline void set_timer_rand_state(unsigned int irq, struct timer_rand_state *state) | ||
| 62 | { | ||
| 63 | if (irq >= nr_irqs) | ||
| 64 | return; | ||
| 65 | |||
| 66 | irq_timer_state[irq] = state; | ||
| 67 | } | ||
| 68 | |||
| 69 | #else | ||
| 70 | |||
| 71 | #include <linux/irq.h> | ||
| 72 | static inline struct timer_rand_state *get_timer_rand_state(unsigned int irq) | ||
| 73 | { | ||
| 74 | struct irq_desc *desc; | ||
| 75 | |||
| 76 | desc = irq_to_desc(irq); | ||
| 77 | |||
| 78 | if (!desc) | ||
| 79 | return NULL; | ||
| 80 | |||
| 81 | return desc->timer_rand_state; | ||
| 82 | } | ||
| 83 | |||
| 84 | static inline void set_timer_rand_state(unsigned int irq, struct timer_rand_state *state) | ||
| 85 | { | ||
| 86 | struct irq_desc *desc; | ||
| 87 | |||
| 88 | desc = irq_to_desc(irq); | ||
| 89 | |||
| 90 | if (!desc) | ||
| 91 | return; | ||
| 92 | |||
| 93 | desc->timer_rand_state = state; | ||
| 94 | } | ||
| 95 | #endif | ||
| 96 | |||
| 97 | |||
| 98 | extern void add_input_randomness(unsigned int type, unsigned int code, | 49 | extern void add_input_randomness(unsigned int type, unsigned int code, |
| 99 | unsigned int value); | 50 | unsigned int value); |
| 100 | extern void add_interrupt_randomness(int irq); | 51 | extern void add_interrupt_randomness(int irq); |
diff --git a/include/linux/rbtree.h b/include/linux/rbtree.h index 344bc3495ddb..9c295411d01f 100644 --- a/include/linux/rbtree.h +++ b/include/linux/rbtree.h | |||
| @@ -140,10 +140,10 @@ extern void rb_insert_color(struct rb_node *, struct rb_root *); | |||
| 140 | extern void rb_erase(struct rb_node *, struct rb_root *); | 140 | extern void rb_erase(struct rb_node *, struct rb_root *); |
| 141 | 141 | ||
| 142 | /* Find logical next and previous nodes in a tree */ | 142 | /* Find logical next and previous nodes in a tree */ |
| 143 | extern struct rb_node *rb_next(struct rb_node *); | 143 | extern struct rb_node *rb_next(const struct rb_node *); |
| 144 | extern struct rb_node *rb_prev(struct rb_node *); | 144 | extern struct rb_node *rb_prev(const struct rb_node *); |
| 145 | extern struct rb_node *rb_first(struct rb_root *); | 145 | extern struct rb_node *rb_first(const struct rb_root *); |
| 146 | extern struct rb_node *rb_last(struct rb_root *); | 146 | extern struct rb_node *rb_last(const struct rb_root *); |
| 147 | 147 | ||
| 148 | /* Fast replacement of a single node without remove/rebalance/add/rebalance */ | 148 | /* Fast replacement of a single node without remove/rebalance/add/rebalance */ |
| 149 | extern void rb_replace_node(struct rb_node *victim, struct rb_node *new, | 149 | extern void rb_replace_node(struct rb_node *victim, struct rb_node *new, |
diff --git a/include/linux/rcuclassic.h b/include/linux/rcuclassic.h index 301dda829e37..f3f697df1d71 100644 --- a/include/linux/rcuclassic.h +++ b/include/linux/rcuclassic.h | |||
| @@ -59,8 +59,8 @@ struct rcu_ctrlblk { | |||
| 59 | int signaled; | 59 | int signaled; |
| 60 | 60 | ||
| 61 | spinlock_t lock ____cacheline_internodealigned_in_smp; | 61 | spinlock_t lock ____cacheline_internodealigned_in_smp; |
| 62 | cpumask_t cpumask; /* CPUs that need to switch in order */ | 62 | DECLARE_BITMAP(cpumask, NR_CPUS); /* CPUs that need to switch for */ |
| 63 | /* for current batch to proceed. */ | 63 | /* current batch to proceed. */ |
| 64 | } ____cacheline_internodealigned_in_smp; | 64 | } ____cacheline_internodealigned_in_smp; |
| 65 | 65 | ||
| 66 | /* Is batch a before batch b ? */ | 66 | /* Is batch a before batch b ? */ |
diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h index 1168fbcea8d4..921340a7b71c 100644 --- a/include/linux/rcupdate.h +++ b/include/linux/rcupdate.h | |||
| @@ -204,18 +204,6 @@ struct rcu_synchronize { | |||
| 204 | 204 | ||
| 205 | extern void wakeme_after_rcu(struct rcu_head *head); | 205 | extern void wakeme_after_rcu(struct rcu_head *head); |
| 206 | 206 | ||
| 207 | #define synchronize_rcu_xxx(name, func) \ | ||
| 208 | void name(void) \ | ||
| 209 | { \ | ||
| 210 | struct rcu_synchronize rcu; \ | ||
| 211 | \ | ||
| 212 | init_completion(&rcu.completion); \ | ||
| 213 | /* Will wake me after RCU finished. */ \ | ||
| 214 | func(&rcu.head, wakeme_after_rcu); \ | ||
| 215 | /* Wait for it. */ \ | ||
| 216 | wait_for_completion(&rcu.completion); \ | ||
| 217 | } | ||
| 218 | |||
| 219 | /** | 207 | /** |
| 220 | * synchronize_sched - block until all CPUs have exited any non-preemptive | 208 | * synchronize_sched - block until all CPUs have exited any non-preemptive |
| 221 | * kernel code sequences. | 209 | * kernel code sequences. |
diff --git a/include/linux/regulator/consumer.h b/include/linux/regulator/consumer.h index afdc4558bb94..801bf77ff4e2 100644 --- a/include/linux/regulator/consumer.h +++ b/include/linux/regulator/consumer.h | |||
| @@ -104,10 +104,10 @@ struct regulator; | |||
| 104 | /** | 104 | /** |
| 105 | * struct regulator_bulk_data - Data used for bulk regulator operations. | 105 | * struct regulator_bulk_data - Data used for bulk regulator operations. |
| 106 | * | 106 | * |
| 107 | * @supply The name of the supply. Initialised by the user before | 107 | * @supply: The name of the supply. Initialised by the user before |
| 108 | * using the bulk regulator APIs. | 108 | * using the bulk regulator APIs. |
| 109 | * @consumer The regulator consumer for the supply. This will be managed | 109 | * @consumer: The regulator consumer for the supply. This will be managed |
| 110 | * by the bulk API. | 110 | * by the bulk API. |
| 111 | * | 111 | * |
| 112 | * The regulator APIs provide a series of regulator_bulk_() API calls as | 112 | * The regulator APIs provide a series of regulator_bulk_() API calls as |
| 113 | * a convenience to consumers which require multiple supplies. This | 113 | * a convenience to consumers which require multiple supplies. This |
diff --git a/include/linux/regulator/driver.h b/include/linux/regulator/driver.h index e37d80561985..2dae05705f13 100644 --- a/include/linux/regulator/driver.h +++ b/include/linux/regulator/driver.h | |||
| @@ -24,7 +24,33 @@ struct regulator_init_data; | |||
| 24 | /** | 24 | /** |
| 25 | * struct regulator_ops - regulator operations. | 25 | * struct regulator_ops - regulator operations. |
| 26 | * | 26 | * |
| 27 | * This struct describes regulator operations. | 27 | * This struct describes regulator operations which can be implemented by |
| 28 | * regulator chip drivers. | ||
| 29 | * | ||
| 30 | * @enable: Enable the regulator. | ||
| 31 | * @disable: Disable the regulator. | ||
| 32 | * @is_enabled: Return 1 if the regulator is enabled, 0 otherwise. | ||
| 33 | * | ||
| 34 | * @set_voltage: Set the voltage for the regulator within the range specified. | ||
| 35 | * The driver should select the voltage closest to min_uV. | ||
| 36 | * @get_voltage: Return the currently configured voltage for the regulator. | ||
| 37 | * | ||
| 38 | * @set_current_limit: Configure a limit for a current-limited regulator. | ||
| 39 | * @get_current_limit: Get the limit for a current-limited regulator. | ||
| 40 | * | ||
| 41 | * @set_mode: Set the operating mode for the regulator. | ||
| 42 | * @get_mode: Get the current operating mode for the regulator. | ||
| 43 | * @get_optimum_mode: Get the most efficient operating mode for the regulator | ||
| 44 | * when running with the specified parameters. | ||
| 45 | * | ||
| 46 | * @set_suspend_voltage: Set the voltage for the regulator when the system | ||
| 47 | * is suspended. | ||
| 48 | * @set_suspend_enable: Mark the regulator as enabled when the system is | ||
| 49 | * suspended. | ||
| 50 | * @set_suspend_disable: Mark the regulator as disabled when the system is | ||
| 51 | * suspended. | ||
| 52 | * @set_suspend_mode: Set the operating mode for the regulator when the | ||
| 53 | * system is suspended. | ||
| 28 | */ | 54 | */ |
| 29 | struct regulator_ops { | 55 | struct regulator_ops { |
| 30 | 56 | ||
| @@ -75,6 +101,15 @@ enum regulator_type { | |||
| 75 | /** | 101 | /** |
| 76 | * struct regulator_desc - Regulator descriptor | 102 | * struct regulator_desc - Regulator descriptor |
| 77 | * | 103 | * |
| 104 | * Each regulator registered with the core is described with a structure of | ||
| 105 | * this type. | ||
| 106 | * | ||
| 107 | * @name: Identifying name for the regulator. | ||
| 108 | * @id: Numerical identifier for the regulator. | ||
| 109 | * @ops: Regulator operations table. | ||
| 110 | * @irq: Interrupt number for the regulator. | ||
| 111 | * @type: Indicates if the regulator is a voltage or current regulator. | ||
| 112 | * @owner: Module providing the regulator, used for refcounting. | ||
| 78 | */ | 113 | */ |
| 79 | struct regulator_desc { | 114 | struct regulator_desc { |
| 80 | const char *name; | 115 | const char *name; |
diff --git a/include/linux/regulator/machine.h b/include/linux/regulator/machine.h index c6d69331a81e..3794773b23d2 100644 --- a/include/linux/regulator/machine.h +++ b/include/linux/regulator/machine.h | |||
| @@ -44,6 +44,10 @@ struct regulator; | |||
| 44 | * struct regulator_state - regulator state during low power syatem states | 44 | * struct regulator_state - regulator state during low power syatem states |
| 45 | * | 45 | * |
| 46 | * This describes a regulators state during a system wide low power state. | 46 | * This describes a regulators state during a system wide low power state. |
| 47 | * | ||
| 48 | * @uV: Operating voltage during suspend. | ||
| 49 | * @mode: Operating mode during suspend. | ||
| 50 | * @enabled: Enabled during suspend. | ||
| 47 | */ | 51 | */ |
| 48 | struct regulator_state { | 52 | struct regulator_state { |
| 49 | int uV; /* suspend voltage */ | 53 | int uV; /* suspend voltage */ |
| @@ -55,6 +59,30 @@ struct regulator_state { | |||
| 55 | * struct regulation_constraints - regulator operating constraints. | 59 | * struct regulation_constraints - regulator operating constraints. |
| 56 | * | 60 | * |
| 57 | * This struct describes regulator and board/machine specific constraints. | 61 | * This struct describes regulator and board/machine specific constraints. |
| 62 | * | ||
| 63 | * @name: Descriptive name for the constraints, used for display purposes. | ||
| 64 | * | ||
| 65 | * @min_uV: Smallest voltage consumers may set. | ||
| 66 | * @max_uV: Largest voltage consumers may set. | ||
| 67 | * | ||
| 68 | * @min_uA: Smallest consumers consumers may set. | ||
| 69 | * @max_uA: Largest current consumers may set. | ||
| 70 | * | ||
| 71 | * @valid_modes_mask: Mask of modes which may be configured by consumers. | ||
| 72 | * @valid_ops_mask: Operations which may be performed by consumers. | ||
| 73 | * | ||
| 74 | * @always_on: Set if the regulator should never be disabled. | ||
| 75 | * @boot_on: Set if the regulator is enabled when the system is initially | ||
| 76 | * started. | ||
| 77 | * @apply_uV: Apply the voltage constraint when initialising. | ||
| 78 | * | ||
| 79 | * @input_uV: Input voltage for regulator when supplied by another regulator. | ||
| 80 | * | ||
| 81 | * @state_disk: State for regulator when system is suspended in disk mode. | ||
| 82 | * @state_mem: State for regulator when system is suspended in mem mode. | ||
| 83 | * @state_standby: State for regulator when system is suspended in standby | ||
| 84 | * mode. | ||
| 85 | * @initial_state: Suspend state to set by default. | ||
| 58 | */ | 86 | */ |
| 59 | struct regulation_constraints { | 87 | struct regulation_constraints { |
| 60 | 88 | ||
| @@ -93,6 +121,9 @@ struct regulation_constraints { | |||
| 93 | * struct regulator_consumer_supply - supply -> device mapping | 121 | * struct regulator_consumer_supply - supply -> device mapping |
| 94 | * | 122 | * |
| 95 | * This maps a supply name to a device. | 123 | * This maps a supply name to a device. |
| 124 | * | ||
| 125 | * @dev: Device structure for the consumer. | ||
| 126 | * @supply: Name for the supply. | ||
| 96 | */ | 127 | */ |
| 97 | struct regulator_consumer_supply { | 128 | struct regulator_consumer_supply { |
| 98 | struct device *dev; /* consumer */ | 129 | struct device *dev; /* consumer */ |
| @@ -103,6 +134,16 @@ struct regulator_consumer_supply { | |||
| 103 | * struct regulator_init_data - regulator platform initialisation data. | 134 | * struct regulator_init_data - regulator platform initialisation data. |
| 104 | * | 135 | * |
| 105 | * Initialisation constraints, our supply and consumers supplies. | 136 | * Initialisation constraints, our supply and consumers supplies. |
| 137 | * | ||
| 138 | * @supply_regulator_dev: Parent regulator (if any). | ||
| 139 | * | ||
| 140 | * @constraints: Constraints. These must be specified for the regulator to | ||
| 141 | * be usable. | ||
| 142 | * @num_consumer_supplies: Number of consumer device supplies. | ||
| 143 | * @consumer_supplies: Consumer device supply configuration. | ||
| 144 | * | ||
| 145 | * @regulator_init: Callback invoked when the regulator has been registered. | ||
| 146 | * @driver_data: Data passed to regulator_init. | ||
| 106 | */ | 147 | */ |
| 107 | struct regulator_init_data { | 148 | struct regulator_init_data { |
| 108 | struct device *supply_regulator_dev; /* or NULL for LINE */ | 149 | struct device *supply_regulator_dev; /* or NULL for LINE */ |
diff --git a/include/linux/res_counter.h b/include/linux/res_counter.h index 271c1c2c9f6f..4c5bcf6ca7e8 100644 --- a/include/linux/res_counter.h +++ b/include/linux/res_counter.h | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | * | 9 | * |
| 10 | * Author: Pavel Emelianov <xemul@openvz.org> | 10 | * Author: Pavel Emelianov <xemul@openvz.org> |
| 11 | * | 11 | * |
| 12 | * See Documentation/controllers/resource_counter.txt for more | 12 | * See Documentation/cgroups/resource_counter.txt for more |
| 13 | * info about what this counter is. | 13 | * info about what this counter is. |
| 14 | */ | 14 | */ |
| 15 | 15 | ||
| @@ -43,6 +43,10 @@ struct res_counter { | |||
| 43 | * the routines below consider this to be IRQ-safe | 43 | * the routines below consider this to be IRQ-safe |
| 44 | */ | 44 | */ |
| 45 | spinlock_t lock; | 45 | spinlock_t lock; |
| 46 | /* | ||
| 47 | * Parent counter, used for hierarchial resource accounting | ||
| 48 | */ | ||
| 49 | struct res_counter *parent; | ||
| 46 | }; | 50 | }; |
| 47 | 51 | ||
| 48 | /** | 52 | /** |
| @@ -87,7 +91,7 @@ enum { | |||
| 87 | * helpers for accounting | 91 | * helpers for accounting |
| 88 | */ | 92 | */ |
| 89 | 93 | ||
| 90 | void res_counter_init(struct res_counter *counter); | 94 | void res_counter_init(struct res_counter *counter, struct res_counter *parent); |
| 91 | 95 | ||
| 92 | /* | 96 | /* |
| 93 | * charge - try to consume more resource. | 97 | * charge - try to consume more resource. |
| @@ -103,7 +107,7 @@ void res_counter_init(struct res_counter *counter); | |||
| 103 | int __must_check res_counter_charge_locked(struct res_counter *counter, | 107 | int __must_check res_counter_charge_locked(struct res_counter *counter, |
| 104 | unsigned long val); | 108 | unsigned long val); |
| 105 | int __must_check res_counter_charge(struct res_counter *counter, | 109 | int __must_check res_counter_charge(struct res_counter *counter, |
| 106 | unsigned long val); | 110 | unsigned long val, struct res_counter **limit_fail_at); |
| 107 | 111 | ||
| 108 | /* | 112 | /* |
| 109 | * uncharge - tell that some portion of the resource is released | 113 | * uncharge - tell that some portion of the resource is released |
diff --git a/include/linux/rio_drv.h b/include/linux/rio_drv.h index 32c0547ffafc..c93a58a40033 100644 --- a/include/linux/rio_drv.h +++ b/include/linux/rio_drv.h | |||
| @@ -391,7 +391,6 @@ static inline int rio_add_inb_buffer(struct rio_mport *mport, int mbox, | |||
| 391 | * rio_get_inb_message - Get A RIO message from an inbound mailbox queue | 391 | * rio_get_inb_message - Get A RIO message from an inbound mailbox queue |
| 392 | * @mport: Master port containing the inbound mailbox | 392 | * @mport: Master port containing the inbound mailbox |
| 393 | * @mbox: The inbound mailbox number | 393 | * @mbox: The inbound mailbox number |
| 394 | * @buffer: Pointer to the message buffer | ||
| 395 | * | 394 | * |
| 396 | * Get a RIO message from an inbound mailbox queue. Returns 0 on success. | 395 | * Get a RIO message from an inbound mailbox queue. Returns 0 on success. |
| 397 | */ | 396 | */ |
diff --git a/include/linux/rmap.h b/include/linux/rmap.h index 89f0564b10c8..b35bc0e19cd9 100644 --- a/include/linux/rmap.h +++ b/include/linux/rmap.h | |||
| @@ -63,16 +63,13 @@ void anon_vma_unlink(struct vm_area_struct *); | |||
| 63 | void anon_vma_link(struct vm_area_struct *); | 63 | void anon_vma_link(struct vm_area_struct *); |
| 64 | void __anon_vma_link(struct vm_area_struct *); | 64 | void __anon_vma_link(struct vm_area_struct *); |
| 65 | 65 | ||
| 66 | extern struct anon_vma *page_lock_anon_vma(struct page *page); | ||
| 67 | extern void page_unlock_anon_vma(struct anon_vma *anon_vma); | ||
| 68 | |||
| 69 | /* | 66 | /* |
| 70 | * rmap interfaces called when adding or removing pte of page | 67 | * rmap interfaces called when adding or removing pte of page |
| 71 | */ | 68 | */ |
| 72 | void page_add_anon_rmap(struct page *, struct vm_area_struct *, unsigned long); | 69 | void page_add_anon_rmap(struct page *, struct vm_area_struct *, unsigned long); |
| 73 | void page_add_new_anon_rmap(struct page *, struct vm_area_struct *, unsigned long); | 70 | void page_add_new_anon_rmap(struct page *, struct vm_area_struct *, unsigned long); |
| 74 | void page_add_file_rmap(struct page *); | 71 | void page_add_file_rmap(struct page *); |
| 75 | void page_remove_rmap(struct page *, struct vm_area_struct *); | 72 | void page_remove_rmap(struct page *); |
| 76 | 73 | ||
| 77 | #ifdef CONFIG_DEBUG_VM | 74 | #ifdef CONFIG_DEBUG_VM |
| 78 | void page_dup_rmap(struct page *page, struct vm_area_struct *vma, unsigned long address); | 75 | void page_dup_rmap(struct page *page, struct vm_area_struct *vma, unsigned long address); |
diff --git a/include/linux/rtc.h b/include/linux/rtc.h index 91f597ad6acc..4046b75563c1 100644 --- a/include/linux/rtc.h +++ b/include/linux/rtc.h | |||
| @@ -145,6 +145,8 @@ struct rtc_class_ops { | |||
| 145 | int (*irq_set_state)(struct device *, int enabled); | 145 | int (*irq_set_state)(struct device *, int enabled); |
| 146 | int (*irq_set_freq)(struct device *, int freq); | 146 | int (*irq_set_freq)(struct device *, int freq); |
| 147 | int (*read_callback)(struct device *, int data); | 147 | int (*read_callback)(struct device *, int data); |
| 148 | int (*alarm_irq_enable)(struct device *, unsigned int enabled); | ||
| 149 | int (*update_irq_enable)(struct device *, unsigned int enabled); | ||
| 148 | }; | 150 | }; |
| 149 | 151 | ||
| 150 | #define RTC_DEVICE_NAME_SIZE 20 | 152 | #define RTC_DEVICE_NAME_SIZE 20 |
| @@ -181,7 +183,7 @@ struct rtc_device | |||
| 181 | struct timer_list uie_timer; | 183 | struct timer_list uie_timer; |
| 182 | /* Those fields are protected by rtc->irq_lock */ | 184 | /* Those fields are protected by rtc->irq_lock */ |
| 183 | unsigned int oldsecs; | 185 | unsigned int oldsecs; |
| 184 | unsigned int irq_active:1; | 186 | unsigned int uie_irq_active:1; |
| 185 | unsigned int stop_uie_polling:1; | 187 | unsigned int stop_uie_polling:1; |
| 186 | unsigned int uie_task_active:1; | 188 | unsigned int uie_task_active:1; |
| 187 | unsigned int uie_timer_active:1; | 189 | unsigned int uie_timer_active:1; |
| @@ -216,6 +218,10 @@ extern int rtc_irq_set_state(struct rtc_device *rtc, | |||
| 216 | struct rtc_task *task, int enabled); | 218 | struct rtc_task *task, int enabled); |
| 217 | extern int rtc_irq_set_freq(struct rtc_device *rtc, | 219 | extern int rtc_irq_set_freq(struct rtc_device *rtc, |
| 218 | struct rtc_task *task, int freq); | 220 | struct rtc_task *task, int freq); |
| 221 | extern int rtc_update_irq_enable(struct rtc_device *rtc, unsigned int enabled); | ||
| 222 | extern int rtc_alarm_irq_enable(struct rtc_device *rtc, unsigned int enabled); | ||
| 223 | extern int rtc_dev_update_irq_enable_emul(struct rtc_device *rtc, | ||
| 224 | unsigned int enabled); | ||
| 219 | 225 | ||
| 220 | typedef struct rtc_task { | 226 | typedef struct rtc_task { |
| 221 | void (*func)(void *private_data); | 227 | void (*func)(void *private_data); |
diff --git a/include/linux/rtnetlink.h b/include/linux/rtnetlink.h index e88f7058b3a1..1e5f6730ff31 100644 --- a/include/linux/rtnetlink.h +++ b/include/linux/rtnetlink.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __LINUX_RTNETLINK_H | 1 | #ifndef __LINUX_RTNETLINK_H |
| 2 | #define __LINUX_RTNETLINK_H | 2 | #define __LINUX_RTNETLINK_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/netlink.h> | 5 | #include <linux/netlink.h> |
| 5 | #include <linux/if_link.h> | 6 | #include <linux/if_link.h> |
| 6 | #include <linux/if_addr.h> | 7 | #include <linux/if_addr.h> |
diff --git a/include/linux/sched.h b/include/linux/sched.h index 8395e715809d..2127e959e0f4 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
| @@ -250,7 +250,7 @@ extern void init_idle_bootup_task(struct task_struct *idle); | |||
| 250 | extern int runqueue_is_locked(void); | 250 | extern int runqueue_is_locked(void); |
| 251 | extern void task_rq_unlock_wait(struct task_struct *p); | 251 | extern void task_rq_unlock_wait(struct task_struct *p); |
| 252 | 252 | ||
| 253 | extern cpumask_t nohz_cpu_mask; | 253 | extern cpumask_var_t nohz_cpu_mask; |
| 254 | #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ) | 254 | #if defined(CONFIG_SMP) && defined(CONFIG_NO_HZ) |
| 255 | extern int select_nohz_load_balancer(int cpu); | 255 | extern int select_nohz_load_balancer(int cpu); |
| 256 | #else | 256 | #else |
| @@ -284,7 +284,6 @@ long io_schedule_timeout(long timeout); | |||
| 284 | 284 | ||
| 285 | extern void cpu_init (void); | 285 | extern void cpu_init (void); |
| 286 | extern void trap_init(void); | 286 | extern void trap_init(void); |
| 287 | extern void account_process_tick(struct task_struct *task, int user); | ||
| 288 | extern void update_process_times(int user); | 287 | extern void update_process_times(int user); |
| 289 | extern void scheduler_tick(void); | 288 | extern void scheduler_tick(void); |
| 290 | 289 | ||
| @@ -294,6 +293,9 @@ extern void sched_show_task(struct task_struct *p); | |||
| 294 | extern void softlockup_tick(void); | 293 | extern void softlockup_tick(void); |
| 295 | extern void touch_softlockup_watchdog(void); | 294 | extern void touch_softlockup_watchdog(void); |
| 296 | extern void touch_all_softlockup_watchdogs(void); | 295 | extern void touch_all_softlockup_watchdogs(void); |
| 296 | extern int proc_dosoftlockup_thresh(struct ctl_table *table, int write, | ||
| 297 | struct file *filp, void __user *buffer, | ||
| 298 | size_t *lenp, loff_t *ppos); | ||
| 297 | extern unsigned int softlockup_panic; | 299 | extern unsigned int softlockup_panic; |
| 298 | extern unsigned long sysctl_hung_task_check_count; | 300 | extern unsigned long sysctl_hung_task_check_count; |
| 299 | extern unsigned long sysctl_hung_task_timeout_secs; | 301 | extern unsigned long sysctl_hung_task_timeout_secs; |
| @@ -387,6 +389,9 @@ extern void arch_unmap_area_topdown(struct mm_struct *, unsigned long); | |||
| 387 | (mm)->hiwater_vm = (mm)->total_vm; \ | 389 | (mm)->hiwater_vm = (mm)->total_vm; \ |
| 388 | } while (0) | 390 | } while (0) |
| 389 | 391 | ||
| 392 | #define get_mm_hiwater_rss(mm) max((mm)->hiwater_rss, get_mm_rss(mm)) | ||
| 393 | #define get_mm_hiwater_vm(mm) max((mm)->hiwater_vm, (mm)->total_vm) | ||
| 394 | |||
| 390 | extern void set_dumpable(struct mm_struct *mm, int value); | 395 | extern void set_dumpable(struct mm_struct *mm, int value); |
| 391 | extern int get_dumpable(struct mm_struct *mm); | 396 | extern int get_dumpable(struct mm_struct *mm); |
| 392 | 397 | ||
| @@ -438,6 +443,7 @@ struct pacct_struct { | |||
| 438 | * @utime: time spent in user mode, in &cputime_t units | 443 | * @utime: time spent in user mode, in &cputime_t units |
| 439 | * @stime: time spent in kernel mode, in &cputime_t units | 444 | * @stime: time spent in kernel mode, in &cputime_t units |
| 440 | * @sum_exec_runtime: total time spent on the CPU, in nanoseconds | 445 | * @sum_exec_runtime: total time spent on the CPU, in nanoseconds |
| 446 | * @lock: lock for fields in this struct | ||
| 441 | * | 447 | * |
| 442 | * This structure groups together three kinds of CPU time that are | 448 | * This structure groups together three kinds of CPU time that are |
| 443 | * tracked for threads and thread groups. Most things considering | 449 | * tracked for threads and thread groups. Most things considering |
| @@ -448,6 +454,7 @@ struct task_cputime { | |||
| 448 | cputime_t utime; | 454 | cputime_t utime; |
| 449 | cputime_t stime; | 455 | cputime_t stime; |
| 450 | unsigned long long sum_exec_runtime; | 456 | unsigned long long sum_exec_runtime; |
| 457 | spinlock_t lock; | ||
| 451 | }; | 458 | }; |
| 452 | /* Alternate field names when used to cache expirations. */ | 459 | /* Alternate field names when used to cache expirations. */ |
| 453 | #define prof_exp stime | 460 | #define prof_exp stime |
| @@ -463,7 +470,7 @@ struct task_cputime { | |||
| 463 | * used for thread group CPU clock calculations. | 470 | * used for thread group CPU clock calculations. |
| 464 | */ | 471 | */ |
| 465 | struct thread_group_cputime { | 472 | struct thread_group_cputime { |
| 466 | struct task_cputime *totals; | 473 | struct task_cputime totals; |
| 467 | }; | 474 | }; |
| 468 | 475 | ||
| 469 | /* | 476 | /* |
| @@ -624,7 +631,6 @@ struct user_struct { | |||
| 624 | atomic_t inotify_devs; /* How many inotify devs does this user have opened? */ | 631 | atomic_t inotify_devs; /* How many inotify devs does this user have opened? */ |
| 625 | #endif | 632 | #endif |
| 626 | #ifdef CONFIG_EPOLL | 633 | #ifdef CONFIG_EPOLL |
| 627 | atomic_t epoll_devs; /* The number of epoll descriptors currently open */ | ||
| 628 | atomic_t epoll_watches; /* The number of file descriptors currently watched */ | 634 | atomic_t epoll_watches; /* The number of file descriptors currently watched */ |
| 629 | #endif | 635 | #endif |
| 630 | #ifdef CONFIG_POSIX_MQUEUE | 636 | #ifdef CONFIG_POSIX_MQUEUE |
| @@ -758,20 +764,51 @@ enum cpu_idle_type { | |||
| 758 | #define SD_SERIALIZE 1024 /* Only a single load balancing instance */ | 764 | #define SD_SERIALIZE 1024 /* Only a single load balancing instance */ |
| 759 | #define SD_WAKE_IDLE_FAR 2048 /* Gain latency sacrificing cache hit */ | 765 | #define SD_WAKE_IDLE_FAR 2048 /* Gain latency sacrificing cache hit */ |
| 760 | 766 | ||
| 761 | #define BALANCE_FOR_MC_POWER \ | 767 | enum powersavings_balance_level { |
| 762 | (sched_smt_power_savings ? SD_POWERSAVINGS_BALANCE : 0) | 768 | POWERSAVINGS_BALANCE_NONE = 0, /* No power saving load balance */ |
| 769 | POWERSAVINGS_BALANCE_BASIC, /* Fill one thread/core/package | ||
| 770 | * first for long running threads | ||
| 771 | */ | ||
| 772 | POWERSAVINGS_BALANCE_WAKEUP, /* Also bias task wakeups to semi-idle | ||
| 773 | * cpu package for power savings | ||
| 774 | */ | ||
| 775 | MAX_POWERSAVINGS_BALANCE_LEVELS | ||
| 776 | }; | ||
| 763 | 777 | ||
| 764 | #define BALANCE_FOR_PKG_POWER \ | 778 | extern int sched_mc_power_savings, sched_smt_power_savings; |
| 765 | ((sched_mc_power_savings || sched_smt_power_savings) ? \ | ||
| 766 | SD_POWERSAVINGS_BALANCE : 0) | ||
| 767 | 779 | ||
| 768 | #define test_sd_parent(sd, flag) ((sd->parent && \ | 780 | static inline int sd_balance_for_mc_power(void) |
| 769 | (sd->parent->flags & flag)) ? 1 : 0) | 781 | { |
| 782 | if (sched_smt_power_savings) | ||
| 783 | return SD_POWERSAVINGS_BALANCE; | ||
| 770 | 784 | ||
| 785 | return 0; | ||
| 786 | } | ||
| 787 | |||
| 788 | static inline int sd_balance_for_package_power(void) | ||
| 789 | { | ||
| 790 | if (sched_mc_power_savings | sched_smt_power_savings) | ||
| 791 | return SD_POWERSAVINGS_BALANCE; | ||
| 792 | |||
| 793 | return 0; | ||
| 794 | } | ||
| 795 | |||
| 796 | /* | ||
| 797 | * Optimise SD flags for power savings: | ||
| 798 | * SD_BALANCE_NEWIDLE helps agressive task consolidation and power savings. | ||
| 799 | * Keep default SD flags if sched_{smt,mc}_power_saving=0 | ||
| 800 | */ | ||
| 801 | |||
| 802 | static inline int sd_power_saving_flags(void) | ||
| 803 | { | ||
| 804 | if (sched_mc_power_savings | sched_smt_power_savings) | ||
| 805 | return SD_BALANCE_NEWIDLE; | ||
| 806 | |||
| 807 | return 0; | ||
| 808 | } | ||
| 771 | 809 | ||
| 772 | struct sched_group { | 810 | struct sched_group { |
| 773 | struct sched_group *next; /* Must be a circular list */ | 811 | struct sched_group *next; /* Must be a circular list */ |
| 774 | cpumask_t cpumask; | ||
| 775 | 812 | ||
| 776 | /* | 813 | /* |
| 777 | * CPU power of this group, SCHED_LOAD_SCALE being max power for a | 814 | * CPU power of this group, SCHED_LOAD_SCALE being max power for a |
| @@ -784,8 +821,15 @@ struct sched_group { | |||
| 784 | * (see include/linux/reciprocal_div.h) | 821 | * (see include/linux/reciprocal_div.h) |
| 785 | */ | 822 | */ |
| 786 | u32 reciprocal_cpu_power; | 823 | u32 reciprocal_cpu_power; |
| 824 | |||
| 825 | unsigned long cpumask[]; | ||
| 787 | }; | 826 | }; |
| 788 | 827 | ||
| 828 | static inline struct cpumask *sched_group_cpus(struct sched_group *sg) | ||
| 829 | { | ||
| 830 | return to_cpumask(sg->cpumask); | ||
| 831 | } | ||
| 832 | |||
| 789 | enum sched_domain_level { | 833 | enum sched_domain_level { |
| 790 | SD_LV_NONE = 0, | 834 | SD_LV_NONE = 0, |
| 791 | SD_LV_SIBLING, | 835 | SD_LV_SIBLING, |
| @@ -809,7 +853,6 @@ struct sched_domain { | |||
| 809 | struct sched_domain *parent; /* top domain must be null terminated */ | 853 | struct sched_domain *parent; /* top domain must be null terminated */ |
| 810 | struct sched_domain *child; /* bottom domain must be null terminated */ | 854 | struct sched_domain *child; /* bottom domain must be null terminated */ |
| 811 | struct sched_group *groups; /* the balancing groups of the domain */ | 855 | struct sched_group *groups; /* the balancing groups of the domain */ |
| 812 | cpumask_t span; /* span of all CPUs in this domain */ | ||
| 813 | unsigned long min_interval; /* Minimum balance interval ms */ | 856 | unsigned long min_interval; /* Minimum balance interval ms */ |
| 814 | unsigned long max_interval; /* Maximum balance interval ms */ | 857 | unsigned long max_interval; /* Maximum balance interval ms */ |
| 815 | unsigned int busy_factor; /* less balancing by factor if busy */ | 858 | unsigned int busy_factor; /* less balancing by factor if busy */ |
| @@ -864,18 +907,34 @@ struct sched_domain { | |||
| 864 | #ifdef CONFIG_SCHED_DEBUG | 907 | #ifdef CONFIG_SCHED_DEBUG |
| 865 | char *name; | 908 | char *name; |
| 866 | #endif | 909 | #endif |
| 910 | |||
| 911 | /* span of all CPUs in this domain */ | ||
| 912 | unsigned long span[]; | ||
| 867 | }; | 913 | }; |
| 868 | 914 | ||
| 869 | extern void partition_sched_domains(int ndoms_new, cpumask_t *doms_new, | 915 | static inline struct cpumask *sched_domain_span(struct sched_domain *sd) |
| 916 | { | ||
| 917 | return to_cpumask(sd->span); | ||
| 918 | } | ||
| 919 | |||
| 920 | extern void partition_sched_domains(int ndoms_new, struct cpumask *doms_new, | ||
| 870 | struct sched_domain_attr *dattr_new); | 921 | struct sched_domain_attr *dattr_new); |
| 871 | extern int arch_reinit_sched_domains(void); | 922 | |
| 923 | /* Test a flag in parent sched domain */ | ||
| 924 | static inline int test_sd_parent(struct sched_domain *sd, int flag) | ||
| 925 | { | ||
| 926 | if (sd->parent && (sd->parent->flags & flag)) | ||
| 927 | return 1; | ||
| 928 | |||
| 929 | return 0; | ||
| 930 | } | ||
| 872 | 931 | ||
| 873 | #else /* CONFIG_SMP */ | 932 | #else /* CONFIG_SMP */ |
| 874 | 933 | ||
| 875 | struct sched_domain_attr; | 934 | struct sched_domain_attr; |
| 876 | 935 | ||
| 877 | static inline void | 936 | static inline void |
| 878 | partition_sched_domains(int ndoms_new, cpumask_t *doms_new, | 937 | partition_sched_domains(int ndoms_new, struct cpumask *doms_new, |
| 879 | struct sched_domain_attr *dattr_new) | 938 | struct sched_domain_attr *dattr_new) |
| 880 | { | 939 | { |
| 881 | } | 940 | } |
| @@ -926,7 +985,7 @@ struct sched_class { | |||
| 926 | void (*task_wake_up) (struct rq *this_rq, struct task_struct *task); | 985 | void (*task_wake_up) (struct rq *this_rq, struct task_struct *task); |
| 927 | 986 | ||
| 928 | void (*set_cpus_allowed)(struct task_struct *p, | 987 | void (*set_cpus_allowed)(struct task_struct *p, |
| 929 | const cpumask_t *newmask); | 988 | const struct cpumask *newmask); |
| 930 | 989 | ||
| 931 | void (*rq_online)(struct rq *rq); | 990 | void (*rq_online)(struct rq *rq); |
| 932 | void (*rq_offline)(struct rq *rq); | 991 | void (*rq_offline)(struct rq *rq); |
| @@ -1579,12 +1638,12 @@ extern cputime_t task_gtime(struct task_struct *p); | |||
| 1579 | 1638 | ||
| 1580 | #ifdef CONFIG_SMP | 1639 | #ifdef CONFIG_SMP |
| 1581 | extern int set_cpus_allowed_ptr(struct task_struct *p, | 1640 | extern int set_cpus_allowed_ptr(struct task_struct *p, |
| 1582 | const cpumask_t *new_mask); | 1641 | const struct cpumask *new_mask); |
| 1583 | #else | 1642 | #else |
| 1584 | static inline int set_cpus_allowed_ptr(struct task_struct *p, | 1643 | static inline int set_cpus_allowed_ptr(struct task_struct *p, |
| 1585 | const cpumask_t *new_mask) | 1644 | const struct cpumask *new_mask) |
| 1586 | { | 1645 | { |
| 1587 | if (!cpu_isset(0, *new_mask)) | 1646 | if (!cpumask_test_cpu(0, new_mask)) |
| 1588 | return -EINVAL; | 1647 | return -EINVAL; |
| 1589 | return 0; | 1648 | return 0; |
| 1590 | } | 1649 | } |
| @@ -1651,16 +1710,16 @@ extern void wake_up_idle_cpu(int cpu); | |||
| 1651 | static inline void wake_up_idle_cpu(int cpu) { } | 1710 | static inline void wake_up_idle_cpu(int cpu) { } |
| 1652 | #endif | 1711 | #endif |
| 1653 | 1712 | ||
| 1654 | #ifdef CONFIG_SCHED_DEBUG | ||
| 1655 | extern unsigned int sysctl_sched_latency; | 1713 | extern unsigned int sysctl_sched_latency; |
| 1656 | extern unsigned int sysctl_sched_min_granularity; | 1714 | extern unsigned int sysctl_sched_min_granularity; |
| 1657 | extern unsigned int sysctl_sched_wakeup_granularity; | 1715 | extern unsigned int sysctl_sched_wakeup_granularity; |
| 1716 | extern unsigned int sysctl_sched_shares_ratelimit; | ||
| 1717 | extern unsigned int sysctl_sched_shares_thresh; | ||
| 1718 | #ifdef CONFIG_SCHED_DEBUG | ||
| 1658 | extern unsigned int sysctl_sched_child_runs_first; | 1719 | extern unsigned int sysctl_sched_child_runs_first; |
| 1659 | extern unsigned int sysctl_sched_features; | 1720 | extern unsigned int sysctl_sched_features; |
| 1660 | extern unsigned int sysctl_sched_migration_cost; | 1721 | extern unsigned int sysctl_sched_migration_cost; |
| 1661 | extern unsigned int sysctl_sched_nr_migrate; | 1722 | extern unsigned int sysctl_sched_nr_migrate; |
| 1662 | extern unsigned int sysctl_sched_shares_ratelimit; | ||
| 1663 | extern unsigned int sysctl_sched_shares_thresh; | ||
| 1664 | 1723 | ||
| 1665 | int sched_nr_latency_handler(struct ctl_table *table, int write, | 1724 | int sched_nr_latency_handler(struct ctl_table *table, int write, |
| 1666 | struct file *file, void __user *buffer, size_t *length, | 1725 | struct file *file, void __user *buffer, size_t *length, |
| @@ -2125,24 +2184,30 @@ static inline int spin_needbreak(spinlock_t *lock) | |||
| 2125 | * Thread group CPU time accounting. | 2184 | * Thread group CPU time accounting. |
| 2126 | */ | 2185 | */ |
| 2127 | 2186 | ||
| 2128 | extern int thread_group_cputime_alloc(struct task_struct *); | 2187 | static inline |
| 2129 | extern void thread_group_cputime(struct task_struct *, struct task_cputime *); | 2188 | void thread_group_cputime(struct task_struct *tsk, struct task_cputime *times) |
| 2130 | |||
| 2131 | static inline void thread_group_cputime_init(struct signal_struct *sig) | ||
| 2132 | { | 2189 | { |
| 2133 | sig->cputime.totals = NULL; | 2190 | struct task_cputime *totals = &tsk->signal->cputime.totals; |
| 2191 | unsigned long flags; | ||
| 2192 | |||
| 2193 | spin_lock_irqsave(&totals->lock, flags); | ||
| 2194 | *times = *totals; | ||
| 2195 | spin_unlock_irqrestore(&totals->lock, flags); | ||
| 2134 | } | 2196 | } |
| 2135 | 2197 | ||
| 2136 | static inline int thread_group_cputime_clone_thread(struct task_struct *curr) | 2198 | static inline void thread_group_cputime_init(struct signal_struct *sig) |
| 2137 | { | 2199 | { |
| 2138 | if (curr->signal->cputime.totals) | 2200 | sig->cputime.totals = (struct task_cputime){ |
| 2139 | return 0; | 2201 | .utime = cputime_zero, |
| 2140 | return thread_group_cputime_alloc(curr); | 2202 | .stime = cputime_zero, |
| 2203 | .sum_exec_runtime = 0, | ||
| 2204 | }; | ||
| 2205 | |||
| 2206 | spin_lock_init(&sig->cputime.totals.lock); | ||
| 2141 | } | 2207 | } |
| 2142 | 2208 | ||
| 2143 | static inline void thread_group_cputime_free(struct signal_struct *sig) | 2209 | static inline void thread_group_cputime_free(struct signal_struct *sig) |
| 2144 | { | 2210 | { |
| 2145 | free_percpu(sig->cputime.totals); | ||
| 2146 | } | 2211 | } |
| 2147 | 2212 | ||
| 2148 | /* | 2213 | /* |
| @@ -2195,10 +2260,8 @@ __trace_special(void *__tr, void *__data, | |||
| 2195 | } | 2260 | } |
| 2196 | #endif | 2261 | #endif |
| 2197 | 2262 | ||
| 2198 | extern long sched_setaffinity(pid_t pid, const cpumask_t *new_mask); | 2263 | extern long sched_setaffinity(pid_t pid, const struct cpumask *new_mask); |
| 2199 | extern long sched_getaffinity(pid_t pid, cpumask_t *mask); | 2264 | extern long sched_getaffinity(pid_t pid, struct cpumask *mask); |
| 2200 | |||
| 2201 | extern int sched_mc_power_savings, sched_smt_power_savings; | ||
| 2202 | 2265 | ||
| 2203 | extern void normalize_rt_tasks(void); | 2266 | extern void normalize_rt_tasks(void); |
| 2204 | 2267 | ||
diff --git a/include/linux/security.h b/include/linux/security.h index f9c390494f18..1f2ab6353c00 100644 --- a/include/linux/security.h +++ b/include/linux/security.h | |||
| @@ -336,17 +336,37 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts) | |||
| 336 | * @dir contains the inode structure of the parent directory of the new link. | 336 | * @dir contains the inode structure of the parent directory of the new link. |
| 337 | * @new_dentry contains the dentry structure for the new link. | 337 | * @new_dentry contains the dentry structure for the new link. |
| 338 | * Return 0 if permission is granted. | 338 | * Return 0 if permission is granted. |
| 339 | * @path_link: | ||
| 340 | * Check permission before creating a new hard link to a file. | ||
| 341 | * @old_dentry contains the dentry structure for an existing link | ||
| 342 | * to the file. | ||
| 343 | * @new_dir contains the path structure of the parent directory of | ||
| 344 | * the new link. | ||
| 345 | * @new_dentry contains the dentry structure for the new link. | ||
| 346 | * Return 0 if permission is granted. | ||
| 339 | * @inode_unlink: | 347 | * @inode_unlink: |
| 340 | * Check the permission to remove a hard link to a file. | 348 | * Check the permission to remove a hard link to a file. |
| 341 | * @dir contains the inode structure of parent directory of the file. | 349 | * @dir contains the inode structure of parent directory of the file. |
| 342 | * @dentry contains the dentry structure for file to be unlinked. | 350 | * @dentry contains the dentry structure for file to be unlinked. |
| 343 | * Return 0 if permission is granted. | 351 | * Return 0 if permission is granted. |
| 352 | * @path_unlink: | ||
| 353 | * Check the permission to remove a hard link to a file. | ||
| 354 | * @dir contains the path structure of parent directory of the file. | ||
| 355 | * @dentry contains the dentry structure for file to be unlinked. | ||
| 356 | * Return 0 if permission is granted. | ||
| 344 | * @inode_symlink: | 357 | * @inode_symlink: |
| 345 | * Check the permission to create a symbolic link to a file. | 358 | * Check the permission to create a symbolic link to a file. |
| 346 | * @dir contains the inode structure of parent directory of the symbolic link. | 359 | * @dir contains the inode structure of parent directory of the symbolic link. |
| 347 | * @dentry contains the dentry structure of the symbolic link. | 360 | * @dentry contains the dentry structure of the symbolic link. |
| 348 | * @old_name contains the pathname of file. | 361 | * @old_name contains the pathname of file. |
| 349 | * Return 0 if permission is granted. | 362 | * Return 0 if permission is granted. |
| 363 | * @path_symlink: | ||
| 364 | * Check the permission to create a symbolic link to a file. | ||
| 365 | * @dir contains the path structure of parent directory of | ||
| 366 | * the symbolic link. | ||
| 367 | * @dentry contains the dentry structure of the symbolic link. | ||
| 368 | * @old_name contains the pathname of file. | ||
| 369 | * Return 0 if permission is granted. | ||
| 350 | * @inode_mkdir: | 370 | * @inode_mkdir: |
| 351 | * Check permissions to create a new directory in the existing directory | 371 | * Check permissions to create a new directory in the existing directory |
| 352 | * associated with inode strcture @dir. | 372 | * associated with inode strcture @dir. |
| @@ -354,11 +374,25 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts) | |||
| 354 | * @dentry contains the dentry structure of new directory. | 374 | * @dentry contains the dentry structure of new directory. |
| 355 | * @mode contains the mode of new directory. | 375 | * @mode contains the mode of new directory. |
| 356 | * Return 0 if permission is granted. | 376 | * Return 0 if permission is granted. |
| 377 | * @path_mkdir: | ||
| 378 | * Check permissions to create a new directory in the existing directory | ||
| 379 | * associated with path strcture @path. | ||
| 380 | * @dir containst the path structure of parent of the directory | ||
| 381 | * to be created. | ||
| 382 | * @dentry contains the dentry structure of new directory. | ||
| 383 | * @mode contains the mode of new directory. | ||
| 384 | * Return 0 if permission is granted. | ||
| 357 | * @inode_rmdir: | 385 | * @inode_rmdir: |
| 358 | * Check the permission to remove a directory. | 386 | * Check the permission to remove a directory. |
| 359 | * @dir contains the inode structure of parent of the directory to be removed. | 387 | * @dir contains the inode structure of parent of the directory to be removed. |
| 360 | * @dentry contains the dentry structure of directory to be removed. | 388 | * @dentry contains the dentry structure of directory to be removed. |
| 361 | * Return 0 if permission is granted. | 389 | * Return 0 if permission is granted. |
| 390 | * @path_rmdir: | ||
| 391 | * Check the permission to remove a directory. | ||
| 392 | * @dir contains the path structure of parent of the directory to be | ||
| 393 | * removed. | ||
| 394 | * @dentry contains the dentry structure of directory to be removed. | ||
| 395 | * Return 0 if permission is granted. | ||
| 362 | * @inode_mknod: | 396 | * @inode_mknod: |
| 363 | * Check permissions when creating a special file (or a socket or a fifo | 397 | * Check permissions when creating a special file (or a socket or a fifo |
| 364 | * file created via the mknod system call). Note that if mknod operation | 398 | * file created via the mknod system call). Note that if mknod operation |
| @@ -369,6 +403,15 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts) | |||
| 369 | * @mode contains the mode of the new file. | 403 | * @mode contains the mode of the new file. |
| 370 | * @dev contains the device number. | 404 | * @dev contains the device number. |
| 371 | * Return 0 if permission is granted. | 405 | * Return 0 if permission is granted. |
| 406 | * @path_mknod: | ||
| 407 | * Check permissions when creating a file. Note that this hook is called | ||
| 408 | * even if mknod operation is being done for a regular file. | ||
| 409 | * @dir contains the path structure of parent of the new file. | ||
| 410 | * @dentry contains the dentry structure of the new file. | ||
| 411 | * @mode contains the mode of the new file. | ||
| 412 | * @dev contains the undecoded device number. Use new_decode_dev() to get | ||
| 413 | * the decoded device number. | ||
| 414 | * Return 0 if permission is granted. | ||
| 372 | * @inode_rename: | 415 | * @inode_rename: |
| 373 | * Check for permission to rename a file or directory. | 416 | * Check for permission to rename a file or directory. |
| 374 | * @old_dir contains the inode structure for parent of the old link. | 417 | * @old_dir contains the inode structure for parent of the old link. |
| @@ -376,6 +419,13 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts) | |||
| 376 | * @new_dir contains the inode structure for parent of the new link. | 419 | * @new_dir contains the inode structure for parent of the new link. |
| 377 | * @new_dentry contains the dentry structure of the new link. | 420 | * @new_dentry contains the dentry structure of the new link. |
| 378 | * Return 0 if permission is granted. | 421 | * Return 0 if permission is granted. |
| 422 | * @path_rename: | ||
| 423 | * Check for permission to rename a file or directory. | ||
| 424 | * @old_dir contains the path structure for parent of the old link. | ||
| 425 | * @old_dentry contains the dentry structure of the old link. | ||
| 426 | * @new_dir contains the path structure for parent of the new link. | ||
| 427 | * @new_dentry contains the dentry structure of the new link. | ||
| 428 | * Return 0 if permission is granted. | ||
| 379 | * @inode_readlink: | 429 | * @inode_readlink: |
| 380 | * Check the permission to read the symbolic link. | 430 | * Check the permission to read the symbolic link. |
| 381 | * @dentry contains the dentry structure for the file link. | 431 | * @dentry contains the dentry structure for the file link. |
| @@ -404,6 +454,12 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts) | |||
| 404 | * @dentry contains the dentry structure for the file. | 454 | * @dentry contains the dentry structure for the file. |
| 405 | * @attr is the iattr structure containing the new file attributes. | 455 | * @attr is the iattr structure containing the new file attributes. |
| 406 | * Return 0 if permission is granted. | 456 | * Return 0 if permission is granted. |
| 457 | * @path_truncate: | ||
| 458 | * Check permission before truncating a file. | ||
| 459 | * @path contains the path structure for the file. | ||
| 460 | * @length is the new length of the file. | ||
| 461 | * @time_attrs is the flags passed to do_truncate(). | ||
| 462 | * Return 0 if permission is granted. | ||
| 407 | * @inode_getattr: | 463 | * @inode_getattr: |
| 408 | * Check permission before obtaining file attributes. | 464 | * Check permission before obtaining file attributes. |
| 409 | * @mnt is the vfsmount where the dentry was looked up | 465 | * @mnt is the vfsmount where the dentry was looked up |
| @@ -1336,6 +1392,22 @@ struct security_operations { | |||
| 1336 | struct super_block *newsb); | 1392 | struct super_block *newsb); |
| 1337 | int (*sb_parse_opts_str) (char *options, struct security_mnt_opts *opts); | 1393 | int (*sb_parse_opts_str) (char *options, struct security_mnt_opts *opts); |
| 1338 | 1394 | ||
| 1395 | #ifdef CONFIG_SECURITY_PATH | ||
| 1396 | int (*path_unlink) (struct path *dir, struct dentry *dentry); | ||
| 1397 | int (*path_mkdir) (struct path *dir, struct dentry *dentry, int mode); | ||
| 1398 | int (*path_rmdir) (struct path *dir, struct dentry *dentry); | ||
| 1399 | int (*path_mknod) (struct path *dir, struct dentry *dentry, int mode, | ||
| 1400 | unsigned int dev); | ||
| 1401 | int (*path_truncate) (struct path *path, loff_t length, | ||
| 1402 | unsigned int time_attrs); | ||
| 1403 | int (*path_symlink) (struct path *dir, struct dentry *dentry, | ||
| 1404 | const char *old_name); | ||
| 1405 | int (*path_link) (struct dentry *old_dentry, struct path *new_dir, | ||
| 1406 | struct dentry *new_dentry); | ||
| 1407 | int (*path_rename) (struct path *old_dir, struct dentry *old_dentry, | ||
| 1408 | struct path *new_dir, struct dentry *new_dentry); | ||
| 1409 | #endif | ||
| 1410 | |||
| 1339 | int (*inode_alloc_security) (struct inode *inode); | 1411 | int (*inode_alloc_security) (struct inode *inode); |
| 1340 | void (*inode_free_security) (struct inode *inode); | 1412 | void (*inode_free_security) (struct inode *inode); |
| 1341 | int (*inode_init_security) (struct inode *inode, struct inode *dir, | 1413 | int (*inode_init_security) (struct inode *inode, struct inode *dir, |
| @@ -2728,6 +2800,71 @@ static inline void security_skb_classify_flow(struct sk_buff *skb, struct flowi | |||
| 2728 | 2800 | ||
| 2729 | #endif /* CONFIG_SECURITY_NETWORK_XFRM */ | 2801 | #endif /* CONFIG_SECURITY_NETWORK_XFRM */ |
| 2730 | 2802 | ||
| 2803 | #ifdef CONFIG_SECURITY_PATH | ||
| 2804 | int security_path_unlink(struct path *dir, struct dentry *dentry); | ||
| 2805 | int security_path_mkdir(struct path *dir, struct dentry *dentry, int mode); | ||
| 2806 | int security_path_rmdir(struct path *dir, struct dentry *dentry); | ||
| 2807 | int security_path_mknod(struct path *dir, struct dentry *dentry, int mode, | ||
| 2808 | unsigned int dev); | ||
| 2809 | int security_path_truncate(struct path *path, loff_t length, | ||
| 2810 | unsigned int time_attrs); | ||
| 2811 | int security_path_symlink(struct path *dir, struct dentry *dentry, | ||
| 2812 | const char *old_name); | ||
| 2813 | int security_path_link(struct dentry *old_dentry, struct path *new_dir, | ||
| 2814 | struct dentry *new_dentry); | ||
| 2815 | int security_path_rename(struct path *old_dir, struct dentry *old_dentry, | ||
| 2816 | struct path *new_dir, struct dentry *new_dentry); | ||
| 2817 | #else /* CONFIG_SECURITY_PATH */ | ||
| 2818 | static inline int security_path_unlink(struct path *dir, struct dentry *dentry) | ||
| 2819 | { | ||
| 2820 | return 0; | ||
| 2821 | } | ||
| 2822 | |||
| 2823 | static inline int security_path_mkdir(struct path *dir, struct dentry *dentry, | ||
| 2824 | int mode) | ||
| 2825 | { | ||
| 2826 | return 0; | ||
| 2827 | } | ||
| 2828 | |||
| 2829 | static inline int security_path_rmdir(struct path *dir, struct dentry *dentry) | ||
| 2830 | { | ||
| 2831 | return 0; | ||
| 2832 | } | ||
| 2833 | |||
| 2834 | static inline int security_path_mknod(struct path *dir, struct dentry *dentry, | ||
| 2835 | int mode, unsigned int dev) | ||
| 2836 | { | ||
| 2837 | return 0; | ||
| 2838 | } | ||
| 2839 | |||
| 2840 | static inline int security_path_truncate(struct path *path, loff_t length, | ||
| 2841 | unsigned int time_attrs) | ||
| 2842 | { | ||
| 2843 | return 0; | ||
| 2844 | } | ||
| 2845 | |||
| 2846 | static inline int security_path_symlink(struct path *dir, struct dentry *dentry, | ||
| 2847 | const char *old_name) | ||
| 2848 | { | ||
| 2849 | return 0; | ||
| 2850 | } | ||
| 2851 | |||
| 2852 | static inline int security_path_link(struct dentry *old_dentry, | ||
| 2853 | struct path *new_dir, | ||
| 2854 | struct dentry *new_dentry) | ||
| 2855 | { | ||
| 2856 | return 0; | ||
| 2857 | } | ||
| 2858 | |||
| 2859 | static inline int security_path_rename(struct path *old_dir, | ||
| 2860 | struct dentry *old_dentry, | ||
| 2861 | struct path *new_dir, | ||
| 2862 | struct dentry *new_dentry) | ||
| 2863 | { | ||
| 2864 | return 0; | ||
| 2865 | } | ||
| 2866 | #endif /* CONFIG_SECURITY_PATH */ | ||
| 2867 | |||
| 2731 | #ifdef CONFIG_KEYS | 2868 | #ifdef CONFIG_KEYS |
| 2732 | #ifdef CONFIG_SECURITY | 2869 | #ifdef CONFIG_SECURITY |
| 2733 | 2870 | ||
diff --git a/include/linux/seq_file.h b/include/linux/seq_file.h index b3dfa72f13b9..40ea5058c2ec 100644 --- a/include/linux/seq_file.h +++ b/include/linux/seq_file.h | |||
| @@ -50,10 +50,11 @@ int seq_path(struct seq_file *, struct path *, char *); | |||
| 50 | int seq_dentry(struct seq_file *, struct dentry *, char *); | 50 | int seq_dentry(struct seq_file *, struct dentry *, char *); |
| 51 | int seq_path_root(struct seq_file *m, struct path *path, struct path *root, | 51 | int seq_path_root(struct seq_file *m, struct path *path, struct path *root, |
| 52 | char *esc); | 52 | char *esc); |
| 53 | int seq_bitmap(struct seq_file *m, unsigned long *bits, unsigned int nr_bits); | 53 | int seq_bitmap(struct seq_file *m, const unsigned long *bits, |
| 54 | static inline int seq_cpumask(struct seq_file *m, cpumask_t *mask) | 54 | unsigned int nr_bits); |
| 55 | static inline int seq_cpumask(struct seq_file *m, const struct cpumask *mask) | ||
| 55 | { | 56 | { |
| 56 | return seq_bitmap(m, mask->bits, NR_CPUS); | 57 | return seq_bitmap(m, mask->bits, nr_cpu_ids); |
| 57 | } | 58 | } |
| 58 | 59 | ||
| 59 | static inline int seq_nodemask(struct seq_file *m, nodemask_t *mask) | 60 | static inline int seq_nodemask(struct seq_file *m, nodemask_t *mask) |
diff --git a/include/linux/serial.h b/include/linux/serial.h index 1ea8d9265bf6..9136cc5608c3 100644 --- a/include/linux/serial.h +++ b/include/linux/serial.h | |||
| @@ -10,8 +10,9 @@ | |||
| 10 | #ifndef _LINUX_SERIAL_H | 10 | #ifndef _LINUX_SERIAL_H |
| 11 | #define _LINUX_SERIAL_H | 11 | #define _LINUX_SERIAL_H |
| 12 | 12 | ||
| 13 | #ifdef __KERNEL__ | ||
| 14 | #include <linux/types.h> | 13 | #include <linux/types.h> |
| 14 | |||
| 15 | #ifdef __KERNEL__ | ||
| 15 | #include <asm/page.h> | 16 | #include <asm/page.h> |
| 16 | 17 | ||
| 17 | /* | 18 | /* |
diff --git a/include/linux/serial_8250.h b/include/linux/serial_8250.h index 3d37c94abbc8..d4d2a78ad43e 100644 --- a/include/linux/serial_8250.h +++ b/include/linux/serial_8250.h | |||
| @@ -28,6 +28,9 @@ struct plat_serial8250_port { | |||
| 28 | unsigned char iotype; /* UPIO_* */ | 28 | unsigned char iotype; /* UPIO_* */ |
| 29 | unsigned char hub6; | 29 | unsigned char hub6; |
| 30 | upf_t flags; /* UPF_* flags */ | 30 | upf_t flags; /* UPF_* flags */ |
| 31 | unsigned int type; /* If UPF_FIXED_TYPE */ | ||
| 32 | unsigned int (*serial_in)(struct uart_port *, int); | ||
| 33 | void (*serial_out)(struct uart_port *, int, int); | ||
| 31 | }; | 34 | }; |
| 32 | 35 | ||
| 33 | /* | 36 | /* |
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index feb3b939ec4b..90bbbf0b1161 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h | |||
| @@ -40,7 +40,8 @@ | |||
| 40 | #define PORT_NS16550A 14 | 40 | #define PORT_NS16550A 14 |
| 41 | #define PORT_XSCALE 15 | 41 | #define PORT_XSCALE 15 |
| 42 | #define PORT_RM9000 16 /* PMC-Sierra RM9xxx internal UART */ | 42 | #define PORT_RM9000 16 /* PMC-Sierra RM9xxx internal UART */ |
| 43 | #define PORT_MAX_8250 16 /* max port ID */ | 43 | #define PORT_OCTEON 17 /* Cavium OCTEON internal UART */ |
| 44 | #define PORT_MAX_8250 17 /* max port ID */ | ||
| 44 | 45 | ||
| 45 | /* | 46 | /* |
| 46 | * ARM specific type numbers. These are not currently guaranteed | 47 | * ARM specific type numbers. These are not currently guaranteed |
| @@ -160,6 +161,9 @@ | |||
| 160 | 161 | ||
| 161 | #define PORT_S3C6400 84 | 162 | #define PORT_S3C6400 84 |
| 162 | 163 | ||
| 164 | /* NWPSERIAL */ | ||
| 165 | #define PORT_NWPSERIAL 85 | ||
| 166 | |||
| 163 | #ifdef __KERNEL__ | 167 | #ifdef __KERNEL__ |
| 164 | 168 | ||
| 165 | #include <linux/compiler.h> | 169 | #include <linux/compiler.h> |
| @@ -248,6 +252,8 @@ struct uart_port { | |||
| 248 | spinlock_t lock; /* port lock */ | 252 | spinlock_t lock; /* port lock */ |
| 249 | unsigned long iobase; /* in/out[bwl] */ | 253 | unsigned long iobase; /* in/out[bwl] */ |
| 250 | unsigned char __iomem *membase; /* read/write[bwl] */ | 254 | unsigned char __iomem *membase; /* read/write[bwl] */ |
| 255 | unsigned int (*serial_in)(struct uart_port *, int); | ||
| 256 | void (*serial_out)(struct uart_port *, int, int); | ||
| 251 | unsigned int irq; /* irq number */ | 257 | unsigned int irq; /* irq number */ |
| 252 | unsigned int uartclk; /* base uart clock */ | 258 | unsigned int uartclk; /* base uart clock */ |
| 253 | unsigned int fifosize; /* tx fifo size */ | 259 | unsigned int fifosize; /* tx fifo size */ |
| @@ -293,6 +299,8 @@ struct uart_port { | |||
| 293 | #define UPF_MAGIC_MULTIPLIER ((__force upf_t) (1 << 16)) | 299 | #define UPF_MAGIC_MULTIPLIER ((__force upf_t) (1 << 16)) |
| 294 | #define UPF_CONS_FLOW ((__force upf_t) (1 << 23)) | 300 | #define UPF_CONS_FLOW ((__force upf_t) (1 << 23)) |
| 295 | #define UPF_SHARE_IRQ ((__force upf_t) (1 << 24)) | 301 | #define UPF_SHARE_IRQ ((__force upf_t) (1 << 24)) |
| 302 | /* The exact UART type is known and should not be probed. */ | ||
| 303 | #define UPF_FIXED_TYPE ((__force upf_t) (1 << 27)) | ||
| 296 | #define UPF_BOOT_AUTOCONF ((__force upf_t) (1 << 28)) | 304 | #define UPF_BOOT_AUTOCONF ((__force upf_t) (1 << 28)) |
| 297 | #define UPF_FIXED_PORT ((__force upf_t) (1 << 29)) | 305 | #define UPF_FIXED_PORT ((__force upf_t) (1 << 29)) |
| 298 | #define UPF_DEAD ((__force upf_t) (1 << 30)) | 306 | #define UPF_DEAD ((__force upf_t) (1 << 30)) |
| @@ -316,35 +324,13 @@ struct uart_port { | |||
| 316 | }; | 324 | }; |
| 317 | 325 | ||
| 318 | /* | 326 | /* |
| 319 | * This is the state information which is persistent across opens. | ||
| 320 | * The low level driver must not to touch any elements contained | ||
| 321 | * within. | ||
| 322 | */ | ||
| 323 | struct uart_state { | ||
| 324 | unsigned int close_delay; /* msec */ | ||
| 325 | unsigned int closing_wait; /* msec */ | ||
| 326 | |||
| 327 | #define USF_CLOSING_WAIT_INF (0) | ||
| 328 | #define USF_CLOSING_WAIT_NONE (~0U) | ||
| 329 | |||
| 330 | int count; | ||
| 331 | int pm_state; | ||
| 332 | struct uart_info *info; | ||
| 333 | struct uart_port *port; | ||
| 334 | |||
| 335 | struct mutex mutex; | ||
| 336 | }; | ||
| 337 | |||
| 338 | #define UART_XMIT_SIZE PAGE_SIZE | ||
| 339 | |||
| 340 | typedef unsigned int __bitwise__ uif_t; | ||
| 341 | |||
| 342 | /* | ||
| 343 | * This is the state information which is only valid when the port | 327 | * This is the state information which is only valid when the port |
| 344 | * is open; it may be freed by the core driver once the device has | 328 | * is open; it may be cleared the core driver once the device has |
| 345 | * been closed. Either the low level driver or the core can modify | 329 | * been closed. Either the low level driver or the core can modify |
| 346 | * stuff here. | 330 | * stuff here. |
| 347 | */ | 331 | */ |
| 332 | typedef unsigned int __bitwise__ uif_t; | ||
| 333 | |||
| 348 | struct uart_info { | 334 | struct uart_info { |
| 349 | struct tty_port port; | 335 | struct tty_port port; |
| 350 | struct circ_buf xmit; | 336 | struct circ_buf xmit; |
| @@ -366,6 +352,29 @@ struct uart_info { | |||
| 366 | wait_queue_head_t delta_msr_wait; | 352 | wait_queue_head_t delta_msr_wait; |
| 367 | }; | 353 | }; |
| 368 | 354 | ||
| 355 | /* | ||
| 356 | * This is the state information which is persistent across opens. | ||
| 357 | * The low level driver must not to touch any elements contained | ||
| 358 | * within. | ||
| 359 | */ | ||
| 360 | struct uart_state { | ||
| 361 | unsigned int close_delay; /* msec */ | ||
| 362 | unsigned int closing_wait; /* msec */ | ||
| 363 | |||
| 364 | #define USF_CLOSING_WAIT_INF (0) | ||
| 365 | #define USF_CLOSING_WAIT_NONE (~0U) | ||
| 366 | |||
| 367 | int count; | ||
| 368 | int pm_state; | ||
| 369 | struct uart_info info; | ||
| 370 | struct uart_port *port; | ||
| 371 | |||
| 372 | struct mutex mutex; | ||
| 373 | }; | ||
| 374 | |||
| 375 | #define UART_XMIT_SIZE PAGE_SIZE | ||
| 376 | |||
| 377 | |||
| 369 | /* number of characters left in xmit buffer before we ask for more */ | 378 | /* number of characters left in xmit buffer before we ask for more */ |
| 370 | #define WAKEUP_CHARS 256 | 379 | #define WAKEUP_CHARS 256 |
| 371 | 380 | ||
| @@ -439,8 +448,13 @@ int uart_resume_port(struct uart_driver *reg, struct uart_port *port); | |||
| 439 | #define uart_circ_chars_free(circ) \ | 448 | #define uart_circ_chars_free(circ) \ |
| 440 | (CIRC_SPACE((circ)->head, (circ)->tail, UART_XMIT_SIZE)) | 449 | (CIRC_SPACE((circ)->head, (circ)->tail, UART_XMIT_SIZE)) |
| 441 | 450 | ||
| 442 | #define uart_tx_stopped(portp) \ | 451 | static inline int uart_tx_stopped(struct uart_port *port) |
| 443 | ((portp)->info->port.tty->stopped || (portp)->info->port.tty->hw_stopped) | 452 | { |
| 453 | struct tty_struct *tty = port->info->port.tty; | ||
| 454 | if(tty->stopped || tty->hw_stopped) | ||
| 455 | return 1; | ||
| 456 | return 0; | ||
| 457 | } | ||
| 444 | 458 | ||
| 445 | /* | 459 | /* |
| 446 | * The following are helper functions for the low level drivers. | 460 | * The following are helper functions for the low level drivers. |
| @@ -451,7 +465,7 @@ uart_handle_sysrq_char(struct uart_port *port, unsigned int ch) | |||
| 451 | #ifdef SUPPORT_SYSRQ | 465 | #ifdef SUPPORT_SYSRQ |
| 452 | if (port->sysrq) { | 466 | if (port->sysrq) { |
| 453 | if (ch && time_before(jiffies, port->sysrq)) { | 467 | if (ch && time_before(jiffies, port->sysrq)) { |
| 454 | handle_sysrq(ch, port->info ? port->info->port.tty : NULL); | 468 | handle_sysrq(ch, port->info->port.tty); |
| 455 | port->sysrq = 0; | 469 | port->sysrq = 0; |
| 456 | return 1; | 470 | return 1; |
| 457 | } | 471 | } |
diff --git a/include/linux/serio.h b/include/linux/serio.h index 25641d9e0ea8..1bcb357a01a1 100644 --- a/include/linux/serio.h +++ b/include/linux/serio.h | |||
| @@ -213,5 +213,6 @@ static inline void serio_unpin_driver(struct serio *serio) | |||
| 213 | #define SERIO_ZHENHUA 0x36 | 213 | #define SERIO_ZHENHUA 0x36 |
| 214 | #define SERIO_INEXIO 0x37 | 214 | #define SERIO_INEXIO 0x37 |
| 215 | #define SERIO_TOUCHIT213 0x37 | 215 | #define SERIO_TOUCHIT213 0x37 |
| 216 | #define SERIO_W8001 0x39 | ||
| 216 | 217 | ||
| 217 | #endif | 218 | #endif |
diff --git a/include/linux/signalfd.h b/include/linux/signalfd.h index bef0c46d4713..b363b916c909 100644 --- a/include/linux/signalfd.h +++ b/include/linux/signalfd.h | |||
| @@ -8,6 +8,7 @@ | |||
| 8 | #ifndef _LINUX_SIGNALFD_H | 8 | #ifndef _LINUX_SIGNALFD_H |
| 9 | #define _LINUX_SIGNALFD_H | 9 | #define _LINUX_SIGNALFD_H |
| 10 | 10 | ||
| 11 | #include <linux/types.h> | ||
| 11 | /* For O_CLOEXEC and O_NONBLOCK */ | 12 | /* For O_CLOEXEC and O_NONBLOCK */ |
| 12 | #include <linux/fcntl.h> | 13 | #include <linux/fcntl.h> |
| 13 | 14 | ||
diff --git a/include/linux/slab_def.h b/include/linux/slab_def.h index 39c3a5eb8ebe..6ca6a7b66d75 100644 --- a/include/linux/slab_def.h +++ b/include/linux/slab_def.h | |||
| @@ -43,10 +43,7 @@ static inline void *kmalloc(size_t size, gfp_t flags) | |||
| 43 | i++; | 43 | i++; |
| 44 | #include <linux/kmalloc_sizes.h> | 44 | #include <linux/kmalloc_sizes.h> |
| 45 | #undef CACHE | 45 | #undef CACHE |
| 46 | { | 46 | return NULL; |
| 47 | extern void __you_cannot_kmalloc_that_much(void); | ||
| 48 | __you_cannot_kmalloc_that_much(); | ||
| 49 | } | ||
| 50 | found: | 47 | found: |
| 51 | #ifdef CONFIG_ZONE_DMA | 48 | #ifdef CONFIG_ZONE_DMA |
| 52 | if (flags & GFP_DMA) | 49 | if (flags & GFP_DMA) |
| @@ -77,10 +74,7 @@ static inline void *kmalloc_node(size_t size, gfp_t flags, int node) | |||
| 77 | i++; | 74 | i++; |
| 78 | #include <linux/kmalloc_sizes.h> | 75 | #include <linux/kmalloc_sizes.h> |
| 79 | #undef CACHE | 76 | #undef CACHE |
| 80 | { | 77 | return NULL; |
| 81 | extern void __you_cannot_kmalloc_that_much(void); | ||
| 82 | __you_cannot_kmalloc_that_much(); | ||
| 83 | } | ||
| 84 | found: | 78 | found: |
| 85 | #ifdef CONFIG_ZONE_DMA | 79 | #ifdef CONFIG_ZONE_DMA |
| 86 | if (flags & GFP_DMA) | 80 | if (flags & GFP_DMA) |
diff --git a/include/linux/smp.h b/include/linux/smp.h index 6e7ba16ff454..715196b09d67 100644 --- a/include/linux/smp.h +++ b/include/linux/smp.h | |||
| @@ -21,6 +21,12 @@ struct call_single_data { | |||
| 21 | u16 priv; | 21 | u16 priv; |
| 22 | }; | 22 | }; |
| 23 | 23 | ||
| 24 | /* total number of cpus in this system (may exceed NR_CPUS) */ | ||
| 25 | extern unsigned int total_cpus; | ||
| 26 | |||
| 27 | int smp_call_function_single(int cpuid, void (*func) (void *info), void *info, | ||
| 28 | int wait); | ||
| 29 | |||
| 24 | #ifdef CONFIG_SMP | 30 | #ifdef CONFIG_SMP |
| 25 | 31 | ||
| 26 | #include <linux/preempt.h> | 32 | #include <linux/preempt.h> |
| @@ -64,19 +70,18 @@ extern void smp_cpus_done(unsigned int max_cpus); | |||
| 64 | * Call a function on all other processors | 70 | * Call a function on all other processors |
| 65 | */ | 71 | */ |
| 66 | int smp_call_function(void(*func)(void *info), void *info, int wait); | 72 | int smp_call_function(void(*func)(void *info), void *info, int wait); |
| 67 | /* Deprecated: use smp_call_function_many() which uses a cpumask ptr. */ | 73 | void smp_call_function_many(const struct cpumask *mask, |
| 68 | int smp_call_function_mask(cpumask_t mask, void(*func)(void *info), void *info, | 74 | void (*func)(void *info), void *info, bool wait); |
| 69 | int wait); | ||
| 70 | 75 | ||
| 71 | static inline void smp_call_function_many(const struct cpumask *mask, | 76 | /* Deprecated: Use smp_call_function_many which takes a pointer to the mask. */ |
| 72 | void (*func)(void *info), void *info, | 77 | static inline int |
| 73 | int wait) | 78 | smp_call_function_mask(cpumask_t mask, void(*func)(void *info), void *info, |
| 79 | int wait) | ||
| 74 | { | 80 | { |
| 75 | smp_call_function_mask(*mask, func, info, wait); | 81 | smp_call_function_many(&mask, func, info, wait); |
| 82 | return 0; | ||
| 76 | } | 83 | } |
| 77 | 84 | ||
| 78 | int smp_call_function_single(int cpuid, void (*func) (void *info), void *info, | ||
| 79 | int wait); | ||
| 80 | void __smp_call_function_single(int cpuid, struct call_single_data *data); | 85 | void __smp_call_function_single(int cpuid, struct call_single_data *data); |
| 81 | 86 | ||
| 82 | /* | 87 | /* |
| @@ -136,14 +141,6 @@ static inline int up_smp_call_function(void (*func)(void *), void *info) | |||
| 136 | static inline void smp_send_reschedule(int cpu) { } | 141 | static inline void smp_send_reschedule(int cpu) { } |
| 137 | #define num_booting_cpus() 1 | 142 | #define num_booting_cpus() 1 |
| 138 | #define smp_prepare_boot_cpu() do {} while (0) | 143 | #define smp_prepare_boot_cpu() do {} while (0) |
| 139 | #define smp_call_function_single(cpuid, func, info, wait) \ | ||
| 140 | ({ \ | ||
| 141 | WARN_ON(cpuid != 0); \ | ||
| 142 | local_irq_disable(); \ | ||
| 143 | (func)(info); \ | ||
| 144 | local_irq_enable(); \ | ||
| 145 | 0; \ | ||
| 146 | }) | ||
| 147 | #define smp_call_function_mask(mask, func, info, wait) \ | 144 | #define smp_call_function_mask(mask, func, info, wait) \ |
| 148 | (up_smp_call_function(func, info)) | 145 | (up_smp_call_function(func, info)) |
| 149 | #define smp_call_function_many(mask, func, info, wait) \ | 146 | #define smp_call_function_many(mask, func, info, wait) \ |
diff --git a/include/linux/sound.h b/include/linux/sound.h index 9e2a94feed6b..44dcf0570432 100644 --- a/include/linux/sound.h +++ b/include/linux/sound.h | |||
| @@ -25,6 +25,7 @@ | |||
| 25 | #define SND_DEV_AMIDI 13 /* Like /dev/midi (obsolete) */ | 25 | #define SND_DEV_AMIDI 13 /* Like /dev/midi (obsolete) */ |
| 26 | #define SND_DEV_ADMMIDI 14 /* Like /dev/dmmidi (onsolete) */ | 26 | #define SND_DEV_ADMMIDI 14 /* Like /dev/dmmidi (onsolete) */ |
| 27 | 27 | ||
| 28 | #ifdef __KERNEL__ | ||
| 28 | /* | 29 | /* |
| 29 | * Sound core interface functions | 30 | * Sound core interface functions |
| 30 | */ | 31 | */ |
| @@ -40,3 +41,4 @@ extern void unregister_sound_special(int unit); | |||
| 40 | extern void unregister_sound_mixer(int unit); | 41 | extern void unregister_sound_mixer(int unit); |
| 41 | extern void unregister_sound_midi(int unit); | 42 | extern void unregister_sound_midi(int unit); |
| 42 | extern void unregister_sound_dsp(int unit); | 43 | extern void unregister_sound_dsp(int unit); |
| 44 | #endif /* __KERNEL__ */ | ||
diff --git a/include/linux/spi/mmc_spi.h b/include/linux/spi/mmc_spi.h index a3626aedaec9..0f4eb165f254 100644 --- a/include/linux/spi/mmc_spi.h +++ b/include/linux/spi/mmc_spi.h | |||
| @@ -1,9 +1,10 @@ | |||
| 1 | #ifndef __LINUX_SPI_MMC_SPI_H | 1 | #ifndef __LINUX_SPI_MMC_SPI_H |
| 2 | #define __LINUX_SPI_MMC_SPI_H | 2 | #define __LINUX_SPI_MMC_SPI_H |
| 3 | 3 | ||
| 4 | #include <linux/device.h> | ||
| 5 | #include <linux/spi/spi.h> | ||
| 4 | #include <linux/interrupt.h> | 6 | #include <linux/interrupt.h> |
| 5 | 7 | ||
| 6 | struct device; | ||
| 7 | struct mmc_host; | 8 | struct mmc_host; |
| 8 | 9 | ||
| 9 | /* Put this in platform_data of a device being used to manage an MMC/SD | 10 | /* Put this in platform_data of a device being used to manage an MMC/SD |
| @@ -41,4 +42,16 @@ struct mmc_spi_platform_data { | |||
| 41 | void (*setpower)(struct device *, unsigned int maskval); | 42 | void (*setpower)(struct device *, unsigned int maskval); |
| 42 | }; | 43 | }; |
| 43 | 44 | ||
| 45 | #ifdef CONFIG_OF | ||
| 46 | extern struct mmc_spi_platform_data *mmc_spi_get_pdata(struct spi_device *spi); | ||
| 47 | extern void mmc_spi_put_pdata(struct spi_device *spi); | ||
| 48 | #else | ||
| 49 | static inline struct mmc_spi_platform_data * | ||
| 50 | mmc_spi_get_pdata(struct spi_device *spi) | ||
| 51 | { | ||
| 52 | return spi->dev.platform_data; | ||
| 53 | } | ||
| 54 | static inline void mmc_spi_put_pdata(struct spi_device *spi) {} | ||
| 55 | #endif /* CONFIG_OF */ | ||
| 56 | |||
| 44 | #endif /* __LINUX_SPI_MMC_SPI_H */ | 57 | #endif /* __LINUX_SPI_MMC_SPI_H */ |
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index 4be01bb44377..68bb1c501d0d 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h | |||
| @@ -19,6 +19,8 @@ | |||
| 19 | #ifndef __LINUX_SPI_H | 19 | #ifndef __LINUX_SPI_H |
| 20 | #define __LINUX_SPI_H | 20 | #define __LINUX_SPI_H |
| 21 | 21 | ||
| 22 | #include <linux/device.h> | ||
| 23 | |||
| 22 | /* | 24 | /* |
| 23 | * INTERFACES between SPI master-side drivers and SPI infrastructure. | 25 | * INTERFACES between SPI master-side drivers and SPI infrastructure. |
| 24 | * (There's no SPI slave support for Linux yet...) | 26 | * (There's no SPI slave support for Linux yet...) |
| @@ -325,9 +327,9 @@ extern struct spi_master *spi_busnum_to_master(u16 busnum); | |||
| 325 | * @tx_dma: DMA address of tx_buf, if @spi_message.is_dma_mapped | 327 | * @tx_dma: DMA address of tx_buf, if @spi_message.is_dma_mapped |
| 326 | * @rx_dma: DMA address of rx_buf, if @spi_message.is_dma_mapped | 328 | * @rx_dma: DMA address of rx_buf, if @spi_message.is_dma_mapped |
| 327 | * @len: size of rx and tx buffers (in bytes) | 329 | * @len: size of rx and tx buffers (in bytes) |
| 328 | * @speed_hz: Select a speed other then the device default for this | 330 | * @speed_hz: Select a speed other than the device default for this |
| 329 | * transfer. If 0 the default (from @spi_device) is used. | 331 | * transfer. If 0 the default (from @spi_device) is used. |
| 330 | * @bits_per_word: select a bits_per_word other then the device default | 332 | * @bits_per_word: select a bits_per_word other than the device default |
| 331 | * for this transfer. If 0 the default (from @spi_device) is used. | 333 | * for this transfer. If 0 the default (from @spi_device) is used. |
| 332 | * @cs_change: affects chipselect after this transfer completes | 334 | * @cs_change: affects chipselect after this transfer completes |
| 333 | * @delay_usecs: microseconds to delay after this transfer before | 335 | * @delay_usecs: microseconds to delay after this transfer before |
diff --git a/include/linux/spi/spi_gpio.h b/include/linux/spi/spi_gpio.h new file mode 100644 index 000000000000..0f01a0f1f40c --- /dev/null +++ b/include/linux/spi/spi_gpio.h | |||
| @@ -0,0 +1,60 @@ | |||
| 1 | #ifndef __LINUX_SPI_GPIO_H | ||
| 2 | #define __LINUX_SPI_GPIO_H | ||
| 3 | |||
| 4 | /* | ||
| 5 | * For each bitbanged SPI bus, set up a platform_device node with: | ||
| 6 | * - name "spi_gpio" | ||
| 7 | * - id the same as the SPI bus number it implements | ||
| 8 | * - dev.platform data pointing to a struct spi_gpio_platform_data | ||
| 9 | * | ||
| 10 | * Or, see the driver code for information about speedups that are | ||
| 11 | * possible on platforms that support inlined access for GPIOs (no | ||
| 12 | * spi_gpio_platform_data is used). | ||
| 13 | * | ||
| 14 | * Use spi_board_info with these busses in the usual way, being sure | ||
| 15 | * that the controller_data being the GPIO used for each device's | ||
| 16 | * chipselect: | ||
| 17 | * | ||
| 18 | * static struct spi_board_info ... [] = { | ||
| 19 | * ... | ||
| 20 | * // this slave uses GPIO 42 for its chipselect | ||
| 21 | * .controller_data = (void *) 42, | ||
| 22 | * ... | ||
| 23 | * // this one uses GPIO 86 for its chipselect | ||
| 24 | * .controller_data = (void *) 86, | ||
| 25 | * ... | ||
| 26 | * }; | ||
| 27 | * | ||
| 28 | * If the bitbanged bus is later switched to a "native" controller, | ||
| 29 | * that platform_device and controller_data should be removed. | ||
| 30 | */ | ||
| 31 | |||
| 32 | /** | ||
| 33 | * struct spi_gpio_platform_data - parameter for bitbanged SPI master | ||
| 34 | * @sck: number of the GPIO used for clock output | ||
| 35 | * @mosi: number of the GPIO used for Master Output, Slave In (MOSI) data | ||
| 36 | * @miso: number of the GPIO used for Master Input, Slave Output (MISO) data | ||
| 37 | * @num_chipselect: how many slaves to allow | ||
| 38 | * | ||
| 39 | * All GPIO signals used with the SPI bus managed through this driver | ||
| 40 | * (chipselects, MOSI, MISO, SCK) must be configured as GPIOs, instead | ||
| 41 | * of some alternate function. | ||
| 42 | * | ||
| 43 | * It can be convenient to use this driver with pins that have alternate | ||
| 44 | * functions associated with a "native" SPI controller if a driver for that | ||
| 45 | * controller is not available, or is missing important functionality. | ||
| 46 | * | ||
| 47 | * On platforms which can do so, configure MISO with a weak pullup unless | ||
| 48 | * there's an external pullup on that signal. That saves power by avoiding | ||
| 49 | * floating signals. (A weak pulldown would save power too, but many | ||
| 50 | * drivers expect to see all-ones data as the no slave "response".) | ||
| 51 | */ | ||
| 52 | struct spi_gpio_platform_data { | ||
| 53 | unsigned sck; | ||
| 54 | unsigned mosi; | ||
| 55 | unsigned miso; | ||
| 56 | |||
| 57 | u16 num_chipselect; | ||
| 58 | }; | ||
| 59 | |||
| 60 | #endif /* __LINUX_SPI_GPIO_H */ | ||
diff --git a/include/linux/spi/spidev.h b/include/linux/spi/spidev.h index c93ef9d42a01..95251ccd5a07 100644 --- a/include/linux/spi/spidev.h +++ b/include/linux/spi/spidev.h | |||
| @@ -22,6 +22,7 @@ | |||
| 22 | #ifndef SPIDEV_H | 22 | #ifndef SPIDEV_H |
| 23 | #define SPIDEV_H | 23 | #define SPIDEV_H |
| 24 | 24 | ||
| 25 | #include <linux/types.h> | ||
| 25 | 26 | ||
| 26 | /* User space versions of kernel symbols for SPI clocking modes, | 27 | /* User space versions of kernel symbols for SPI clocking modes, |
| 27 | * matching <linux/spi/spi.h> | 28 | * matching <linux/spi/spi.h> |
diff --git a/include/linux/spi/tdo24m.h b/include/linux/spi/tdo24m.h new file mode 100644 index 000000000000..7572d4e1fe76 --- /dev/null +++ b/include/linux/spi/tdo24m.h | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | #ifndef __TDO24M_H__ | ||
| 2 | #define __TDO24M_H__ | ||
| 3 | |||
| 4 | enum tdo24m_model { | ||
| 5 | TDO24M, | ||
| 6 | TDO35S, | ||
| 7 | }; | ||
| 8 | |||
| 9 | struct tdo24m_platform_data { | ||
| 10 | enum tdo24m_model model; | ||
| 11 | }; | ||
| 12 | |||
| 13 | #endif /* __TDO24M_H__ */ | ||
diff --git a/include/linux/stop_machine.h b/include/linux/stop_machine.h index faf1519b5adc..baba3a23a814 100644 --- a/include/linux/stop_machine.h +++ b/include/linux/stop_machine.h | |||
| @@ -23,7 +23,7 @@ | |||
| 23 | * | 23 | * |
| 24 | * This can be thought of as a very heavy write lock, equivalent to | 24 | * This can be thought of as a very heavy write lock, equivalent to |
| 25 | * grabbing every spinlock in the kernel. */ | 25 | * grabbing every spinlock in the kernel. */ |
| 26 | int stop_machine(int (*fn)(void *), void *data, const cpumask_t *cpus); | 26 | int stop_machine(int (*fn)(void *), void *data, const struct cpumask *cpus); |
| 27 | 27 | ||
| 28 | /** | 28 | /** |
| 29 | * __stop_machine: freeze the machine on all CPUs and run this function | 29 | * __stop_machine: freeze the machine on all CPUs and run this function |
| @@ -34,11 +34,29 @@ int stop_machine(int (*fn)(void *), void *data, const cpumask_t *cpus); | |||
| 34 | * Description: This is a special version of the above, which assumes cpus | 34 | * Description: This is a special version of the above, which assumes cpus |
| 35 | * won't come or go while it's being called. Used by hotplug cpu. | 35 | * won't come or go while it's being called. Used by hotplug cpu. |
| 36 | */ | 36 | */ |
| 37 | int __stop_machine(int (*fn)(void *), void *data, const cpumask_t *cpus); | 37 | int __stop_machine(int (*fn)(void *), void *data, const struct cpumask *cpus); |
| 38 | |||
| 39 | /** | ||
| 40 | * stop_machine_create: create all stop_machine threads | ||
| 41 | * | ||
| 42 | * Description: This causes all stop_machine threads to be created before | ||
| 43 | * stop_machine actually gets called. This can be used by subsystems that | ||
| 44 | * need a non failing stop_machine infrastructure. | ||
| 45 | */ | ||
| 46 | int stop_machine_create(void); | ||
| 47 | |||
| 48 | /** | ||
| 49 | * stop_machine_destroy: destroy all stop_machine threads | ||
| 50 | * | ||
| 51 | * Description: This causes all stop_machine threads which were created with | ||
| 52 | * stop_machine_create to be destroyed again. | ||
| 53 | */ | ||
| 54 | void stop_machine_destroy(void); | ||
| 55 | |||
| 38 | #else | 56 | #else |
| 39 | 57 | ||
| 40 | static inline int stop_machine(int (*fn)(void *), void *data, | 58 | static inline int stop_machine(int (*fn)(void *), void *data, |
| 41 | const cpumask_t *cpus) | 59 | const struct cpumask *cpus) |
| 42 | { | 60 | { |
| 43 | int ret; | 61 | int ret; |
| 44 | local_irq_disable(); | 62 | local_irq_disable(); |
| @@ -46,5 +64,9 @@ static inline int stop_machine(int (*fn)(void *), void *data, | |||
| 46 | local_irq_enable(); | 64 | local_irq_enable(); |
| 47 | return ret; | 65 | return ret; |
| 48 | } | 66 | } |
| 67 | |||
| 68 | static inline int stop_machine_create(void) { return 0; } | ||
| 69 | static inline void stop_machine_destroy(void) { } | ||
| 70 | |||
| 49 | #endif /* CONFIG_SMP */ | 71 | #endif /* CONFIG_SMP */ |
| 50 | #endif /* _LINUX_STOP_MACHINE */ | 72 | #endif /* _LINUX_STOP_MACHINE */ |
diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h index 3afe7fb403b2..3435d24bfe55 100644 --- a/include/linux/sunrpc/svc.h +++ b/include/linux/sunrpc/svc.h | |||
| @@ -58,10 +58,13 @@ struct svc_serv { | |||
| 58 | struct svc_stat * sv_stats; /* RPC statistics */ | 58 | struct svc_stat * sv_stats; /* RPC statistics */ |
| 59 | spinlock_t sv_lock; | 59 | spinlock_t sv_lock; |
| 60 | unsigned int sv_nrthreads; /* # of server threads */ | 60 | unsigned int sv_nrthreads; /* # of server threads */ |
| 61 | unsigned int sv_maxconn; /* max connections allowed or | ||
| 62 | * '0' causing max to be based | ||
| 63 | * on number of threads. */ | ||
| 64 | |||
| 61 | unsigned int sv_max_payload; /* datagram payload size */ | 65 | unsigned int sv_max_payload; /* datagram payload size */ |
| 62 | unsigned int sv_max_mesg; /* max_payload + 1 page for overheads */ | 66 | unsigned int sv_max_mesg; /* max_payload + 1 page for overheads */ |
| 63 | unsigned int sv_xdrsize; /* XDR buffer size */ | 67 | unsigned int sv_xdrsize; /* XDR buffer size */ |
| 64 | |||
| 65 | struct list_head sv_permsocks; /* all permanent sockets */ | 68 | struct list_head sv_permsocks; /* all permanent sockets */ |
| 66 | struct list_head sv_tempsocks; /* all temporary sockets */ | 69 | struct list_head sv_tempsocks; /* all temporary sockets */ |
| 67 | int sv_tmpcnt; /* count of temporary sockets */ | 70 | int sv_tmpcnt; /* count of temporary sockets */ |
diff --git a/include/linux/suspend.h b/include/linux/suspend.h index 2ce8207686e2..c7d9bb1832ba 100644 --- a/include/linux/suspend.h +++ b/include/linux/suspend.h | |||
| @@ -232,6 +232,12 @@ extern unsigned long get_safe_page(gfp_t gfp_mask); | |||
| 232 | 232 | ||
| 233 | extern void hibernation_set_ops(struct platform_hibernation_ops *ops); | 233 | extern void hibernation_set_ops(struct platform_hibernation_ops *ops); |
| 234 | extern int hibernate(void); | 234 | extern int hibernate(void); |
| 235 | extern int hibernate_nvs_register(unsigned long start, unsigned long size); | ||
| 236 | extern int hibernate_nvs_alloc(void); | ||
| 237 | extern void hibernate_nvs_free(void); | ||
| 238 | extern void hibernate_nvs_save(void); | ||
| 239 | extern void hibernate_nvs_restore(void); | ||
| 240 | extern bool system_entering_hibernation(void); | ||
| 235 | #else /* CONFIG_HIBERNATION */ | 241 | #else /* CONFIG_HIBERNATION */ |
| 236 | static inline int swsusp_page_is_forbidden(struct page *p) { return 0; } | 242 | static inline int swsusp_page_is_forbidden(struct page *p) { return 0; } |
| 237 | static inline void swsusp_set_page_free(struct page *p) {} | 243 | static inline void swsusp_set_page_free(struct page *p) {} |
| @@ -239,6 +245,15 @@ static inline void swsusp_unset_page_free(struct page *p) {} | |||
| 239 | 245 | ||
| 240 | static inline void hibernation_set_ops(struct platform_hibernation_ops *ops) {} | 246 | static inline void hibernation_set_ops(struct platform_hibernation_ops *ops) {} |
| 241 | static inline int hibernate(void) { return -ENOSYS; } | 247 | static inline int hibernate(void) { return -ENOSYS; } |
| 248 | static inline int hibernate_nvs_register(unsigned long a, unsigned long b) | ||
| 249 | { | ||
| 250 | return 0; | ||
| 251 | } | ||
| 252 | static inline int hibernate_nvs_alloc(void) { return 0; } | ||
| 253 | static inline void hibernate_nvs_free(void) {} | ||
| 254 | static inline void hibernate_nvs_save(void) {} | ||
| 255 | static inline void hibernate_nvs_restore(void) {} | ||
| 256 | static inline bool system_entering_hibernation(void) { return false; } | ||
| 242 | #endif /* CONFIG_HIBERNATION */ | 257 | #endif /* CONFIG_HIBERNATION */ |
| 243 | 258 | ||
| 244 | #ifdef CONFIG_PM_SLEEP | 259 | #ifdef CONFIG_PM_SLEEP |
diff --git a/include/linux/swab.h b/include/linux/swab.h index bbed279f3b32..ea0c02fd5163 100644 --- a/include/linux/swab.h +++ b/include/linux/swab.h | |||
| @@ -3,23 +3,23 @@ | |||
| 3 | 3 | ||
| 4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
| 5 | #include <linux/compiler.h> | 5 | #include <linux/compiler.h> |
| 6 | #include <asm/byteorder.h> | 6 | #include <asm/swab.h> |
| 7 | 7 | ||
| 8 | /* | 8 | /* |
| 9 | * casts are necessary for constants, because we never know how for sure | 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. | 10 | * how U/UL/ULL map to __u16, __u32, __u64. At least not in a portable way. |
| 11 | */ | 11 | */ |
| 12 | #define __const_swab16(x) ((__u16)( \ | 12 | #define ___constant_swab16(x) ((__u16)( \ |
| 13 | (((__u16)(x) & (__u16)0x00ffU) << 8) | \ | 13 | (((__u16)(x) & (__u16)0x00ffU) << 8) | \ |
| 14 | (((__u16)(x) & (__u16)0xff00U) >> 8))) | 14 | (((__u16)(x) & (__u16)0xff00U) >> 8))) |
| 15 | 15 | ||
| 16 | #define __const_swab32(x) ((__u32)( \ | 16 | #define ___constant_swab32(x) ((__u32)( \ |
| 17 | (((__u32)(x) & (__u32)0x000000ffUL) << 24) | \ | 17 | (((__u32)(x) & (__u32)0x000000ffUL) << 24) | \ |
| 18 | (((__u32)(x) & (__u32)0x0000ff00UL) << 8) | \ | 18 | (((__u32)(x) & (__u32)0x0000ff00UL) << 8) | \ |
| 19 | (((__u32)(x) & (__u32)0x00ff0000UL) >> 8) | \ | 19 | (((__u32)(x) & (__u32)0x00ff0000UL) >> 8) | \ |
| 20 | (((__u32)(x) & (__u32)0xff000000UL) >> 24))) | 20 | (((__u32)(x) & (__u32)0xff000000UL) >> 24))) |
| 21 | 21 | ||
| 22 | #define __const_swab64(x) ((__u64)( \ | 22 | #define ___constant_swab64(x) ((__u64)( \ |
| 23 | (((__u64)(x) & (__u64)0x00000000000000ffULL) << 56) | \ | 23 | (((__u64)(x) & (__u64)0x00000000000000ffULL) << 56) | \ |
| 24 | (((__u64)(x) & (__u64)0x000000000000ff00ULL) << 40) | \ | 24 | (((__u64)(x) & (__u64)0x000000000000ff00ULL) << 40) | \ |
| 25 | (((__u64)(x) & (__u64)0x0000000000ff0000ULL) << 24) | \ | 25 | (((__u64)(x) & (__u64)0x0000000000ff0000ULL) << 24) | \ |
| @@ -29,11 +29,11 @@ | |||
| 29 | (((__u64)(x) & (__u64)0x00ff000000000000ULL) >> 40) | \ | 29 | (((__u64)(x) & (__u64)0x00ff000000000000ULL) >> 40) | \ |
| 30 | (((__u64)(x) & (__u64)0xff00000000000000ULL) >> 56))) | 30 | (((__u64)(x) & (__u64)0xff00000000000000ULL) >> 56))) |
| 31 | 31 | ||
| 32 | #define __const_swahw32(x) ((__u32)( \ | 32 | #define ___constant_swahw32(x) ((__u32)( \ |
| 33 | (((__u32)(x) & (__u32)0x0000ffffUL) << 16) | \ | 33 | (((__u32)(x) & (__u32)0x0000ffffUL) << 16) | \ |
| 34 | (((__u32)(x) & (__u32)0xffff0000UL) >> 16))) | 34 | (((__u32)(x) & (__u32)0xffff0000UL) >> 16))) |
| 35 | 35 | ||
| 36 | #define __const_swahb32(x) ((__u32)( \ | 36 | #define ___constant_swahb32(x) ((__u32)( \ |
| 37 | (((__u32)(x) & (__u32)0x00ff00ffUL) << 8) | \ | 37 | (((__u32)(x) & (__u32)0x00ff00ffUL) << 8) | \ |
| 38 | (((__u32)(x) & (__u32)0xff00ff00UL) >> 8))) | 38 | (((__u32)(x) & (__u32)0xff00ff00UL) >> 8))) |
| 39 | 39 | ||
| @@ -43,52 +43,52 @@ | |||
| 43 | * ___swab16, ___swab32, ___swab64, ___swahw32, ___swahb32 | 43 | * ___swab16, ___swab32, ___swab64, ___swahw32, ___swahb32 |
| 44 | */ | 44 | */ |
| 45 | 45 | ||
| 46 | static inline __attribute_const__ __u16 ___swab16(__u16 val) | 46 | static inline __attribute_const__ __u16 __fswab16(__u16 val) |
| 47 | { | 47 | { |
| 48 | #ifdef __arch_swab16 | 48 | #ifdef __arch_swab16 |
| 49 | return __arch_swab16(val); | 49 | return __arch_swab16(val); |
| 50 | #else | 50 | #else |
| 51 | return __const_swab16(val); | 51 | return ___constant_swab16(val); |
| 52 | #endif | 52 | #endif |
| 53 | } | 53 | } |
| 54 | 54 | ||
| 55 | static inline __attribute_const__ __u32 ___swab32(__u32 val) | 55 | static inline __attribute_const__ __u32 __fswab32(__u32 val) |
| 56 | { | 56 | { |
| 57 | #ifdef __arch_swab32 | 57 | #ifdef __arch_swab32 |
| 58 | return __arch_swab32(val); | 58 | return __arch_swab32(val); |
| 59 | #else | 59 | #else |
| 60 | return __const_swab32(val); | 60 | return ___constant_swab32(val); |
| 61 | #endif | 61 | #endif |
| 62 | } | 62 | } |
| 63 | 63 | ||
| 64 | static inline __attribute_const__ __u64 ___swab64(__u64 val) | 64 | static inline __attribute_const__ __u64 __fswab64(__u64 val) |
| 65 | { | 65 | { |
| 66 | #ifdef __arch_swab64 | 66 | #ifdef __arch_swab64 |
| 67 | return __arch_swab64(val); | 67 | return __arch_swab64(val); |
| 68 | #elif defined(__SWAB_64_THRU_32__) | 68 | #elif defined(__SWAB_64_THRU_32__) |
| 69 | __u32 h = val >> 32; | 69 | __u32 h = val >> 32; |
| 70 | __u32 l = val & ((1ULL << 32) - 1); | 70 | __u32 l = val & ((1ULL << 32) - 1); |
| 71 | return (((__u64)___swab32(l)) << 32) | ((__u64)(___swab32(h))); | 71 | return (((__u64)__fswab32(l)) << 32) | ((__u64)(__fswab32(h))); |
| 72 | #else | 72 | #else |
| 73 | return __const_swab64(val); | 73 | return ___constant_swab64(val); |
| 74 | #endif | 74 | #endif |
| 75 | } | 75 | } |
| 76 | 76 | ||
| 77 | static inline __attribute_const__ __u32 ___swahw32(__u32 val) | 77 | static inline __attribute_const__ __u32 __fswahw32(__u32 val) |
| 78 | { | 78 | { |
| 79 | #ifdef __arch_swahw32 | 79 | #ifdef __arch_swahw32 |
| 80 | return __arch_swahw32(val); | 80 | return __arch_swahw32(val); |
| 81 | #else | 81 | #else |
| 82 | return __const_swahw32(val); | 82 | return ___constant_swahw32(val); |
| 83 | #endif | 83 | #endif |
| 84 | } | 84 | } |
| 85 | 85 | ||
| 86 | static inline __attribute_const__ __u32 ___swahb32(__u32 val) | 86 | static inline __attribute_const__ __u32 __fswahb32(__u32 val) |
| 87 | { | 87 | { |
| 88 | #ifdef __arch_swahb32 | 88 | #ifdef __arch_swahb32 |
| 89 | return __arch_swahb32(val); | 89 | return __arch_swahb32(val); |
| 90 | #else | 90 | #else |
| 91 | return __const_swahb32(val); | 91 | return ___constant_swahb32(val); |
| 92 | #endif | 92 | #endif |
| 93 | } | 93 | } |
| 94 | 94 | ||
| @@ -98,8 +98,8 @@ static inline __attribute_const__ __u32 ___swahb32(__u32 val) | |||
| 98 | */ | 98 | */ |
| 99 | #define __swab16(x) \ | 99 | #define __swab16(x) \ |
| 100 | (__builtin_constant_p((__u16)(x)) ? \ | 100 | (__builtin_constant_p((__u16)(x)) ? \ |
| 101 | __const_swab16((x)) : \ | 101 | ___constant_swab16(x) : \ |
| 102 | ___swab16((x))) | 102 | __fswab16(x)) |
| 103 | 103 | ||
| 104 | /** | 104 | /** |
| 105 | * __swab32 - return a byteswapped 32-bit value | 105 | * __swab32 - return a byteswapped 32-bit value |
| @@ -107,8 +107,8 @@ static inline __attribute_const__ __u32 ___swahb32(__u32 val) | |||
| 107 | */ | 107 | */ |
| 108 | #define __swab32(x) \ | 108 | #define __swab32(x) \ |
| 109 | (__builtin_constant_p((__u32)(x)) ? \ | 109 | (__builtin_constant_p((__u32)(x)) ? \ |
| 110 | __const_swab32((x)) : \ | 110 | ___constant_swab32(x) : \ |
| 111 | ___swab32((x))) | 111 | __fswab32(x)) |
| 112 | 112 | ||
| 113 | /** | 113 | /** |
| 114 | * __swab64 - return a byteswapped 64-bit value | 114 | * __swab64 - return a byteswapped 64-bit value |
| @@ -116,8 +116,8 @@ static inline __attribute_const__ __u32 ___swahb32(__u32 val) | |||
| 116 | */ | 116 | */ |
| 117 | #define __swab64(x) \ | 117 | #define __swab64(x) \ |
| 118 | (__builtin_constant_p((__u64)(x)) ? \ | 118 | (__builtin_constant_p((__u64)(x)) ? \ |
| 119 | __const_swab64((x)) : \ | 119 | ___constant_swab64(x) : \ |
| 120 | ___swab64((x))) | 120 | __fswab64(x)) |
| 121 | 121 | ||
| 122 | /** | 122 | /** |
| 123 | * __swahw32 - return a word-swapped 32-bit value | 123 | * __swahw32 - return a word-swapped 32-bit value |
| @@ -127,8 +127,8 @@ static inline __attribute_const__ __u32 ___swahb32(__u32 val) | |||
| 127 | */ | 127 | */ |
| 128 | #define __swahw32(x) \ | 128 | #define __swahw32(x) \ |
| 129 | (__builtin_constant_p((__u32)(x)) ? \ | 129 | (__builtin_constant_p((__u32)(x)) ? \ |
| 130 | __const_swahw32((x)) : \ | 130 | ___constant_swahw32(x) : \ |
| 131 | ___swahw32((x))) | 131 | __fswahw32(x)) |
| 132 | 132 | ||
| 133 | /** | 133 | /** |
| 134 | * __swahb32 - return a high and low byte-swapped 32-bit value | 134 | * __swahb32 - return a high and low byte-swapped 32-bit value |
| @@ -138,8 +138,8 @@ static inline __attribute_const__ __u32 ___swahb32(__u32 val) | |||
| 138 | */ | 138 | */ |
| 139 | #define __swahb32(x) \ | 139 | #define __swahb32(x) \ |
| 140 | (__builtin_constant_p((__u32)(x)) ? \ | 140 | (__builtin_constant_p((__u32)(x)) ? \ |
| 141 | __const_swahb32((x)) : \ | 141 | ___constant_swahb32(x) : \ |
| 142 | ___swahb32((x))) | 142 | __fswahb32(x)) |
| 143 | 143 | ||
| 144 | /** | 144 | /** |
| 145 | * __swab16p - return a byteswapped 16-bit value from a pointer | 145 | * __swab16p - return a byteswapped 16-bit value from a pointer |
diff --git a/include/linux/swap.h b/include/linux/swap.h index a3af95b2cb6d..d30215578877 100644 --- a/include/linux/swap.h +++ b/include/linux/swap.h | |||
| @@ -120,7 +120,9 @@ struct swap_extent { | |||
| 120 | enum { | 120 | enum { |
| 121 | SWP_USED = (1 << 0), /* is slot in swap_info[] used? */ | 121 | SWP_USED = (1 << 0), /* is slot in swap_info[] used? */ |
| 122 | SWP_WRITEOK = (1 << 1), /* ok to write to this swap? */ | 122 | SWP_WRITEOK = (1 << 1), /* ok to write to this swap? */ |
| 123 | SWP_ACTIVE = (SWP_USED | SWP_WRITEOK), | 123 | SWP_DISCARDABLE = (1 << 2), /* blkdev supports discard */ |
| 124 | SWP_DISCARDING = (1 << 3), /* now discarding a free cluster */ | ||
| 125 | SWP_SOLIDSTATE = (1 << 4), /* blkdev seeks are cheap */ | ||
| 124 | /* add others here before... */ | 126 | /* add others here before... */ |
| 125 | SWP_SCANNING = (1 << 8), /* refcount in scan_swap_map */ | 127 | SWP_SCANNING = (1 << 8), /* refcount in scan_swap_map */ |
| 126 | }; | 128 | }; |
| @@ -134,22 +136,24 @@ enum { | |||
| 134 | * The in-memory structure used to track swap areas. | 136 | * The in-memory structure used to track swap areas. |
| 135 | */ | 137 | */ |
| 136 | struct swap_info_struct { | 138 | struct swap_info_struct { |
| 137 | unsigned int flags; | 139 | unsigned long flags; |
| 138 | int prio; /* swap priority */ | 140 | int prio; /* swap priority */ |
| 141 | int next; /* next entry on swap list */ | ||
| 139 | struct file *swap_file; | 142 | struct file *swap_file; |
| 140 | struct block_device *bdev; | 143 | struct block_device *bdev; |
| 141 | struct list_head extent_list; | 144 | struct list_head extent_list; |
| 142 | struct swap_extent *curr_swap_extent; | 145 | struct swap_extent *curr_swap_extent; |
| 143 | unsigned old_block_size; | 146 | unsigned short *swap_map; |
| 144 | unsigned short * swap_map; | ||
| 145 | unsigned int lowest_bit; | 147 | unsigned int lowest_bit; |
| 146 | unsigned int highest_bit; | 148 | unsigned int highest_bit; |
| 149 | unsigned int lowest_alloc; /* while preparing discard cluster */ | ||
| 150 | unsigned int highest_alloc; /* while preparing discard cluster */ | ||
| 147 | unsigned int cluster_next; | 151 | unsigned int cluster_next; |
| 148 | unsigned int cluster_nr; | 152 | unsigned int cluster_nr; |
| 149 | unsigned int pages; | 153 | unsigned int pages; |
| 150 | unsigned int max; | 154 | unsigned int max; |
| 151 | unsigned int inuse_pages; | 155 | unsigned int inuse_pages; |
| 152 | int next; /* next entry on swap list */ | 156 | unsigned int old_block_size; |
| 153 | }; | 157 | }; |
| 154 | 158 | ||
| 155 | struct swap_list_t { | 159 | struct swap_list_t { |
| @@ -163,7 +167,6 @@ struct swap_list_t { | |||
| 163 | /* linux/mm/page_alloc.c */ | 167 | /* linux/mm/page_alloc.c */ |
| 164 | extern unsigned long totalram_pages; | 168 | extern unsigned long totalram_pages; |
| 165 | extern unsigned long totalreserve_pages; | 169 | extern unsigned long totalreserve_pages; |
| 166 | extern long nr_swap_pages; | ||
| 167 | extern unsigned int nr_free_buffer_pages(void); | 170 | extern unsigned int nr_free_buffer_pages(void); |
| 168 | extern unsigned int nr_free_pagecache_pages(void); | 171 | extern unsigned int nr_free_pagecache_pages(void); |
| 169 | 172 | ||
| @@ -174,8 +177,6 @@ extern unsigned int nr_free_pagecache_pages(void); | |||
| 174 | /* linux/mm/swap.c */ | 177 | /* linux/mm/swap.c */ |
| 175 | extern void __lru_cache_add(struct page *, enum lru_list lru); | 178 | extern void __lru_cache_add(struct page *, enum lru_list lru); |
| 176 | extern void lru_cache_add_lru(struct page *, enum lru_list lru); | 179 | extern void lru_cache_add_lru(struct page *, enum lru_list lru); |
| 177 | extern void lru_cache_add_active_or_unevictable(struct page *, | ||
| 178 | struct vm_area_struct *); | ||
| 179 | extern void activate_page(struct page *); | 180 | extern void activate_page(struct page *); |
| 180 | extern void mark_page_accessed(struct page *); | 181 | extern void mark_page_accessed(struct page *); |
| 181 | extern void lru_add_drain(void); | 182 | extern void lru_add_drain(void); |
| @@ -213,7 +214,8 @@ static inline void lru_cache_add_active_file(struct page *page) | |||
| 213 | extern unsigned long try_to_free_pages(struct zonelist *zonelist, int order, | 214 | extern unsigned long try_to_free_pages(struct zonelist *zonelist, int order, |
| 214 | gfp_t gfp_mask); | 215 | gfp_t gfp_mask); |
| 215 | extern unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *mem, | 216 | extern unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *mem, |
| 216 | gfp_t gfp_mask); | 217 | gfp_t gfp_mask, bool noswap, |
| 218 | unsigned int swappiness); | ||
| 217 | extern int __isolate_lru_page(struct page *page, int mode, int file); | 219 | extern int __isolate_lru_page(struct page *page, int mode, int file); |
| 218 | extern unsigned long shrink_all_memory(unsigned long nr_pages); | 220 | extern unsigned long shrink_all_memory(unsigned long nr_pages); |
| 219 | extern int vm_swappiness; | 221 | extern int vm_swappiness; |
| @@ -280,7 +282,7 @@ extern void end_swap_bio_read(struct bio *bio, int err); | |||
| 280 | extern struct address_space swapper_space; | 282 | extern struct address_space swapper_space; |
| 281 | #define total_swapcache_pages swapper_space.nrpages | 283 | #define total_swapcache_pages swapper_space.nrpages |
| 282 | extern void show_swap_cache_info(void); | 284 | extern void show_swap_cache_info(void); |
| 283 | extern int add_to_swap(struct page *, gfp_t); | 285 | extern int add_to_swap(struct page *); |
| 284 | extern int add_to_swap_cache(struct page *, swp_entry_t, gfp_t); | 286 | extern int add_to_swap_cache(struct page *, swp_entry_t, gfp_t); |
| 285 | extern void __delete_from_swap_cache(struct page *); | 287 | extern void __delete_from_swap_cache(struct page *); |
| 286 | extern void delete_from_swap_cache(struct page *); | 288 | extern void delete_from_swap_cache(struct page *); |
| @@ -293,6 +295,7 @@ extern struct page *swapin_readahead(swp_entry_t, gfp_t, | |||
| 293 | struct vm_area_struct *vma, unsigned long addr); | 295 | struct vm_area_struct *vma, unsigned long addr); |
| 294 | 296 | ||
| 295 | /* linux/mm/swapfile.c */ | 297 | /* linux/mm/swapfile.c */ |
| 298 | extern long nr_swap_pages; | ||
| 296 | extern long total_swap_pages; | 299 | extern long total_swap_pages; |
| 297 | extern void si_swapinfo(struct sysinfo *); | 300 | extern void si_swapinfo(struct sysinfo *); |
| 298 | extern swp_entry_t get_swap_page(void); | 301 | extern swp_entry_t get_swap_page(void); |
| @@ -300,15 +303,14 @@ extern swp_entry_t get_swap_page_of_type(int); | |||
| 300 | extern int swap_duplicate(swp_entry_t); | 303 | extern int swap_duplicate(swp_entry_t); |
| 301 | extern int valid_swaphandles(swp_entry_t, unsigned long *); | 304 | extern int valid_swaphandles(swp_entry_t, unsigned long *); |
| 302 | extern void swap_free(swp_entry_t); | 305 | extern void swap_free(swp_entry_t); |
| 303 | extern void free_swap_and_cache(swp_entry_t); | 306 | extern int free_swap_and_cache(swp_entry_t); |
| 304 | extern int swap_type_of(dev_t, sector_t, struct block_device **); | 307 | extern int swap_type_of(dev_t, sector_t, struct block_device **); |
| 305 | extern unsigned int count_swap_pages(int, int); | 308 | extern unsigned int count_swap_pages(int, int); |
| 306 | extern sector_t map_swap_page(struct swap_info_struct *, pgoff_t); | 309 | extern sector_t map_swap_page(struct swap_info_struct *, pgoff_t); |
| 307 | extern sector_t swapdev_block(int, pgoff_t); | 310 | extern sector_t swapdev_block(int, pgoff_t); |
| 308 | extern struct swap_info_struct *get_swap_info_struct(unsigned); | 311 | extern struct swap_info_struct *get_swap_info_struct(unsigned); |
| 309 | extern int can_share_swap_page(struct page *); | 312 | extern int reuse_swap_page(struct page *); |
| 310 | extern int remove_exclusive_swap_page(struct page *); | 313 | extern int try_to_free_swap(struct page *); |
| 311 | extern int remove_exclusive_swap_page_ref(struct page *); | ||
| 312 | struct backing_dev_info; | 314 | struct backing_dev_info; |
| 313 | 315 | ||
| 314 | /* linux/mm/thrash.c */ | 316 | /* linux/mm/thrash.c */ |
| @@ -332,9 +334,26 @@ static inline void disable_swap_token(void) | |||
| 332 | put_swap_token(swap_token_mm); | 334 | put_swap_token(swap_token_mm); |
| 333 | } | 335 | } |
| 334 | 336 | ||
| 337 | #ifdef CONFIG_CGROUP_MEM_RES_CTLR | ||
| 338 | extern void mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent); | ||
| 339 | #else | ||
| 340 | static inline void | ||
| 341 | mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent) | ||
| 342 | { | ||
| 343 | } | ||
| 344 | #endif | ||
| 345 | #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP | ||
| 346 | extern void mem_cgroup_uncharge_swap(swp_entry_t ent); | ||
| 347 | #else | ||
| 348 | static inline void mem_cgroup_uncharge_swap(swp_entry_t ent) | ||
| 349 | { | ||
| 350 | } | ||
| 351 | #endif | ||
| 352 | |||
| 335 | #else /* CONFIG_SWAP */ | 353 | #else /* CONFIG_SWAP */ |
| 336 | 354 | ||
| 337 | #define total_swap_pages 0 | 355 | #define nr_swap_pages 0L |
| 356 | #define total_swap_pages 0L | ||
| 338 | #define total_swapcache_pages 0UL | 357 | #define total_swapcache_pages 0UL |
| 339 | 358 | ||
| 340 | #define si_swapinfo(val) \ | 359 | #define si_swapinfo(val) \ |
| @@ -350,14 +369,8 @@ static inline void show_swap_cache_info(void) | |||
| 350 | { | 369 | { |
| 351 | } | 370 | } |
| 352 | 371 | ||
| 353 | static inline void free_swap_and_cache(swp_entry_t swp) | 372 | #define free_swap_and_cache(swp) is_migration_entry(swp) |
| 354 | { | 373 | #define swap_duplicate(swp) is_migration_entry(swp) |
| 355 | } | ||
| 356 | |||
| 357 | static inline int swap_duplicate(swp_entry_t swp) | ||
| 358 | { | ||
| 359 | return 0; | ||
| 360 | } | ||
| 361 | 374 | ||
| 362 | static inline void swap_free(swp_entry_t swp) | 375 | static inline void swap_free(swp_entry_t swp) |
| 363 | { | 376 | { |
| @@ -374,7 +387,10 @@ static inline struct page *lookup_swap_cache(swp_entry_t swp) | |||
| 374 | return NULL; | 387 | return NULL; |
| 375 | } | 388 | } |
| 376 | 389 | ||
| 377 | #define can_share_swap_page(p) (page_mapcount(p) == 1) | 390 | static inline int add_to_swap(struct page *page) |
| 391 | { | ||
| 392 | return 0; | ||
| 393 | } | ||
| 378 | 394 | ||
| 379 | static inline int add_to_swap_cache(struct page *page, swp_entry_t entry, | 395 | static inline int add_to_swap_cache(struct page *page, swp_entry_t entry, |
| 380 | gfp_t gfp_mask) | 396 | gfp_t gfp_mask) |
| @@ -390,14 +406,9 @@ static inline void delete_from_swap_cache(struct page *page) | |||
| 390 | { | 406 | { |
| 391 | } | 407 | } |
| 392 | 408 | ||
| 393 | #define swap_token_default_timeout 0 | 409 | #define reuse_swap_page(page) (page_mapcount(page) == 1) |
| 394 | 410 | ||
| 395 | static inline int remove_exclusive_swap_page(struct page *p) | 411 | static inline int try_to_free_swap(struct page *page) |
| 396 | { | ||
| 397 | return 0; | ||
| 398 | } | ||
| 399 | |||
| 400 | static inline int remove_exclusive_swap_page_ref(struct page *page) | ||
| 401 | { | 412 | { |
| 402 | return 0; | 413 | return 0; |
| 403 | } | 414 | } |
| @@ -415,6 +426,12 @@ static inline swp_entry_t get_swap_page(void) | |||
| 415 | #define has_swap_token(x) 0 | 426 | #define has_swap_token(x) 0 |
| 416 | #define disable_swap_token() do { } while(0) | 427 | #define disable_swap_token() do { } while(0) |
| 417 | 428 | ||
| 429 | static inline int mem_cgroup_cache_charge_swapin(struct page *page, | ||
| 430 | struct mm_struct *mm, gfp_t mask, bool locked) | ||
| 431 | { | ||
| 432 | return 0; | ||
| 433 | } | ||
| 434 | |||
| 418 | #endif /* CONFIG_SWAP */ | 435 | #endif /* CONFIG_SWAP */ |
| 419 | #endif /* __KERNEL__*/ | 436 | #endif /* __KERNEL__*/ |
| 420 | #endif /* _LINUX_SWAP_H */ | 437 | #endif /* _LINUX_SWAP_H */ |
diff --git a/include/linux/swiotlb.h b/include/linux/swiotlb.h index 325af1de0351..dedd3c0cfe30 100644 --- a/include/linux/swiotlb.h +++ b/include/linux/swiotlb.h | |||
| @@ -27,7 +27,8 @@ swiotlb_init(void); | |||
| 27 | extern void *swiotlb_alloc_boot(size_t bytes, unsigned long nslabs); | 27 | extern void *swiotlb_alloc_boot(size_t bytes, unsigned long nslabs); |
| 28 | extern void *swiotlb_alloc(unsigned order, unsigned long nslabs); | 28 | extern void *swiotlb_alloc(unsigned order, unsigned long nslabs); |
| 29 | 29 | ||
| 30 | extern dma_addr_t swiotlb_phys_to_bus(phys_addr_t address); | 30 | extern dma_addr_t swiotlb_phys_to_bus(struct device *hwdev, |
| 31 | phys_addr_t address); | ||
| 31 | extern phys_addr_t swiotlb_bus_to_phys(dma_addr_t address); | 32 | extern phys_addr_t swiotlb_bus_to_phys(dma_addr_t address); |
| 32 | 33 | ||
| 33 | extern int swiotlb_arch_range_needs_mapping(void *ptr, size_t size); | 34 | extern int swiotlb_arch_range_needs_mapping(void *ptr, size_t size); |
diff --git a/include/linux/synclink.h b/include/linux/synclink.h index c844a229acc9..99b8bdb17b2b 100644 --- a/include/linux/synclink.h +++ b/include/linux/synclink.h | |||
| @@ -13,6 +13,8 @@ | |||
| 13 | #define _SYNCLINK_H_ | 13 | #define _SYNCLINK_H_ |
| 14 | #define SYNCLINK_H_VERSION 3.6 | 14 | #define SYNCLINK_H_VERSION 3.6 |
| 15 | 15 | ||
| 16 | #include <linux/types.h> | ||
| 17 | |||
| 16 | #define BIT0 0x0001 | 18 | #define BIT0 0x0001 |
| 17 | #define BIT1 0x0002 | 19 | #define BIT1 0x0002 |
| 18 | #define BIT2 0x0004 | 20 | #define BIT2 0x0004 |
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index 04fb47bfb920..0eda02ff2414 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
| @@ -54,6 +54,7 @@ struct compat_stat; | |||
| 54 | struct compat_timeval; | 54 | struct compat_timeval; |
| 55 | struct robust_list_head; | 55 | struct robust_list_head; |
| 56 | struct getcpu_cache; | 56 | struct getcpu_cache; |
| 57 | struct old_linux_dirent; | ||
| 57 | 58 | ||
| 58 | #include <linux/types.h> | 59 | #include <linux/types.h> |
| 59 | #include <linux/aio_abi.h> | 60 | #include <linux/aio_abi.h> |
| @@ -65,6 +66,79 @@ struct getcpu_cache; | |||
| 65 | #include <linux/quota.h> | 66 | #include <linux/quota.h> |
| 66 | #include <linux/key.h> | 67 | #include <linux/key.h> |
| 67 | 68 | ||
| 69 | #define __SC_DECL1(t1, a1) t1 a1 | ||
| 70 | #define __SC_DECL2(t2, a2, ...) t2 a2, __SC_DECL1(__VA_ARGS__) | ||
| 71 | #define __SC_DECL3(t3, a3, ...) t3 a3, __SC_DECL2(__VA_ARGS__) | ||
| 72 | #define __SC_DECL4(t4, a4, ...) t4 a4, __SC_DECL3(__VA_ARGS__) | ||
| 73 | #define __SC_DECL5(t5, a5, ...) t5 a5, __SC_DECL4(__VA_ARGS__) | ||
| 74 | #define __SC_DECL6(t6, a6, ...) t6 a6, __SC_DECL5(__VA_ARGS__) | ||
| 75 | |||
| 76 | #define __SC_LONG1(t1, a1) long a1 | ||
| 77 | #define __SC_LONG2(t2, a2, ...) long a2, __SC_LONG1(__VA_ARGS__) | ||
| 78 | #define __SC_LONG3(t3, a3, ...) long a3, __SC_LONG2(__VA_ARGS__) | ||
| 79 | #define __SC_LONG4(t4, a4, ...) long a4, __SC_LONG3(__VA_ARGS__) | ||
| 80 | #define __SC_LONG5(t5, a5, ...) long a5, __SC_LONG4(__VA_ARGS__) | ||
| 81 | #define __SC_LONG6(t6, a6, ...) long a6, __SC_LONG5(__VA_ARGS__) | ||
| 82 | |||
| 83 | #define __SC_CAST1(t1, a1) (t1) a1 | ||
| 84 | #define __SC_CAST2(t2, a2, ...) (t2) a2, __SC_CAST1(__VA_ARGS__) | ||
| 85 | #define __SC_CAST3(t3, a3, ...) (t3) a3, __SC_CAST2(__VA_ARGS__) | ||
| 86 | #define __SC_CAST4(t4, a4, ...) (t4) a4, __SC_CAST3(__VA_ARGS__) | ||
| 87 | #define __SC_CAST5(t5, a5, ...) (t5) a5, __SC_CAST4(__VA_ARGS__) | ||
| 88 | #define __SC_CAST6(t6, a6, ...) (t6) a6, __SC_CAST5(__VA_ARGS__) | ||
| 89 | |||
| 90 | #define __SC_TEST(type) BUILD_BUG_ON(sizeof(type) > sizeof(long)) | ||
| 91 | #define __SC_TEST1(t1, a1) __SC_TEST(t1) | ||
| 92 | #define __SC_TEST2(t2, a2, ...) __SC_TEST(t2); __SC_TEST1(__VA_ARGS__) | ||
| 93 | #define __SC_TEST3(t3, a3, ...) __SC_TEST(t3); __SC_TEST2(__VA_ARGS__) | ||
| 94 | #define __SC_TEST4(t4, a4, ...) __SC_TEST(t4); __SC_TEST3(__VA_ARGS__) | ||
| 95 | #define __SC_TEST5(t5, a5, ...) __SC_TEST(t5); __SC_TEST4(__VA_ARGS__) | ||
| 96 | #define __SC_TEST6(t6, a6, ...) __SC_TEST(t6); __SC_TEST5(__VA_ARGS__) | ||
| 97 | |||
| 98 | #define SYSCALL_DEFINE0(name) asmlinkage long sys_##name(void) | ||
| 99 | #define SYSCALL_DEFINE1(...) SYSCALL_DEFINEx(1, __VA_ARGS__) | ||
| 100 | #define SYSCALL_DEFINE2(...) SYSCALL_DEFINEx(2, __VA_ARGS__) | ||
| 101 | #define SYSCALL_DEFINE3(...) SYSCALL_DEFINEx(3, __VA_ARGS__) | ||
| 102 | #define SYSCALL_DEFINE4(...) SYSCALL_DEFINEx(4, __VA_ARGS__) | ||
| 103 | #define SYSCALL_DEFINE5(...) SYSCALL_DEFINEx(5, __VA_ARGS__) | ||
| 104 | #define SYSCALL_DEFINE6(...) SYSCALL_DEFINEx(6, __VA_ARGS__) | ||
| 105 | |||
| 106 | #ifdef CONFIG_PPC64 | ||
| 107 | #define SYSCALL_ALIAS(alias, name) \ | ||
| 108 | asm ("\t.globl " #alias "\n\t.set " #alias ", " #name "\n" \ | ||
| 109 | "\t.globl ." #alias "\n\t.set ." #alias ", ." #name) | ||
| 110 | #else | ||
| 111 | #ifdef CONFIG_ALPHA | ||
| 112 | #define SYSCALL_ALIAS(alias, name) \ | ||
| 113 | asm ( #alias " = " #name "\n\t.globl " #alias) | ||
| 114 | #else | ||
| 115 | #define SYSCALL_ALIAS(alias, name) \ | ||
| 116 | asm ("\t.globl " #alias "\n\t.set " #alias ", " #name) | ||
| 117 | #endif | ||
| 118 | #endif | ||
| 119 | |||
| 120 | #ifdef CONFIG_HAVE_SYSCALL_WRAPPERS | ||
| 121 | |||
| 122 | #define SYSCALL_DEFINE(name) static inline long SYSC_##name | ||
| 123 | #define SYSCALL_DEFINEx(x, name, ...) \ | ||
| 124 | asmlinkage long sys_##name(__SC_DECL##x(__VA_ARGS__)); \ | ||
| 125 | static inline long SYSC_##name(__SC_DECL##x(__VA_ARGS__)); \ | ||
| 126 | asmlinkage long SyS_##name(__SC_LONG##x(__VA_ARGS__)) \ | ||
| 127 | { \ | ||
| 128 | __SC_TEST##x(__VA_ARGS__); \ | ||
| 129 | return (long) SYSC_##name(__SC_CAST##x(__VA_ARGS__)); \ | ||
| 130 | } \ | ||
| 131 | SYSCALL_ALIAS(sys_##name, SyS_##name); \ | ||
| 132 | static inline long SYSC_##name(__SC_DECL##x(__VA_ARGS__)) | ||
| 133 | |||
| 134 | #else /* CONFIG_HAVE_SYSCALL_WRAPPERS */ | ||
| 135 | |||
| 136 | #define SYSCALL_DEFINE(name) asmlinkage long sys_##name | ||
| 137 | #define SYSCALL_DEFINEx(x, name, ...) \ | ||
| 138 | asmlinkage long sys_##name(__SC_DECL##x(__VA_ARGS__)) | ||
| 139 | |||
| 140 | #endif /* CONFIG_HAVE_SYSCALL_WRAPPERS */ | ||
| 141 | |||
| 68 | asmlinkage long sys_time(time_t __user *tloc); | 142 | asmlinkage long sys_time(time_t __user *tloc); |
| 69 | asmlinkage long sys_stime(time_t __user *tptr); | 143 | asmlinkage long sys_stime(time_t __user *tptr); |
| 70 | asmlinkage long sys_gettimeofday(struct timeval __user *tv, | 144 | asmlinkage long sys_gettimeofday(struct timeval __user *tv, |
| @@ -77,7 +151,7 @@ asmlinkage long sys_times(struct tms __user *tbuf); | |||
| 77 | 151 | ||
| 78 | asmlinkage long sys_gettid(void); | 152 | asmlinkage long sys_gettid(void); |
| 79 | asmlinkage long sys_nanosleep(struct timespec __user *rqtp, struct timespec __user *rmtp); | 153 | asmlinkage long sys_nanosleep(struct timespec __user *rqtp, struct timespec __user *rmtp); |
| 80 | asmlinkage unsigned long sys_alarm(unsigned int seconds); | 154 | asmlinkage long sys_alarm(unsigned int seconds); |
| 81 | asmlinkage long sys_getpid(void); | 155 | asmlinkage long sys_getpid(void); |
| 82 | asmlinkage long sys_getppid(void); | 156 | asmlinkage long sys_getppid(void); |
| 83 | asmlinkage long sys_getuid(void); | 157 | asmlinkage long sys_getuid(void); |
| @@ -166,7 +240,7 @@ asmlinkage long sys_kexec_load(unsigned long entry, unsigned long nr_segments, | |||
| 166 | unsigned long flags); | 240 | unsigned long flags); |
| 167 | 241 | ||
| 168 | asmlinkage long sys_exit(int error_code); | 242 | asmlinkage long sys_exit(int error_code); |
| 169 | asmlinkage void sys_exit_group(int error_code); | 243 | asmlinkage long sys_exit_group(int error_code); |
| 170 | asmlinkage long sys_wait4(pid_t pid, int __user *stat_addr, | 244 | asmlinkage long sys_wait4(pid_t pid, int __user *stat_addr, |
| 171 | int options, struct rusage __user *ru); | 245 | int options, struct rusage __user *ru); |
| 172 | asmlinkage long sys_waitid(int which, pid_t pid, | 246 | asmlinkage long sys_waitid(int which, pid_t pid, |
| @@ -196,7 +270,7 @@ asmlinkage long sys_tkill(int pid, int sig); | |||
| 196 | asmlinkage long sys_rt_sigqueueinfo(int pid, int sig, siginfo_t __user *uinfo); | 270 | asmlinkage long sys_rt_sigqueueinfo(int pid, int sig, siginfo_t __user *uinfo); |
| 197 | asmlinkage long sys_sgetmask(void); | 271 | asmlinkage long sys_sgetmask(void); |
| 198 | asmlinkage long sys_ssetmask(int newmask); | 272 | asmlinkage long sys_ssetmask(int newmask); |
| 199 | asmlinkage unsigned long sys_signal(int sig, __sighandler_t handler); | 273 | asmlinkage long sys_signal(int sig, __sighandler_t handler); |
| 200 | asmlinkage long sys_pause(void); | 274 | asmlinkage long sys_pause(void); |
| 201 | 275 | ||
| 202 | asmlinkage long sys_sync(void); | 276 | asmlinkage long sys_sync(void); |
| @@ -246,29 +320,29 @@ asmlinkage long sys_lsetxattr(const char __user *path, const char __user *name, | |||
| 246 | const void __user *value, size_t size, int flags); | 320 | const void __user *value, size_t size, int flags); |
| 247 | asmlinkage long sys_fsetxattr(int fd, const char __user *name, | 321 | asmlinkage long sys_fsetxattr(int fd, const char __user *name, |
| 248 | const void __user *value, size_t size, int flags); | 322 | const void __user *value, size_t size, int flags); |
| 249 | asmlinkage ssize_t sys_getxattr(const char __user *path, const char __user *name, | 323 | asmlinkage long sys_getxattr(const char __user *path, const char __user *name, |
| 250 | void __user *value, size_t size); | 324 | void __user *value, size_t size); |
| 251 | asmlinkage ssize_t sys_lgetxattr(const char __user *path, const char __user *name, | 325 | asmlinkage long sys_lgetxattr(const char __user *path, const char __user *name, |
| 252 | void __user *value, size_t size); | 326 | void __user *value, size_t size); |
| 253 | asmlinkage ssize_t sys_fgetxattr(int fd, const char __user *name, | 327 | asmlinkage long sys_fgetxattr(int fd, const char __user *name, |
| 254 | void __user *value, size_t size); | 328 | void __user *value, size_t size); |
| 255 | asmlinkage ssize_t sys_listxattr(const char __user *path, char __user *list, | 329 | asmlinkage long sys_listxattr(const char __user *path, char __user *list, |
| 256 | size_t size); | 330 | size_t size); |
| 257 | asmlinkage ssize_t sys_llistxattr(const char __user *path, char __user *list, | 331 | asmlinkage long sys_llistxattr(const char __user *path, char __user *list, |
| 258 | size_t size); | 332 | size_t size); |
| 259 | asmlinkage ssize_t sys_flistxattr(int fd, char __user *list, size_t size); | 333 | asmlinkage long sys_flistxattr(int fd, char __user *list, size_t size); |
| 260 | asmlinkage long sys_removexattr(const char __user *path, | 334 | asmlinkage long sys_removexattr(const char __user *path, |
| 261 | const char __user *name); | 335 | const char __user *name); |
| 262 | asmlinkage long sys_lremovexattr(const char __user *path, | 336 | asmlinkage long sys_lremovexattr(const char __user *path, |
| 263 | const char __user *name); | 337 | const char __user *name); |
| 264 | asmlinkage long sys_fremovexattr(int fd, const char __user *name); | 338 | asmlinkage long sys_fremovexattr(int fd, const char __user *name); |
| 265 | 339 | ||
| 266 | asmlinkage unsigned long sys_brk(unsigned long brk); | 340 | asmlinkage long sys_brk(unsigned long brk); |
| 267 | asmlinkage long sys_mprotect(unsigned long start, size_t len, | 341 | asmlinkage long sys_mprotect(unsigned long start, size_t len, |
| 268 | unsigned long prot); | 342 | unsigned long prot); |
| 269 | asmlinkage unsigned long sys_mremap(unsigned long addr, | 343 | asmlinkage long sys_mremap(unsigned long addr, |
| 270 | unsigned long old_len, unsigned long new_len, | 344 | unsigned long old_len, unsigned long new_len, |
| 271 | unsigned long flags, unsigned long new_addr); | 345 | unsigned long flags, unsigned long new_addr); |
| 272 | asmlinkage long sys_remap_file_pages(unsigned long start, unsigned long size, | 346 | asmlinkage long sys_remap_file_pages(unsigned long start, unsigned long size, |
| 273 | unsigned long prot, unsigned long pgoff, | 347 | unsigned long prot, unsigned long pgoff, |
| 274 | unsigned long flags); | 348 | unsigned long flags); |
| @@ -321,10 +395,10 @@ asmlinkage long sys_io_submit(aio_context_t, long, | |||
| 321 | struct iocb __user * __user *); | 395 | struct iocb __user * __user *); |
| 322 | asmlinkage long sys_io_cancel(aio_context_t ctx_id, struct iocb __user *iocb, | 396 | asmlinkage long sys_io_cancel(aio_context_t ctx_id, struct iocb __user *iocb, |
| 323 | struct io_event __user *result); | 397 | struct io_event __user *result); |
| 324 | asmlinkage ssize_t sys_sendfile(int out_fd, int in_fd, | 398 | asmlinkage long sys_sendfile(int out_fd, int in_fd, |
| 325 | off_t __user *offset, size_t count); | 399 | off_t __user *offset, size_t count); |
| 326 | asmlinkage ssize_t sys_sendfile64(int out_fd, int in_fd, | 400 | asmlinkage long sys_sendfile64(int out_fd, int in_fd, |
| 327 | loff_t __user *offset, size_t count); | 401 | loff_t __user *offset, size_t count); |
| 328 | asmlinkage long sys_readlink(const char __user *path, | 402 | asmlinkage long sys_readlink(const char __user *path, |
| 329 | char __user *buf, int bufsiz); | 403 | char __user *buf, int bufsiz); |
| 330 | asmlinkage long sys_creat(const char __user *pathname, int mode); | 404 | asmlinkage long sys_creat(const char __user *pathname, int mode); |
| @@ -368,26 +442,25 @@ asmlinkage long sys_utime(char __user *filename, | |||
| 368 | struct utimbuf __user *times); | 442 | struct utimbuf __user *times); |
| 369 | asmlinkage long sys_utimes(char __user *filename, | 443 | asmlinkage long sys_utimes(char __user *filename, |
| 370 | struct timeval __user *utimes); | 444 | struct timeval __user *utimes); |
| 371 | asmlinkage off_t sys_lseek(unsigned int fd, off_t offset, | 445 | asmlinkage long sys_lseek(unsigned int fd, off_t offset, |
| 372 | unsigned int origin); | 446 | unsigned int origin); |
| 373 | asmlinkage long sys_llseek(unsigned int fd, unsigned long offset_high, | 447 | asmlinkage long sys_llseek(unsigned int fd, unsigned long offset_high, |
| 374 | unsigned long offset_low, loff_t __user *result, | 448 | unsigned long offset_low, loff_t __user *result, |
| 375 | unsigned int origin); | 449 | unsigned int origin); |
| 376 | asmlinkage ssize_t sys_read(unsigned int fd, char __user *buf, | 450 | asmlinkage long sys_read(unsigned int fd, char __user *buf, size_t count); |
| 377 | size_t count); | 451 | asmlinkage long sys_readahead(int fd, loff_t offset, size_t count); |
| 378 | asmlinkage ssize_t sys_readahead(int fd, loff_t offset, size_t count); | 452 | asmlinkage long sys_readv(unsigned long fd, |
| 379 | asmlinkage ssize_t sys_readv(unsigned long fd, | 453 | const struct iovec __user *vec, |
| 380 | const struct iovec __user *vec, | 454 | unsigned long vlen); |
| 381 | unsigned long vlen); | 455 | asmlinkage long sys_write(unsigned int fd, const char __user *buf, |
| 382 | asmlinkage ssize_t sys_write(unsigned int fd, const char __user *buf, | 456 | size_t count); |
| 383 | size_t count); | 457 | asmlinkage long sys_writev(unsigned long fd, |
| 384 | asmlinkage ssize_t sys_writev(unsigned long fd, | 458 | const struct iovec __user *vec, |
| 385 | const struct iovec __user *vec, | 459 | unsigned long vlen); |
| 386 | unsigned long vlen); | 460 | asmlinkage long sys_pread64(unsigned int fd, char __user *buf, |
| 387 | asmlinkage ssize_t sys_pread64(unsigned int fd, char __user *buf, | 461 | size_t count, loff_t pos); |
| 388 | size_t count, loff_t pos); | 462 | asmlinkage long sys_pwrite64(unsigned int fd, const char __user *buf, |
| 389 | asmlinkage ssize_t sys_pwrite64(unsigned int fd, const char __user *buf, | 463 | size_t count, loff_t pos); |
| 390 | size_t count, loff_t pos); | ||
| 391 | asmlinkage long sys_getcwd(char __user *buf, unsigned long size); | 464 | asmlinkage long sys_getcwd(char __user *buf, unsigned long size); |
| 392 | asmlinkage long sys_mkdir(const char __user *pathname, int mode); | 465 | asmlinkage long sys_mkdir(const char __user *pathname, int mode); |
| 393 | asmlinkage long sys_chdir(const char __user *filename); | 466 | asmlinkage long sys_chdir(const char __user *filename); |
| @@ -476,7 +549,7 @@ asmlinkage long sys_shmctl(int shmid, int cmd, struct shmid_ds __user *buf); | |||
| 476 | asmlinkage long sys_mq_open(const char __user *name, int oflag, mode_t mode, struct mq_attr __user *attr); | 549 | asmlinkage long sys_mq_open(const char __user *name, int oflag, mode_t mode, struct mq_attr __user *attr); |
| 477 | asmlinkage long sys_mq_unlink(const char __user *name); | 550 | asmlinkage long sys_mq_unlink(const char __user *name); |
| 478 | asmlinkage long sys_mq_timedsend(mqd_t mqdes, const char __user *msg_ptr, size_t msg_len, unsigned int msg_prio, const struct timespec __user *abs_timeout); | 551 | asmlinkage long sys_mq_timedsend(mqd_t mqdes, const char __user *msg_ptr, size_t msg_len, unsigned int msg_prio, const struct timespec __user *abs_timeout); |
| 479 | asmlinkage ssize_t sys_mq_timedreceive(mqd_t mqdes, char __user *msg_ptr, size_t msg_len, unsigned int __user *msg_prio, const struct timespec __user *abs_timeout); | 552 | asmlinkage long sys_mq_timedreceive(mqd_t mqdes, char __user *msg_ptr, size_t msg_len, unsigned int __user *msg_prio, const struct timespec __user *abs_timeout); |
| 480 | asmlinkage long sys_mq_notify(mqd_t mqdes, const struct sigevent __user *notification); | 553 | asmlinkage long sys_mq_notify(mqd_t mqdes, const struct sigevent __user *notification); |
| 481 | asmlinkage long sys_mq_getsetattr(mqd_t mqdes, const struct mq_attr __user *mqstat, struct mq_attr __user *omqstat); | 554 | asmlinkage long sys_mq_getsetattr(mqd_t mqdes, const struct mq_attr __user *mqstat, struct mq_attr __user *omqstat); |
| 482 | 555 | ||
| @@ -530,11 +603,6 @@ asmlinkage long sys_move_pages(pid_t pid, unsigned long nr_pages, | |||
| 530 | const int __user *nodes, | 603 | const int __user *nodes, |
| 531 | int __user *status, | 604 | int __user *status, |
| 532 | int flags); | 605 | int flags); |
| 533 | asmlinkage long compat_sys_move_pages(pid_t pid, unsigned long nr_page, | ||
| 534 | __u32 __user *pages, | ||
| 535 | const int __user *nodes, | ||
| 536 | int __user *status, | ||
| 537 | int flags); | ||
| 538 | asmlinkage long sys_mbind(unsigned long start, unsigned long len, | 606 | asmlinkage long sys_mbind(unsigned long start, unsigned long len, |
| 539 | unsigned long mode, | 607 | unsigned long mode, |
| 540 | unsigned long __user *nmask, | 608 | unsigned long __user *nmask, |
| @@ -549,7 +617,7 @@ asmlinkage long sys_inotify_init(void); | |||
| 549 | asmlinkage long sys_inotify_init1(int flags); | 617 | asmlinkage long sys_inotify_init1(int flags); |
| 550 | asmlinkage long sys_inotify_add_watch(int fd, const char __user *path, | 618 | asmlinkage long sys_inotify_add_watch(int fd, const char __user *path, |
| 551 | u32 mask); | 619 | u32 mask); |
| 552 | asmlinkage long sys_inotify_rm_watch(int fd, u32 wd); | 620 | asmlinkage long sys_inotify_rm_watch(int fd, __s32 wd); |
| 553 | 621 | ||
| 554 | asmlinkage long sys_spu_run(int fd, __u32 __user *unpc, | 622 | asmlinkage long sys_spu_run(int fd, __u32 __user *unpc, |
| 555 | __u32 __user *ustatus); | 623 | __u32 __user *ustatus); |
| @@ -583,13 +651,6 @@ asmlinkage long sys_readlinkat(int dfd, const char __user *path, char __user *bu | |||
| 583 | int bufsiz); | 651 | int bufsiz); |
| 584 | asmlinkage long sys_utimensat(int dfd, char __user *filename, | 652 | asmlinkage long sys_utimensat(int dfd, char __user *filename, |
| 585 | struct timespec __user *utimes, int flags); | 653 | struct timespec __user *utimes, int flags); |
| 586 | asmlinkage long compat_sys_futimesat(unsigned int dfd, char __user *filename, | ||
| 587 | struct compat_timeval __user *t); | ||
| 588 | asmlinkage long compat_sys_newfstatat(unsigned int dfd, char __user * filename, | ||
| 589 | struct compat_stat __user *statbuf, | ||
| 590 | int flag); | ||
| 591 | asmlinkage long compat_sys_openat(unsigned int dfd, const char __user *filename, | ||
| 592 | int flags, int mode); | ||
| 593 | asmlinkage long sys_unshare(unsigned long unshare_flags); | 654 | asmlinkage long sys_unshare(unsigned long unshare_flags); |
| 594 | 655 | ||
| 595 | asmlinkage long sys_splice(int fd_in, loff_t __user *off_in, | 656 | asmlinkage long sys_splice(int fd_in, loff_t __user *off_in, |
| @@ -621,6 +682,15 @@ asmlinkage long sys_timerfd_gettime(int ufd, struct itimerspec __user *otmr); | |||
| 621 | asmlinkage long sys_eventfd(unsigned int count); | 682 | asmlinkage long sys_eventfd(unsigned int count); |
| 622 | asmlinkage long sys_eventfd2(unsigned int count, int flags); | 683 | asmlinkage long sys_eventfd2(unsigned int count, int flags); |
| 623 | asmlinkage long sys_fallocate(int fd, int mode, loff_t offset, loff_t len); | 684 | asmlinkage long sys_fallocate(int fd, int mode, loff_t offset, loff_t len); |
| 685 | asmlinkage long sys_old_readdir(unsigned int, struct old_linux_dirent __user *, unsigned int); | ||
| 686 | asmlinkage long sys_pselect6(int, fd_set __user *, fd_set __user *, | ||
| 687 | fd_set __user *, struct timespec __user *, | ||
| 688 | void __user *); | ||
| 689 | asmlinkage long sys_ppoll(struct pollfd __user *, unsigned int, | ||
| 690 | struct timespec __user *, const sigset_t __user *, | ||
| 691 | size_t); | ||
| 692 | asmlinkage long sys_pipe2(int __user *, int); | ||
| 693 | asmlinkage long sys_pipe(int __user *); | ||
| 624 | 694 | ||
| 625 | int kernel_execve(const char *filename, char *const argv[], char *const envp[]); | 695 | int kernel_execve(const char *filename, char *const argv[], char *const envp[]); |
| 626 | 696 | ||
diff --git a/include/linux/taskstats.h b/include/linux/taskstats.h index 18269e956a71..341dddb55090 100644 --- a/include/linux/taskstats.h +++ b/include/linux/taskstats.h | |||
| @@ -16,6 +16,8 @@ | |||
| 16 | #ifndef _LINUX_TASKSTATS_H | 16 | #ifndef _LINUX_TASKSTATS_H |
| 17 | #define _LINUX_TASKSTATS_H | 17 | #define _LINUX_TASKSTATS_H |
| 18 | 18 | ||
| 19 | #include <linux/types.h> | ||
| 20 | |||
| 19 | /* Format for per-task data returned to userland when | 21 | /* Format for per-task data returned to userland when |
| 20 | * - a task exits | 22 | * - a task exits |
| 21 | * - listener requests stats for a task | 23 | * - listener requests stats for a task |
diff --git a/include/linux/tc_act/tc_gact.h b/include/linux/tc_act/tc_gact.h index 23a03eb630db..e895c0a39629 100644 --- a/include/linux/tc_act/tc_gact.h +++ b/include/linux/tc_act/tc_gact.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __LINUX_TC_GACT_H | 1 | #ifndef __LINUX_TC_GACT_H |
| 2 | #define __LINUX_TC_GACT_H | 2 | #define __LINUX_TC_GACT_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/pkt_cls.h> | 5 | #include <linux/pkt_cls.h> |
| 5 | 6 | ||
| 6 | #define TCA_ACT_GACT 5 | 7 | #define TCA_ACT_GACT 5 |
diff --git a/include/linux/tc_act/tc_mirred.h b/include/linux/tc_act/tc_mirred.h index 71d63409d568..0a99ab60d610 100644 --- a/include/linux/tc_act/tc_mirred.h +++ b/include/linux/tc_act/tc_mirred.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __LINUX_TC_MIR_H | 1 | #ifndef __LINUX_TC_MIR_H |
| 2 | #define __LINUX_TC_MIR_H | 2 | #define __LINUX_TC_MIR_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/pkt_cls.h> | 5 | #include <linux/pkt_cls.h> |
| 5 | 6 | ||
| 6 | #define TCA_ACT_MIRRED 8 | 7 | #define TCA_ACT_MIRRED 8 |
diff --git a/include/linux/tc_act/tc_pedit.h b/include/linux/tc_act/tc_pedit.h index 83e56e32e8e0..54ce9064115a 100644 --- a/include/linux/tc_act/tc_pedit.h +++ b/include/linux/tc_act/tc_pedit.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __LINUX_TC_PED_H | 1 | #ifndef __LINUX_TC_PED_H |
| 2 | #define __LINUX_TC_PED_H | 2 | #define __LINUX_TC_PED_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/pkt_cls.h> | 5 | #include <linux/pkt_cls.h> |
| 5 | 6 | ||
| 6 | #define TCA_ACT_PEDIT 7 | 7 | #define TCA_ACT_PEDIT 7 |
diff --git a/include/linux/tc_ematch/tc_em_cmp.h b/include/linux/tc_ematch/tc_em_cmp.h index c7f4d43618fd..38e7f7b25ec2 100644 --- a/include/linux/tc_ematch/tc_em_cmp.h +++ b/include/linux/tc_ematch/tc_em_cmp.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __LINUX_TC_EM_CMP_H | 1 | #ifndef __LINUX_TC_EM_CMP_H |
| 2 | #define __LINUX_TC_EM_CMP_H | 2 | #define __LINUX_TC_EM_CMP_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/pkt_cls.h> | 5 | #include <linux/pkt_cls.h> |
| 5 | 6 | ||
| 6 | struct tcf_em_cmp | 7 | struct tcf_em_cmp |
diff --git a/include/linux/tc_ematch/tc_em_meta.h b/include/linux/tc_ematch/tc_em_meta.h index c50d2ba5caf0..dcfb733fa1f6 100644 --- a/include/linux/tc_ematch/tc_em_meta.h +++ b/include/linux/tc_ematch/tc_em_meta.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __LINUX_TC_EM_META_H | 1 | #ifndef __LINUX_TC_EM_META_H |
| 2 | #define __LINUX_TC_EM_META_H | 2 | #define __LINUX_TC_EM_META_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/pkt_cls.h> | 5 | #include <linux/pkt_cls.h> |
| 5 | 6 | ||
| 6 | enum | 7 | enum |
diff --git a/include/linux/tc_ematch/tc_em_nbyte.h b/include/linux/tc_ematch/tc_em_nbyte.h index f19d1f58ec9d..9ed8c2e58488 100644 --- a/include/linux/tc_ematch/tc_em_nbyte.h +++ b/include/linux/tc_ematch/tc_em_nbyte.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __LINUX_TC_EM_NBYTE_H | 1 | #ifndef __LINUX_TC_EM_NBYTE_H |
| 2 | #define __LINUX_TC_EM_NBYTE_H | 2 | #define __LINUX_TC_EM_NBYTE_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/pkt_cls.h> | 5 | #include <linux/pkt_cls.h> |
| 5 | 6 | ||
| 6 | struct tcf_em_nbyte | 7 | struct tcf_em_nbyte |
diff --git a/include/linux/tc_ematch/tc_em_text.h b/include/linux/tc_ematch/tc_em_text.h index 7cd43e99c7f5..d12a73a225fc 100644 --- a/include/linux/tc_ematch/tc_em_text.h +++ b/include/linux/tc_ematch/tc_em_text.h | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | #ifndef __LINUX_TC_EM_TEXT_H | 1 | #ifndef __LINUX_TC_EM_TEXT_H |
| 2 | #define __LINUX_TC_EM_TEXT_H | 2 | #define __LINUX_TC_EM_TEXT_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 4 | #include <linux/pkt_cls.h> | 5 | #include <linux/pkt_cls.h> |
| 5 | 6 | ||
| 6 | #define TC_EM_TEXT_ALGOSIZ 16 | 7 | #define TC_EM_TEXT_ALGOSIZ 16 |
diff --git a/include/linux/threads.h b/include/linux/threads.h index 38d1a5d6568e..052b12bec8bd 100644 --- a/include/linux/threads.h +++ b/include/linux/threads.h | |||
| @@ -8,17 +8,17 @@ | |||
| 8 | */ | 8 | */ |
| 9 | 9 | ||
| 10 | /* | 10 | /* |
| 11 | * Maximum supported processors that can run under SMP. This value is | 11 | * Maximum supported processors. Setting this smaller saves quite a |
| 12 | * set via configure setting. The maximum is equal to the size of the | 12 | * bit of memory. Use nr_cpu_ids instead of this except for static bitmaps. |
| 13 | * bitmasks used on that platform, i.e. 32 or 64. Setting this smaller | ||
| 14 | * saves quite a bit of memory. | ||
| 15 | */ | 13 | */ |
| 16 | #ifdef CONFIG_SMP | 14 | #ifndef CONFIG_NR_CPUS |
| 17 | #define NR_CPUS CONFIG_NR_CPUS | 15 | /* FIXME: This should be fixed in the arch's Kconfig */ |
| 18 | #else | 16 | #define CONFIG_NR_CPUS 1 |
| 19 | #define NR_CPUS 1 | ||
| 20 | #endif | 17 | #endif |
| 21 | 18 | ||
| 19 | /* Places which use this should consider cpumask_var_t. */ | ||
| 20 | #define NR_CPUS CONFIG_NR_CPUS | ||
| 21 | |||
| 22 | #define MIN_THREADS_LEFT_FOR_ROOT 4 | 22 | #define MIN_THREADS_LEFT_FOR_ROOT 4 |
| 23 | 23 | ||
| 24 | /* | 24 | /* |
diff --git a/include/linux/tick.h b/include/linux/tick.h index b6ec8189ac0c..469b82d88b3b 100644 --- a/include/linux/tick.h +++ b/include/linux/tick.h | |||
| @@ -84,10 +84,10 @@ static inline void tick_cancel_sched_timer(int cpu) { } | |||
| 84 | 84 | ||
| 85 | # ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST | 85 | # ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST |
| 86 | extern struct tick_device *tick_get_broadcast_device(void); | 86 | extern struct tick_device *tick_get_broadcast_device(void); |
| 87 | extern cpumask_t *tick_get_broadcast_mask(void); | 87 | extern struct cpumask *tick_get_broadcast_mask(void); |
| 88 | 88 | ||
| 89 | # ifdef CONFIG_TICK_ONESHOT | 89 | # ifdef CONFIG_TICK_ONESHOT |
| 90 | extern cpumask_t *tick_get_broadcast_oneshot_mask(void); | 90 | extern struct cpumask *tick_get_broadcast_oneshot_mask(void); |
| 91 | # endif | 91 | # endif |
| 92 | 92 | ||
| 93 | # endif /* BROADCAST */ | 93 | # endif /* BROADCAST */ |
diff --git a/include/linux/time.h b/include/linux/time.h index ce321ac5c8f8..fbbd2a1c92ba 100644 --- a/include/linux/time.h +++ b/include/linux/time.h | |||
| @@ -105,6 +105,7 @@ extern unsigned long read_persistent_clock(void); | |||
| 105 | extern int update_persistent_clock(struct timespec now); | 105 | extern int update_persistent_clock(struct timespec now); |
| 106 | extern int no_sync_cmos_clock __read_mostly; | 106 | extern int no_sync_cmos_clock __read_mostly; |
| 107 | void timekeeping_init(void); | 107 | void timekeeping_init(void); |
| 108 | extern int timekeeping_suspended; | ||
| 108 | 109 | ||
| 109 | unsigned long get_seconds(void); | 110 | unsigned long get_seconds(void); |
| 110 | struct timespec current_kernel_time(void); | 111 | struct timespec current_kernel_time(void); |
diff --git a/include/linux/topology.h b/include/linux/topology.h index 0c5b5ac36d8e..e632d29f0544 100644 --- a/include/linux/topology.h +++ b/include/linux/topology.h | |||
| @@ -125,7 +125,8 @@ int arch_update_cpu_topology(void); | |||
| 125 | | SD_WAKE_AFFINE \ | 125 | | SD_WAKE_AFFINE \ |
| 126 | | SD_WAKE_BALANCE \ | 126 | | SD_WAKE_BALANCE \ |
| 127 | | SD_SHARE_PKG_RESOURCES\ | 127 | | SD_SHARE_PKG_RESOURCES\ |
| 128 | | BALANCE_FOR_MC_POWER, \ | 128 | | sd_balance_for_mc_power()\ |
| 129 | | sd_power_saving_flags(),\ | ||
| 129 | .last_balance = jiffies, \ | 130 | .last_balance = jiffies, \ |
| 130 | .balance_interval = 1, \ | 131 | .balance_interval = 1, \ |
| 131 | } | 132 | } |
| @@ -150,7 +151,8 @@ int arch_update_cpu_topology(void); | |||
| 150 | | SD_BALANCE_FORK \ | 151 | | SD_BALANCE_FORK \ |
| 151 | | SD_WAKE_AFFINE \ | 152 | | SD_WAKE_AFFINE \ |
| 152 | | SD_WAKE_BALANCE \ | 153 | | SD_WAKE_BALANCE \ |
| 153 | | BALANCE_FOR_PKG_POWER,\ | 154 | | sd_balance_for_package_power()\ |
| 155 | | sd_power_saving_flags(),\ | ||
| 154 | .last_balance = jiffies, \ | 156 | .last_balance = jiffies, \ |
| 155 | .balance_interval = 1, \ | 157 | .balance_interval = 1, \ |
| 156 | } | 158 | } |
diff --git a/include/linux/tty.h b/include/linux/tty.h index 3f4954c55e53..fc39db95499f 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h | |||
| @@ -180,8 +180,17 @@ struct signal_struct; | |||
| 180 | * until a hangup so don't use the wrong path. | 180 | * until a hangup so don't use the wrong path. |
| 181 | */ | 181 | */ |
| 182 | 182 | ||
| 183 | struct tty_port; | ||
| 184 | |||
| 185 | struct tty_port_operations { | ||
| 186 | /* Return 1 if the carrier is raised */ | ||
| 187 | int (*carrier_raised)(struct tty_port *port); | ||
| 188 | void (*raise_dtr_rts)(struct tty_port *port); | ||
| 189 | }; | ||
| 190 | |||
| 183 | struct tty_port { | 191 | struct tty_port { |
| 184 | struct tty_struct *tty; /* Back pointer */ | 192 | struct tty_struct *tty; /* Back pointer */ |
| 193 | const struct tty_port_operations *ops; /* Port operations */ | ||
| 185 | spinlock_t lock; /* Lock protecting tty field */ | 194 | spinlock_t lock; /* Lock protecting tty field */ |
| 186 | int blocked_open; /* Waiting to open */ | 195 | int blocked_open; /* Waiting to open */ |
| 187 | int count; /* Usage count */ | 196 | int count; /* Usage count */ |
| @@ -253,6 +262,7 @@ struct tty_struct { | |||
| 253 | unsigned int column; | 262 | unsigned int column; |
| 254 | unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1; | 263 | unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1; |
| 255 | unsigned char closing:1; | 264 | unsigned char closing:1; |
| 265 | unsigned char echo_overrun:1; | ||
| 256 | unsigned short minimum_to_wake; | 266 | unsigned short minimum_to_wake; |
| 257 | unsigned long overrun_time; | 267 | unsigned long overrun_time; |
| 258 | int num_overrun; | 268 | int num_overrun; |
| @@ -262,11 +272,16 @@ struct tty_struct { | |||
| 262 | int read_tail; | 272 | int read_tail; |
| 263 | int read_cnt; | 273 | int read_cnt; |
| 264 | unsigned long read_flags[N_TTY_BUF_SIZE/(8*sizeof(unsigned long))]; | 274 | unsigned long read_flags[N_TTY_BUF_SIZE/(8*sizeof(unsigned long))]; |
| 275 | unsigned char *echo_buf; | ||
| 276 | unsigned int echo_pos; | ||
| 277 | unsigned int echo_cnt; | ||
| 265 | int canon_data; | 278 | int canon_data; |
| 266 | unsigned long canon_head; | 279 | unsigned long canon_head; |
| 267 | unsigned int canon_column; | 280 | unsigned int canon_column; |
| 268 | struct mutex atomic_read_lock; | 281 | struct mutex atomic_read_lock; |
| 269 | struct mutex atomic_write_lock; | 282 | struct mutex atomic_write_lock; |
| 283 | struct mutex output_lock; | ||
| 284 | struct mutex echo_lock; | ||
| 270 | unsigned char *write_buf; | 285 | unsigned char *write_buf; |
| 271 | int write_cnt; | 286 | int write_cnt; |
| 272 | spinlock_t read_lock; | 287 | spinlock_t read_lock; |
| @@ -295,6 +310,7 @@ struct tty_struct { | |||
| 295 | #define TTY_PUSH 6 /* n_tty private */ | 310 | #define TTY_PUSH 6 /* n_tty private */ |
| 296 | #define TTY_CLOSING 7 /* ->close() in progress */ | 311 | #define TTY_CLOSING 7 /* ->close() in progress */ |
| 297 | #define TTY_LDISC 9 /* Line discipline attached */ | 312 | #define TTY_LDISC 9 /* Line discipline attached */ |
| 313 | #define TTY_LDISC_CHANGING 10 /* Line discipline changing */ | ||
| 298 | #define TTY_HW_COOK_OUT 14 /* Hardware can do output cooking */ | 314 | #define TTY_HW_COOK_OUT 14 /* Hardware can do output cooking */ |
| 299 | #define TTY_HW_COOK_IN 15 /* Hardware can do input cooking */ | 315 | #define TTY_HW_COOK_IN 15 /* Hardware can do input cooking */ |
| 300 | #define TTY_PTY_LOCK 16 /* pty private */ | 316 | #define TTY_PTY_LOCK 16 /* pty private */ |
| @@ -354,8 +370,7 @@ extern int tty_write_room(struct tty_struct *tty); | |||
| 354 | extern void tty_driver_flush_buffer(struct tty_struct *tty); | 370 | extern void tty_driver_flush_buffer(struct tty_struct *tty); |
| 355 | extern void tty_throttle(struct tty_struct *tty); | 371 | extern void tty_throttle(struct tty_struct *tty); |
| 356 | extern void tty_unthrottle(struct tty_struct *tty); | 372 | extern void tty_unthrottle(struct tty_struct *tty); |
| 357 | extern int tty_do_resize(struct tty_struct *tty, struct tty_struct *real_tty, | 373 | extern int tty_do_resize(struct tty_struct *tty, struct winsize *ws); |
| 358 | struct winsize *ws); | ||
| 359 | extern void tty_shutdown(struct tty_struct *tty); | 374 | extern void tty_shutdown(struct tty_struct *tty); |
| 360 | extern void tty_free_termios(struct tty_struct *tty); | 375 | extern void tty_free_termios(struct tty_struct *tty); |
| 361 | extern int is_current_pgrp_orphaned(void); | 376 | extern int is_current_pgrp_orphaned(void); |
| @@ -421,6 +436,14 @@ extern int tty_port_alloc_xmit_buf(struct tty_port *port); | |||
| 421 | extern void tty_port_free_xmit_buf(struct tty_port *port); | 436 | extern void tty_port_free_xmit_buf(struct tty_port *port); |
| 422 | extern struct tty_struct *tty_port_tty_get(struct tty_port *port); | 437 | extern struct tty_struct *tty_port_tty_get(struct tty_port *port); |
| 423 | extern void tty_port_tty_set(struct tty_port *port, struct tty_struct *tty); | 438 | extern void tty_port_tty_set(struct tty_port *port, struct tty_struct *tty); |
| 439 | extern int tty_port_carrier_raised(struct tty_port *port); | ||
| 440 | extern void tty_port_raise_dtr_rts(struct tty_port *port); | ||
| 441 | extern void tty_port_hangup(struct tty_port *port); | ||
| 442 | extern int tty_port_block_til_ready(struct tty_port *port, | ||
| 443 | struct tty_struct *tty, struct file *filp); | ||
| 444 | extern int tty_port_close_start(struct tty_port *port, | ||
| 445 | struct tty_struct *tty, struct file *filp); | ||
| 446 | extern void tty_port_close_end(struct tty_port *port, struct tty_struct *tty); | ||
| 424 | 447 | ||
| 425 | extern int tty_register_ldisc(int disc, struct tty_ldisc_ops *new_ldisc); | 448 | extern int tty_register_ldisc(int disc, struct tty_ldisc_ops *new_ldisc); |
| 426 | extern int tty_unregister_ldisc(int disc); | 449 | extern int tty_unregister_ldisc(int disc); |
diff --git a/include/linux/tty_driver.h b/include/linux/tty_driver.h index 78416b901589..08e088334dba 100644 --- a/include/linux/tty_driver.h +++ b/include/linux/tty_driver.h | |||
| @@ -196,8 +196,7 @@ | |||
| 196 | * Optional: If not provided then the write method is called under | 196 | * Optional: If not provided then the write method is called under |
| 197 | * the atomic write lock to keep it serialized with the ldisc. | 197 | * the atomic write lock to keep it serialized with the ldisc. |
| 198 | * | 198 | * |
| 199 | * int (*resize)(struct tty_struct *tty, struct tty_struct *real_tty, | 199 | * int (*resize)(struct tty_struct *tty, struct winsize *ws) |
| 200 | * unsigned int rows, unsigned int cols); | ||
| 201 | * | 200 | * |
| 202 | * Called when a termios request is issued which changes the | 201 | * Called when a termios request is issued which changes the |
| 203 | * requested terminal geometry. | 202 | * requested terminal geometry. |
| @@ -258,8 +257,7 @@ struct tty_operations { | |||
| 258 | int (*tiocmget)(struct tty_struct *tty, struct file *file); | 257 | int (*tiocmget)(struct tty_struct *tty, struct file *file); |
| 259 | int (*tiocmset)(struct tty_struct *tty, struct file *file, | 258 | int (*tiocmset)(struct tty_struct *tty, struct file *file, |
| 260 | unsigned int set, unsigned int clear); | 259 | unsigned int set, unsigned int clear); |
| 261 | int (*resize)(struct tty_struct *tty, struct tty_struct *real_tty, | 260 | int (*resize)(struct tty_struct *tty, struct winsize *ws); |
| 262 | struct winsize *ws); | ||
| 263 | int (*set_termiox)(struct tty_struct *tty, struct termiox *tnew); | 261 | int (*set_termiox)(struct tty_struct *tty, struct termiox *tnew); |
| 264 | #ifdef CONFIG_CONSOLE_POLL | 262 | #ifdef CONFIG_CONSOLE_POLL |
| 265 | int (*poll_init)(struct tty_driver *driver, int line, char *options); | 263 | int (*poll_init)(struct tty_driver *driver, int line, char *options); |
diff --git a/include/linux/types.h b/include/linux/types.h index 121f349cb7ec..712ca53bc348 100644 --- a/include/linux/types.h +++ b/include/linux/types.h | |||
| @@ -176,10 +176,9 @@ typedef __u16 __bitwise __le16; | |||
| 176 | typedef __u16 __bitwise __be16; | 176 | typedef __u16 __bitwise __be16; |
| 177 | typedef __u32 __bitwise __le32; | 177 | typedef __u32 __bitwise __le32; |
| 178 | typedef __u32 __bitwise __be32; | 178 | typedef __u32 __bitwise __be32; |
| 179 | #if defined(__GNUC__) | ||
| 180 | typedef __u64 __bitwise __le64; | 179 | typedef __u64 __bitwise __le64; |
| 181 | typedef __u64 __bitwise __be64; | 180 | typedef __u64 __bitwise __be64; |
| 182 | #endif | 181 | |
| 183 | typedef __u16 __bitwise __sum16; | 182 | typedef __u16 __bitwise __sum16; |
| 184 | typedef __u32 __bitwise __wsum; | 183 | typedef __u32 __bitwise __wsum; |
| 185 | 184 | ||
| @@ -195,6 +194,16 @@ typedef u32 phys_addr_t; | |||
| 195 | 194 | ||
| 196 | typedef phys_addr_t resource_size_t; | 195 | typedef phys_addr_t resource_size_t; |
| 197 | 196 | ||
| 197 | typedef struct { | ||
| 198 | volatile int counter; | ||
| 199 | } atomic_t; | ||
| 200 | |||
| 201 | #ifdef CONFIG_64BIT | ||
| 202 | typedef struct { | ||
| 203 | volatile long counter; | ||
| 204 | } atomic64_t; | ||
| 205 | #endif | ||
| 206 | |||
| 198 | struct ustat { | 207 | struct ustat { |
| 199 | __kernel_daddr_t f_tfree; | 208 | __kernel_daddr_t f_tfree; |
| 200 | __kernel_ino_t f_tinode; | 209 | __kernel_ino_t f_tinode; |
diff --git a/include/linux/uio_driver.h b/include/linux/uio_driver.h index cdf338d94b7f..a0bb6bd2e5c1 100644 --- a/include/linux/uio_driver.h +++ b/include/linux/uio_driver.h | |||
| @@ -38,6 +38,24 @@ struct uio_mem { | |||
| 38 | 38 | ||
| 39 | #define MAX_UIO_MAPS 5 | 39 | #define MAX_UIO_MAPS 5 |
| 40 | 40 | ||
| 41 | struct uio_portio; | ||
| 42 | |||
| 43 | /** | ||
| 44 | * struct uio_port - description of a UIO port region | ||
| 45 | * @start: start of port region | ||
| 46 | * @size: size of port region | ||
| 47 | * @porttype: type of port (see UIO_PORT_* below) | ||
| 48 | * @portio: for use by the UIO core only. | ||
| 49 | */ | ||
| 50 | struct uio_port { | ||
| 51 | unsigned long start; | ||
| 52 | unsigned long size; | ||
| 53 | int porttype; | ||
| 54 | struct uio_portio *portio; | ||
| 55 | }; | ||
| 56 | |||
| 57 | #define MAX_UIO_PORT_REGIONS 5 | ||
| 58 | |||
| 41 | struct uio_device; | 59 | struct uio_device; |
| 42 | 60 | ||
| 43 | /** | 61 | /** |
| @@ -46,6 +64,7 @@ struct uio_device; | |||
| 46 | * @name: device name | 64 | * @name: device name |
| 47 | * @version: device driver version | 65 | * @version: device driver version |
| 48 | * @mem: list of mappable memory regions, size==0 for end of list | 66 | * @mem: list of mappable memory regions, size==0 for end of list |
| 67 | * @port: list of port regions, size==0 for end of list | ||
| 49 | * @irq: interrupt number or UIO_IRQ_CUSTOM | 68 | * @irq: interrupt number or UIO_IRQ_CUSTOM |
| 50 | * @irq_flags: flags for request_irq() | 69 | * @irq_flags: flags for request_irq() |
| 51 | * @priv: optional private data | 70 | * @priv: optional private data |
| @@ -57,9 +76,10 @@ struct uio_device; | |||
| 57 | */ | 76 | */ |
| 58 | struct uio_info { | 77 | struct uio_info { |
| 59 | struct uio_device *uio_dev; | 78 | struct uio_device *uio_dev; |
| 60 | char *name; | 79 | const char *name; |
| 61 | char *version; | 80 | const char *version; |
| 62 | struct uio_mem mem[MAX_UIO_MAPS]; | 81 | struct uio_mem mem[MAX_UIO_MAPS]; |
| 82 | struct uio_port port[MAX_UIO_PORT_REGIONS]; | ||
| 63 | long irq; | 83 | long irq; |
| 64 | unsigned long irq_flags; | 84 | unsigned long irq_flags; |
| 65 | void *priv; | 85 | void *priv; |
| @@ -92,4 +112,10 @@ extern void uio_event_notify(struct uio_info *info); | |||
| 92 | #define UIO_MEM_LOGICAL 2 | 112 | #define UIO_MEM_LOGICAL 2 |
| 93 | #define UIO_MEM_VIRTUAL 3 | 113 | #define UIO_MEM_VIRTUAL 3 |
| 94 | 114 | ||
| 115 | /* defines for uio_port->porttype */ | ||
| 116 | #define UIO_PORT_NONE 0 | ||
| 117 | #define UIO_PORT_X86 1 | ||
| 118 | #define UIO_PORT_GPIO 2 | ||
| 119 | #define UIO_PORT_OTHER 3 | ||
| 120 | |||
| 95 | #endif /* _LINUX_UIO_DRIVER_H_ */ | 121 | #endif /* _LINUX_UIO_DRIVER_H_ */ |
diff --git a/include/linux/unwind.h b/include/linux/unwind.h deleted file mode 100644 index 7760860fa170..000000000000 --- a/include/linux/unwind.h +++ /dev/null | |||
| @@ -1,68 +0,0 @@ | |||
| 1 | #ifndef _LINUX_UNWIND_H | ||
| 2 | #define _LINUX_UNWIND_H | ||
| 3 | |||
| 4 | /* | ||
| 5 | * Copyright (C) 2002-2006 Novell, Inc. | ||
| 6 | * Jan Beulich <jbeulich@novell.com> | ||
| 7 | * This code is released under version 2 of the GNU GPL. | ||
| 8 | * | ||
| 9 | * A simple API for unwinding kernel stacks. This is used for | ||
| 10 | * debugging and error reporting purposes. The kernel doesn't need | ||
| 11 | * full-blown stack unwinding with all the bells and whistles, so there | ||
| 12 | * is not much point in implementing the full Dwarf2 unwind API. | ||
| 13 | */ | ||
| 14 | |||
| 15 | struct module; | ||
| 16 | |||
| 17 | struct unwind_frame_info {}; | ||
| 18 | |||
| 19 | static inline void unwind_init(void) {} | ||
| 20 | static inline void unwind_setup(void) {} | ||
| 21 | |||
| 22 | #ifdef CONFIG_MODULES | ||
| 23 | |||
| 24 | static inline void *unwind_add_table(struct module *mod, | ||
| 25 | const void *table_start, | ||
| 26 | unsigned long table_size) | ||
| 27 | { | ||
| 28 | return NULL; | ||
| 29 | } | ||
| 30 | |||
| 31 | static inline void unwind_remove_table(void *handle, int init_only) | ||
| 32 | { | ||
| 33 | } | ||
| 34 | |||
| 35 | #endif | ||
| 36 | |||
| 37 | static inline int unwind_init_frame_info(struct unwind_frame_info *info, | ||
| 38 | struct task_struct *tsk, | ||
| 39 | const struct pt_regs *regs) | ||
| 40 | { | ||
| 41 | return -ENOSYS; | ||
| 42 | } | ||
| 43 | |||
| 44 | static inline int unwind_init_blocked(struct unwind_frame_info *info, | ||
| 45 | struct task_struct *tsk) | ||
| 46 | { | ||
| 47 | return -ENOSYS; | ||
| 48 | } | ||
| 49 | |||
| 50 | static inline int unwind_init_running(struct unwind_frame_info *info, | ||
| 51 | asmlinkage int (*cb)(struct unwind_frame_info *, | ||
| 52 | void *arg), | ||
| 53 | void *arg) | ||
| 54 | { | ||
| 55 | return -ENOSYS; | ||
| 56 | } | ||
| 57 | |||
| 58 | static inline int unwind(struct unwind_frame_info *info) | ||
| 59 | { | ||
| 60 | return -ENOSYS; | ||
| 61 | } | ||
| 62 | |||
| 63 | static inline int unwind_to_user(struct unwind_frame_info *info) | ||
| 64 | { | ||
| 65 | return -ENOSYS; | ||
| 66 | } | ||
| 67 | |||
| 68 | #endif /* _LINUX_UNWIND_H */ | ||
diff --git a/include/linux/usb.h b/include/linux/usb.h index f72aa51f7bcd..88079fd60235 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h | |||
| @@ -108,6 +108,7 @@ enum usb_interface_condition { | |||
| 108 | * (in probe()), bound to a driver, or unbinding (in disconnect()) | 108 | * (in probe()), bound to a driver, or unbinding (in disconnect()) |
| 109 | * @is_active: flag set when the interface is bound and not suspended. | 109 | * @is_active: flag set when the interface is bound and not suspended. |
| 110 | * @sysfs_files_created: sysfs attributes exist | 110 | * @sysfs_files_created: sysfs attributes exist |
| 111 | * @ep_devs_created: endpoint child pseudo-devices exist | ||
| 111 | * @unregistering: flag set when the interface is being unregistered | 112 | * @unregistering: flag set when the interface is being unregistered |
| 112 | * @needs_remote_wakeup: flag set when the driver requires remote-wakeup | 113 | * @needs_remote_wakeup: flag set when the driver requires remote-wakeup |
| 113 | * capability during autosuspend. | 114 | * capability during autosuspend. |
| @@ -120,6 +121,11 @@ enum usb_interface_condition { | |||
| 120 | * to the sysfs representation for that device. | 121 | * to the sysfs representation for that device. |
| 121 | * @pm_usage_cnt: PM usage counter for this interface; autosuspend is not | 122 | * @pm_usage_cnt: PM usage counter for this interface; autosuspend is not |
| 122 | * allowed unless the counter is 0. | 123 | * allowed unless the counter is 0. |
| 124 | * @reset_ws: Used for scheduling resets from atomic context. | ||
| 125 | * @reset_running: set to 1 if the interface is currently running a | ||
| 126 | * queued reset so that usb_cancel_queued_reset() doesn't try to | ||
| 127 | * remove from the workqueue when running inside the worker | ||
| 128 | * thread. See __usb_queue_reset_device(). | ||
| 123 | * | 129 | * |
| 124 | * USB device drivers attach to interfaces on a physical device. Each | 130 | * USB device drivers attach to interfaces on a physical device. Each |
| 125 | * interface encapsulates a single high level function, such as feeding | 131 | * interface encapsulates a single high level function, such as feeding |
| @@ -164,14 +170,17 @@ struct usb_interface { | |||
| 164 | enum usb_interface_condition condition; /* state of binding */ | 170 | enum usb_interface_condition condition; /* state of binding */ |
| 165 | unsigned is_active:1; /* the interface is not suspended */ | 171 | unsigned is_active:1; /* the interface is not suspended */ |
| 166 | unsigned sysfs_files_created:1; /* the sysfs attributes exist */ | 172 | unsigned sysfs_files_created:1; /* the sysfs attributes exist */ |
| 173 | unsigned ep_devs_created:1; /* endpoint "devices" exist */ | ||
| 167 | unsigned unregistering:1; /* unregistration is in progress */ | 174 | unsigned unregistering:1; /* unregistration is in progress */ |
| 168 | unsigned needs_remote_wakeup:1; /* driver requires remote wakeup */ | 175 | unsigned needs_remote_wakeup:1; /* driver requires remote wakeup */ |
| 169 | unsigned needs_altsetting0:1; /* switch to altsetting 0 is pending */ | 176 | unsigned needs_altsetting0:1; /* switch to altsetting 0 is pending */ |
| 170 | unsigned needs_binding:1; /* needs delayed unbind/rebind */ | 177 | unsigned needs_binding:1; /* needs delayed unbind/rebind */ |
| 178 | unsigned reset_running:1; | ||
| 171 | 179 | ||
| 172 | struct device dev; /* interface specific device info */ | 180 | struct device dev; /* interface specific device info */ |
| 173 | struct device *usb_dev; | 181 | struct device *usb_dev; |
| 174 | int pm_usage_cnt; /* usage counter for autosuspend */ | 182 | int pm_usage_cnt; /* usage counter for autosuspend */ |
| 183 | struct work_struct reset_ws; /* for resets in atomic context */ | ||
| 175 | }; | 184 | }; |
| 176 | #define to_usb_interface(d) container_of(d, struct usb_interface, dev) | 185 | #define to_usb_interface(d) container_of(d, struct usb_interface, dev) |
| 177 | #define interface_to_usbdev(intf) \ | 186 | #define interface_to_usbdev(intf) \ |
| @@ -329,7 +338,7 @@ struct usb_bus { | |||
| 329 | #endif | 338 | #endif |
| 330 | struct device *dev; /* device for this bus */ | 339 | struct device *dev; /* device for this bus */ |
| 331 | 340 | ||
| 332 | #if defined(CONFIG_USB_MON) | 341 | #if defined(CONFIG_USB_MON) || defined(CONFIG_USB_MON_MODULE) |
| 333 | struct mon_bus *mon_bus; /* non-null when associated */ | 342 | struct mon_bus *mon_bus; /* non-null when associated */ |
| 334 | int monitored; /* non-zero when monitored */ | 343 | int monitored; /* non-zero when monitored */ |
| 335 | #endif | 344 | #endif |
| @@ -398,6 +407,7 @@ struct usb_tt; | |||
| 398 | * @urbnum: number of URBs submitted for the whole device | 407 | * @urbnum: number of URBs submitted for the whole device |
| 399 | * @active_duration: total time device is not suspended | 408 | * @active_duration: total time device is not suspended |
| 400 | * @autosuspend: for delayed autosuspends | 409 | * @autosuspend: for delayed autosuspends |
| 410 | * @autoresume: for autoresumes requested while in_interrupt | ||
| 401 | * @pm_mutex: protects PM operations | 411 | * @pm_mutex: protects PM operations |
| 402 | * @last_busy: time of last use | 412 | * @last_busy: time of last use |
| 403 | * @autosuspend_delay: in jiffies | 413 | * @autosuspend_delay: in jiffies |
| @@ -408,6 +418,8 @@ struct usb_tt; | |||
| 408 | * @autosuspend_disabled: autosuspend disabled by the user | 418 | * @autosuspend_disabled: autosuspend disabled by the user |
| 409 | * @autoresume_disabled: autoresume disabled by the user | 419 | * @autoresume_disabled: autoresume disabled by the user |
| 410 | * @skip_sys_resume: skip the next system resume | 420 | * @skip_sys_resume: skip the next system resume |
| 421 | * @wusb_dev: if this is a Wireless USB device, link to the WUSB | ||
| 422 | * specific data for the device. | ||
| 411 | * | 423 | * |
| 412 | * Notes: | 424 | * Notes: |
| 413 | * Usbcore drivers should not set usbdev->state directly. Instead use | 425 | * Usbcore drivers should not set usbdev->state directly. Instead use |
| @@ -476,6 +488,7 @@ struct usb_device { | |||
| 476 | 488 | ||
| 477 | #ifdef CONFIG_PM | 489 | #ifdef CONFIG_PM |
| 478 | struct delayed_work autosuspend; | 490 | struct delayed_work autosuspend; |
| 491 | struct work_struct autoresume; | ||
| 479 | struct mutex pm_mutex; | 492 | struct mutex pm_mutex; |
| 480 | 493 | ||
| 481 | unsigned long last_busy; | 494 | unsigned long last_busy; |
| @@ -505,6 +518,7 @@ extern int usb_lock_device_for_reset(struct usb_device *udev, | |||
| 505 | 518 | ||
| 506 | /* USB port reset for device reinitialization */ | 519 | /* USB port reset for device reinitialization */ |
| 507 | extern int usb_reset_device(struct usb_device *dev); | 520 | extern int usb_reset_device(struct usb_device *dev); |
| 521 | extern void usb_queue_reset_device(struct usb_interface *dev); | ||
| 508 | 522 | ||
| 509 | extern struct usb_device *usb_find_device(u16 vendor_id, u16 product_id); | 523 | extern struct usb_device *usb_find_device(u16 vendor_id, u16 product_id); |
| 510 | 524 | ||
| @@ -513,6 +527,8 @@ extern struct usb_device *usb_find_device(u16 vendor_id, u16 product_id); | |||
| 513 | extern int usb_autopm_set_interface(struct usb_interface *intf); | 527 | extern int usb_autopm_set_interface(struct usb_interface *intf); |
| 514 | extern int usb_autopm_get_interface(struct usb_interface *intf); | 528 | extern int usb_autopm_get_interface(struct usb_interface *intf); |
| 515 | extern void usb_autopm_put_interface(struct usb_interface *intf); | 529 | extern void usb_autopm_put_interface(struct usb_interface *intf); |
| 530 | extern int usb_autopm_get_interface_async(struct usb_interface *intf); | ||
| 531 | extern void usb_autopm_put_interface_async(struct usb_interface *intf); | ||
| 516 | 532 | ||
| 517 | static inline void usb_autopm_enable(struct usb_interface *intf) | 533 | static inline void usb_autopm_enable(struct usb_interface *intf) |
| 518 | { | 534 | { |
| @@ -539,8 +555,13 @@ static inline int usb_autopm_set_interface(struct usb_interface *intf) | |||
| 539 | static inline int usb_autopm_get_interface(struct usb_interface *intf) | 555 | static inline int usb_autopm_get_interface(struct usb_interface *intf) |
| 540 | { return 0; } | 556 | { return 0; } |
| 541 | 557 | ||
| 558 | static inline int usb_autopm_get_interface_async(struct usb_interface *intf) | ||
| 559 | { return 0; } | ||
| 560 | |||
| 542 | static inline void usb_autopm_put_interface(struct usb_interface *intf) | 561 | static inline void usb_autopm_put_interface(struct usb_interface *intf) |
| 543 | { } | 562 | { } |
| 563 | static inline void usb_autopm_put_interface_async(struct usb_interface *intf) | ||
| 564 | { } | ||
| 544 | static inline void usb_autopm_enable(struct usb_interface *intf) | 565 | static inline void usb_autopm_enable(struct usb_interface *intf) |
| 545 | { } | 566 | { } |
| 546 | static inline void usb_autopm_disable(struct usb_interface *intf) | 567 | static inline void usb_autopm_disable(struct usb_interface *intf) |
| @@ -1050,7 +1071,7 @@ struct usb_device_driver { | |||
| 1050 | void (*disconnect) (struct usb_device *udev); | 1071 | void (*disconnect) (struct usb_device *udev); |
| 1051 | 1072 | ||
| 1052 | int (*suspend) (struct usb_device *udev, pm_message_t message); | 1073 | int (*suspend) (struct usb_device *udev, pm_message_t message); |
| 1053 | int (*resume) (struct usb_device *udev); | 1074 | int (*resume) (struct usb_device *udev, pm_message_t message); |
| 1054 | struct usbdrv_wrap drvwrap; | 1075 | struct usbdrv_wrap drvwrap; |
| 1055 | unsigned int supports_autosuspend:1; | 1076 | unsigned int supports_autosuspend:1; |
| 1056 | }; | 1077 | }; |
| @@ -1321,7 +1342,7 @@ struct urb { | |||
| 1321 | struct kref kref; /* reference count of the URB */ | 1342 | struct kref kref; /* reference count of the URB */ |
| 1322 | void *hcpriv; /* private data for host controller */ | 1343 | void *hcpriv; /* private data for host controller */ |
| 1323 | atomic_t use_count; /* concurrent submissions counter */ | 1344 | atomic_t use_count; /* concurrent submissions counter */ |
| 1324 | u8 reject; /* submissions will fail */ | 1345 | atomic_t reject; /* submissions will fail */ |
| 1325 | int unlinked; /* unlink error code */ | 1346 | int unlinked; /* unlink error code */ |
| 1326 | 1347 | ||
| 1327 | /* public: documented fields in the urb that can be used by drivers */ | 1348 | /* public: documented fields in the urb that can be used by drivers */ |
| @@ -1466,6 +1487,7 @@ extern void usb_poison_urb(struct urb *urb); | |||
| 1466 | extern void usb_unpoison_urb(struct urb *urb); | 1487 | extern void usb_unpoison_urb(struct urb *urb); |
| 1467 | extern void usb_kill_anchored_urbs(struct usb_anchor *anchor); | 1488 | extern void usb_kill_anchored_urbs(struct usb_anchor *anchor); |
| 1468 | extern void usb_poison_anchored_urbs(struct usb_anchor *anchor); | 1489 | extern void usb_poison_anchored_urbs(struct usb_anchor *anchor); |
| 1490 | extern void usb_unpoison_anchored_urbs(struct usb_anchor *anchor); | ||
| 1469 | extern void usb_unlink_anchored_urbs(struct usb_anchor *anchor); | 1491 | extern void usb_unlink_anchored_urbs(struct usb_anchor *anchor); |
| 1470 | extern void usb_anchor_urb(struct urb *urb, struct usb_anchor *anchor); | 1492 | extern void usb_anchor_urb(struct urb *urb, struct usb_anchor *anchor); |
| 1471 | extern void usb_unanchor_urb(struct urb *urb); | 1493 | extern void usb_unanchor_urb(struct urb *urb); |
| @@ -1722,10 +1744,6 @@ extern void usb_unregister_notify(struct notifier_block *nb); | |||
| 1722 | 1744 | ||
| 1723 | #define err(format, arg...) printk(KERN_ERR KBUILD_MODNAME ": " \ | 1745 | #define err(format, arg...) printk(KERN_ERR KBUILD_MODNAME ": " \ |
| 1724 | format "\n" , ## arg) | 1746 | format "\n" , ## arg) |
| 1725 | #define info(format, arg...) printk(KERN_INFO KBUILD_MODNAME ": " \ | ||
| 1726 | format "\n" , ## arg) | ||
| 1727 | #define warn(format, arg...) printk(KERN_WARNING KBUILD_MODNAME ": " \ | ||
| 1728 | format "\n" , ## arg) | ||
| 1729 | 1747 | ||
| 1730 | #endif /* __KERNEL__ */ | 1748 | #endif /* __KERNEL__ */ |
| 1731 | 1749 | ||
diff --git a/include/linux/usb/association.h b/include/linux/usb/association.h index 07c5e3cf5898..0a4a18b3c1bb 100644 --- a/include/linux/usb/association.h +++ b/include/linux/usb/association.h | |||
| @@ -28,17 +28,17 @@ struct wusb_am_attr { | |||
| 28 | }; | 28 | }; |
| 29 | 29 | ||
| 30 | /* Different fields defined by the spec */ | 30 | /* Different fields defined by the spec */ |
| 31 | #define WUSB_AR_AssociationTypeId { .id = 0x0000, .len = 2 } | 31 | #define WUSB_AR_AssociationTypeId { .id = cpu_to_le16(0x0000), .len = cpu_to_le16(2) } |
| 32 | #define WUSB_AR_AssociationSubTypeId { .id = 0x0001, .len = 2 } | 32 | #define WUSB_AR_AssociationSubTypeId { .id = cpu_to_le16(0x0001), .len = cpu_to_le16(2) } |
| 33 | #define WUSB_AR_Length { .id = 0x0002, .len = 4 } | 33 | #define WUSB_AR_Length { .id = cpu_to_le16(0x0002), .len = cpu_to_le16(4) } |
| 34 | #define WUSB_AR_AssociationStatus { .id = 0x0004, .len = 4 } | 34 | #define WUSB_AR_AssociationStatus { .id = cpu_to_le16(0x0004), .len = cpu_to_le16(4) } |
| 35 | #define WUSB_AR_LangID { .id = 0x0008, .len = 2 } | 35 | #define WUSB_AR_LangID { .id = cpu_to_le16(0x0008), .len = cpu_to_le16(2) } |
| 36 | #define WUSB_AR_DeviceFriendlyName { .id = 0x000b, .len = 64 } /* max */ | 36 | #define WUSB_AR_DeviceFriendlyName { .id = cpu_to_le16(0x000b), .len = cpu_to_le16(64) } /* max */ |
| 37 | #define WUSB_AR_HostFriendlyName { .id = 0x000c, .len = 64 } /* max */ | 37 | #define WUSB_AR_HostFriendlyName { .id = cpu_to_le16(0x000c), .len = cpu_to_le16(64) } /* max */ |
| 38 | #define WUSB_AR_CHID { .id = 0x1000, .len = 16 } | 38 | #define WUSB_AR_CHID { .id = cpu_to_le16(0x1000), .len = cpu_to_le16(16) } |
| 39 | #define WUSB_AR_CDID { .id = 0x1001, .len = 16 } | 39 | #define WUSB_AR_CDID { .id = cpu_to_le16(0x1001), .len = cpu_to_le16(16) } |
| 40 | #define WUSB_AR_ConnectionContext { .id = 0x1002, .len = 48 } | 40 | #define WUSB_AR_ConnectionContext { .id = cpu_to_le16(0x1002), .len = cpu_to_le16(48) } |
| 41 | #define WUSB_AR_BandGroups { .id = 0x1004, .len = 2 } | 41 | #define WUSB_AR_BandGroups { .id = cpu_to_le16(0x1004), .len = cpu_to_le16(2) } |
| 42 | 42 | ||
| 43 | /* CBAF Control Requests (AMS1.0[T4-1] */ | 43 | /* CBAF Control Requests (AMS1.0[T4-1] */ |
| 44 | enum { | 44 | enum { |
diff --git a/include/linux/usb/cdc.h b/include/linux/usb/cdc.h index 18a729343ffa..3c86ed25a04c 100644 --- a/include/linux/usb/cdc.h +++ b/include/linux/usb/cdc.h | |||
| @@ -9,6 +9,8 @@ | |||
| 9 | #ifndef __LINUX_USB_CDC_H | 9 | #ifndef __LINUX_USB_CDC_H |
| 10 | #define __LINUX_USB_CDC_H | 10 | #define __LINUX_USB_CDC_H |
| 11 | 11 | ||
| 12 | #include <linux/types.h> | ||
| 13 | |||
| 12 | #define USB_CDC_SUBCLASS_ACM 0x02 | 14 | #define USB_CDC_SUBCLASS_ACM 0x02 |
| 13 | #define USB_CDC_SUBCLASS_ETHERNET 0x06 | 15 | #define USB_CDC_SUBCLASS_ETHERNET 0x06 |
| 14 | #define USB_CDC_SUBCLASS_WHCM 0x08 | 16 | #define USB_CDC_SUBCLASS_WHCM 0x08 |
diff --git a/include/linux/usb/gadgetfs.h b/include/linux/usb/gadgetfs.h index ea45f265ec05..612102e4d75e 100644 --- a/include/linux/usb/gadgetfs.h +++ b/include/linux/usb/gadgetfs.h | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | #ifndef __LINUX_USB_GADGETFS_H | 18 | #ifndef __LINUX_USB_GADGETFS_H |
| 19 | #define __LINUX_USB_GADGETFS_H | 19 | #define __LINUX_USB_GADGETFS_H |
| 20 | 20 | ||
| 21 | #include <asm/types.h> | 21 | #include <linux/types.h> |
| 22 | #include <asm/ioctl.h> | 22 | #include <asm/ioctl.h> |
| 23 | 23 | ||
| 24 | #include <linux/usb/ch9.h> | 24 | #include <linux/usb/ch9.h> |
diff --git a/include/linux/usb/gpio_vbus.h b/include/linux/usb/gpio_vbus.h new file mode 100644 index 000000000000..d9f03ccc2d60 --- /dev/null +++ b/include/linux/usb/gpio_vbus.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | * A simple GPIO VBUS sensing driver for B peripheral only devices | ||
| 3 | * with internal transceivers. | ||
| 4 | * Optionally D+ pullup can be controlled by a second GPIO. | ||
| 5 | * | ||
| 6 | * Copyright (c) 2008 Philipp Zabel <philipp.zabel@gmail.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 | */ | ||
| 13 | |||
| 14 | /** | ||
| 15 | * struct gpio_vbus_mach_info - configuration for gpio_vbus | ||
| 16 | * @gpio_vbus: VBUS sensing GPIO | ||
| 17 | * @gpio_pullup: optional D+ or D- pullup GPIO (else negative/invalid) | ||
| 18 | * @gpio_vbus_inverted: true if gpio_vbus is active low | ||
| 19 | * @gpio_pullup_inverted: true if gpio_pullup is active low | ||
| 20 | * | ||
| 21 | * The VBUS sensing GPIO should have a pulldown, which will normally be | ||
| 22 | * part of a resistor ladder turning a 4.0V-5.25V level on VBUS into a | ||
| 23 | * value the GPIO detects as active. Some systems will use comparators. | ||
| 24 | */ | ||
| 25 | struct gpio_vbus_mach_info { | ||
| 26 | int gpio_vbus; | ||
| 27 | int gpio_pullup; | ||
| 28 | bool gpio_vbus_inverted; | ||
| 29 | bool gpio_pullup_inverted; | ||
| 30 | }; | ||
diff --git a/include/linux/usb/musb.h b/include/linux/usb/musb.h index 630962c04ca4..d6aad0ea6033 100644 --- a/include/linux/usb/musb.h +++ b/include/linux/usb/musb.h | |||
| @@ -47,6 +47,11 @@ struct musb_hdrc_config { | |||
| 47 | u8 ram_bits; /* ram address size */ | 47 | u8 ram_bits; /* ram address size */ |
| 48 | 48 | ||
| 49 | struct musb_hdrc_eps_bits *eps_bits; | 49 | struct musb_hdrc_eps_bits *eps_bits; |
| 50 | #ifdef CONFIG_BLACKFIN | ||
| 51 | /* A GPIO controlling VRSEL in Blackfin */ | ||
| 52 | unsigned int gpio_vrsel; | ||
| 53 | #endif | ||
| 54 | |||
| 50 | }; | 55 | }; |
| 51 | 56 | ||
| 52 | struct musb_hdrc_platform_data { | 57 | struct musb_hdrc_platform_data { |
diff --git a/include/linux/usb/otg.h b/include/linux/usb/otg.h index 1db25d152ad8..94df4fe6c6c0 100644 --- a/include/linux/usb/otg.h +++ b/include/linux/usb/otg.h | |||
| @@ -84,6 +84,7 @@ extern int otg_set_transceiver(struct otg_transceiver *); | |||
| 84 | 84 | ||
| 85 | /* for usb host and peripheral controller drivers */ | 85 | /* for usb host and peripheral controller drivers */ |
| 86 | extern struct otg_transceiver *otg_get_transceiver(void); | 86 | extern struct otg_transceiver *otg_get_transceiver(void); |
| 87 | extern void otg_put_transceiver(struct otg_transceiver *); | ||
| 87 | 88 | ||
| 88 | static inline int | 89 | static inline int |
| 89 | otg_start_hnp(struct otg_transceiver *otg) | 90 | otg_start_hnp(struct otg_transceiver *otg) |
diff --git a/include/linux/usb/usbnet.h b/include/linux/usb/usbnet.h index ba09fe88adda..7d3822243074 100644 --- a/include/linux/usb/usbnet.h +++ b/include/linux/usb/usbnet.h | |||
| @@ -197,7 +197,9 @@ extern int usbnet_nway_reset(struct net_device *net); | |||
| 197 | #define devdbg(usbnet, fmt, arg...) \ | 197 | #define devdbg(usbnet, fmt, arg...) \ |
| 198 | printk(KERN_DEBUG "%s: " fmt "\n" , (usbnet)->net->name , ## arg) | 198 | printk(KERN_DEBUG "%s: " fmt "\n" , (usbnet)->net->name , ## arg) |
| 199 | #else | 199 | #else |
| 200 | #define devdbg(usbnet, fmt, arg...) do {} while(0) | 200 | #define devdbg(usbnet, fmt, arg...) \ |
| 201 | ({ if (0) printk(KERN_DEBUG "%s: " fmt "\n" , (usbnet)->net->name , \ | ||
| 202 | ## arg); 0; }) | ||
| 201 | #endif | 203 | #endif |
| 202 | 204 | ||
| 203 | #define deverr(usbnet, fmt, arg...) \ | 205 | #define deverr(usbnet, fmt, arg...) \ |
diff --git a/include/linux/usb/wusb-wa.h b/include/linux/usb/wusb-wa.h index a102561e7026..fb7c359bdfba 100644 --- a/include/linux/usb/wusb-wa.h +++ b/include/linux/usb/wusb-wa.h | |||
| @@ -51,6 +51,7 @@ enum { | |||
| 51 | WUSB_REQ_GET_TIME = 25, | 51 | WUSB_REQ_GET_TIME = 25, |
| 52 | WUSB_REQ_SET_STREAM_IDX = 26, | 52 | WUSB_REQ_SET_STREAM_IDX = 26, |
| 53 | WUSB_REQ_SET_WUSB_MAS = 27, | 53 | WUSB_REQ_SET_WUSB_MAS = 27, |
| 54 | WUSB_REQ_CHAN_STOP = 28, | ||
| 54 | }; | 55 | }; |
| 55 | 56 | ||
| 56 | 57 | ||
diff --git a/include/linux/usb_usual.h b/include/linux/usb_usual.h index d9a3bbe38e6b..1eea1ab68dc4 100644 --- a/include/linux/usb_usual.h +++ b/include/linux/usb_usual.h | |||
| @@ -52,8 +52,11 @@ | |||
| 52 | US_FLAG(MAX_SECTORS_MIN,0x00002000) \ | 52 | US_FLAG(MAX_SECTORS_MIN,0x00002000) \ |
| 53 | /* Sets max_sectors to arch min */ \ | 53 | /* Sets max_sectors to arch min */ \ |
| 54 | US_FLAG(BULK_IGNORE_TAG,0x00004000) \ | 54 | US_FLAG(BULK_IGNORE_TAG,0x00004000) \ |
| 55 | /* Ignore tag mismatch in bulk operations */ | 55 | /* Ignore tag mismatch in bulk operations */ \ |
| 56 | 56 | US_FLAG(SANE_SENSE, 0x00008000) \ | |
| 57 | /* Sane Sense (> 18 bytes) */ \ | ||
| 58 | US_FLAG(CAPACITY_OK, 0x00010000) \ | ||
| 59 | /* READ CAPACITY response is correct */ | ||
| 57 | 60 | ||
| 58 | #define US_FLAG(name, value) US_FL_##name = value , | 61 | #define US_FLAG(name, value) US_FL_##name = value , |
| 59 | enum { US_DO_ALL_FLAGS }; | 62 | enum { US_DO_ALL_FLAGS }; |
diff --git a/include/linux/uwb.h b/include/linux/uwb.h index f9ccbd9a2ced..c02128991ff7 100644 --- a/include/linux/uwb.h +++ b/include/linux/uwb.h | |||
| @@ -30,6 +30,7 @@ | |||
| 30 | #include <linux/device.h> | 30 | #include <linux/device.h> |
| 31 | #include <linux/mutex.h> | 31 | #include <linux/mutex.h> |
| 32 | #include <linux/timer.h> | 32 | #include <linux/timer.h> |
| 33 | #include <linux/wait.h> | ||
| 33 | #include <linux/workqueue.h> | 34 | #include <linux/workqueue.h> |
| 34 | #include <linux/uwb/spec.h> | 35 | #include <linux/uwb/spec.h> |
| 35 | 36 | ||
| @@ -66,6 +67,7 @@ struct uwb_dev { | |||
| 66 | struct uwb_dev_addr dev_addr; | 67 | struct uwb_dev_addr dev_addr; |
| 67 | int beacon_slot; | 68 | int beacon_slot; |
| 68 | DECLARE_BITMAP(streams, UWB_NUM_STREAMS); | 69 | DECLARE_BITMAP(streams, UWB_NUM_STREAMS); |
| 70 | DECLARE_BITMAP(last_availability_bm, UWB_NUM_MAS); | ||
| 69 | }; | 71 | }; |
| 70 | #define to_uwb_dev(d) container_of(d, struct uwb_dev, dev) | 72 | #define to_uwb_dev(d) container_of(d, struct uwb_dev, dev) |
| 71 | 73 | ||
| @@ -86,12 +88,31 @@ struct uwb_notifs_chain { | |||
| 86 | struct mutex mutex; | 88 | struct mutex mutex; |
| 87 | }; | 89 | }; |
| 88 | 90 | ||
| 91 | /* Beacon cache list */ | ||
| 92 | struct uwb_beca { | ||
| 93 | struct list_head list; | ||
| 94 | size_t entries; | ||
| 95 | struct mutex mutex; | ||
| 96 | }; | ||
| 97 | |||
| 98 | /* Event handling thread. */ | ||
| 99 | struct uwbd { | ||
| 100 | int pid; | ||
| 101 | struct task_struct *task; | ||
| 102 | wait_queue_head_t wq; | ||
| 103 | struct list_head event_list; | ||
| 104 | spinlock_t event_list_lock; | ||
| 105 | }; | ||
| 106 | |||
| 89 | /** | 107 | /** |
| 90 | * struct uwb_mas_bm - a bitmap of all MAS in a superframe | 108 | * struct uwb_mas_bm - a bitmap of all MAS in a superframe |
| 91 | * @bm: a bitmap of length #UWB_NUM_MAS | 109 | * @bm: a bitmap of length #UWB_NUM_MAS |
| 92 | */ | 110 | */ |
| 93 | struct uwb_mas_bm { | 111 | struct uwb_mas_bm { |
| 94 | DECLARE_BITMAP(bm, UWB_NUM_MAS); | 112 | DECLARE_BITMAP(bm, UWB_NUM_MAS); |
| 113 | DECLARE_BITMAP(unsafe_bm, UWB_NUM_MAS); | ||
| 114 | int safe; | ||
| 115 | int unsafe; | ||
| 95 | }; | 116 | }; |
| 96 | 117 | ||
| 97 | /** | 118 | /** |
| @@ -117,14 +138,24 @@ struct uwb_mas_bm { | |||
| 117 | * FIXME: further target states TBD. | 138 | * FIXME: further target states TBD. |
| 118 | */ | 139 | */ |
| 119 | enum uwb_rsv_state { | 140 | enum uwb_rsv_state { |
| 120 | UWB_RSV_STATE_NONE, | 141 | UWB_RSV_STATE_NONE = 0, |
| 121 | UWB_RSV_STATE_O_INITIATED, | 142 | UWB_RSV_STATE_O_INITIATED, |
| 122 | UWB_RSV_STATE_O_PENDING, | 143 | UWB_RSV_STATE_O_PENDING, |
| 123 | UWB_RSV_STATE_O_MODIFIED, | 144 | UWB_RSV_STATE_O_MODIFIED, |
| 124 | UWB_RSV_STATE_O_ESTABLISHED, | 145 | UWB_RSV_STATE_O_ESTABLISHED, |
| 146 | UWB_RSV_STATE_O_TO_BE_MOVED, | ||
| 147 | UWB_RSV_STATE_O_MOVE_EXPANDING, | ||
| 148 | UWB_RSV_STATE_O_MOVE_COMBINING, | ||
| 149 | UWB_RSV_STATE_O_MOVE_REDUCING, | ||
| 125 | UWB_RSV_STATE_T_ACCEPTED, | 150 | UWB_RSV_STATE_T_ACCEPTED, |
| 126 | UWB_RSV_STATE_T_DENIED, | 151 | UWB_RSV_STATE_T_DENIED, |
| 152 | UWB_RSV_STATE_T_CONFLICT, | ||
| 127 | UWB_RSV_STATE_T_PENDING, | 153 | UWB_RSV_STATE_T_PENDING, |
| 154 | UWB_RSV_STATE_T_EXPANDING_ACCEPTED, | ||
| 155 | UWB_RSV_STATE_T_EXPANDING_CONFLICT, | ||
| 156 | UWB_RSV_STATE_T_EXPANDING_PENDING, | ||
| 157 | UWB_RSV_STATE_T_EXPANDING_DENIED, | ||
| 158 | UWB_RSV_STATE_T_RESIZED, | ||
| 128 | 159 | ||
| 129 | UWB_RSV_STATE_LAST, | 160 | UWB_RSV_STATE_LAST, |
| 130 | }; | 161 | }; |
| @@ -149,6 +180,12 @@ struct uwb_rsv_target { | |||
| 149 | }; | 180 | }; |
| 150 | }; | 181 | }; |
| 151 | 182 | ||
| 183 | struct uwb_rsv_move { | ||
| 184 | struct uwb_mas_bm final_mas; | ||
| 185 | struct uwb_ie_drp *companion_drp_ie; | ||
| 186 | struct uwb_mas_bm companion_mas; | ||
| 187 | }; | ||
| 188 | |||
| 152 | /* | 189 | /* |
| 153 | * Number of streams reserved for reservations targeted at DevAddrs. | 190 | * Number of streams reserved for reservations targeted at DevAddrs. |
| 154 | */ | 191 | */ |
| @@ -186,6 +223,7 @@ typedef void (*uwb_rsv_cb_f)(struct uwb_rsv *rsv); | |||
| 186 | * | 223 | * |
| 187 | * @status: negotiation status | 224 | * @status: negotiation status |
| 188 | * @stream: stream index allocated for this reservation | 225 | * @stream: stream index allocated for this reservation |
| 226 | * @tiebreaker: conflict tiebreaker for this reservation | ||
| 189 | * @mas: reserved MAS | 227 | * @mas: reserved MAS |
| 190 | * @drp_ie: the DRP IE | 228 | * @drp_ie: the DRP IE |
| 191 | * @ie_valid: true iff the DRP IE matches the reservation parameters | 229 | * @ie_valid: true iff the DRP IE matches the reservation parameters |
| @@ -201,25 +239,29 @@ struct uwb_rsv { | |||
| 201 | struct uwb_rc *rc; | 239 | struct uwb_rc *rc; |
| 202 | struct list_head rc_node; | 240 | struct list_head rc_node; |
| 203 | struct list_head pal_node; | 241 | struct list_head pal_node; |
| 242 | struct kref kref; | ||
| 204 | 243 | ||
| 205 | struct uwb_dev *owner; | 244 | struct uwb_dev *owner; |
| 206 | struct uwb_rsv_target target; | 245 | struct uwb_rsv_target target; |
| 207 | enum uwb_drp_type type; | 246 | enum uwb_drp_type type; |
| 208 | int max_mas; | 247 | int max_mas; |
| 209 | int min_mas; | 248 | int min_mas; |
| 210 | int sparsity; | 249 | int max_interval; |
| 211 | bool is_multicast; | 250 | bool is_multicast; |
| 212 | 251 | ||
| 213 | uwb_rsv_cb_f callback; | 252 | uwb_rsv_cb_f callback; |
| 214 | void *pal_priv; | 253 | void *pal_priv; |
| 215 | 254 | ||
| 216 | enum uwb_rsv_state state; | 255 | enum uwb_rsv_state state; |
| 256 | bool needs_release_companion_mas; | ||
| 217 | u8 stream; | 257 | u8 stream; |
| 258 | u8 tiebreaker; | ||
| 218 | struct uwb_mas_bm mas; | 259 | struct uwb_mas_bm mas; |
| 219 | struct uwb_ie_drp *drp_ie; | 260 | struct uwb_ie_drp *drp_ie; |
| 261 | struct uwb_rsv_move mv; | ||
| 220 | bool ie_valid; | 262 | bool ie_valid; |
| 221 | struct timer_list timer; | 263 | struct timer_list timer; |
| 222 | bool expired; | 264 | struct work_struct handle_timeout_work; |
| 223 | }; | 265 | }; |
| 224 | 266 | ||
| 225 | static const | 267 | static const |
| @@ -261,6 +303,13 @@ struct uwb_drp_avail { | |||
| 261 | bool ie_valid; | 303 | bool ie_valid; |
| 262 | }; | 304 | }; |
| 263 | 305 | ||
| 306 | struct uwb_drp_backoff_win { | ||
| 307 | u8 window; | ||
| 308 | u8 n; | ||
| 309 | int total_expired; | ||
| 310 | struct timer_list timer; | ||
| 311 | bool can_reserve_extra_mases; | ||
| 312 | }; | ||
| 264 | 313 | ||
| 265 | const char *uwb_rsv_state_str(enum uwb_rsv_state state); | 314 | const char *uwb_rsv_state_str(enum uwb_rsv_state state); |
| 266 | const char *uwb_rsv_type_str(enum uwb_drp_type type); | 315 | const char *uwb_rsv_type_str(enum uwb_drp_type type); |
| @@ -276,6 +325,8 @@ void uwb_rsv_terminate(struct uwb_rsv *rsv); | |||
| 276 | 325 | ||
| 277 | void uwb_rsv_accept(struct uwb_rsv *rsv, uwb_rsv_cb_f cb, void *pal_priv); | 326 | void uwb_rsv_accept(struct uwb_rsv *rsv, uwb_rsv_cb_f cb, void *pal_priv); |
| 278 | 327 | ||
| 328 | void uwb_rsv_get_usable_mas(struct uwb_rsv *orig_rsv, struct uwb_mas_bm *mas); | ||
| 329 | |||
| 279 | /** | 330 | /** |
| 280 | * Radio Control Interface instance | 331 | * Radio Control Interface instance |
| 281 | * | 332 | * |
| @@ -337,23 +388,33 @@ struct uwb_rc { | |||
| 337 | u8 ctx_roll; | 388 | u8 ctx_roll; |
| 338 | 389 | ||
| 339 | int beaconing; /* Beaconing state [channel number] */ | 390 | int beaconing; /* Beaconing state [channel number] */ |
| 391 | int beaconing_forced; | ||
| 340 | int scanning; | 392 | int scanning; |
| 341 | enum uwb_scan_type scan_type:3; | 393 | enum uwb_scan_type scan_type:3; |
| 342 | unsigned ready:1; | 394 | unsigned ready:1; |
| 343 | struct uwb_notifs_chain notifs_chain; | 395 | struct uwb_notifs_chain notifs_chain; |
| 396 | struct uwb_beca uwb_beca; | ||
| 397 | |||
| 398 | struct uwbd uwbd; | ||
| 344 | 399 | ||
| 400 | struct uwb_drp_backoff_win bow; | ||
| 345 | struct uwb_drp_avail drp_avail; | 401 | struct uwb_drp_avail drp_avail; |
| 346 | struct list_head reservations; | 402 | struct list_head reservations; |
| 403 | struct list_head cnflt_alien_list; | ||
| 404 | struct uwb_mas_bm cnflt_alien_bitmap; | ||
| 347 | struct mutex rsvs_mutex; | 405 | struct mutex rsvs_mutex; |
| 406 | spinlock_t rsvs_lock; | ||
| 348 | struct workqueue_struct *rsv_workq; | 407 | struct workqueue_struct *rsv_workq; |
| 349 | struct work_struct rsv_update_work; | ||
| 350 | 408 | ||
| 409 | struct delayed_work rsv_update_work; | ||
| 410 | struct delayed_work rsv_alien_bp_work; | ||
| 411 | int set_drp_ie_pending; | ||
| 351 | struct mutex ies_mutex; | 412 | struct mutex ies_mutex; |
| 352 | struct uwb_rc_cmd_set_ie *ies; | 413 | struct uwb_rc_cmd_set_ie *ies; |
| 353 | size_t ies_capacity; | 414 | size_t ies_capacity; |
| 354 | 415 | ||
| 355 | spinlock_t pal_lock; | ||
| 356 | struct list_head pals; | 416 | struct list_head pals; |
| 417 | int active_pals; | ||
| 357 | 418 | ||
| 358 | struct uwb_dbg *dbg; | 419 | struct uwb_dbg *dbg; |
| 359 | }; | 420 | }; |
| @@ -361,11 +422,19 @@ struct uwb_rc { | |||
| 361 | 422 | ||
| 362 | /** | 423 | /** |
| 363 | * struct uwb_pal - a UWB PAL | 424 | * struct uwb_pal - a UWB PAL |
| 364 | * @name: descriptive name for this PAL (wushc, wlp, etc.). | 425 | * @name: descriptive name for this PAL (wusbhc, wlp, etc.). |
| 365 | * @device: a device for the PAL. Used to link the PAL and the radio | 426 | * @device: a device for the PAL. Used to link the PAL and the radio |
| 366 | * controller in sysfs. | 427 | * controller in sysfs. |
| 428 | * @rc: the radio controller the PAL uses. | ||
| 429 | * @channel_changed: called when the channel used by the radio changes. | ||
| 430 | * A channel of -1 means the channel has been stopped. | ||
| 367 | * @new_rsv: called when a peer requests a reservation (may be NULL if | 431 | * @new_rsv: called when a peer requests a reservation (may be NULL if |
| 368 | * the PAL cannot accept reservation requests). | 432 | * the PAL cannot accept reservation requests). |
| 433 | * @channel: channel being used by the PAL; 0 if the PAL isn't using | ||
| 434 | * the radio; -1 if the PAL wishes to use the radio but | ||
| 435 | * cannot. | ||
| 436 | * @debugfs_dir: a debugfs directory which the PAL can use for its own | ||
| 437 | * debugfs files. | ||
| 369 | * | 438 | * |
| 370 | * A Protocol Adaptation Layer (PAL) is a user of the WiMedia UWB | 439 | * A Protocol Adaptation Layer (PAL) is a user of the WiMedia UWB |
| 371 | * radio platform (e.g., WUSB, WLP or Bluetooth UWB AMP). | 440 | * radio platform (e.g., WUSB, WLP or Bluetooth UWB AMP). |
| @@ -384,12 +453,21 @@ struct uwb_pal { | |||
| 384 | struct list_head node; | 453 | struct list_head node; |
| 385 | const char *name; | 454 | const char *name; |
| 386 | struct device *device; | 455 | struct device *device; |
| 387 | void (*new_rsv)(struct uwb_rsv *rsv); | 456 | struct uwb_rc *rc; |
| 457 | |||
| 458 | void (*channel_changed)(struct uwb_pal *pal, int channel); | ||
| 459 | void (*new_rsv)(struct uwb_pal *pal, struct uwb_rsv *rsv); | ||
| 460 | |||
| 461 | int channel; | ||
| 462 | struct dentry *debugfs_dir; | ||
| 388 | }; | 463 | }; |
| 389 | 464 | ||
| 390 | void uwb_pal_init(struct uwb_pal *pal); | 465 | void uwb_pal_init(struct uwb_pal *pal); |
| 391 | int uwb_pal_register(struct uwb_rc *rc, struct uwb_pal *pal); | 466 | int uwb_pal_register(struct uwb_pal *pal); |
| 392 | void uwb_pal_unregister(struct uwb_rc *rc, struct uwb_pal *pal); | 467 | void uwb_pal_unregister(struct uwb_pal *pal); |
| 468 | |||
| 469 | int uwb_radio_start(struct uwb_pal *pal); | ||
| 470 | void uwb_radio_stop(struct uwb_pal *pal); | ||
| 393 | 471 | ||
| 394 | /* | 472 | /* |
| 395 | * General public API | 473 | * General public API |
| @@ -443,8 +521,6 @@ ssize_t uwb_rc_vcmd(struct uwb_rc *rc, const char *cmd_name, | |||
| 443 | struct uwb_rccb *cmd, size_t cmd_size, | 521 | struct uwb_rccb *cmd, size_t cmd_size, |
| 444 | u8 expected_type, u16 expected_event, | 522 | u8 expected_type, u16 expected_event, |
| 445 | struct uwb_rceb **preply); | 523 | struct uwb_rceb **preply); |
| 446 | ssize_t uwb_rc_get_ie(struct uwb_rc *, struct uwb_rc_evt_get_ie **); | ||
| 447 | int uwb_bg_joined(struct uwb_rc *rc); | ||
| 448 | 524 | ||
| 449 | size_t __uwb_addr_print(char *, size_t, const unsigned char *, int); | 525 | size_t __uwb_addr_print(char *, size_t, const unsigned char *, int); |
| 450 | 526 | ||
| @@ -520,6 +596,8 @@ void uwb_rc_rm(struct uwb_rc *); | |||
| 520 | void uwb_rc_neh_grok(struct uwb_rc *, void *, size_t); | 596 | void uwb_rc_neh_grok(struct uwb_rc *, void *, size_t); |
| 521 | void uwb_rc_neh_error(struct uwb_rc *, int); | 597 | void uwb_rc_neh_error(struct uwb_rc *, int); |
| 522 | void uwb_rc_reset_all(struct uwb_rc *rc); | 598 | void uwb_rc_reset_all(struct uwb_rc *rc); |
| 599 | void uwb_rc_pre_reset(struct uwb_rc *rc); | ||
| 600 | void uwb_rc_post_reset(struct uwb_rc *rc); | ||
| 523 | 601 | ||
| 524 | /** | 602 | /** |
| 525 | * uwb_rsv_is_owner - is the owner of this reservation the RC? | 603 | * uwb_rsv_is_owner - is the owner of this reservation the RC? |
| @@ -531,7 +609,9 @@ static inline bool uwb_rsv_is_owner(struct uwb_rsv *rsv) | |||
| 531 | } | 609 | } |
| 532 | 610 | ||
| 533 | /** | 611 | /** |
| 534 | * Events generated by UWB that can be passed to any listeners | 612 | * enum uwb_notifs - UWB events that can be passed to any listeners |
| 613 | * @UWB_NOTIF_ONAIR: a new neighbour has joined the beacon group. | ||
| 614 | * @UWB_NOTIF_OFFAIR: a neighbour has left the beacon group. | ||
| 535 | * | 615 | * |
| 536 | * Higher layers can register callback functions with the radio | 616 | * Higher layers can register callback functions with the radio |
| 537 | * controller using uwb_notifs_register(). The radio controller | 617 | * controller using uwb_notifs_register(). The radio controller |
| @@ -539,8 +619,6 @@ static inline bool uwb_rsv_is_owner(struct uwb_rsv *rsv) | |||
| 539 | * nodes when an event occurs. | 619 | * nodes when an event occurs. |
| 540 | */ | 620 | */ |
| 541 | enum uwb_notifs { | 621 | enum uwb_notifs { |
| 542 | UWB_NOTIF_BG_JOIN = 0, /* radio controller joined a beacon group */ | ||
| 543 | UWB_NOTIF_BG_LEAVE = 1, /* radio controller left a beacon group */ | ||
| 544 | UWB_NOTIF_ONAIR, | 622 | UWB_NOTIF_ONAIR, |
| 545 | UWB_NOTIF_OFFAIR, | 623 | UWB_NOTIF_OFFAIR, |
| 546 | }; | 624 | }; |
| @@ -652,22 +730,9 @@ static inline int edc_inc(struct edc *err_hist, u16 max_err, u16 timeframe) | |||
| 652 | 730 | ||
| 653 | /* Information Element handling */ | 731 | /* Information Element handling */ |
| 654 | 732 | ||
| 655 | /* For representing the state of writing to a buffer when iterating */ | ||
| 656 | struct uwb_buf_ctx { | ||
| 657 | char *buf; | ||
| 658 | size_t bytes, size; | ||
| 659 | }; | ||
| 660 | |||
| 661 | typedef int (*uwb_ie_f)(struct uwb_dev *, const struct uwb_ie_hdr *, | ||
| 662 | size_t, void *); | ||
| 663 | struct uwb_ie_hdr *uwb_ie_next(void **ptr, size_t *len); | 733 | struct uwb_ie_hdr *uwb_ie_next(void **ptr, size_t *len); |
| 664 | ssize_t uwb_ie_for_each(struct uwb_dev *uwb_dev, uwb_ie_f fn, void *data, | 734 | int uwb_rc_ie_add(struct uwb_rc *uwb_rc, const struct uwb_ie_hdr *ies, size_t size); |
| 665 | const void *buf, size_t size); | 735 | int uwb_rc_ie_rm(struct uwb_rc *uwb_rc, enum uwb_ie element_id); |
| 666 | int uwb_ie_dump_hex(struct uwb_dev *, const struct uwb_ie_hdr *, | ||
| 667 | size_t, void *); | ||
| 668 | int uwb_rc_set_ie(struct uwb_rc *, struct uwb_rc_cmd_set_ie *); | ||
| 669 | struct uwb_ie_hdr *uwb_ie_next(void **ptr, size_t *len); | ||
| 670 | |||
| 671 | 736 | ||
| 672 | /* | 737 | /* |
| 673 | * Transmission statistics | 738 | * Transmission statistics |
diff --git a/include/linux/uwb/debug-cmd.h b/include/linux/uwb/debug-cmd.h index 1141f41bab5c..8da004e25628 100644 --- a/include/linux/uwb/debug-cmd.h +++ b/include/linux/uwb/debug-cmd.h | |||
| @@ -32,6 +32,10 @@ | |||
| 32 | enum uwb_dbg_cmd_type { | 32 | enum uwb_dbg_cmd_type { |
| 33 | UWB_DBG_CMD_RSV_ESTABLISH = 1, | 33 | UWB_DBG_CMD_RSV_ESTABLISH = 1, |
| 34 | UWB_DBG_CMD_RSV_TERMINATE = 2, | 34 | UWB_DBG_CMD_RSV_TERMINATE = 2, |
| 35 | UWB_DBG_CMD_IE_ADD = 3, | ||
| 36 | UWB_DBG_CMD_IE_RM = 4, | ||
| 37 | UWB_DBG_CMD_RADIO_START = 5, | ||
| 38 | UWB_DBG_CMD_RADIO_STOP = 6, | ||
| 35 | }; | 39 | }; |
| 36 | 40 | ||
| 37 | struct uwb_dbg_cmd_rsv_establish { | 41 | struct uwb_dbg_cmd_rsv_establish { |
| @@ -39,18 +43,25 @@ struct uwb_dbg_cmd_rsv_establish { | |||
| 39 | __u8 type; | 43 | __u8 type; |
| 40 | __u16 max_mas; | 44 | __u16 max_mas; |
| 41 | __u16 min_mas; | 45 | __u16 min_mas; |
| 42 | __u8 sparsity; | 46 | __u8 max_interval; |
| 43 | }; | 47 | }; |
| 44 | 48 | ||
| 45 | struct uwb_dbg_cmd_rsv_terminate { | 49 | struct uwb_dbg_cmd_rsv_terminate { |
| 46 | int index; | 50 | int index; |
| 47 | }; | 51 | }; |
| 48 | 52 | ||
| 53 | struct uwb_dbg_cmd_ie { | ||
| 54 | __u8 data[128]; | ||
| 55 | int len; | ||
| 56 | }; | ||
| 57 | |||
| 49 | struct uwb_dbg_cmd { | 58 | struct uwb_dbg_cmd { |
| 50 | __u32 type; | 59 | __u32 type; |
| 51 | union { | 60 | union { |
| 52 | struct uwb_dbg_cmd_rsv_establish rsv_establish; | 61 | struct uwb_dbg_cmd_rsv_establish rsv_establish; |
| 53 | struct uwb_dbg_cmd_rsv_terminate rsv_terminate; | 62 | struct uwb_dbg_cmd_rsv_terminate rsv_terminate; |
| 63 | struct uwb_dbg_cmd_ie ie_add; | ||
| 64 | struct uwb_dbg_cmd_ie ie_rm; | ||
| 54 | }; | 65 | }; |
| 55 | }; | 66 | }; |
| 56 | 67 | ||
diff --git a/include/linux/uwb/debug.h b/include/linux/uwb/debug.h deleted file mode 100644 index a86a73fe303f..000000000000 --- a/include/linux/uwb/debug.h +++ /dev/null | |||
| @@ -1,82 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Ultra Wide Band | ||
| 3 | * Debug Support | ||
| 4 | * | ||
| 5 | * Copyright (C) 2005-2006 Intel Corporation | ||
| 6 | * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.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 version | ||
| 10 | * 2 as published by the Free Software Foundation. | ||
| 11 | * | ||
| 12 | * This program is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | * GNU General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU General Public License | ||
| 18 | * along with this program; if not, write to the Free Software | ||
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
| 20 | * 02110-1301, USA. | ||
| 21 | * | ||
| 22 | * | ||
| 23 | * FIXME: doc | ||
| 24 | * Invoke like: | ||
| 25 | * | ||
| 26 | * #define D_LOCAL 4 | ||
| 27 | * #include <linux/uwb/debug.h> | ||
| 28 | * | ||
| 29 | * At the end of your include files. | ||
| 30 | */ | ||
| 31 | #include <linux/types.h> | ||
| 32 | |||
| 33 | struct device; | ||
| 34 | extern void dump_bytes(struct device *dev, const void *_buf, size_t rsize); | ||
| 35 | |||
| 36 | /* Master debug switch; !0 enables, 0 disables */ | ||
| 37 | #define D_MASTER (!0) | ||
| 38 | |||
| 39 | /* Local (per-file) debug switch; #define before #including */ | ||
| 40 | #ifndef D_LOCAL | ||
| 41 | #define D_LOCAL 0 | ||
| 42 | #endif | ||
| 43 | |||
| 44 | #undef __d_printf | ||
| 45 | #undef d_fnstart | ||
| 46 | #undef d_fnend | ||
| 47 | #undef d_printf | ||
| 48 | #undef d_dump | ||
| 49 | |||
| 50 | #define __d_printf(l, _tag, _dev, f, a...) \ | ||
| 51 | do { \ | ||
| 52 | struct device *__dev = (_dev); \ | ||
| 53 | if (D_MASTER && D_LOCAL >= (l)) { \ | ||
| 54 | char __head[64] = ""; \ | ||
| 55 | if (_dev != NULL) { \ | ||
| 56 | if ((unsigned long)__dev < 4096) \ | ||
| 57 | printk(KERN_ERR "E: Corrupt dev %p\n", \ | ||
| 58 | __dev); \ | ||
| 59 | else \ | ||
| 60 | snprintf(__head, sizeof(__head), \ | ||
| 61 | "%s %s: ", \ | ||
| 62 | dev_driver_string(__dev), \ | ||
| 63 | __dev->bus_id); \ | ||
| 64 | } \ | ||
| 65 | printk(KERN_ERR "%s%s" _tag ": " f, __head, \ | ||
| 66 | __func__, ## a); \ | ||
| 67 | } \ | ||
| 68 | } while (0 && _dev) | ||
| 69 | |||
| 70 | #define d_fnstart(l, _dev, f, a...) \ | ||
| 71 | __d_printf(l, " FNSTART", _dev, f, ## a) | ||
| 72 | #define d_fnend(l, _dev, f, a...) \ | ||
| 73 | __d_printf(l, " FNEND", _dev, f, ## a) | ||
| 74 | #define d_printf(l, _dev, f, a...) \ | ||
| 75 | __d_printf(l, "", _dev, f, ## a) | ||
| 76 | #define d_dump(l, _dev, ptr, size) \ | ||
| 77 | do { \ | ||
| 78 | struct device *__dev = _dev; \ | ||
| 79 | if (D_MASTER && D_LOCAL >= (l)) \ | ||
| 80 | dump_bytes(__dev, ptr, size); \ | ||
| 81 | } while (0 && _dev) | ||
| 82 | #define d_test(l) (D_MASTER && D_LOCAL >= (l)) | ||
diff --git a/include/linux/uwb/spec.h b/include/linux/uwb/spec.h index 198c15f8e251..b52e44f1bd33 100644 --- a/include/linux/uwb/spec.h +++ b/include/linux/uwb/spec.h | |||
| @@ -59,6 +59,11 @@ enum { UWB_NUM_ZONES = 16 }; | |||
| 59 | #define UWB_MAS_PER_ZONE (UWB_NUM_MAS / UWB_NUM_ZONES) | 59 | #define UWB_MAS_PER_ZONE (UWB_NUM_MAS / UWB_NUM_ZONES) |
| 60 | 60 | ||
| 61 | /* | 61 | /* |
| 62 | * Number of MAS required before a row can be considered available. | ||
| 63 | */ | ||
| 64 | #define UWB_USABLE_MAS_PER_ROW (UWB_NUM_ZONES - 1) | ||
| 65 | |||
| 66 | /* | ||
| 62 | * Number of streams per DRP reservation between a pair of devices. | 67 | * Number of streams per DRP reservation between a pair of devices. |
| 63 | * | 68 | * |
| 64 | * [ECMA-368] section 16.8.6. | 69 | * [ECMA-368] section 16.8.6. |
| @@ -94,6 +99,26 @@ enum { UWB_BEACON_SLOT_LENGTH_US = 85 }; | |||
| 94 | enum { UWB_MAX_LOST_BEACONS = 3 }; | 99 | enum { UWB_MAX_LOST_BEACONS = 3 }; |
| 95 | 100 | ||
| 96 | /* | 101 | /* |
| 102 | * mDRPBackOffWinMin | ||
| 103 | * | ||
| 104 | * The minimum number of superframes to wait before trying to reserve | ||
| 105 | * extra MAS. | ||
| 106 | * | ||
| 107 | * [ECMA-368] section 17.16 | ||
| 108 | */ | ||
| 109 | enum { UWB_DRP_BACKOFF_WIN_MIN = 2 }; | ||
| 110 | |||
| 111 | /* | ||
| 112 | * mDRPBackOffWinMax | ||
| 113 | * | ||
| 114 | * The maximum number of superframes to wait before trying to reserve | ||
| 115 | * extra MAS. | ||
| 116 | * | ||
| 117 | * [ECMA-368] section 17.16 | ||
| 118 | */ | ||
| 119 | enum { UWB_DRP_BACKOFF_WIN_MAX = 16 }; | ||
| 120 | |||
| 121 | /* | ||
| 97 | * Length of a superframe in microseconds. | 122 | * Length of a superframe in microseconds. |
| 98 | */ | 123 | */ |
| 99 | #define UWB_SUPERFRAME_LENGTH_US (UWB_MAS_LENGTH_US * UWB_NUM_MAS) | 124 | #define UWB_SUPERFRAME_LENGTH_US (UWB_MAS_LENGTH_US * UWB_NUM_MAS) |
| @@ -200,6 +225,12 @@ enum uwb_drp_reason { | |||
| 200 | UWB_DRP_REASON_MODIFIED, | 225 | UWB_DRP_REASON_MODIFIED, |
| 201 | }; | 226 | }; |
| 202 | 227 | ||
| 228 | /** Relinquish Request Reason Codes ([ECMA-368] table 113) */ | ||
| 229 | enum uwb_relinquish_req_reason { | ||
| 230 | UWB_RELINQUISH_REQ_REASON_NON_SPECIFIC = 0, | ||
| 231 | UWB_RELINQUISH_REQ_REASON_OVER_ALLOCATION, | ||
| 232 | }; | ||
| 233 | |||
| 203 | /** | 234 | /** |
| 204 | * DRP Notification Reason Codes (WHCI 0.95 [3.1.4.9]) | 235 | * DRP Notification Reason Codes (WHCI 0.95 [3.1.4.9]) |
| 205 | */ | 236 | */ |
| @@ -252,6 +283,7 @@ enum uwb_ie { | |||
| 252 | UWB_APP_SPEC_PROBE_IE = 15, | 283 | UWB_APP_SPEC_PROBE_IE = 15, |
| 253 | UWB_IDENTIFICATION_IE = 19, | 284 | UWB_IDENTIFICATION_IE = 19, |
| 254 | UWB_MASTER_KEY_ID_IE = 20, | 285 | UWB_MASTER_KEY_ID_IE = 20, |
| 286 | UWB_RELINQUISH_REQUEST_IE = 21, | ||
| 255 | UWB_IE_WLP = 250, /* WiMedia Logical Link Control Protocol WLP 0.99 */ | 287 | UWB_IE_WLP = 250, /* WiMedia Logical Link Control Protocol WLP 0.99 */ |
| 256 | UWB_APP_SPEC_IE = 255, | 288 | UWB_APP_SPEC_IE = 255, |
| 257 | }; | 289 | }; |
| @@ -365,6 +397,27 @@ struct uwb_ie_drp_avail { | |||
| 365 | DECLARE_BITMAP(bmp, UWB_NUM_MAS); | 397 | DECLARE_BITMAP(bmp, UWB_NUM_MAS); |
| 366 | } __attribute__((packed)); | 398 | } __attribute__((packed)); |
| 367 | 399 | ||
| 400 | /* Relinqish Request IE ([ECMA-368] section 16.8.19). */ | ||
| 401 | struct uwb_relinquish_request_ie { | ||
| 402 | struct uwb_ie_hdr hdr; | ||
| 403 | __le16 relinquish_req_control; | ||
| 404 | struct uwb_dev_addr dev_addr; | ||
| 405 | struct uwb_drp_alloc allocs[]; | ||
| 406 | } __attribute__((packed)); | ||
| 407 | |||
| 408 | static inline int uwb_ie_relinquish_req_reason_code(struct uwb_relinquish_request_ie *ie) | ||
| 409 | { | ||
| 410 | return (le16_to_cpu(ie->relinquish_req_control) >> 0) & 0xf; | ||
| 411 | } | ||
| 412 | |||
| 413 | static inline void uwb_ie_relinquish_req_set_reason_code(struct uwb_relinquish_request_ie *ie, | ||
| 414 | int reason_code) | ||
| 415 | { | ||
| 416 | u16 ctrl = le16_to_cpu(ie->relinquish_req_control); | ||
| 417 | ctrl = (ctrl & ~(0xf << 0)) | (reason_code << 0); | ||
| 418 | ie->relinquish_req_control = cpu_to_le16(ctrl); | ||
| 419 | } | ||
| 420 | |||
| 368 | /** | 421 | /** |
| 369 | * The Vendor ID is set to an OUI that indicates the vendor of the device. | 422 | * The Vendor ID is set to an OUI that indicates the vendor of the device. |
| 370 | * ECMA-368 [16.8.10] | 423 | * ECMA-368 [16.8.10] |
diff --git a/include/linux/uwb/umc.h b/include/linux/uwb/umc.h index 36a39e34f8d7..4b4fc0f43855 100644 --- a/include/linux/uwb/umc.h +++ b/include/linux/uwb/umc.h | |||
| @@ -89,6 +89,8 @@ struct umc_driver { | |||
| 89 | void (*remove)(struct umc_dev *); | 89 | void (*remove)(struct umc_dev *); |
| 90 | int (*suspend)(struct umc_dev *, pm_message_t state); | 90 | int (*suspend)(struct umc_dev *, pm_message_t state); |
| 91 | int (*resume)(struct umc_dev *); | 91 | int (*resume)(struct umc_dev *); |
| 92 | int (*pre_reset)(struct umc_dev *); | ||
| 93 | int (*post_reset)(struct umc_dev *); | ||
| 92 | 94 | ||
| 93 | struct device_driver driver; | 95 | struct device_driver driver; |
| 94 | }; | 96 | }; |
diff --git a/include/linux/video_decoder.h b/include/linux/video_decoder.h index 121e26da2c18..e26c0c86a6ea 100644 --- a/include/linux/video_decoder.h +++ b/include/linux/video_decoder.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef _LINUX_VIDEO_DECODER_H | 1 | #ifndef _LINUX_VIDEO_DECODER_H |
| 2 | #define _LINUX_VIDEO_DECODER_H | 2 | #define _LINUX_VIDEO_DECODER_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 5 | |||
| 4 | #define HAVE_VIDEO_DECODER 1 | 6 | #define HAVE_VIDEO_DECODER 1 |
| 5 | 7 | ||
| 6 | struct video_decoder_capability { /* this name is too long */ | 8 | struct video_decoder_capability { /* this name is too long */ |
diff --git a/include/linux/video_encoder.h b/include/linux/video_encoder.h index 4b0e6907a7b4..b7b6423bbb8a 100644 --- a/include/linux/video_encoder.h +++ b/include/linux/video_encoder.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef _LINUX_VIDEO_ENCODER_H | 1 | #ifndef _LINUX_VIDEO_ENCODER_H |
| 2 | #define _LINUX_VIDEO_ENCODER_H | 2 | #define _LINUX_VIDEO_ENCODER_H |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | ||
| 5 | |||
| 4 | struct video_encoder_capability { /* this name is too long */ | 6 | struct video_encoder_capability { /* this name is too long */ |
| 5 | __u32 flags; | 7 | __u32 flags; |
| 6 | #define VIDEO_ENCODER_PAL 1 /* can encode PAL signal */ | 8 | #define VIDEO_ENCODER_PAL 1 /* can encode PAL signal */ |
diff --git a/include/linux/videodev.h b/include/linux/videodev.h index 15a653d41132..837f392fbe97 100644 --- a/include/linux/videodev.h +++ b/include/linux/videodev.h | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | #ifndef __LINUX_VIDEODEV_H | 12 | #ifndef __LINUX_VIDEODEV_H |
| 13 | #define __LINUX_VIDEODEV_H | 13 | #define __LINUX_VIDEODEV_H |
| 14 | 14 | ||
| 15 | #include <linux/types.h> | ||
| 15 | #include <linux/ioctl.h> | 16 | #include <linux/ioctl.h> |
| 16 | #include <linux/videodev2.h> | 17 | #include <linux/videodev2.h> |
| 17 | 18 | ||
diff --git a/include/linux/videodev2.h b/include/linux/videodev2.h index 1f126e30766c..5571dbe1c0ad 100644 --- a/include/linux/videodev2.h +++ b/include/linux/videodev2.h | |||
| @@ -1370,25 +1370,41 @@ struct v4l2_streamparm { | |||
| 1370 | /* | 1370 | /* |
| 1371 | * A D V A N C E D D E B U G G I N G | 1371 | * A D V A N C E D D E B U G G I N G |
| 1372 | * | 1372 | * |
| 1373 | * NOTE: EXPERIMENTAL API | 1373 | * NOTE: EXPERIMENTAL API, NEVER RELY ON THIS IN APPLICATIONS! |
| 1374 | * FOR DEBUGGING, TESTING AND INTERNAL USE ONLY! | ||
| 1374 | */ | 1375 | */ |
| 1375 | 1376 | ||
| 1376 | /* VIDIOC_DBG_G_REGISTER and VIDIOC_DBG_S_REGISTER */ | 1377 | /* VIDIOC_DBG_G_REGISTER and VIDIOC_DBG_S_REGISTER */ |
| 1377 | 1378 | ||
| 1378 | #define V4L2_CHIP_MATCH_HOST 0 /* Match against chip ID on host (0 for the host) */ | 1379 | #define V4L2_CHIP_MATCH_HOST 0 /* Match against chip ID on host (0 for the host) */ |
| 1379 | #define V4L2_CHIP_MATCH_I2C_DRIVER 1 /* Match against I2C driver ID */ | 1380 | #define V4L2_CHIP_MATCH_I2C_DRIVER 1 /* Match against I2C driver name */ |
| 1380 | #define V4L2_CHIP_MATCH_I2C_ADDR 2 /* Match against I2C 7-bit address */ | 1381 | #define V4L2_CHIP_MATCH_I2C_ADDR 2 /* Match against I2C 7-bit address */ |
| 1381 | #define V4L2_CHIP_MATCH_AC97 3 /* Match against anciliary AC97 chip */ | 1382 | #define V4L2_CHIP_MATCH_AC97 3 /* Match against anciliary AC97 chip */ |
| 1382 | 1383 | ||
| 1383 | struct v4l2_register { | 1384 | struct v4l2_dbg_match { |
| 1384 | __u32 match_type; /* Match type */ | 1385 | __u32 type; /* Match type */ |
| 1385 | __u32 match_chip; /* Match this chip, meaning determined by match_type */ | 1386 | union { /* Match this chip, meaning determined by type */ |
| 1387 | __u32 addr; | ||
| 1388 | char name[32]; | ||
| 1389 | }; | ||
| 1390 | } __attribute__ ((packed)); | ||
| 1391 | |||
| 1392 | struct v4l2_dbg_register { | ||
| 1393 | struct v4l2_dbg_match match; | ||
| 1394 | __u32 size; /* register size in bytes */ | ||
| 1386 | __u64 reg; | 1395 | __u64 reg; |
| 1387 | __u64 val; | 1396 | __u64 val; |
| 1388 | }; | 1397 | } __attribute__ ((packed)); |
| 1398 | |||
| 1399 | /* VIDIOC_DBG_G_CHIP_IDENT */ | ||
| 1400 | struct v4l2_dbg_chip_ident { | ||
| 1401 | struct v4l2_dbg_match match; | ||
| 1402 | __u32 ident; /* chip identifier as specified in <media/v4l2-chip-ident.h> */ | ||
| 1403 | __u32 revision; /* chip revision, chip specific */ | ||
| 1404 | } __attribute__ ((packed)); | ||
| 1389 | 1405 | ||
| 1390 | /* VIDIOC_G_CHIP_IDENT */ | 1406 | /* VIDIOC_G_CHIP_IDENT_OLD: Deprecated, do not use */ |
| 1391 | struct v4l2_chip_ident { | 1407 | struct v4l2_chip_ident_old { |
| 1392 | __u32 match_type; /* Match type */ | 1408 | __u32 match_type; /* Match type */ |
| 1393 | __u32 match_chip; /* Match this chip, meaning determined by match_type */ | 1409 | __u32 match_chip; /* Match this chip, meaning determined by match_type */ |
| 1394 | __u32 ident; /* chip identifier as specified in <media/v4l2-chip-ident.h> */ | 1410 | __u32 ident; /* chip identifier as specified in <media/v4l2-chip-ident.h> */ |
| @@ -1460,13 +1476,22 @@ struct v4l2_chip_ident { | |||
| 1460 | #define VIDIOC_G_ENC_INDEX _IOR('V', 76, struct v4l2_enc_idx) | 1476 | #define VIDIOC_G_ENC_INDEX _IOR('V', 76, struct v4l2_enc_idx) |
| 1461 | #define VIDIOC_ENCODER_CMD _IOWR('V', 77, struct v4l2_encoder_cmd) | 1477 | #define VIDIOC_ENCODER_CMD _IOWR('V', 77, struct v4l2_encoder_cmd) |
| 1462 | #define VIDIOC_TRY_ENCODER_CMD _IOWR('V', 78, struct v4l2_encoder_cmd) | 1478 | #define VIDIOC_TRY_ENCODER_CMD _IOWR('V', 78, struct v4l2_encoder_cmd) |
| 1479 | #endif | ||
| 1463 | 1480 | ||
| 1464 | /* Experimental, only implemented if CONFIG_VIDEO_ADV_DEBUG is defined */ | 1481 | #if 1 |
| 1465 | #define VIDIOC_DBG_S_REGISTER _IOW('V', 79, struct v4l2_register) | 1482 | /* Experimental, meant for debugging, testing and internal use. |
| 1466 | #define VIDIOC_DBG_G_REGISTER _IOWR('V', 80, struct v4l2_register) | 1483 | Only implemented if CONFIG_VIDEO_ADV_DEBUG is defined. |
| 1467 | 1484 | You must be root to use these ioctls. Never use these in applications! */ | |
| 1468 | #define VIDIOC_G_CHIP_IDENT _IOWR('V', 81, struct v4l2_chip_ident) | 1485 | #define VIDIOC_DBG_S_REGISTER _IOW('V', 79, struct v4l2_dbg_register) |
| 1486 | #define VIDIOC_DBG_G_REGISTER _IOWR('V', 80, struct v4l2_dbg_register) | ||
| 1487 | |||
| 1488 | /* Experimental, meant for debugging, testing and internal use. | ||
| 1489 | Never use this ioctl in applications! */ | ||
| 1490 | #define VIDIOC_DBG_G_CHIP_IDENT _IOWR('V', 81, struct v4l2_dbg_chip_ident) | ||
| 1491 | /* This is deprecated and will go away in 2.6.30 */ | ||
| 1492 | #define VIDIOC_G_CHIP_IDENT_OLD _IOWR('V', 81, struct v4l2_chip_ident_old) | ||
| 1469 | #endif | 1493 | #endif |
| 1494 | |||
| 1470 | #define VIDIOC_S_HW_FREQ_SEEK _IOW('V', 82, struct v4l2_hw_freq_seek) | 1495 | #define VIDIOC_S_HW_FREQ_SEEK _IOW('V', 82, struct v4l2_hw_freq_seek) |
| 1471 | /* Reminder: when adding new ioctls please add support for them to | 1496 | /* Reminder: when adding new ioctls please add support for them to |
| 1472 | drivers/media/video/v4l2-compat-ioctl32.c as well! */ | 1497 | drivers/media/video/v4l2-compat-ioctl32.c as well! */ |
diff --git a/include/linux/virtio_blk.h b/include/linux/virtio_blk.h index c1aef85243bf..94c56d29869d 100644 --- a/include/linux/virtio_blk.h +++ b/include/linux/virtio_blk.h | |||
| @@ -2,6 +2,7 @@ | |||
| 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 | 3 | /* This header is BSD licensed so anyone can use the definitions to implement |
| 4 | * compatible drivers/servers. */ | 4 | * compatible drivers/servers. */ |
| 5 | #include <linux/types.h> | ||
| 5 | #include <linux/virtio_config.h> | 6 | #include <linux/virtio_config.h> |
| 6 | 7 | ||
| 7 | /* The ID for virtio_block */ | 8 | /* The ID for virtio_block */ |
diff --git a/include/linux/virtio_console.h b/include/linux/virtio_console.h index 7615ffcdd555..dc161115ae35 100644 --- a/include/linux/virtio_console.h +++ b/include/linux/virtio_console.h | |||
| @@ -1,5 +1,6 @@ | |||
| 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/types.h> | ||
| 3 | #include <linux/virtio_config.h> | 4 | #include <linux/virtio_config.h> |
| 4 | /* This header, excluding the #ifdef __KERNEL__ part, is BSD licensed so | 5 | /* This header, excluding the #ifdef __KERNEL__ part, is BSD licensed so |
| 5 | * anyone can use the definitions to implement compatible drivers/servers. */ | 6 | * anyone can use the definitions to implement compatible drivers/servers. */ |
diff --git a/include/linux/virtio_net.h b/include/linux/virtio_net.h index 5cdd0aa8bde9..3efa86c3ecb3 100644 --- a/include/linux/virtio_net.h +++ b/include/linux/virtio_net.h | |||
| @@ -2,6 +2,7 @@ | |||
| 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 | 3 | /* This header is BSD licensed so anyone can use the definitions to implement |
| 4 | * compatible drivers/servers. */ | 4 | * compatible drivers/servers. */ |
| 5 | #include <linux/types.h> | ||
| 5 | #include <linux/virtio_config.h> | 6 | #include <linux/virtio_config.h> |
| 6 | 7 | ||
| 7 | /* The ID for virtio_net */ | 8 | /* The ID for virtio_net */ |
diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h index 307b88577eaa..506e7620a986 100644 --- a/include/linux/vmalloc.h +++ b/include/linux/vmalloc.h | |||
| @@ -97,6 +97,10 @@ extern void unmap_kernel_range(unsigned long addr, unsigned long size); | |||
| 97 | extern struct vm_struct *alloc_vm_area(size_t size); | 97 | extern struct vm_struct *alloc_vm_area(size_t size); |
| 98 | extern void free_vm_area(struct vm_struct *area); | 98 | extern void free_vm_area(struct vm_struct *area); |
| 99 | 99 | ||
| 100 | /* for /dev/kmem */ | ||
| 101 | extern long vread(char *buf, char *addr, unsigned long count); | ||
| 102 | extern long vwrite(char *buf, char *addr, unsigned long count); | ||
| 103 | |||
| 100 | /* | 104 | /* |
| 101 | * Internals. Dont't use.. | 105 | * Internals. Dont't use.. |
| 102 | */ | 106 | */ |
diff --git a/include/linux/wait.h b/include/linux/wait.h index ef609f842fac..a210ede73b56 100644 --- a/include/linux/wait.h +++ b/include/linux/wait.h | |||
| @@ -132,6 +132,8 @@ static inline void __remove_wait_queue(wait_queue_head_t *head, | |||
| 132 | list_del(&old->task_list); | 132 | list_del(&old->task_list); |
| 133 | } | 133 | } |
| 134 | 134 | ||
| 135 | void __wake_up_common(wait_queue_head_t *q, unsigned int mode, | ||
| 136 | int nr_exclusive, int sync, void *key); | ||
| 135 | void __wake_up(wait_queue_head_t *q, unsigned int mode, int nr, void *key); | 137 | void __wake_up(wait_queue_head_t *q, unsigned int mode, int nr, void *key); |
| 136 | extern void __wake_up_locked(wait_queue_head_t *q, unsigned int mode); | 138 | extern void __wake_up_locked(wait_queue_head_t *q, unsigned int mode); |
| 137 | extern void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr); | 139 | extern void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr); |
| @@ -333,16 +335,19 @@ do { \ | |||
| 333 | for (;;) { \ | 335 | for (;;) { \ |
| 334 | prepare_to_wait_exclusive(&wq, &__wait, \ | 336 | prepare_to_wait_exclusive(&wq, &__wait, \ |
| 335 | TASK_INTERRUPTIBLE); \ | 337 | TASK_INTERRUPTIBLE); \ |
| 336 | if (condition) \ | 338 | if (condition) { \ |
| 339 | finish_wait(&wq, &__wait); \ | ||
| 337 | break; \ | 340 | break; \ |
| 341 | } \ | ||
| 338 | if (!signal_pending(current)) { \ | 342 | if (!signal_pending(current)) { \ |
| 339 | schedule(); \ | 343 | schedule(); \ |
| 340 | continue; \ | 344 | continue; \ |
| 341 | } \ | 345 | } \ |
| 342 | ret = -ERESTARTSYS; \ | 346 | ret = -ERESTARTSYS; \ |
| 347 | abort_exclusive_wait(&wq, &__wait, \ | ||
| 348 | TASK_INTERRUPTIBLE, NULL); \ | ||
| 343 | break; \ | 349 | break; \ |
| 344 | } \ | 350 | } \ |
| 345 | finish_wait(&wq, &__wait); \ | ||
| 346 | } while (0) | 351 | } while (0) |
| 347 | 352 | ||
| 348 | #define wait_event_interruptible_exclusive(wq, condition) \ | 353 | #define wait_event_interruptible_exclusive(wq, condition) \ |
| @@ -431,6 +436,8 @@ extern long interruptible_sleep_on_timeout(wait_queue_head_t *q, | |||
| 431 | void prepare_to_wait(wait_queue_head_t *q, wait_queue_t *wait, int state); | 436 | void prepare_to_wait(wait_queue_head_t *q, wait_queue_t *wait, int state); |
| 432 | void prepare_to_wait_exclusive(wait_queue_head_t *q, wait_queue_t *wait, int state); | 437 | void prepare_to_wait_exclusive(wait_queue_head_t *q, wait_queue_t *wait, int state); |
| 433 | void finish_wait(wait_queue_head_t *q, wait_queue_t *wait); | 438 | void finish_wait(wait_queue_head_t *q, wait_queue_t *wait); |
| 439 | void abort_exclusive_wait(wait_queue_head_t *q, wait_queue_t *wait, | ||
| 440 | unsigned int mode, void *key); | ||
| 434 | int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key); | 441 | int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key); |
| 435 | int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key); | 442 | int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key); |
| 436 | 443 | ||
diff --git a/include/linux/wimax.h b/include/linux/wimax.h new file mode 100644 index 000000000000..c89de7f4e5b9 --- /dev/null +++ b/include/linux/wimax.h | |||
| @@ -0,0 +1,234 @@ | |||
| 1 | /* | ||
| 2 | * Linux WiMax | ||
| 3 | * API for user space | ||
| 4 | * | ||
| 5 | * | ||
| 6 | * Copyright (C) 2007-2008 Intel Corporation. All rights reserved. | ||
| 7 | * | ||
| 8 | * Redistribution and use in source and binary forms, with or without | ||
| 9 | * modification, are permitted provided that the following conditions | ||
| 10 | * are met: | ||
| 11 | * | ||
| 12 | * * Redistributions of source code must retain the above copyright | ||
| 13 | * notice, this list of conditions and the following disclaimer. | ||
| 14 | * * Redistributions in binary form must reproduce the above copyright | ||
| 15 | * notice, this list of conditions and the following disclaimer in | ||
| 16 | * the documentation and/or other materials provided with the | ||
| 17 | * distribution. | ||
| 18 | * * Neither the name of Intel Corporation nor the names of its | ||
| 19 | * contributors may be used to endorse or promote products derived | ||
| 20 | * from this software without specific prior written permission. | ||
| 21 | * | ||
| 22 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
| 23 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
| 24 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
| 25 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
| 26 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
| 27 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
| 28 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
| 29 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
| 30 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| 31 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
| 32 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 33 | * | ||
| 34 | * | ||
| 35 | * Intel Corporation <linux-wimax@intel.com> | ||
| 36 | * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> | ||
| 37 | * - Initial implementation | ||
| 38 | * | ||
| 39 | * | ||
| 40 | * This file declares the user/kernel protocol that is spoken over | ||
| 41 | * Generic Netlink, as well as any type declaration that is to be used | ||
| 42 | * by kernel and user space. | ||
| 43 | * | ||
| 44 | * It is intended for user space to clone it verbatim to use it as a | ||
| 45 | * primary reference for definitions. | ||
| 46 | * | ||
| 47 | * Stuff intended for kernel usage as well as full protocol and stack | ||
| 48 | * documentation is rooted in include/net/wimax.h. | ||
| 49 | */ | ||
| 50 | |||
| 51 | #ifndef __LINUX__WIMAX_H__ | ||
| 52 | #define __LINUX__WIMAX_H__ | ||
| 53 | |||
| 54 | #include <linux/types.h> | ||
| 55 | |||
| 56 | enum { | ||
| 57 | /** | ||
| 58 | * Version of the interface (unsigned decimal, MMm, max 25.5) | ||
| 59 | * M - Major: change if removing or modifying an existing call. | ||
| 60 | * m - minor: change when adding a new call | ||
| 61 | */ | ||
| 62 | WIMAX_GNL_VERSION = 00, | ||
| 63 | /* Generic NetLink attributes */ | ||
| 64 | WIMAX_GNL_ATTR_INVALID = 0x00, | ||
| 65 | WIMAX_GNL_ATTR_MAX = 10, | ||
| 66 | }; | ||
| 67 | |||
| 68 | |||
| 69 | /* | ||
| 70 | * Generic NetLink operations | ||
| 71 | * | ||
| 72 | * Most of these map to an API call; _OP_ stands for operation, _RP_ | ||
| 73 | * for reply and _RE_ for report (aka: signal). | ||
| 74 | */ | ||
| 75 | enum { | ||
| 76 | WIMAX_GNL_OP_MSG_FROM_USER, /* User to kernel message */ | ||
| 77 | WIMAX_GNL_OP_MSG_TO_USER, /* Kernel to user message */ | ||
| 78 | WIMAX_GNL_OP_RFKILL, /* Run wimax_rfkill() */ | ||
| 79 | WIMAX_GNL_OP_RESET, /* Run wimax_rfkill() */ | ||
| 80 | WIMAX_GNL_RE_STATE_CHANGE, /* Report: status change */ | ||
| 81 | }; | ||
| 82 | |||
| 83 | |||
| 84 | /* Message from user / to user */ | ||
| 85 | enum { | ||
| 86 | WIMAX_GNL_MSG_IFIDX = 1, | ||
| 87 | WIMAX_GNL_MSG_PIPE_NAME, | ||
| 88 | WIMAX_GNL_MSG_DATA, | ||
| 89 | }; | ||
| 90 | |||
| 91 | |||
| 92 | /* | ||
| 93 | * wimax_rfkill() | ||
| 94 | * | ||
| 95 | * The state of the radio (ON/OFF) is mapped to the rfkill subsystem's | ||
| 96 | * switch state (DISABLED/ENABLED). | ||
| 97 | */ | ||
| 98 | enum wimax_rf_state { | ||
| 99 | WIMAX_RF_OFF = 0, /* Radio is off, rfkill on/enabled */ | ||
| 100 | WIMAX_RF_ON = 1, /* Radio is on, rfkill off/disabled */ | ||
| 101 | WIMAX_RF_QUERY = 2, | ||
| 102 | }; | ||
| 103 | |||
| 104 | /* Attributes */ | ||
| 105 | enum { | ||
| 106 | WIMAX_GNL_RFKILL_IFIDX = 1, | ||
| 107 | WIMAX_GNL_RFKILL_STATE, | ||
| 108 | }; | ||
| 109 | |||
| 110 | |||
| 111 | /* Attributes for wimax_reset() */ | ||
| 112 | enum { | ||
| 113 | WIMAX_GNL_RESET_IFIDX = 1, | ||
| 114 | }; | ||
| 115 | |||
| 116 | |||
| 117 | /* | ||
| 118 | * Attributes for the Report State Change | ||
| 119 | * | ||
| 120 | * For now we just have the old and new states; new attributes might | ||
| 121 | * be added later on. | ||
| 122 | */ | ||
| 123 | enum { | ||
| 124 | WIMAX_GNL_STCH_IFIDX = 1, | ||
| 125 | WIMAX_GNL_STCH_STATE_OLD, | ||
| 126 | WIMAX_GNL_STCH_STATE_NEW, | ||
| 127 | }; | ||
| 128 | |||
| 129 | |||
| 130 | /** | ||
| 131 | * enum wimax_st - The different states of a WiMAX device | ||
| 132 | * @__WIMAX_ST_NULL: The device structure has been allocated and zeroed, | ||
| 133 | * but still wimax_dev_add() hasn't been called. There is no state. | ||
| 134 | * | ||
| 135 | * @WIMAX_ST_DOWN: The device has been registered with the WiMAX and | ||
| 136 | * networking stacks, but it is not initialized (normally that is | ||
| 137 | * done with 'ifconfig DEV up' [or equivalent], which can upload | ||
| 138 | * firmware and enable communications with the device). | ||
| 139 | * In this state, the device is powered down and using as less | ||
| 140 | * power as possible. | ||
| 141 | * This state is the default after a call to wimax_dev_add(). It | ||
| 142 | * is ok to have drivers move directly to %WIMAX_ST_UNINITIALIZED | ||
| 143 | * or %WIMAX_ST_RADIO_OFF in _probe() after the call to | ||
| 144 | * wimax_dev_add(). | ||
| 145 | * It is recommended that the driver leaves this state when | ||
| 146 | * calling 'ifconfig DEV up' and enters it back on 'ifconfig DEV | ||
| 147 | * down'. | ||
| 148 | * | ||
| 149 | * @__WIMAX_ST_QUIESCING: The device is being torn down, so no API | ||
| 150 | * operations are allowed to proceed except the ones needed to | ||
| 151 | * complete the device clean up process. | ||
| 152 | * | ||
| 153 | * @WIMAX_ST_UNINITIALIZED: [optional] Communication with the device | ||
| 154 | * is setup, but the device still requires some configuration | ||
| 155 | * before being operational. | ||
| 156 | * Some WiMAX API calls might work. | ||
| 157 | * | ||
| 158 | * @WIMAX_ST_RADIO_OFF: The device is fully up; radio is off (wether | ||
| 159 | * by hardware or software switches). | ||
| 160 | * It is recommended to always leave the device in this state | ||
| 161 | * after initialization. | ||
| 162 | * | ||
| 163 | * @WIMAX_ST_READY: The device is fully up and radio is on. | ||
| 164 | * | ||
| 165 | * @WIMAX_ST_SCANNING: [optional] The device has been instructed to | ||
| 166 | * scan. In this state, the device cannot be actively connected to | ||
| 167 | * a network. | ||
| 168 | * | ||
| 169 | * @WIMAX_ST_CONNECTING: The device is connecting to a network. This | ||
| 170 | * state exists because in some devices, the connect process can | ||
| 171 | * include a number of negotiations between user space, kernel | ||
| 172 | * space and the device. User space needs to know what the device | ||
| 173 | * is doing. If the connect sequence in a device is atomic and | ||
| 174 | * fast, the device can transition directly to CONNECTED | ||
| 175 | * | ||
| 176 | * @WIMAX_ST_CONNECTED: The device is connected to a network. | ||
| 177 | * | ||
| 178 | * @__WIMAX_ST_INVALID: This is an invalid state used to mark the | ||
| 179 | * maximum numeric value of states. | ||
| 180 | * | ||
| 181 | * Description: | ||
| 182 | * | ||
| 183 | * Transitions from one state to another one are atomic and can only | ||
| 184 | * be caused in kernel space with wimax_state_change(). To read the | ||
| 185 | * state, use wimax_state_get(). | ||
| 186 | * | ||
| 187 | * States starting with __ are internal and shall not be used or | ||
| 188 | * referred to by drivers or userspace. They look ugly, but that's the | ||
| 189 | * point -- if any use is made non-internal to the stack, it is easier | ||
| 190 | * to catch on review. | ||
| 191 | * | ||
| 192 | * All API operations [with well defined exceptions] will take the | ||
| 193 | * device mutex before starting and then check the state. If the state | ||
| 194 | * is %__WIMAX_ST_NULL, %WIMAX_ST_DOWN, %WIMAX_ST_UNINITIALIZED or | ||
| 195 | * %__WIMAX_ST_QUIESCING, it will drop the lock and quit with | ||
| 196 | * -%EINVAL, -%ENOMEDIUM, -%ENOTCONN or -%ESHUTDOWN. | ||
| 197 | * | ||
| 198 | * The order of the definitions is important, so we can do numerical | ||
| 199 | * comparisons (eg: < %WIMAX_ST_RADIO_OFF means the device is not ready | ||
| 200 | * to operate). | ||
| 201 | */ | ||
| 202 | /* | ||
| 203 | * The allowed state transitions are described in the table below | ||
| 204 | * (states in rows can go to states in columns where there is an X): | ||
| 205 | * | ||
| 206 | * UNINI RADIO READY SCAN CONNEC CONNEC | ||
| 207 | * NULL DOWN QUIESCING TIALIZED OFF NING TING TED | ||
| 208 | * NULL - x | ||
| 209 | * DOWN - x x x | ||
| 210 | * QUIESCING x - | ||
| 211 | * UNINITIALIZED x - x | ||
| 212 | * RADIO_OFF x - x | ||
| 213 | * READY x x - x x x | ||
| 214 | * SCANNING x x x - x x | ||
| 215 | * CONNECTING x x x x - x | ||
| 216 | * CONNECTED x x x - | ||
| 217 | * | ||
| 218 | * This table not available in kernel-doc because the formatting messes it up. | ||
| 219 | */ | ||
| 220 | enum wimax_st { | ||
| 221 | __WIMAX_ST_NULL = 0, | ||
| 222 | WIMAX_ST_DOWN, | ||
| 223 | __WIMAX_ST_QUIESCING, | ||
| 224 | WIMAX_ST_UNINITIALIZED, | ||
| 225 | WIMAX_ST_RADIO_OFF, | ||
| 226 | WIMAX_ST_READY, | ||
| 227 | WIMAX_ST_SCANNING, | ||
| 228 | WIMAX_ST_CONNECTING, | ||
| 229 | WIMAX_ST_CONNECTED, | ||
| 230 | __WIMAX_ST_INVALID /* Always keep last */ | ||
| 231 | }; | ||
| 232 | |||
| 233 | |||
| 234 | #endif /* #ifndef __LINUX__WIMAX_H__ */ | ||
diff --git a/include/linux/wimax/Kbuild b/include/linux/wimax/Kbuild new file mode 100644 index 000000000000..3cb4f269bb09 --- /dev/null +++ b/include/linux/wimax/Kbuild | |||
| @@ -0,0 +1 @@ | |||
| header-y += i2400m.h | |||
diff --git a/include/linux/wimax/debug.h b/include/linux/wimax/debug.h new file mode 100644 index 000000000000..ba0c49399a83 --- /dev/null +++ b/include/linux/wimax/debug.h | |||
| @@ -0,0 +1,453 @@ | |||
| 1 | /* | ||
| 2 | * Linux WiMAX | ||
| 3 | * Collection of tools to manage debug operations. | ||
| 4 | * | ||
| 5 | * | ||
| 6 | * Copyright (C) 2005-2007 Intel Corporation | ||
| 7 | * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> | ||
| 8 | * | ||
| 9 | * This program is free software; you can redistribute it and/or | ||
| 10 | * modify it under the terms of the GNU General Public License version | ||
| 11 | * 2 as 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 | * You should have received a copy of the GNU General Public License | ||
| 19 | * along with this program; if not, write to the Free Software | ||
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
| 21 | * 02110-1301, USA. | ||
| 22 | * | ||
| 23 | * | ||
| 24 | * Don't #include this file directly, read on! | ||
| 25 | * | ||
| 26 | * | ||
| 27 | * EXECUTING DEBUGGING ACTIONS OR NOT | ||
| 28 | * | ||
| 29 | * The main thing this framework provides is decission power to take a | ||
| 30 | * debug action (like printing a message) if the current debug level | ||
| 31 | * allows it. | ||
| 32 | * | ||
| 33 | * The decission power is at two levels: at compile-time (what does | ||
| 34 | * not make it is compiled out) and at run-time. The run-time | ||
| 35 | * selection is done per-submodule (as they are declared by the user | ||
| 36 | * of the framework). | ||
| 37 | * | ||
| 38 | * A call to d_test(L) (L being the target debug level) returns true | ||
| 39 | * if the action should be taken because the current debug levels | ||
| 40 | * allow it (both compile and run time). | ||
| 41 | * | ||
| 42 | * It follows that a call to d_test() that can be determined to be | ||
| 43 | * always false at compile time will get the code depending on it | ||
| 44 | * compiled out by optimization. | ||
| 45 | * | ||
| 46 | * | ||
| 47 | * DEBUG LEVELS | ||
| 48 | * | ||
| 49 | * It is up to the caller to define how much a debugging level is. | ||
| 50 | * | ||
| 51 | * Convention sets 0 as "no debug" (so an action marked as debug level 0 | ||
| 52 | * will always be taken). The increasing debug levels are used for | ||
| 53 | * increased verbosity. | ||
| 54 | * | ||
| 55 | * | ||
| 56 | * USAGE | ||
| 57 | * | ||
| 58 | * Group the code in modules and submodules inside each module [which | ||
| 59 | * in most cases maps to Linux modules and .c files that compose | ||
| 60 | * those]. | ||
| 61 | * | ||
| 62 | * | ||
| 63 | * For each module, there is: | ||
| 64 | * | ||
| 65 | * - a MODULENAME (single word, legal C identifier) | ||
| 66 | * | ||
| 67 | * - a debug-levels.h header file that declares the list of | ||
| 68 | * submodules and that is included by all .c files that use | ||
| 69 | * the debugging tools. The file name can be anything. | ||
| 70 | * | ||
| 71 | * - some (optional) .c code to manipulate the runtime debug levels | ||
| 72 | * through debugfs. | ||
| 73 | * | ||
| 74 | * The debug-levels.h file would look like: | ||
| 75 | * | ||
| 76 | * #ifndef __debug_levels__h__ | ||
| 77 | * #define __debug_levels__h__ | ||
| 78 | * | ||
| 79 | * #define D_MODULENAME modulename | ||
| 80 | * #define D_MASTER 10 | ||
| 81 | * | ||
| 82 | * #include <linux/wimax/debug.h> | ||
| 83 | * | ||
| 84 | * enum d_module { | ||
| 85 | * D_SUBMODULE_DECLARE(submodule_1), | ||
| 86 | * D_SUBMODULE_DECLARE(submodule_2), | ||
| 87 | * ... | ||
| 88 | * D_SUBMODULE_DECLARE(submodule_N) | ||
| 89 | * }; | ||
| 90 | * | ||
| 91 | * #endif | ||
| 92 | * | ||
| 93 | * D_MASTER is the maximum compile-time debug level; any debug actions | ||
| 94 | * above this will be out. D_MODULENAME is the module name (legal C | ||
| 95 | * identifier), which has to be unique for each module (to avoid | ||
| 96 | * namespace collisions during linkage). Note those #defines need to | ||
| 97 | * be done before #including debug.h | ||
| 98 | * | ||
| 99 | * We declare N different submodules whose debug level can be | ||
| 100 | * independently controlled during runtime. | ||
| 101 | * | ||
| 102 | * In a .c file of the module (and only in one of them), define the | ||
| 103 | * following code: | ||
| 104 | * | ||
| 105 | * struct d_level D_LEVEL[] = { | ||
| 106 | * D_SUBMODULE_DEFINE(submodule_1), | ||
| 107 | * D_SUBMODULE_DEFINE(submodule_2), | ||
| 108 | * ... | ||
| 109 | * D_SUBMODULE_DEFINE(submodule_N), | ||
| 110 | * }; | ||
| 111 | * size_t D_LEVEL_SIZE = ARRAY_SIZE(D_LEVEL); | ||
| 112 | * | ||
| 113 | * Externs for d_level_MODULENAME and d_level_size_MODULENAME are used | ||
| 114 | * and declared in this file using the D_LEVEL and D_LEVEL_SIZE macros | ||
| 115 | * #defined also in this file. | ||
| 116 | * | ||
| 117 | * To manipulate from user space the levels, create a debugfs dentry | ||
| 118 | * and then register each submodule with: | ||
| 119 | * | ||
| 120 | * result = d_level_register_debugfs("PREFIX_", submodule_X, parent); | ||
| 121 | * if (result < 0) | ||
| 122 | * goto error; | ||
| 123 | * | ||
| 124 | * Where PREFIX_ is a name of your chosing. This will create debugfs | ||
| 125 | * file with a single numeric value that can be use to tweak it. To | ||
| 126 | * remove the entires, just use debugfs_remove_recursive() on 'parent'. | ||
| 127 | * | ||
| 128 | * NOTE: remember that even if this will show attached to some | ||
| 129 | * particular instance of a device, the settings are *global*. | ||
| 130 | * | ||
| 131 | * | ||
| 132 | * On each submodule (for example, .c files), the debug infrastructure | ||
| 133 | * should be included like this: | ||
| 134 | * | ||
| 135 | * #define D_SUBMODULE submodule_x // matches one in debug-levels.h | ||
| 136 | * #include "debug-levels.h" | ||
| 137 | * | ||
| 138 | * after #including all your include files. | ||
| 139 | * | ||
| 140 | * | ||
| 141 | * Now you can use the d_*() macros below [d_test(), d_fnstart(), | ||
| 142 | * d_fnend(), d_printf(), d_dump()]. | ||
| 143 | * | ||
| 144 | * If their debug level is greater than D_MASTER, they will be | ||
| 145 | * compiled out. | ||
| 146 | * | ||
| 147 | * If their debug level is lower or equal than D_MASTER but greater | ||
| 148 | * than the current debug level of their submodule, they'll be | ||
| 149 | * ignored. | ||
| 150 | * | ||
| 151 | * Otherwise, the action will be performed. | ||
| 152 | */ | ||
| 153 | #ifndef __debug__h__ | ||
| 154 | #define __debug__h__ | ||
| 155 | |||
| 156 | #include <linux/types.h> | ||
| 157 | #include <linux/device.h> | ||
| 158 | |||
| 159 | |||
| 160 | /* Backend stuff */ | ||
| 161 | |||
| 162 | /* | ||
| 163 | * Debug backend: generate a message header from a 'struct device' | ||
| 164 | * | ||
| 165 | * @head: buffer where to place the header | ||
| 166 | * @head_size: length of @head | ||
| 167 | * @dev: pointer to device used to generate a header from. If NULL, | ||
| 168 | * an empty ("") header is generated. | ||
| 169 | */ | ||
| 170 | static inline | ||
| 171 | void __d_head(char *head, size_t head_size, | ||
| 172 | struct device *dev) | ||
| 173 | { | ||
| 174 | if (dev == NULL) | ||
| 175 | head[0] = 0; | ||
| 176 | else if ((unsigned long)dev < 4096) { | ||
| 177 | printk(KERN_ERR "E: Corrupt dev %p\n", dev); | ||
| 178 | WARN_ON(1); | ||
| 179 | } else | ||
| 180 | snprintf(head, head_size, "%s %s: ", | ||
| 181 | dev_driver_string(dev), dev->bus_id); | ||
| 182 | } | ||
| 183 | |||
| 184 | |||
| 185 | /* | ||
| 186 | * Debug backend: log some message if debugging is enabled | ||
| 187 | * | ||
| 188 | * @l: intended debug level | ||
| 189 | * @tag: tag to prefix the message with | ||
| 190 | * @dev: 'struct device' associated to this message | ||
| 191 | * @f: printf-like format and arguments | ||
| 192 | * | ||
| 193 | * Note this is optimized out if it doesn't pass the compile-time | ||
| 194 | * check; however, it is *always* compiled. This is useful to make | ||
| 195 | * sure the printf-like formats and variables are always checked and | ||
| 196 | * they don't get bit rot if you have all the debugging disabled. | ||
| 197 | */ | ||
| 198 | #define _d_printf(l, tag, dev, f, a...) \ | ||
| 199 | do { \ | ||
| 200 | char head[64]; \ | ||
| 201 | if (!d_test(l)) \ | ||
| 202 | break; \ | ||
| 203 | __d_head(head, sizeof(head), dev); \ | ||
| 204 | printk(KERN_ERR "%s%s%s: " f, head, __func__, tag, ##a); \ | ||
| 205 | } while (0) | ||
| 206 | |||
| 207 | |||
| 208 | /* | ||
| 209 | * CPP sintatic sugar to generate A_B like symbol names when one of | ||
| 210 | * the arguments is a a preprocessor #define. | ||
| 211 | */ | ||
| 212 | #define __D_PASTE__(varname, modulename) varname##_##modulename | ||
| 213 | #define __D_PASTE(varname, modulename) (__D_PASTE__(varname, modulename)) | ||
| 214 | #define _D_SUBMODULE_INDEX(_name) (D_SUBMODULE_DECLARE(_name)) | ||
| 215 | |||
| 216 | |||
| 217 | /* | ||
| 218 | * Store a submodule's runtime debug level and name | ||
| 219 | */ | ||
| 220 | struct d_level { | ||
| 221 | u8 level; | ||
| 222 | const char *name; | ||
| 223 | }; | ||
| 224 | |||
| 225 | |||
| 226 | /* | ||
| 227 | * List of available submodules and their debug levels | ||
| 228 | * | ||
| 229 | * We call them d_level_MODULENAME and d_level_size_MODULENAME; the | ||
| 230 | * macros D_LEVEL and D_LEVEL_SIZE contain the name already for | ||
| 231 | * convenience. | ||
| 232 | * | ||
| 233 | * This array and the size are defined on some .c file that is part of | ||
| 234 | * the current module. | ||
| 235 | */ | ||
| 236 | #define D_LEVEL __D_PASTE(d_level, D_MODULENAME) | ||
| 237 | #define D_LEVEL_SIZE __D_PASTE(d_level_size, D_MODULENAME) | ||
| 238 | |||
| 239 | extern struct d_level D_LEVEL[]; | ||
| 240 | extern size_t D_LEVEL_SIZE; | ||
| 241 | |||
| 242 | |||
| 243 | /* | ||
| 244 | * Frontend stuff | ||
| 245 | * | ||
| 246 | * | ||
| 247 | * Stuff you need to declare prior to using the actual "debug" actions | ||
| 248 | * (defined below). | ||
| 249 | */ | ||
| 250 | |||
| 251 | #ifndef D_MODULENAME | ||
| 252 | #error D_MODULENAME is not defined in your debug-levels.h file | ||
| 253 | /** | ||
| 254 | * D_MODULE - Name of the current module | ||
| 255 | * | ||
| 256 | * #define in your module's debug-levels.h, making sure it is | ||
| 257 | * unique. This has to be a legal C identifier. | ||
| 258 | */ | ||
| 259 | #define D_MODULENAME undefined_modulename | ||
| 260 | #endif | ||
| 261 | |||
| 262 | |||
| 263 | #ifndef D_MASTER | ||
| 264 | #warning D_MASTER not defined, but debug.h included! [see docs] | ||
| 265 | /** | ||
| 266 | * D_MASTER - Compile time maximum debug level | ||
| 267 | * | ||
| 268 | * #define in your debug-levels.h file to the maximum debug level the | ||
| 269 | * runtime code will be allowed to have. This allows you to provide a | ||
| 270 | * main knob. | ||
| 271 | * | ||
| 272 | * Anything above that level will be optimized out of the compile. | ||
| 273 | * | ||
| 274 | * Defaults to zero (no debug code compiled in). | ||
| 275 | * | ||
| 276 | * Maximum one definition per module (at the debug-levels.h file). | ||
| 277 | */ | ||
| 278 | #define D_MASTER 0 | ||
| 279 | #endif | ||
| 280 | |||
| 281 | #ifndef D_SUBMODULE | ||
| 282 | #error D_SUBMODULE not defined, but debug.h included! [see docs] | ||
| 283 | /** | ||
| 284 | * D_SUBMODULE - Name of the current submodule | ||
| 285 | * | ||
| 286 | * #define in your submodule .c file before #including debug-levels.h | ||
| 287 | * to the name of the current submodule as previously declared and | ||
| 288 | * defined with D_SUBMODULE_DECLARE() (in your module's | ||
| 289 | * debug-levels.h) and D_SUBMODULE_DEFINE(). | ||
| 290 | * | ||
| 291 | * This is used to provide runtime-control over the debug levels. | ||
| 292 | * | ||
| 293 | * Maximum one per .c file! Can be shared among different .c files | ||
| 294 | * (meaning they belong to the same submodule categorization). | ||
| 295 | */ | ||
| 296 | #define D_SUBMODULE undefined_module | ||
| 297 | #endif | ||
| 298 | |||
| 299 | |||
| 300 | /** | ||
| 301 | * D_SUBMODULE_DECLARE - Declare a submodule for runtime debug level control | ||
| 302 | * | ||
| 303 | * @_name: name of the submodule, restricted to the chars that make up a | ||
| 304 | * valid C identifier ([a-zA-Z0-9_]). | ||
| 305 | * | ||
| 306 | * Declare in the module's debug-levels.h header file as: | ||
| 307 | * | ||
| 308 | * enum d_module { | ||
| 309 | * D_SUBMODULE_DECLARE(submodule_1), | ||
| 310 | * D_SUBMODULE_DECLARE(submodule_2), | ||
| 311 | * D_SUBMODULE_DECLARE(submodule_3), | ||
| 312 | * }; | ||
| 313 | * | ||
| 314 | * Some corresponding .c file needs to have a matching | ||
| 315 | * D_SUBMODULE_DEFINE(). | ||
| 316 | */ | ||
| 317 | #define D_SUBMODULE_DECLARE(_name) __D_SUBMODULE_##_name | ||
| 318 | |||
| 319 | |||
| 320 | /** | ||
| 321 | * D_SUBMODULE_DEFINE - Define a submodule for runtime debug level control | ||
| 322 | * | ||
| 323 | * @_name: name of the submodule, restricted to the chars that make up a | ||
| 324 | * valid C identifier ([a-zA-Z0-9_]). | ||
| 325 | * | ||
| 326 | * Use once per module (in some .c file) as: | ||
| 327 | * | ||
| 328 | * static | ||
| 329 | * struct d_level d_level_SUBMODULENAME[] = { | ||
| 330 | * D_SUBMODULE_DEFINE(submodule_1), | ||
| 331 | * D_SUBMODULE_DEFINE(submodule_2), | ||
| 332 | * D_SUBMODULE_DEFINE(submodule_3), | ||
| 333 | * }; | ||
| 334 | * size_t d_level_size_SUBDMODULENAME = ARRAY_SIZE(d_level_SUBDMODULENAME); | ||
| 335 | * | ||
| 336 | * Matching D_SUBMODULE_DECLARE()s have to be present in a | ||
| 337 | * debug-levels.h header file. | ||
| 338 | */ | ||
| 339 | #define D_SUBMODULE_DEFINE(_name) \ | ||
| 340 | [__D_SUBMODULE_##_name] = { \ | ||
| 341 | .level = 0, \ | ||
| 342 | .name = #_name \ | ||
| 343 | } | ||
| 344 | |||
| 345 | |||
| 346 | |||
| 347 | /* The actual "debug" operations */ | ||
| 348 | |||
| 349 | |||
| 350 | /** | ||
| 351 | * d_test - Returns true if debugging should be enabled | ||
| 352 | * | ||
| 353 | * @l: intended debug level (unsigned) | ||
| 354 | * | ||
| 355 | * If the master debug switch is enabled and the current settings are | ||
| 356 | * higher or equal to the requested level, then debugging | ||
| 357 | * output/actions should be enabled. | ||
| 358 | * | ||
| 359 | * NOTE: | ||
| 360 | * | ||
| 361 | * This needs to be coded so that it can be evaluated in compile | ||
| 362 | * time; this is why the ugly BUG_ON() is placed in there, so the | ||
| 363 | * D_MASTER evaluation compiles all out if it is compile-time false. | ||
| 364 | */ | ||
| 365 | #define d_test(l) \ | ||
| 366 | ({ \ | ||
| 367 | unsigned __l = l; /* type enforcer */ \ | ||
| 368 | (D_MASTER) >= __l \ | ||
| 369 | && ({ \ | ||
| 370 | BUG_ON(_D_SUBMODULE_INDEX(D_SUBMODULE) >= D_LEVEL_SIZE);\ | ||
| 371 | D_LEVEL[_D_SUBMODULE_INDEX(D_SUBMODULE)].level >= __l; \ | ||
| 372 | }); \ | ||
| 373 | }) | ||
| 374 | |||
| 375 | |||
| 376 | /** | ||
| 377 | * d_fnstart - log message at function start if debugging enabled | ||
| 378 | * | ||
| 379 | * @l: intended debug level | ||
| 380 | * @_dev: 'struct device' pointer, NULL if none (for context) | ||
| 381 | * @f: printf-like format and arguments | ||
| 382 | */ | ||
| 383 | #define d_fnstart(l, _dev, f, a...) _d_printf(l, " FNSTART", _dev, f, ## a) | ||
| 384 | |||
| 385 | |||
| 386 | /** | ||
| 387 | * d_fnend - log message at function end if debugging enabled | ||
| 388 | * | ||
| 389 | * @l: intended debug level | ||
| 390 | * @_dev: 'struct device' pointer, NULL if none (for context) | ||
| 391 | * @f: printf-like format and arguments | ||
| 392 | */ | ||
| 393 | #define d_fnend(l, _dev, f, a...) _d_printf(l, " FNEND", _dev, f, ## a) | ||
| 394 | |||
| 395 | |||
| 396 | /** | ||
| 397 | * d_printf - log message if debugging enabled | ||
| 398 | * | ||
| 399 | * @l: intended debug level | ||
| 400 | * @_dev: 'struct device' pointer, NULL if none (for context) | ||
| 401 | * @f: printf-like format and arguments | ||
| 402 | */ | ||
| 403 | #define d_printf(l, _dev, f, a...) _d_printf(l, "", _dev, f, ## a) | ||
| 404 | |||
| 405 | |||
| 406 | /** | ||
| 407 | * d_dump - log buffer hex dump if debugging enabled | ||
| 408 | * | ||
| 409 | * @l: intended debug level | ||
| 410 | * @_dev: 'struct device' pointer, NULL if none (for context) | ||
| 411 | * @f: printf-like format and arguments | ||
| 412 | */ | ||
| 413 | #define d_dump(l, dev, ptr, size) \ | ||
| 414 | do { \ | ||
| 415 | char head[64]; \ | ||
| 416 | if (!d_test(l)) \ | ||
| 417 | break; \ | ||
| 418 | __d_head(head, sizeof(head), dev); \ | ||
| 419 | print_hex_dump(KERN_ERR, head, 0, 16, 1, \ | ||
| 420 | ((void *) ptr), (size), 0); \ | ||
| 421 | } while (0) | ||
| 422 | |||
| 423 | |||
| 424 | /** | ||
| 425 | * Export a submodule's debug level over debugfs as PREFIXSUBMODULE | ||
| 426 | * | ||
| 427 | * @prefix: string to prefix the name with | ||
| 428 | * @submodule: name of submodule (not a string, just the name) | ||
| 429 | * @dentry: debugfs parent dentry | ||
| 430 | * | ||
| 431 | * Returns: 0 if ok, < 0 errno on error. | ||
| 432 | * | ||
| 433 | * For removing, just use debugfs_remove_recursive() on the parent. | ||
| 434 | */ | ||
| 435 | #define d_level_register_debugfs(prefix, name, parent) \ | ||
| 436 | ({ \ | ||
| 437 | int rc; \ | ||
| 438 | struct dentry *fd; \ | ||
| 439 | struct dentry *verify_parent_type = parent; \ | ||
| 440 | fd = debugfs_create_u8( \ | ||
| 441 | prefix #name, 0600, verify_parent_type, \ | ||
| 442 | &(D_LEVEL[__D_SUBMODULE_ ## name].level)); \ | ||
| 443 | rc = PTR_ERR(fd); \ | ||
| 444 | if (IS_ERR(fd) && rc != -ENODEV) \ | ||
| 445 | printk(KERN_ERR "%s: Can't create debugfs entry %s: " \ | ||
| 446 | "%d\n", __func__, prefix #name, rc); \ | ||
| 447 | else \ | ||
| 448 | rc = 0; \ | ||
| 449 | rc; \ | ||
| 450 | }) | ||
| 451 | |||
| 452 | |||
| 453 | #endif /* #ifndef __debug__h__ */ | ||
diff --git a/include/linux/wimax/i2400m.h b/include/linux/wimax/i2400m.h new file mode 100644 index 000000000000..74198f5bb4dc --- /dev/null +++ b/include/linux/wimax/i2400m.h | |||
| @@ -0,0 +1,512 @@ | |||
| 1 | /* | ||
| 2 | * Intel Wireless WiMax Connection 2400m | ||
| 3 | * Host-Device protocol interface definitions | ||
| 4 | * | ||
| 5 | * | ||
| 6 | * Copyright (C) 2007-2008 Intel Corporation. All rights reserved. | ||
| 7 | * | ||
| 8 | * Redistribution and use in source and binary forms, with or without | ||
| 9 | * modification, are permitted provided that the following conditions | ||
| 10 | * are met: | ||
| 11 | * | ||
| 12 | * * Redistributions of source code must retain the above copyright | ||
| 13 | * notice, this list of conditions and the following disclaimer. | ||
| 14 | * * Redistributions in binary form must reproduce the above copyright | ||
| 15 | * notice, this list of conditions and the following disclaimer in | ||
| 16 | * the documentation and/or other materials provided with the | ||
| 17 | * distribution. | ||
| 18 | * * Neither the name of Intel Corporation nor the names of its | ||
| 19 | * contributors may be used to endorse or promote products derived | ||
| 20 | * from this software without specific prior written permission. | ||
| 21 | * | ||
| 22 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
| 23 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
| 24 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
| 25 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
| 26 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
| 27 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
| 28 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
| 29 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
| 30 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| 31 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
| 32 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 33 | * | ||
| 34 | * | ||
| 35 | * Intel Corporation <linux-wimax@intel.com> | ||
| 36 | * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> | ||
| 37 | * - Initial implementation | ||
| 38 | * | ||
| 39 | * | ||
| 40 | * This header defines the data structures and constants used to | ||
| 41 | * communicate with the device. | ||
| 42 | * | ||
| 43 | * BOOTMODE/BOOTROM/FIRMWARE UPLOAD PROTOCOL | ||
| 44 | * | ||
| 45 | * The firmware upload protocol is quite simple and only requires a | ||
| 46 | * handful of commands. See drivers/net/wimax/i2400m/fw.c for more | ||
| 47 | * details. | ||
| 48 | * | ||
| 49 | * The BCF data structure is for the firmware file header. | ||
| 50 | * | ||
| 51 | * | ||
| 52 | * THE DATA / CONTROL PROTOCOL | ||
| 53 | * | ||
| 54 | * This is the normal protocol spoken with the device once the | ||
| 55 | * firmware is uploaded. It transports data payloads and control | ||
| 56 | * messages back and forth. | ||
| 57 | * | ||
| 58 | * It consists 'messages' that pack one or more payloads each. The | ||
| 59 | * format is described in detail in drivers/net/wimax/i2400m/rx.c and | ||
| 60 | * tx.c. | ||
| 61 | * | ||
| 62 | * | ||
| 63 | * THE L3L4 PROTOCOL | ||
| 64 | * | ||
| 65 | * The term L3L4 refers to Layer 3 (the device), Layer 4 (the | ||
| 66 | * driver/host software). | ||
| 67 | * | ||
| 68 | * This is the control protocol used by the host to control the i2400m | ||
| 69 | * device (scan, connect, disconnect...). This is sent to / received | ||
| 70 | * as control frames. These frames consist of a header and zero or | ||
| 71 | * more TLVs with information. We call each control frame a "message". | ||
| 72 | * | ||
| 73 | * Each message is composed of: | ||
| 74 | * | ||
| 75 | * HEADER | ||
| 76 | * [TLV0 + PAYLOAD0] | ||
| 77 | * [TLV1 + PAYLOAD1] | ||
| 78 | * [...] | ||
| 79 | * [TLVN + PAYLOADN] | ||
| 80 | * | ||
| 81 | * The HEADER is defined by 'struct i2400m_l3l4_hdr'. The payloads are | ||
| 82 | * defined by a TLV structure (Type Length Value) which is a 'header' | ||
| 83 | * (struct i2400m_tlv_hdr) and then the payload. | ||
| 84 | * | ||
| 85 | * All integers are represented as Little Endian. | ||
| 86 | * | ||
| 87 | * - REQUESTS AND EVENTS | ||
| 88 | * | ||
| 89 | * The requests can be clasified as follows: | ||
| 90 | * | ||
| 91 | * COMMAND: implies a request from the host to the device requesting | ||
| 92 | * an action being performed. The device will reply with a | ||
| 93 | * message (with the same type as the command), status and | ||
| 94 | * no (TLV) payload. Execution of a command might cause | ||
| 95 | * events (of different type) to be sent later on as | ||
| 96 | * device's state changes. | ||
| 97 | * | ||
| 98 | * GET/SET: similar to COMMAND, but will not cause other | ||
| 99 | * EVENTs. The reply, in the case of GET, will contain | ||
| 100 | * TLVs with the requested information. | ||
| 101 | * | ||
| 102 | * EVENT: asynchronous messages sent from the device, maybe as a | ||
| 103 | * consequence of previous COMMANDs but disassociated from | ||
| 104 | * them. | ||
| 105 | * | ||
| 106 | * Only one request might be pending at the same time (ie: don't | ||
| 107 | * parallelize nor post another GET request before the previous | ||
| 108 | * COMMAND has been acknowledged with it's corresponding reply by the | ||
| 109 | * device). | ||
| 110 | * | ||
| 111 | * The different requests and their formats are described below: | ||
| 112 | * | ||
| 113 | * I2400M_MT_* Message types | ||
| 114 | * I2400M_MS_* Message status (for replies, events) | ||
| 115 | * i2400m_tlv_* TLVs | ||
| 116 | * | ||
| 117 | * data types are named 'struct i2400m_msg_OPNAME', OPNAME matching the | ||
| 118 | * operation. | ||
| 119 | */ | ||
| 120 | |||
| 121 | #ifndef __LINUX__WIMAX__I2400M_H__ | ||
| 122 | #define __LINUX__WIMAX__I2400M_H__ | ||
| 123 | |||
| 124 | #include <linux/types.h> | ||
| 125 | |||
| 126 | |||
| 127 | /* | ||
| 128 | * Host Device Interface (HDI) common to all busses | ||
| 129 | */ | ||
| 130 | |||
| 131 | /* Boot-mode (firmware upload mode) commands */ | ||
| 132 | |||
| 133 | /* Header for the firmware file */ | ||
| 134 | struct i2400m_bcf_hdr { | ||
| 135 | __le32 module_type; | ||
| 136 | __le32 header_len; | ||
| 137 | __le32 header_version; | ||
| 138 | __le32 module_id; | ||
| 139 | __le32 module_vendor; | ||
| 140 | __le32 date; /* BCD YYYMMDD */ | ||
| 141 | __le32 size; | ||
| 142 | __le32 key_size; /* in dwords */ | ||
| 143 | __le32 modulus_size; /* in dwords */ | ||
| 144 | __le32 exponent_size; /* in dwords */ | ||
| 145 | __u8 reserved[88]; | ||
| 146 | } __attribute__ ((packed)); | ||
| 147 | |||
| 148 | /* Boot mode opcodes */ | ||
| 149 | enum i2400m_brh_opcode { | ||
| 150 | I2400M_BRH_READ = 1, | ||
| 151 | I2400M_BRH_WRITE = 2, | ||
| 152 | I2400M_BRH_JUMP = 3, | ||
| 153 | I2400M_BRH_SIGNED_JUMP = 8, | ||
| 154 | I2400M_BRH_HASH_PAYLOAD_ONLY = 9, | ||
| 155 | }; | ||
| 156 | |||
| 157 | /* Boot mode command masks and stuff */ | ||
| 158 | enum i2400m_brh { | ||
| 159 | I2400M_BRH_SIGNATURE = 0xcbbc0000, | ||
| 160 | I2400M_BRH_SIGNATURE_MASK = 0xffff0000, | ||
| 161 | I2400M_BRH_SIGNATURE_SHIFT = 16, | ||
| 162 | I2400M_BRH_OPCODE_MASK = 0x0000000f, | ||
| 163 | I2400M_BRH_RESPONSE_MASK = 0x000000f0, | ||
| 164 | I2400M_BRH_RESPONSE_SHIFT = 4, | ||
| 165 | I2400M_BRH_DIRECT_ACCESS = 0x00000400, | ||
| 166 | I2400M_BRH_RESPONSE_REQUIRED = 0x00000200, | ||
| 167 | I2400M_BRH_USE_CHECKSUM = 0x00000100, | ||
| 168 | }; | ||
| 169 | |||
| 170 | |||
| 171 | /* Constants for bcf->module_id */ | ||
| 172 | enum i2400m_bcf_mod_id { | ||
| 173 | /* Firmware file carries its own pokes -- pokes are a set of | ||
| 174 | * magical values that have to be written in certain memory | ||
| 175 | * addresses to get the device up and ready for firmware | ||
| 176 | * download when it is in non-signed boot mode. */ | ||
| 177 | I2400M_BCF_MOD_ID_POKES = 0x000000001, | ||
| 178 | }; | ||
| 179 | |||
| 180 | |||
| 181 | /** | ||
| 182 | * i2400m_bootrom_header - Header for a boot-mode command | ||
| 183 | * | ||
| 184 | * @cmd: the above command descriptor | ||
| 185 | * @target_addr: where on the device memory should the action be performed. | ||
| 186 | * @data_size: for read/write, amount of data to be read/written | ||
| 187 | * @block_checksum: checksum value (if applicable) | ||
| 188 | * @payload: the beginning of data attached to this header | ||
| 189 | */ | ||
| 190 | struct i2400m_bootrom_header { | ||
| 191 | __le32 command; /* Compose with enum i2400_brh */ | ||
| 192 | __le32 target_addr; | ||
| 193 | __le32 data_size; | ||
| 194 | __le32 block_checksum; | ||
| 195 | char payload[0]; | ||
| 196 | } __attribute__ ((packed)); | ||
| 197 | |||
| 198 | |||
| 199 | /* | ||
| 200 | * Data / control protocol | ||
| 201 | */ | ||
| 202 | |||
| 203 | /* Packet types for the host-device interface */ | ||
| 204 | enum i2400m_pt { | ||
| 205 | I2400M_PT_DATA = 0, | ||
| 206 | I2400M_PT_CTRL, | ||
| 207 | I2400M_PT_TRACE, /* For device debug */ | ||
| 208 | I2400M_PT_RESET_WARM, /* device reset */ | ||
| 209 | I2400M_PT_RESET_COLD, /* USB[transport] reset, like reconnect */ | ||
| 210 | I2400M_PT_ILLEGAL | ||
| 211 | }; | ||
| 212 | |||
| 213 | |||
| 214 | /* | ||
| 215 | * Payload for a data packet | ||
| 216 | * | ||
| 217 | * This is prefixed to each and every outgoing DATA type. | ||
| 218 | */ | ||
| 219 | struct i2400m_pl_data_hdr { | ||
| 220 | __le32 reserved; | ||
| 221 | } __attribute__((packed)); | ||
| 222 | |||
| 223 | |||
| 224 | /* Misc constants */ | ||
| 225 | enum { | ||
| 226 | I2400M_PL_PAD = 16, /* Payload data size alignment */ | ||
| 227 | I2400M_PL_SIZE_MAX = 0x3EFF, | ||
| 228 | I2400M_MAX_PLS_IN_MSG = 60, | ||
| 229 | /* protocol barkers: sync sequences; for notifications they | ||
| 230 | * are sent in groups of four. */ | ||
| 231 | I2400M_H2D_PREVIEW_BARKER = 0xcafe900d, | ||
| 232 | I2400M_COLD_RESET_BARKER = 0xc01dc01d, | ||
| 233 | I2400M_WARM_RESET_BARKER = 0x50f750f7, | ||
| 234 | I2400M_NBOOT_BARKER = 0xdeadbeef, | ||
| 235 | I2400M_SBOOT_BARKER = 0x0ff1c1a1, | ||
| 236 | I2400M_ACK_BARKER = 0xfeedbabe, | ||
| 237 | I2400M_D2H_MSG_BARKER = 0xbeefbabe, | ||
| 238 | }; | ||
| 239 | |||
| 240 | |||
| 241 | /* | ||
| 242 | * Hardware payload descriptor | ||
| 243 | * | ||
| 244 | * Bitfields encoded in a struct to enforce typing semantics. | ||
| 245 | * | ||
| 246 | * Look in rx.c and tx.c for a full description of the format. | ||
| 247 | */ | ||
| 248 | struct i2400m_pld { | ||
| 249 | __le32 val; | ||
| 250 | } __attribute__ ((packed)); | ||
| 251 | |||
| 252 | #define I2400M_PLD_SIZE_MASK 0x00003fff | ||
| 253 | #define I2400M_PLD_TYPE_SHIFT 16 | ||
| 254 | #define I2400M_PLD_TYPE_MASK 0x000f0000 | ||
| 255 | |||
| 256 | /* | ||
| 257 | * Header for a TX message or RX message | ||
| 258 | * | ||
| 259 | * @barker: preamble | ||
| 260 | * @size: used for management of the FIFO queue buffer; before | ||
| 261 | * sending, this is converted to be a real preamble. This | ||
| 262 | * indicates the real size of the TX message that starts at this | ||
| 263 | * point. If the highest bit is set, then this message is to be | ||
| 264 | * skipped. | ||
| 265 | * @sequence: sequence number of this message | ||
| 266 | * @offset: offset where the message itself starts -- see the comments | ||
| 267 | * in the file header about message header and payload descriptor | ||
| 268 | * alignment. | ||
| 269 | * @num_pls: number of payloads in this message | ||
| 270 | * @padding: amount of padding bytes at the end of the message to make | ||
| 271 | * it be of block-size aligned | ||
| 272 | * | ||
| 273 | * Look in rx.c and tx.c for a full description of the format. | ||
| 274 | */ | ||
| 275 | struct i2400m_msg_hdr { | ||
| 276 | union { | ||
| 277 | __le32 barker; | ||
| 278 | __u32 size; /* same size type as barker!! */ | ||
| 279 | }; | ||
| 280 | union { | ||
| 281 | __le32 sequence; | ||
| 282 | __u32 offset; /* same size type as barker!! */ | ||
| 283 | }; | ||
| 284 | __le16 num_pls; | ||
| 285 | __le16 rsv1; | ||
| 286 | __le16 padding; | ||
| 287 | __le16 rsv2; | ||
| 288 | struct i2400m_pld pld[0]; | ||
| 289 | } __attribute__ ((packed)); | ||
| 290 | |||
| 291 | |||
| 292 | |||
| 293 | /* | ||
| 294 | * L3/L4 control protocol | ||
| 295 | */ | ||
| 296 | |||
| 297 | enum { | ||
| 298 | /* Interface version */ | ||
| 299 | I2400M_L3L4_VERSION = 0x0100, | ||
| 300 | }; | ||
| 301 | |||
| 302 | /* Message types */ | ||
| 303 | enum i2400m_mt { | ||
| 304 | I2400M_MT_RESERVED = 0x0000, | ||
| 305 | I2400M_MT_INVALID = 0xffff, | ||
| 306 | I2400M_MT_REPORT_MASK = 0x8000, | ||
| 307 | |||
| 308 | I2400M_MT_GET_SCAN_RESULT = 0x4202, | ||
| 309 | I2400M_MT_SET_SCAN_PARAM = 0x4402, | ||
| 310 | I2400M_MT_CMD_RF_CONTROL = 0x4602, | ||
| 311 | I2400M_MT_CMD_SCAN = 0x4603, | ||
| 312 | I2400M_MT_CMD_CONNECT = 0x4604, | ||
| 313 | I2400M_MT_CMD_DISCONNECT = 0x4605, | ||
| 314 | I2400M_MT_CMD_EXIT_IDLE = 0x4606, | ||
| 315 | I2400M_MT_GET_LM_VERSION = 0x5201, | ||
| 316 | I2400M_MT_GET_DEVICE_INFO = 0x5202, | ||
| 317 | I2400M_MT_GET_LINK_STATUS = 0x5203, | ||
| 318 | I2400M_MT_GET_STATISTICS = 0x5204, | ||
| 319 | I2400M_MT_GET_STATE = 0x5205, | ||
| 320 | I2400M_MT_GET_MEDIA_STATUS = 0x5206, | ||
| 321 | I2400M_MT_SET_INIT_CONFIG = 0x5404, | ||
| 322 | I2400M_MT_CMD_INIT = 0x5601, | ||
| 323 | I2400M_MT_CMD_TERMINATE = 0x5602, | ||
| 324 | I2400M_MT_CMD_MODE_OF_OP = 0x5603, | ||
| 325 | I2400M_MT_CMD_RESET_DEVICE = 0x5604, | ||
| 326 | I2400M_MT_CMD_MONITOR_CONTROL = 0x5605, | ||
| 327 | I2400M_MT_CMD_ENTER_POWERSAVE = 0x5606, | ||
| 328 | I2400M_MT_GET_TLS_OPERATION_RESULT = 0x6201, | ||
| 329 | I2400M_MT_SET_EAP_SUCCESS = 0x6402, | ||
| 330 | I2400M_MT_SET_EAP_FAIL = 0x6403, | ||
| 331 | I2400M_MT_SET_EAP_KEY = 0x6404, | ||
| 332 | I2400M_MT_CMD_SEND_EAP_RESPONSE = 0x6602, | ||
| 333 | I2400M_MT_REPORT_SCAN_RESULT = 0xc002, | ||
| 334 | I2400M_MT_REPORT_STATE = 0xd002, | ||
| 335 | I2400M_MT_REPORT_POWERSAVE_READY = 0xd005, | ||
| 336 | I2400M_MT_REPORT_EAP_REQUEST = 0xe002, | ||
| 337 | I2400M_MT_REPORT_EAP_RESTART = 0xe003, | ||
| 338 | I2400M_MT_REPORT_ALT_ACCEPT = 0xe004, | ||
| 339 | I2400M_MT_REPORT_KEY_REQUEST = 0xe005, | ||
| 340 | }; | ||
| 341 | |||
| 342 | |||
| 343 | /* | ||
| 344 | * Message Ack Status codes | ||
| 345 | * | ||
| 346 | * When a message is replied-to, this status is reported. | ||
| 347 | */ | ||
| 348 | enum i2400m_ms { | ||
| 349 | I2400M_MS_DONE_OK = 0, | ||
| 350 | I2400M_MS_DONE_IN_PROGRESS = 1, | ||
| 351 | I2400M_MS_INVALID_OP = 2, | ||
| 352 | I2400M_MS_BAD_STATE = 3, | ||
| 353 | I2400M_MS_ILLEGAL_VALUE = 4, | ||
| 354 | I2400M_MS_MISSING_PARAMS = 5, | ||
| 355 | I2400M_MS_VERSION_ERROR = 6, | ||
| 356 | I2400M_MS_ACCESSIBILITY_ERROR = 7, | ||
| 357 | I2400M_MS_BUSY = 8, | ||
| 358 | I2400M_MS_CORRUPTED_TLV = 9, | ||
| 359 | I2400M_MS_UNINITIALIZED = 10, | ||
| 360 | I2400M_MS_UNKNOWN_ERROR = 11, | ||
| 361 | I2400M_MS_PRODUCTION_ERROR = 12, | ||
| 362 | I2400M_MS_NO_RF = 13, | ||
| 363 | I2400M_MS_NOT_READY_FOR_POWERSAVE = 14, | ||
| 364 | I2400M_MS_THERMAL_CRITICAL = 15, | ||
| 365 | I2400M_MS_MAX | ||
| 366 | }; | ||
| 367 | |||
| 368 | |||
| 369 | /** | ||
| 370 | * i2400m_tlv - enumeration of the different types of TLVs | ||
| 371 | * | ||
| 372 | * TLVs stand for type-length-value and are the header for a payload | ||
| 373 | * composed of almost anything. Each payload has a type assigned | ||
| 374 | * and a length. | ||
| 375 | */ | ||
| 376 | enum i2400m_tlv { | ||
| 377 | I2400M_TLV_L4_MESSAGE_VERSIONS = 129, | ||
| 378 | I2400M_TLV_SYSTEM_STATE = 141, | ||
| 379 | I2400M_TLV_MEDIA_STATUS = 161, | ||
| 380 | I2400M_TLV_RF_OPERATION = 162, | ||
| 381 | I2400M_TLV_RF_STATUS = 163, | ||
| 382 | I2400M_TLV_DEVICE_RESET_TYPE = 132, | ||
| 383 | I2400M_TLV_CONFIG_IDLE_PARAMETERS = 601, | ||
| 384 | }; | ||
| 385 | |||
| 386 | |||
| 387 | struct i2400m_tlv_hdr { | ||
| 388 | __le16 type; | ||
| 389 | __le16 length; /* payload's */ | ||
| 390 | __u8 pl[0]; | ||
| 391 | } __attribute__((packed)); | ||
| 392 | |||
| 393 | |||
| 394 | struct i2400m_l3l4_hdr { | ||
| 395 | __le16 type; | ||
| 396 | __le16 length; /* payload's */ | ||
| 397 | __le16 version; | ||
| 398 | __le16 resv1; | ||
| 399 | __le16 status; | ||
| 400 | __le16 resv2; | ||
| 401 | struct i2400m_tlv_hdr pl[0]; | ||
| 402 | } __attribute__((packed)); | ||
| 403 | |||
| 404 | |||
| 405 | /** | ||
| 406 | * i2400m_system_state - different states of the device | ||
| 407 | */ | ||
| 408 | enum i2400m_system_state { | ||
| 409 | I2400M_SS_UNINITIALIZED = 1, | ||
| 410 | I2400M_SS_INIT, | ||
| 411 | I2400M_SS_READY, | ||
| 412 | I2400M_SS_SCAN, | ||
| 413 | I2400M_SS_STANDBY, | ||
| 414 | I2400M_SS_CONNECTING, | ||
| 415 | I2400M_SS_WIMAX_CONNECTED, | ||
| 416 | I2400M_SS_DATA_PATH_CONNECTED, | ||
| 417 | I2400M_SS_IDLE, | ||
| 418 | I2400M_SS_DISCONNECTING, | ||
| 419 | I2400M_SS_OUT_OF_ZONE, | ||
| 420 | I2400M_SS_SLEEPACTIVE, | ||
| 421 | I2400M_SS_PRODUCTION, | ||
| 422 | I2400M_SS_CONFIG, | ||
| 423 | I2400M_SS_RF_OFF, | ||
| 424 | I2400M_SS_RF_SHUTDOWN, | ||
| 425 | I2400M_SS_DEVICE_DISCONNECT, | ||
| 426 | I2400M_SS_MAX, | ||
| 427 | }; | ||
| 428 | |||
| 429 | |||
| 430 | /** | ||
| 431 | * i2400m_tlv_system_state - report on the state of the system | ||
| 432 | * | ||
| 433 | * @state: see enum i2400m_system_state | ||
| 434 | */ | ||
| 435 | struct i2400m_tlv_system_state { | ||
| 436 | struct i2400m_tlv_hdr hdr; | ||
| 437 | __le32 state; | ||
| 438 | } __attribute__((packed)); | ||
| 439 | |||
| 440 | |||
| 441 | struct i2400m_tlv_l4_message_versions { | ||
| 442 | struct i2400m_tlv_hdr hdr; | ||
| 443 | __le16 major; | ||
| 444 | __le16 minor; | ||
| 445 | __le16 branch; | ||
| 446 | __le16 reserved; | ||
| 447 | } __attribute__((packed)); | ||
| 448 | |||
| 449 | |||
| 450 | struct i2400m_tlv_detailed_device_info { | ||
| 451 | struct i2400m_tlv_hdr hdr; | ||
| 452 | __u8 reserved1[400]; | ||
| 453 | __u8 mac_address[6]; | ||
| 454 | __u8 reserved2[2]; | ||
| 455 | } __attribute__((packed)); | ||
| 456 | |||
| 457 | |||
| 458 | enum i2400m_rf_switch_status { | ||
| 459 | I2400M_RF_SWITCH_ON = 1, | ||
| 460 | I2400M_RF_SWITCH_OFF = 2, | ||
| 461 | }; | ||
| 462 | |||
| 463 | struct i2400m_tlv_rf_switches_status { | ||
| 464 | struct i2400m_tlv_hdr hdr; | ||
| 465 | __u8 sw_rf_switch; /* 1 ON, 2 OFF */ | ||
| 466 | __u8 hw_rf_switch; /* 1 ON, 2 OFF */ | ||
| 467 | __u8 reserved[2]; | ||
| 468 | } __attribute__((packed)); | ||
| 469 | |||
| 470 | |||
| 471 | enum { | ||
| 472 | i2400m_rf_operation_on = 1, | ||
| 473 | i2400m_rf_operation_off = 2 | ||
| 474 | }; | ||
| 475 | |||
| 476 | struct i2400m_tlv_rf_operation { | ||
| 477 | struct i2400m_tlv_hdr hdr; | ||
| 478 | __le32 status; /* 1 ON, 2 OFF */ | ||
| 479 | } __attribute__((packed)); | ||
| 480 | |||
| 481 | |||
| 482 | enum i2400m_tlv_reset_type { | ||
| 483 | I2400M_RESET_TYPE_COLD = 1, | ||
| 484 | I2400M_RESET_TYPE_WARM | ||
| 485 | }; | ||
| 486 | |||
| 487 | struct i2400m_tlv_device_reset_type { | ||
| 488 | struct i2400m_tlv_hdr hdr; | ||
| 489 | __le32 reset_type; | ||
| 490 | } __attribute__((packed)); | ||
| 491 | |||
| 492 | |||
| 493 | struct i2400m_tlv_config_idle_parameters { | ||
| 494 | struct i2400m_tlv_hdr hdr; | ||
| 495 | __le32 idle_timeout; /* 100 to 300000 ms [5min], 100 increments | ||
| 496 | * 0 disabled */ | ||
| 497 | __le32 idle_paging_interval; /* frames */ | ||
| 498 | } __attribute__((packed)); | ||
| 499 | |||
| 500 | |||
| 501 | enum i2400m_media_status { | ||
| 502 | I2400M_MEDIA_STATUS_LINK_UP = 1, | ||
| 503 | I2400M_MEDIA_STATUS_LINK_DOWN, | ||
| 504 | I2400M_MEDIA_STATUS_LINK_RENEW, | ||
| 505 | }; | ||
| 506 | |||
| 507 | struct i2400m_tlv_media_status { | ||
| 508 | struct i2400m_tlv_hdr hdr; | ||
| 509 | __le32 media_status; | ||
| 510 | } __attribute__((packed)); | ||
| 511 | |||
| 512 | #endif /* #ifndef __LINUX__WIMAX__I2400M_H__ */ | ||
diff --git a/include/linux/wlp.h b/include/linux/wlp.h index 033545e145c7..ac95ce6606ac 100644 --- a/include/linux/wlp.h +++ b/include/linux/wlp.h | |||
| @@ -646,6 +646,7 @@ struct wlp_wss { | |||
| 646 | struct wlp { | 646 | struct wlp { |
| 647 | struct mutex mutex; | 647 | struct mutex mutex; |
| 648 | struct uwb_rc *rc; /* UWB radio controller */ | 648 | struct uwb_rc *rc; /* UWB radio controller */ |
| 649 | struct net_device *ndev; | ||
| 649 | struct uwb_pal pal; | 650 | struct uwb_pal pal; |
| 650 | struct wlp_eda eda; | 651 | struct wlp_eda eda; |
| 651 | struct wlp_uuid uuid; | 652 | struct wlp_uuid uuid; |
| @@ -675,7 +676,7 @@ struct wlp_wss_attribute { | |||
| 675 | static struct wlp_wss_attribute wss_attr_##_name = __ATTR(_name, _mode, \ | 676 | static struct wlp_wss_attribute wss_attr_##_name = __ATTR(_name, _mode, \ |
| 676 | _show, _store) | 677 | _show, _store) |
| 677 | 678 | ||
| 678 | extern int wlp_setup(struct wlp *, struct uwb_rc *); | 679 | extern int wlp_setup(struct wlp *, struct uwb_rc *, struct net_device *ndev); |
| 679 | extern void wlp_remove(struct wlp *); | 680 | extern void wlp_remove(struct wlp *); |
| 680 | extern ssize_t wlp_neighborhood_show(struct wlp *, char *); | 681 | extern ssize_t wlp_neighborhood_show(struct wlp *, char *); |
| 681 | extern int wlp_wss_setup(struct net_device *, struct wlp_wss *); | 682 | extern int wlp_wss_setup(struct net_device *, struct wlp_wss *); |
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index b36291130f22..3cd51e579ab1 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h | |||
| @@ -118,12 +118,24 @@ struct execute_work { | |||
| 118 | init_timer(&(_work)->timer); \ | 118 | init_timer(&(_work)->timer); \ |
| 119 | } while (0) | 119 | } while (0) |
| 120 | 120 | ||
| 121 | #define INIT_DELAYED_WORK_ON_STACK(_work, _func) \ | ||
| 122 | do { \ | ||
| 123 | INIT_WORK(&(_work)->work, (_func)); \ | ||
| 124 | init_timer_on_stack(&(_work)->timer); \ | ||
| 125 | } while (0) | ||
| 126 | |||
| 121 | #define INIT_DELAYED_WORK_DEFERRABLE(_work, _func) \ | 127 | #define INIT_DELAYED_WORK_DEFERRABLE(_work, _func) \ |
| 122 | do { \ | 128 | do { \ |
| 123 | INIT_WORK(&(_work)->work, (_func)); \ | 129 | INIT_WORK(&(_work)->work, (_func)); \ |
| 124 | init_timer_deferrable(&(_work)->timer); \ | 130 | init_timer_deferrable(&(_work)->timer); \ |
| 125 | } while (0) | 131 | } while (0) |
| 126 | 132 | ||
| 133 | #define INIT_DELAYED_WORK_ON_STACK(_work, _func) \ | ||
| 134 | do { \ | ||
| 135 | INIT_WORK(&(_work)->work, (_func)); \ | ||
| 136 | init_timer_on_stack(&(_work)->timer); \ | ||
| 137 | } while (0) | ||
| 138 | |||
| 127 | /** | 139 | /** |
| 128 | * work_pending - Find out whether a work item is currently pending | 140 | * work_pending - Find out whether a work item is currently pending |
| 129 | * @work: The work item in question | 141 | * @work: The work item in question |
diff --git a/include/linux/writeback.h b/include/linux/writeback.h index e585657e9831..7300ecdc480c 100644 --- a/include/linux/writeback.h +++ b/include/linux/writeback.h | |||
| @@ -30,7 +30,6 @@ static inline int task_is_pdflush(struct task_struct *task) | |||
| 30 | enum writeback_sync_modes { | 30 | enum writeback_sync_modes { |
| 31 | WB_SYNC_NONE, /* Don't wait on anything */ | 31 | WB_SYNC_NONE, /* Don't wait on anything */ |
| 32 | WB_SYNC_ALL, /* Wait on every mapping */ | 32 | WB_SYNC_ALL, /* Wait on every mapping */ |
| 33 | WB_SYNC_HOLD, /* Hold the inode on sb_dirty for sys_sync() */ | ||
| 34 | }; | 33 | }; |
| 35 | 34 | ||
| 36 | /* | 35 | /* |
| @@ -107,7 +106,9 @@ void throttle_vm_writeout(gfp_t gfp_mask); | |||
| 107 | 106 | ||
| 108 | /* These are exported to sysctl. */ | 107 | /* These are exported to sysctl. */ |
| 109 | extern int dirty_background_ratio; | 108 | extern int dirty_background_ratio; |
| 109 | extern unsigned long dirty_background_bytes; | ||
| 110 | extern int vm_dirty_ratio; | 110 | extern int vm_dirty_ratio; |
| 111 | extern unsigned long vm_dirty_bytes; | ||
| 111 | extern int dirty_writeback_interval; | 112 | extern int dirty_writeback_interval; |
| 112 | extern int dirty_expire_interval; | 113 | extern int dirty_expire_interval; |
| 113 | extern int vm_highmem_is_dirtyable; | 114 | extern int vm_highmem_is_dirtyable; |
| @@ -116,17 +117,26 @@ extern int laptop_mode; | |||
| 116 | 117 | ||
| 117 | extern unsigned long determine_dirtyable_memory(void); | 118 | extern unsigned long determine_dirtyable_memory(void); |
| 118 | 119 | ||
| 120 | extern int dirty_background_ratio_handler(struct ctl_table *table, int write, | ||
| 121 | struct file *filp, void __user *buffer, size_t *lenp, | ||
| 122 | loff_t *ppos); | ||
| 123 | extern int dirty_background_bytes_handler(struct ctl_table *table, int write, | ||
| 124 | struct file *filp, void __user *buffer, size_t *lenp, | ||
| 125 | loff_t *ppos); | ||
| 119 | extern int dirty_ratio_handler(struct ctl_table *table, int write, | 126 | extern int dirty_ratio_handler(struct ctl_table *table, int write, |
| 120 | struct file *filp, void __user *buffer, size_t *lenp, | 127 | struct file *filp, void __user *buffer, size_t *lenp, |
| 121 | loff_t *ppos); | 128 | loff_t *ppos); |
| 129 | extern int dirty_bytes_handler(struct ctl_table *table, int write, | ||
| 130 | struct file *filp, void __user *buffer, size_t *lenp, | ||
| 131 | loff_t *ppos); | ||
| 122 | 132 | ||
| 123 | struct ctl_table; | 133 | struct ctl_table; |
| 124 | struct file; | 134 | struct file; |
| 125 | int dirty_writeback_centisecs_handler(struct ctl_table *, int, struct file *, | 135 | int dirty_writeback_centisecs_handler(struct ctl_table *, int, struct file *, |
| 126 | void __user *, size_t *, loff_t *); | 136 | void __user *, size_t *, loff_t *); |
| 127 | 137 | ||
| 128 | void get_dirty_limits(long *pbackground, long *pdirty, long *pbdi_dirty, | 138 | void get_dirty_limits(unsigned long *pbackground, unsigned long *pdirty, |
| 129 | struct backing_dev_info *bdi); | 139 | unsigned long *pbdi_dirty, struct backing_dev_info *bdi); |
| 130 | 140 | ||
| 131 | void page_writeback_init(void); | 141 | void page_writeback_init(void); |
| 132 | void balance_dirty_pages_ratelimited_nr(struct address_space *mapping, | 142 | void balance_dirty_pages_ratelimited_nr(struct address_space *mapping, |
