diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | arch/arc/include/asm/irqflags.h | 12 | ||||
| -rw-r--r-- | drivers/ata/ata_piix.c | 14 | ||||
| -rw-r--r-- | drivers/ata/libata-core.c | 6 | ||||
| -rw-r--r-- | drivers/ata/libata-scsi.c | 8 | ||||
| -rw-r--r-- | include/linux/ata.h | 2 | ||||
| -rw-r--r-- | include/linux/ftrace.h | 2 | ||||
| -rw-r--r-- | include/linux/libata.h | 1 | ||||
| -rw-r--r-- | kernel/trace/ftrace.c | 13 | ||||
| -rw-r--r-- | kernel/trace/trace.c | 5 |
10 files changed, 44 insertions, 21 deletions
| @@ -1,7 +1,7 @@ | |||
| 1 | VERSION = 3 | 1 | VERSION = 3 |
| 2 | PATCHLEVEL = 9 | 2 | PATCHLEVEL = 9 |
| 3 | SUBLEVEL = 0 | 3 | SUBLEVEL = 0 |
| 4 | EXTRAVERSION = -rc5 | 4 | EXTRAVERSION = -rc6 |
| 5 | NAME = Unicycling Gorilla | 5 | NAME = Unicycling Gorilla |
| 6 | 6 | ||
| 7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
diff --git a/arch/arc/include/asm/irqflags.h b/arch/arc/include/asm/irqflags.h index ccd84806b62f..eac071668201 100644 --- a/arch/arc/include/asm/irqflags.h +++ b/arch/arc/include/asm/irqflags.h | |||
| @@ -39,7 +39,7 @@ static inline long arch_local_irq_save(void) | |||
| 39 | " flag.nz %0 \n" | 39 | " flag.nz %0 \n" |
| 40 | : "=r"(temp), "=r"(flags) | 40 | : "=r"(temp), "=r"(flags) |
| 41 | : "n"((STATUS_E1_MASK | STATUS_E2_MASK)) | 41 | : "n"((STATUS_E1_MASK | STATUS_E2_MASK)) |
| 42 | : "cc"); | 42 | : "memory", "cc"); |
| 43 | 43 | ||
| 44 | return flags; | 44 | return flags; |
| 45 | } | 45 | } |
| @@ -53,7 +53,8 @@ static inline void arch_local_irq_restore(unsigned long flags) | |||
| 53 | __asm__ __volatile__( | 53 | __asm__ __volatile__( |
| 54 | " flag %0 \n" | 54 | " flag %0 \n" |
| 55 | : | 55 | : |
| 56 | : "r"(flags)); | 56 | : "r"(flags) |
| 57 | : "memory"); | ||
| 57 | } | 58 | } |
| 58 | 59 | ||
| 59 | /* | 60 | /* |
| @@ -73,7 +74,8 @@ static inline void arch_local_irq_disable(void) | |||
| 73 | " and %0, %0, %1 \n" | 74 | " and %0, %0, %1 \n" |
| 74 | " flag %0 \n" | 75 | " flag %0 \n" |
| 75 | : "=&r"(temp) | 76 | : "=&r"(temp) |
| 76 | : "n"(~(STATUS_E1_MASK | STATUS_E2_MASK))); | 77 | : "n"(~(STATUS_E1_MASK | STATUS_E2_MASK)) |
| 78 | : "memory"); | ||
| 77 | } | 79 | } |
| 78 | 80 | ||
| 79 | /* | 81 | /* |
| @@ -85,7 +87,9 @@ static inline long arch_local_save_flags(void) | |||
| 85 | 87 | ||
| 86 | __asm__ __volatile__( | 88 | __asm__ __volatile__( |
| 87 | " lr %0, [status32] \n" | 89 | " lr %0, [status32] \n" |
| 88 | : "=&r"(temp)); | 90 | : "=&r"(temp) |
| 91 | : | ||
| 92 | : "memory"); | ||
| 89 | 93 | ||
| 90 | return temp; | 94 | return temp; |
| 91 | } | 95 | } |
diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c index ffdd32d22602..2f48123d74c4 100644 --- a/drivers/ata/ata_piix.c +++ b/drivers/ata/ata_piix.c | |||
| @@ -150,6 +150,7 @@ enum piix_controller_ids { | |||
| 150 | tolapai_sata, | 150 | tolapai_sata, |
| 151 | piix_pata_vmw, /* PIIX4 for VMware, spurious DMA_ERR */ | 151 | piix_pata_vmw, /* PIIX4 for VMware, spurious DMA_ERR */ |
| 152 | ich8_sata_snb, | 152 | ich8_sata_snb, |
| 153 | ich8_2port_sata_snb, | ||
| 153 | }; | 154 | }; |
| 154 | 155 | ||
| 155 | struct piix_map_db { | 156 | struct piix_map_db { |
| @@ -304,7 +305,7 @@ static const struct pci_device_id piix_pci_tbl[] = { | |||
| 304 | /* SATA Controller IDE (Lynx Point) */ | 305 | /* SATA Controller IDE (Lynx Point) */ |
| 305 | { 0x8086, 0x8c01, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_snb }, | 306 | { 0x8086, 0x8c01, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_snb }, |
| 306 | /* SATA Controller IDE (Lynx Point) */ | 307 | /* SATA Controller IDE (Lynx Point) */ |
| 307 | { 0x8086, 0x8c08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata }, | 308 | { 0x8086, 0x8c08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata_snb }, |
| 308 | /* SATA Controller IDE (Lynx Point) */ | 309 | /* SATA Controller IDE (Lynx Point) */ |
| 309 | { 0x8086, 0x8c09, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata }, | 310 | { 0x8086, 0x8c09, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata }, |
| 310 | /* SATA Controller IDE (Lynx Point-LP) */ | 311 | /* SATA Controller IDE (Lynx Point-LP) */ |
| @@ -439,6 +440,7 @@ static const struct piix_map_db *piix_map_db_table[] = { | |||
| 439 | [ich8m_apple_sata] = &ich8m_apple_map_db, | 440 | [ich8m_apple_sata] = &ich8m_apple_map_db, |
| 440 | [tolapai_sata] = &tolapai_map_db, | 441 | [tolapai_sata] = &tolapai_map_db, |
| 441 | [ich8_sata_snb] = &ich8_map_db, | 442 | [ich8_sata_snb] = &ich8_map_db, |
| 443 | [ich8_2port_sata_snb] = &ich8_2port_map_db, | ||
| 442 | }; | 444 | }; |
| 443 | 445 | ||
| 444 | static struct pci_bits piix_enable_bits[] = { | 446 | static struct pci_bits piix_enable_bits[] = { |
| @@ -1242,6 +1244,16 @@ static struct ata_port_info piix_port_info[] = { | |||
| 1242 | .udma_mask = ATA_UDMA6, | 1244 | .udma_mask = ATA_UDMA6, |
| 1243 | .port_ops = &piix_sata_ops, | 1245 | .port_ops = &piix_sata_ops, |
| 1244 | }, | 1246 | }, |
| 1247 | |||
| 1248 | [ich8_2port_sata_snb] = | ||
| 1249 | { | ||
| 1250 | .flags = PIIX_SATA_FLAGS | PIIX_FLAG_SIDPR | ||
| 1251 | | PIIX_FLAG_PIO16, | ||
| 1252 | .pio_mask = ATA_PIO4, | ||
| 1253 | .mwdma_mask = ATA_MWDMA2, | ||
| 1254 | .udma_mask = ATA_UDMA6, | ||
| 1255 | .port_ops = &piix_sata_ops, | ||
| 1256 | }, | ||
| 1245 | }; | 1257 | }; |
| 1246 | 1258 | ||
| 1247 | #define AHCI_PCI_BAR 5 | 1259 | #define AHCI_PCI_BAR 5 |
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index 497adea1f0d6..63c743baf920 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c | |||
| @@ -2329,7 +2329,7 @@ int ata_dev_configure(struct ata_device *dev) | |||
| 2329 | * from SATA Settings page of Identify Device Data Log. | 2329 | * from SATA Settings page of Identify Device Data Log. |
| 2330 | */ | 2330 | */ |
| 2331 | if (ata_id_has_devslp(dev->id)) { | 2331 | if (ata_id_has_devslp(dev->id)) { |
| 2332 | u8 sata_setting[ATA_SECT_SIZE]; | 2332 | u8 *sata_setting = ap->sector_buf; |
| 2333 | int i, j; | 2333 | int i, j; |
| 2334 | 2334 | ||
| 2335 | dev->flags |= ATA_DFLAG_DEVSLP; | 2335 | dev->flags |= ATA_DFLAG_DEVSLP; |
| @@ -2439,6 +2439,9 @@ int ata_dev_configure(struct ata_device *dev) | |||
| 2439 | dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128, | 2439 | dev->max_sectors = min_t(unsigned int, ATA_MAX_SECTORS_128, |
| 2440 | dev->max_sectors); | 2440 | dev->max_sectors); |
| 2441 | 2441 | ||
| 2442 | if (dev->horkage & ATA_HORKAGE_MAX_SEC_LBA48) | ||
| 2443 | dev->max_sectors = ATA_MAX_SECTORS_LBA48; | ||
| 2444 | |||
| 2442 | if (ap->ops->dev_config) | 2445 | if (ap->ops->dev_config) |
| 2443 | ap->ops->dev_config(dev); | 2446 | ap->ops->dev_config(dev); |
| 2444 | 2447 | ||
| @@ -4100,6 +4103,7 @@ static const struct ata_blacklist_entry ata_device_blacklist [] = { | |||
| 4100 | /* Weird ATAPI devices */ | 4103 | /* Weird ATAPI devices */ |
| 4101 | { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 }, | 4104 | { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 }, |
| 4102 | { "QUANTUM DAT DAT72-000", NULL, ATA_HORKAGE_ATAPI_MOD16_DMA }, | 4105 | { "QUANTUM DAT DAT72-000", NULL, ATA_HORKAGE_ATAPI_MOD16_DMA }, |
| 4106 | { "Slimtype DVD A DS8A8SH", NULL, ATA_HORKAGE_MAX_SEC_LBA48 }, | ||
| 4103 | 4107 | ||
| 4104 | /* Devices we expect to fail diagnostics */ | 4108 | /* Devices we expect to fail diagnostics */ |
| 4105 | 4109 | ||
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c index 318b41358187..ff44787e5a45 100644 --- a/drivers/ata/libata-scsi.c +++ b/drivers/ata/libata-scsi.c | |||
| @@ -532,8 +532,8 @@ int ata_cmd_ioctl(struct scsi_device *scsidev, void __user *arg) | |||
| 532 | struct scsi_sense_hdr sshdr; | 532 | struct scsi_sense_hdr sshdr; |
| 533 | scsi_normalize_sense(sensebuf, SCSI_SENSE_BUFFERSIZE, | 533 | scsi_normalize_sense(sensebuf, SCSI_SENSE_BUFFERSIZE, |
| 534 | &sshdr); | 534 | &sshdr); |
| 535 | if (sshdr.sense_key == 0 && | 535 | if (sshdr.sense_key == RECOVERED_ERROR && |
| 536 | sshdr.asc == 0 && sshdr.ascq == 0) | 536 | sshdr.asc == 0 && sshdr.ascq == 0x1d) |
| 537 | cmd_result &= ~SAM_STAT_CHECK_CONDITION; | 537 | cmd_result &= ~SAM_STAT_CHECK_CONDITION; |
| 538 | } | 538 | } |
| 539 | 539 | ||
| @@ -618,8 +618,8 @@ int ata_task_ioctl(struct scsi_device *scsidev, void __user *arg) | |||
| 618 | struct scsi_sense_hdr sshdr; | 618 | struct scsi_sense_hdr sshdr; |
| 619 | scsi_normalize_sense(sensebuf, SCSI_SENSE_BUFFERSIZE, | 619 | scsi_normalize_sense(sensebuf, SCSI_SENSE_BUFFERSIZE, |
| 620 | &sshdr); | 620 | &sshdr); |
| 621 | if (sshdr.sense_key == 0 && | 621 | if (sshdr.sense_key == RECOVERED_ERROR && |
| 622 | sshdr.asc == 0 && sshdr.ascq == 0) | 622 | sshdr.asc == 0 && sshdr.ascq == 0x1d) |
| 623 | cmd_result &= ~SAM_STAT_CHECK_CONDITION; | 623 | cmd_result &= ~SAM_STAT_CHECK_CONDITION; |
| 624 | } | 624 | } |
| 625 | 625 | ||
diff --git a/include/linux/ata.h b/include/linux/ata.h index 8f7a3d68371a..ee0bd9524055 100644 --- a/include/linux/ata.h +++ b/include/linux/ata.h | |||
| @@ -954,7 +954,7 @@ static inline int atapi_cdb_len(const u16 *dev_id) | |||
| 954 | } | 954 | } |
| 955 | } | 955 | } |
| 956 | 956 | ||
| 957 | static inline bool atapi_command_packet_set(const u16 *dev_id) | 957 | static inline int atapi_command_packet_set(const u16 *dev_id) |
| 958 | { | 958 | { |
| 959 | return (dev_id[ATA_ID_CONFIG] >> 8) & 0x1f; | 959 | return (dev_id[ATA_ID_CONFIG] >> 8) & 0x1f; |
| 960 | } | 960 | } |
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h index e5ca8ef50e9b..167abf907802 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h | |||
| @@ -89,6 +89,7 @@ typedef void (*ftrace_func_t)(unsigned long ip, unsigned long parent_ip, | |||
| 89 | * that the call back has its own recursion protection. If it does | 89 | * that the call back has its own recursion protection. If it does |
| 90 | * not set this, then the ftrace infrastructure will add recursion | 90 | * not set this, then the ftrace infrastructure will add recursion |
| 91 | * protection for the caller. | 91 | * protection for the caller. |
| 92 | * STUB - The ftrace_ops is just a place holder. | ||
| 92 | */ | 93 | */ |
| 93 | enum { | 94 | enum { |
| 94 | FTRACE_OPS_FL_ENABLED = 1 << 0, | 95 | FTRACE_OPS_FL_ENABLED = 1 << 0, |
| @@ -98,6 +99,7 @@ enum { | |||
| 98 | FTRACE_OPS_FL_SAVE_REGS = 1 << 4, | 99 | FTRACE_OPS_FL_SAVE_REGS = 1 << 4, |
| 99 | FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED = 1 << 5, | 100 | FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED = 1 << 5, |
| 100 | FTRACE_OPS_FL_RECURSION_SAFE = 1 << 6, | 101 | FTRACE_OPS_FL_RECURSION_SAFE = 1 << 6, |
| 102 | FTRACE_OPS_FL_STUB = 1 << 7, | ||
| 101 | }; | 103 | }; |
| 102 | 104 | ||
| 103 | struct ftrace_ops { | 105 | struct ftrace_ops { |
diff --git a/include/linux/libata.h b/include/linux/libata.h index 91c9d109e5f1..eae7a053dc51 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
| @@ -398,6 +398,7 @@ enum { | |||
| 398 | ATA_HORKAGE_NOSETXFER = (1 << 14), /* skip SETXFER, SATA only */ | 398 | ATA_HORKAGE_NOSETXFER = (1 << 14), /* skip SETXFER, SATA only */ |
| 399 | ATA_HORKAGE_BROKEN_FPDMA_AA = (1 << 15), /* skip AA */ | 399 | ATA_HORKAGE_BROKEN_FPDMA_AA = (1 << 15), /* skip AA */ |
| 400 | ATA_HORKAGE_DUMP_ID = (1 << 16), /* dump IDENTIFY data */ | 400 | ATA_HORKAGE_DUMP_ID = (1 << 16), /* dump IDENTIFY data */ |
| 401 | ATA_HORKAGE_MAX_SEC_LBA48 = (1 << 17), /* Set max sects to 65535 */ | ||
| 401 | 402 | ||
| 402 | /* DMA mask for user DMA control: User visible values; DO NOT | 403 | /* DMA mask for user DMA control: User visible values; DO NOT |
| 403 | renumber */ | 404 | renumber */ |
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index 6893d5a2bf08..7e897106b7e0 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c | |||
| @@ -66,7 +66,7 @@ | |||
| 66 | 66 | ||
| 67 | static struct ftrace_ops ftrace_list_end __read_mostly = { | 67 | static struct ftrace_ops ftrace_list_end __read_mostly = { |
| 68 | .func = ftrace_stub, | 68 | .func = ftrace_stub, |
| 69 | .flags = FTRACE_OPS_FL_RECURSION_SAFE, | 69 | .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_STUB, |
| 70 | }; | 70 | }; |
| 71 | 71 | ||
| 72 | /* ftrace_enabled is a method to turn ftrace on or off */ | 72 | /* ftrace_enabled is a method to turn ftrace on or off */ |
| @@ -4131,7 +4131,8 @@ ftrace_ops_control_func(unsigned long ip, unsigned long parent_ip, | |||
| 4131 | preempt_disable_notrace(); | 4131 | preempt_disable_notrace(); |
| 4132 | trace_recursion_set(TRACE_CONTROL_BIT); | 4132 | trace_recursion_set(TRACE_CONTROL_BIT); |
| 4133 | do_for_each_ftrace_op(op, ftrace_control_list) { | 4133 | do_for_each_ftrace_op(op, ftrace_control_list) { |
| 4134 | if (!ftrace_function_local_disabled(op) && | 4134 | if (!(op->flags & FTRACE_OPS_FL_STUB) && |
| 4135 | !ftrace_function_local_disabled(op) && | ||
| 4135 | ftrace_ops_test(op, ip)) | 4136 | ftrace_ops_test(op, ip)) |
| 4136 | op->func(ip, parent_ip, op, regs); | 4137 | op->func(ip, parent_ip, op, regs); |
| 4137 | } while_for_each_ftrace_op(op); | 4138 | } while_for_each_ftrace_op(op); |
| @@ -4555,12 +4556,8 @@ ftrace_enable_sysctl(struct ctl_table *table, int write, | |||
| 4555 | ftrace_startup_sysctl(); | 4556 | ftrace_startup_sysctl(); |
| 4556 | 4557 | ||
| 4557 | /* we are starting ftrace again */ | 4558 | /* we are starting ftrace again */ |
| 4558 | if (ftrace_ops_list != &ftrace_list_end) { | 4559 | if (ftrace_ops_list != &ftrace_list_end) |
| 4559 | if (ftrace_ops_list->next == &ftrace_list_end) | 4560 | update_ftrace_function(); |
| 4560 | ftrace_trace_function = ftrace_ops_list->func; | ||
| 4561 | else | ||
| 4562 | ftrace_trace_function = ftrace_ops_list_func; | ||
| 4563 | } | ||
| 4564 | 4561 | ||
| 4565 | } else { | 4562 | } else { |
| 4566 | /* stopping ftrace calls (just send to ftrace_stub) */ | 4563 | /* stopping ftrace calls (just send to ftrace_stub) */ |
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c index 4f1dade56981..7ba7fc76f9eb 100644 --- a/kernel/trace/trace.c +++ b/kernel/trace/trace.c | |||
| @@ -744,8 +744,11 @@ update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu) | |||
| 744 | return; | 744 | return; |
| 745 | 745 | ||
| 746 | WARN_ON_ONCE(!irqs_disabled()); | 746 | WARN_ON_ONCE(!irqs_disabled()); |
| 747 | if (WARN_ON_ONCE(!current_trace->allocated_snapshot)) | 747 | if (!current_trace->allocated_snapshot) { |
| 748 | /* Only the nop tracer should hit this when disabling */ | ||
| 749 | WARN_ON_ONCE(current_trace != &nop_trace); | ||
| 748 | return; | 750 | return; |
| 751 | } | ||
| 749 | 752 | ||
| 750 | arch_spin_lock(&ftrace_max_lock); | 753 | arch_spin_lock(&ftrace_max_lock); |
| 751 | 754 | ||
