diff options
58 files changed, 512 insertions, 236 deletions
diff --git a/arch/parisc/kernel/entry.S b/arch/parisc/kernel/entry.S index ae3e70cd1e14..e552e547cb93 100644 --- a/arch/parisc/kernel/entry.S +++ b/arch/parisc/kernel/entry.S | |||
| @@ -553,7 +553,7 @@ | |||
| 553 | * on most of those machines only handles cache transactions. | 553 | * on most of those machines only handles cache transactions. |
| 554 | */ | 554 | */ |
| 555 | extrd,u,*= \pte,_PAGE_NO_CACHE_BIT+32,1,%r0 | 555 | extrd,u,*= \pte,_PAGE_NO_CACHE_BIT+32,1,%r0 |
| 556 | depi 1,12,1,\prot | 556 | depdi 1,12,1,\prot |
| 557 | 557 | ||
| 558 | /* Drop prot bits and convert to page addr for iitlbt and idtlbt */ | 558 | /* Drop prot bits and convert to page addr for iitlbt and idtlbt */ |
| 559 | convert_for_tlb_insert20 \pte | 559 | convert_for_tlb_insert20 \pte |
diff --git a/arch/parisc/kernel/module.c b/arch/parisc/kernel/module.c index ef5caf2e6ed0..61ee0eec4e69 100644 --- a/arch/parisc/kernel/module.c +++ b/arch/parisc/kernel/module.c | |||
| @@ -86,8 +86,12 @@ | |||
| 86 | * the bottom of the table, which has a maximum signed displacement of | 86 | * the bottom of the table, which has a maximum signed displacement of |
| 87 | * 0x3fff; however, since we're only going forward, this becomes | 87 | * 0x3fff; however, since we're only going forward, this becomes |
| 88 | * 0x1fff, and thus, since each GOT entry is 8 bytes long we can have | 88 | * 0x1fff, and thus, since each GOT entry is 8 bytes long we can have |
| 89 | * at most 1023 entries */ | 89 | * at most 1023 entries. |
| 90 | #define MAX_GOTS 1023 | 90 | * To overcome this 14bit displacement with some kernel modules, we'll |
| 91 | * use instead the unusal 16bit displacement method (see reassemble_16a) | ||
| 92 | * which gives us a maximum positive displacement of 0x7fff, and as such | ||
| 93 | * allows us to allocate up to 4095 GOT entries. */ | ||
| 94 | #define MAX_GOTS 4095 | ||
| 91 | 95 | ||
| 92 | /* three functions to determine where in the module core | 96 | /* three functions to determine where in the module core |
| 93 | * or init pieces the location is */ | 97 | * or init pieces the location is */ |
| @@ -145,12 +149,40 @@ struct stub_entry { | |||
| 145 | /* The reassemble_* functions prepare an immediate value for | 149 | /* The reassemble_* functions prepare an immediate value for |
| 146 | insertion into an opcode. pa-risc uses all sorts of weird bitfields | 150 | insertion into an opcode. pa-risc uses all sorts of weird bitfields |
| 147 | in the instruction to hold the value. */ | 151 | in the instruction to hold the value. */ |
| 152 | static inline int sign_unext(int x, int len) | ||
| 153 | { | ||
| 154 | int len_ones; | ||
| 155 | |||
| 156 | len_ones = (1 << len) - 1; | ||
| 157 | return x & len_ones; | ||
| 158 | } | ||
| 159 | |||
| 160 | static inline int low_sign_unext(int x, int len) | ||
| 161 | { | ||
| 162 | int sign, temp; | ||
| 163 | |||
| 164 | sign = (x >> (len-1)) & 1; | ||
| 165 | temp = sign_unext(x, len-1); | ||
| 166 | return (temp << 1) | sign; | ||
| 167 | } | ||
| 168 | |||
| 148 | static inline int reassemble_14(int as14) | 169 | static inline int reassemble_14(int as14) |
| 149 | { | 170 | { |
| 150 | return (((as14 & 0x1fff) << 1) | | 171 | return (((as14 & 0x1fff) << 1) | |
| 151 | ((as14 & 0x2000) >> 13)); | 172 | ((as14 & 0x2000) >> 13)); |
| 152 | } | 173 | } |
| 153 | 174 | ||
| 175 | static inline int reassemble_16a(int as16) | ||
| 176 | { | ||
| 177 | int s, t; | ||
| 178 | |||
| 179 | /* Unusual 16-bit encoding, for wide mode only. */ | ||
| 180 | t = (as16 << 1) & 0xffff; | ||
| 181 | s = (as16 & 0x8000); | ||
| 182 | return (t ^ s ^ (s >> 1)) | (s >> 15); | ||
| 183 | } | ||
| 184 | |||
| 185 | |||
| 154 | static inline int reassemble_17(int as17) | 186 | static inline int reassemble_17(int as17) |
| 155 | { | 187 | { |
| 156 | return (((as17 & 0x10000) >> 16) | | 188 | return (((as17 & 0x10000) >> 16) | |
| @@ -407,6 +439,7 @@ static Elf_Addr get_stub(struct module *me, unsigned long value, long addend, | |||
| 407 | enum elf_stub_type stub_type, Elf_Addr loc0, unsigned int targetsec) | 439 | enum elf_stub_type stub_type, Elf_Addr loc0, unsigned int targetsec) |
| 408 | { | 440 | { |
| 409 | struct stub_entry *stub; | 441 | struct stub_entry *stub; |
| 442 | int __maybe_unused d; | ||
| 410 | 443 | ||
| 411 | /* initialize stub_offset to point in front of the section */ | 444 | /* initialize stub_offset to point in front of the section */ |
| 412 | if (!me->arch.section[targetsec].stub_offset) { | 445 | if (!me->arch.section[targetsec].stub_offset) { |
| @@ -460,12 +493,19 @@ static Elf_Addr get_stub(struct module *me, unsigned long value, long addend, | |||
| 460 | */ | 493 | */ |
| 461 | switch (stub_type) { | 494 | switch (stub_type) { |
| 462 | case ELF_STUB_GOT: | 495 | case ELF_STUB_GOT: |
| 463 | stub->insns[0] = 0x537b0000; /* ldd 0(%dp),%dp */ | 496 | d = get_got(me, value, addend); |
| 497 | if (d <= 15) { | ||
| 498 | /* Format 5 */ | ||
| 499 | stub->insns[0] = 0x0f6010db; /* ldd 0(%dp),%dp */ | ||
| 500 | stub->insns[0] |= low_sign_unext(d, 5) << 16; | ||
| 501 | } else { | ||
| 502 | /* Format 3 */ | ||
| 503 | stub->insns[0] = 0x537b0000; /* ldd 0(%dp),%dp */ | ||
| 504 | stub->insns[0] |= reassemble_16a(d); | ||
| 505 | } | ||
| 464 | stub->insns[1] = 0x53610020; /* ldd 10(%dp),%r1 */ | 506 | stub->insns[1] = 0x53610020; /* ldd 10(%dp),%r1 */ |
| 465 | stub->insns[2] = 0xe820d000; /* bve (%r1) */ | 507 | stub->insns[2] = 0xe820d000; /* bve (%r1) */ |
| 466 | stub->insns[3] = 0x537b0030; /* ldd 18(%dp),%dp */ | 508 | stub->insns[3] = 0x537b0030; /* ldd 18(%dp),%dp */ |
| 467 | |||
| 468 | stub->insns[0] |= reassemble_14(get_got(me, value, addend) & 0x3fff); | ||
| 469 | break; | 509 | break; |
| 470 | case ELF_STUB_MILLI: | 510 | case ELF_STUB_MILLI: |
| 471 | stub->insns[0] = 0x20200000; /* ldil 0,%r1 */ | 511 | stub->insns[0] = 0x20200000; /* ldil 0,%r1 */ |
diff --git a/arch/x86/include/asm/efi.h b/arch/x86/include/asm/efi.h index edc90f23e708..8406ed7f9926 100644 --- a/arch/x86/include/asm/efi.h +++ b/arch/x86/include/asm/efi.h | |||
| @@ -33,7 +33,7 @@ extern unsigned long asmlinkage efi_call_phys(void *, ...); | |||
| 33 | #define efi_call_virt6(f, a1, a2, a3, a4, a5, a6) \ | 33 | #define efi_call_virt6(f, a1, a2, a3, a4, a5, a6) \ |
| 34 | efi_call_virt(f, a1, a2, a3, a4, a5, a6) | 34 | efi_call_virt(f, a1, a2, a3, a4, a5, a6) |
| 35 | 35 | ||
| 36 | #define efi_ioremap(addr, size) ioremap_cache(addr, size) | 36 | #define efi_ioremap(addr, size, type) ioremap_cache(addr, size) |
| 37 | 37 | ||
| 38 | #else /* !CONFIG_X86_32 */ | 38 | #else /* !CONFIG_X86_32 */ |
| 39 | 39 | ||
| @@ -84,7 +84,8 @@ extern u64 efi_call6(void *fp, u64 arg1, u64 arg2, u64 arg3, | |||
| 84 | efi_call6((void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ | 84 | efi_call6((void *)(efi.systab->runtime->f), (u64)(a1), (u64)(a2), \ |
| 85 | (u64)(a3), (u64)(a4), (u64)(a5), (u64)(a6)) | 85 | (u64)(a3), (u64)(a4), (u64)(a5), (u64)(a6)) |
| 86 | 86 | ||
| 87 | extern void __iomem *efi_ioremap(unsigned long addr, unsigned long size); | 87 | extern void __iomem *efi_ioremap(unsigned long addr, unsigned long size, |
| 88 | u32 type); | ||
| 88 | 89 | ||
| 89 | #endif /* CONFIG_X86_32 */ | 90 | #endif /* CONFIG_X86_32 */ |
| 90 | 91 | ||
diff --git a/arch/x86/include/asm/irqflags.h b/arch/x86/include/asm/irqflags.h index 2bdab21f0898..c6ccbe7e81ad 100644 --- a/arch/x86/include/asm/irqflags.h +++ b/arch/x86/include/asm/irqflags.h | |||
| @@ -12,9 +12,15 @@ static inline unsigned long native_save_fl(void) | |||
| 12 | { | 12 | { |
| 13 | unsigned long flags; | 13 | unsigned long flags; |
| 14 | 14 | ||
| 15 | /* | ||
| 16 | * Note: this needs to be "=r" not "=rm", because we have the | ||
| 17 | * stack offset from what gcc expects at the time the "pop" is | ||
| 18 | * executed, and so a memory reference with respect to the stack | ||
| 19 | * would end up using the wrong address. | ||
| 20 | */ | ||
| 15 | asm volatile("# __raw_save_flags\n\t" | 21 | asm volatile("# __raw_save_flags\n\t" |
| 16 | "pushf ; pop %0" | 22 | "pushf ; pop %0" |
| 17 | : "=g" (flags) | 23 | : "=r" (flags) |
| 18 | : /* no input */ | 24 | : /* no input */ |
| 19 | : "memory"); | 25 | : "memory"); |
| 20 | 26 | ||
diff --git a/arch/x86/include/asm/uv/uv_hub.h b/arch/x86/include/asm/uv/uv_hub.h index 341070f7ad5c..77a68505419a 100644 --- a/arch/x86/include/asm/uv/uv_hub.h +++ b/arch/x86/include/asm/uv/uv_hub.h | |||
| @@ -175,7 +175,7 @@ DECLARE_PER_CPU(struct uv_hub_info_s, __uv_hub_info); | |||
| 175 | #define UV_GLOBAL_MMR32_PNODE_BITS(p) ((p) << (UV_GLOBAL_MMR32_PNODE_SHIFT)) | 175 | #define UV_GLOBAL_MMR32_PNODE_BITS(p) ((p) << (UV_GLOBAL_MMR32_PNODE_SHIFT)) |
| 176 | 176 | ||
| 177 | #define UV_GLOBAL_MMR64_PNODE_BITS(p) \ | 177 | #define UV_GLOBAL_MMR64_PNODE_BITS(p) \ |
| 178 | ((unsigned long)(UV_PNODE_TO_GNODE(p)) << UV_GLOBAL_MMR64_PNODE_SHIFT) | 178 | (((unsigned long)(p)) << UV_GLOBAL_MMR64_PNODE_SHIFT) |
| 179 | 179 | ||
| 180 | #define UV_APIC_PNODE_SHIFT 6 | 180 | #define UV_APIC_PNODE_SHIFT 6 |
| 181 | 181 | ||
| @@ -327,6 +327,7 @@ struct uv_blade_info { | |||
| 327 | unsigned short nr_possible_cpus; | 327 | unsigned short nr_possible_cpus; |
| 328 | unsigned short nr_online_cpus; | 328 | unsigned short nr_online_cpus; |
| 329 | unsigned short pnode; | 329 | unsigned short pnode; |
| 330 | short memory_nid; | ||
| 330 | }; | 331 | }; |
| 331 | extern struct uv_blade_info *uv_blade_info; | 332 | extern struct uv_blade_info *uv_blade_info; |
| 332 | extern short *uv_node_to_blade; | 333 | extern short *uv_node_to_blade; |
| @@ -363,6 +364,12 @@ static inline int uv_blade_to_pnode(int bid) | |||
| 363 | return uv_blade_info[bid].pnode; | 364 | return uv_blade_info[bid].pnode; |
| 364 | } | 365 | } |
| 365 | 366 | ||
| 367 | /* Nid of memory node on blade. -1 if no blade-local memory */ | ||
| 368 | static inline int uv_blade_to_memory_nid(int bid) | ||
| 369 | { | ||
| 370 | return uv_blade_info[bid].memory_nid; | ||
| 371 | } | ||
| 372 | |||
| 366 | /* Determine the number of possible cpus on a blade */ | 373 | /* Determine the number of possible cpus on a blade */ |
| 367 | static inline int uv_blade_nr_possible_cpus(int bid) | 374 | static inline int uv_blade_nr_possible_cpus(int bid) |
| 368 | { | 375 | { |
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c index 2284a4812b68..d2ed6c5ddc80 100644 --- a/arch/x86/kernel/apic/io_apic.c +++ b/arch/x86/kernel/apic/io_apic.c | |||
| @@ -3793,6 +3793,9 @@ int arch_enable_uv_irq(char *irq_name, unsigned int irq, int cpu, int mmr_blade, | |||
| 3793 | mmr_pnode = uv_blade_to_pnode(mmr_blade); | 3793 | mmr_pnode = uv_blade_to_pnode(mmr_blade); |
| 3794 | uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value); | 3794 | uv_write_global_mmr64(mmr_pnode, mmr_offset, mmr_value); |
| 3795 | 3795 | ||
| 3796 | if (cfg->move_in_progress) | ||
| 3797 | send_cleanup_vector(cfg); | ||
| 3798 | |||
| 3796 | return irq; | 3799 | return irq; |
| 3797 | } | 3800 | } |
| 3798 | 3801 | ||
diff --git a/arch/x86/kernel/apic/x2apic_cluster.c b/arch/x86/kernel/apic/x2apic_cluster.c index 8e4cbb255c38..2ed4e2bb3b32 100644 --- a/arch/x86/kernel/apic/x2apic_cluster.c +++ b/arch/x86/kernel/apic/x2apic_cluster.c | |||
| @@ -170,7 +170,7 @@ static unsigned long set_apic_id(unsigned int id) | |||
| 170 | 170 | ||
| 171 | static int x2apic_cluster_phys_pkg_id(int initial_apicid, int index_msb) | 171 | static int x2apic_cluster_phys_pkg_id(int initial_apicid, int index_msb) |
| 172 | { | 172 | { |
| 173 | return current_cpu_data.initial_apicid >> index_msb; | 173 | return initial_apicid >> index_msb; |
| 174 | } | 174 | } |
| 175 | 175 | ||
| 176 | static void x2apic_send_IPI_self(int vector) | 176 | static void x2apic_send_IPI_self(int vector) |
diff --git a/arch/x86/kernel/apic/x2apic_phys.c b/arch/x86/kernel/apic/x2apic_phys.c index a284359627e7..0b631c6a2e00 100644 --- a/arch/x86/kernel/apic/x2apic_phys.c +++ b/arch/x86/kernel/apic/x2apic_phys.c | |||
| @@ -162,7 +162,7 @@ static unsigned long set_apic_id(unsigned int id) | |||
| 162 | 162 | ||
| 163 | static int x2apic_phys_pkg_id(int initial_apicid, int index_msb) | 163 | static int x2apic_phys_pkg_id(int initial_apicid, int index_msb) |
| 164 | { | 164 | { |
| 165 | return current_cpu_data.initial_apicid >> index_msb; | 165 | return initial_apicid >> index_msb; |
| 166 | } | 166 | } |
| 167 | 167 | ||
| 168 | static void x2apic_send_IPI_self(int vector) | 168 | static void x2apic_send_IPI_self(int vector) |
diff --git a/arch/x86/kernel/apic/x2apic_uv_x.c b/arch/x86/kernel/apic/x2apic_uv_x.c index 096d19aea2f7..832e908adcb5 100644 --- a/arch/x86/kernel/apic/x2apic_uv_x.c +++ b/arch/x86/kernel/apic/x2apic_uv_x.c | |||
| @@ -261,7 +261,7 @@ struct apic apic_x2apic_uv_x = { | |||
| 261 | .apic_id_registered = uv_apic_id_registered, | 261 | .apic_id_registered = uv_apic_id_registered, |
| 262 | 262 | ||
| 263 | .irq_delivery_mode = dest_Fixed, | 263 | .irq_delivery_mode = dest_Fixed, |
| 264 | .irq_dest_mode = 1, /* logical */ | 264 | .irq_dest_mode = 0, /* physical */ |
| 265 | 265 | ||
| 266 | .target_cpus = uv_target_cpus, | 266 | .target_cpus = uv_target_cpus, |
| 267 | .disable_esr = 0, | 267 | .disable_esr = 0, |
| @@ -362,12 +362,6 @@ static __init void get_lowmem_redirect(unsigned long *base, unsigned long *size) | |||
| 362 | BUG(); | 362 | BUG(); |
| 363 | } | 363 | } |
| 364 | 364 | ||
| 365 | static __init void map_low_mmrs(void) | ||
| 366 | { | ||
| 367 | init_extra_mapping_uc(UV_GLOBAL_MMR32_BASE, UV_GLOBAL_MMR32_SIZE); | ||
| 368 | init_extra_mapping_uc(UV_LOCAL_MMR_BASE, UV_LOCAL_MMR_SIZE); | ||
| 369 | } | ||
| 370 | |||
| 371 | enum map_type {map_wb, map_uc}; | 365 | enum map_type {map_wb, map_uc}; |
| 372 | 366 | ||
| 373 | static __init void map_high(char *id, unsigned long base, int shift, | 367 | static __init void map_high(char *id, unsigned long base, int shift, |
| @@ -395,26 +389,6 @@ static __init void map_gru_high(int max_pnode) | |||
| 395 | map_high("GRU", gru.s.base, shift, max_pnode, map_wb); | 389 | map_high("GRU", gru.s.base, shift, max_pnode, map_wb); |
| 396 | } | 390 | } |
| 397 | 391 | ||
| 398 | static __init void map_config_high(int max_pnode) | ||
| 399 | { | ||
| 400 | union uvh_rh_gam_cfg_overlay_config_mmr_u cfg; | ||
| 401 | int shift = UVH_RH_GAM_CFG_OVERLAY_CONFIG_MMR_BASE_SHFT; | ||
| 402 | |||
| 403 | cfg.v = uv_read_local_mmr(UVH_RH_GAM_CFG_OVERLAY_CONFIG_MMR); | ||
| 404 | if (cfg.s.enable) | ||
| 405 | map_high("CONFIG", cfg.s.base, shift, max_pnode, map_uc); | ||
| 406 | } | ||
| 407 | |||
| 408 | static __init void map_mmr_high(int max_pnode) | ||
| 409 | { | ||
| 410 | union uvh_rh_gam_mmr_overlay_config_mmr_u mmr; | ||
| 411 | int shift = UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR_BASE_SHFT; | ||
| 412 | |||
| 413 | mmr.v = uv_read_local_mmr(UVH_RH_GAM_MMR_OVERLAY_CONFIG_MMR); | ||
| 414 | if (mmr.s.enable) | ||
| 415 | map_high("MMR", mmr.s.base, shift, max_pnode, map_uc); | ||
| 416 | } | ||
| 417 | |||
| 418 | static __init void map_mmioh_high(int max_pnode) | 392 | static __init void map_mmioh_high(int max_pnode) |
| 419 | { | 393 | { |
| 420 | union uvh_rh_gam_mmioh_overlay_config_mmr_u mmioh; | 394 | union uvh_rh_gam_mmioh_overlay_config_mmr_u mmioh; |
| @@ -566,8 +540,6 @@ void __init uv_system_init(void) | |||
| 566 | unsigned long mmr_base, present, paddr; | 540 | unsigned long mmr_base, present, paddr; |
| 567 | unsigned short pnode_mask; | 541 | unsigned short pnode_mask; |
| 568 | 542 | ||
| 569 | map_low_mmrs(); | ||
| 570 | |||
| 571 | m_n_config.v = uv_read_local_mmr(UVH_SI_ADDR_MAP_CONFIG); | 543 | m_n_config.v = uv_read_local_mmr(UVH_SI_ADDR_MAP_CONFIG); |
| 572 | m_val = m_n_config.s.m_skt; | 544 | m_val = m_n_config.s.m_skt; |
| 573 | n_val = m_n_config.s.n_skt; | 545 | n_val = m_n_config.s.n_skt; |
| @@ -591,6 +563,8 @@ void __init uv_system_init(void) | |||
| 591 | bytes = sizeof(struct uv_blade_info) * uv_num_possible_blades(); | 563 | bytes = sizeof(struct uv_blade_info) * uv_num_possible_blades(); |
| 592 | uv_blade_info = kmalloc(bytes, GFP_KERNEL); | 564 | uv_blade_info = kmalloc(bytes, GFP_KERNEL); |
| 593 | BUG_ON(!uv_blade_info); | 565 | BUG_ON(!uv_blade_info); |
| 566 | for (blade = 0; blade < uv_num_possible_blades(); blade++) | ||
| 567 | uv_blade_info[blade].memory_nid = -1; | ||
| 594 | 568 | ||
| 595 | get_lowmem_redirect(&lowmem_redir_base, &lowmem_redir_size); | 569 | get_lowmem_redirect(&lowmem_redir_base, &lowmem_redir_size); |
| 596 | 570 | ||
| @@ -629,6 +603,9 @@ void __init uv_system_init(void) | |||
| 629 | lcpu = uv_blade_info[blade].nr_possible_cpus; | 603 | lcpu = uv_blade_info[blade].nr_possible_cpus; |
| 630 | uv_blade_info[blade].nr_possible_cpus++; | 604 | uv_blade_info[blade].nr_possible_cpus++; |
| 631 | 605 | ||
| 606 | /* Any node on the blade, else will contain -1. */ | ||
| 607 | uv_blade_info[blade].memory_nid = nid; | ||
| 608 | |||
| 632 | uv_cpu_hub_info(cpu)->lowmem_remap_base = lowmem_redir_base; | 609 | uv_cpu_hub_info(cpu)->lowmem_remap_base = lowmem_redir_base; |
| 633 | uv_cpu_hub_info(cpu)->lowmem_remap_top = lowmem_redir_size; | 610 | uv_cpu_hub_info(cpu)->lowmem_remap_top = lowmem_redir_size; |
| 634 | uv_cpu_hub_info(cpu)->m_val = m_val; | 611 | uv_cpu_hub_info(cpu)->m_val = m_val; |
| @@ -662,11 +639,10 @@ void __init uv_system_init(void) | |||
| 662 | pnode = (paddr >> m_val) & pnode_mask; | 639 | pnode = (paddr >> m_val) & pnode_mask; |
| 663 | blade = boot_pnode_to_blade(pnode); | 640 | blade = boot_pnode_to_blade(pnode); |
| 664 | uv_node_to_blade[nid] = blade; | 641 | uv_node_to_blade[nid] = blade; |
| 642 | max_pnode = max(pnode, max_pnode); | ||
| 665 | } | 643 | } |
| 666 | 644 | ||
| 667 | map_gru_high(max_pnode); | 645 | map_gru_high(max_pnode); |
| 668 | map_mmr_high(max_pnode); | ||
| 669 | map_config_high(max_pnode); | ||
| 670 | map_mmioh_high(max_pnode); | 646 | map_mmioh_high(max_pnode); |
| 671 | 647 | ||
| 672 | uv_cpu_init(); | 648 | uv_cpu_init(); |
diff --git a/arch/x86/kernel/apm_32.c b/arch/x86/kernel/apm_32.c index 79302e9a33a4..442b5508893f 100644 --- a/arch/x86/kernel/apm_32.c +++ b/arch/x86/kernel/apm_32.c | |||
| @@ -811,7 +811,7 @@ static int apm_do_idle(void) | |||
| 811 | u8 ret = 0; | 811 | u8 ret = 0; |
| 812 | int idled = 0; | 812 | int idled = 0; |
| 813 | int polling; | 813 | int polling; |
| 814 | int err; | 814 | int err = 0; |
| 815 | 815 | ||
| 816 | polling = !!(current_thread_info()->status & TS_POLLING); | 816 | polling = !!(current_thread_info()->status & TS_POLLING); |
| 817 | if (polling) { | 817 | if (polling) { |
diff --git a/arch/x86/kernel/efi.c b/arch/x86/kernel/efi.c index 96f7ac0bbf01..19ccf6d0dccf 100644 --- a/arch/x86/kernel/efi.c +++ b/arch/x86/kernel/efi.c | |||
| @@ -512,7 +512,7 @@ void __init efi_enter_virtual_mode(void) | |||
| 512 | && end_pfn <= max_pfn_mapped)) | 512 | && end_pfn <= max_pfn_mapped)) |
| 513 | va = __va(md->phys_addr); | 513 | va = __va(md->phys_addr); |
| 514 | else | 514 | else |
| 515 | va = efi_ioremap(md->phys_addr, size); | 515 | va = efi_ioremap(md->phys_addr, size, md->type); |
| 516 | 516 | ||
| 517 | md->virt_addr = (u64) (unsigned long) va; | 517 | md->virt_addr = (u64) (unsigned long) va; |
| 518 | 518 | ||
diff --git a/arch/x86/kernel/efi_64.c b/arch/x86/kernel/efi_64.c index 22c3b7828c50..ac0621a7ac3d 100644 --- a/arch/x86/kernel/efi_64.c +++ b/arch/x86/kernel/efi_64.c | |||
| @@ -98,10 +98,14 @@ void __init efi_call_phys_epilog(void) | |||
| 98 | early_runtime_code_mapping_set_exec(0); | 98 | early_runtime_code_mapping_set_exec(0); |
| 99 | } | 99 | } |
| 100 | 100 | ||
| 101 | void __iomem *__init efi_ioremap(unsigned long phys_addr, unsigned long size) | 101 | void __iomem *__init efi_ioremap(unsigned long phys_addr, unsigned long size, |
| 102 | u32 type) | ||
| 102 | { | 103 | { |
| 103 | unsigned long last_map_pfn; | 104 | unsigned long last_map_pfn; |
| 104 | 105 | ||
| 106 | if (type == EFI_MEMORY_MAPPED_IO) | ||
| 107 | return ioremap(phys_addr, size); | ||
| 108 | |||
| 105 | last_map_pfn = init_memory_mapping(phys_addr, phys_addr + size); | 109 | last_map_pfn = init_memory_mapping(phys_addr, phys_addr + size); |
| 106 | if ((last_map_pfn << PAGE_SHIFT) < phys_addr + size) | 110 | if ((last_map_pfn << PAGE_SHIFT) < phys_addr + size) |
| 107 | return NULL; | 111 | return NULL; |
diff --git a/arch/x86/kernel/head_32.S b/arch/x86/kernel/head_32.S index 8663afb56535..0d98a01cbdb2 100644 --- a/arch/x86/kernel/head_32.S +++ b/arch/x86/kernel/head_32.S | |||
| @@ -602,7 +602,11 @@ ignore_int: | |||
| 602 | #endif | 602 | #endif |
| 603 | iret | 603 | iret |
| 604 | 604 | ||
| 605 | .section .cpuinit.data,"wa" | 605 | #ifndef CONFIG_HOTPLUG_CPU |
| 606 | __CPUINITDATA | ||
| 607 | #else | ||
| 608 | __REFDATA | ||
| 609 | #endif | ||
| 606 | .align 4 | 610 | .align 4 |
| 607 | ENTRY(initial_code) | 611 | ENTRY(initial_code) |
| 608 | .long i386_start_kernel | 612 | .long i386_start_kernel |
diff --git a/arch/x86/kernel/reboot.c b/arch/x86/kernel/reboot.c index 508e982dd072..834c9da8bf9d 100644 --- a/arch/x86/kernel/reboot.c +++ b/arch/x86/kernel/reboot.c | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | #include <linux/init.h> | 3 | #include <linux/init.h> |
| 4 | #include <linux/pm.h> | 4 | #include <linux/pm.h> |
| 5 | #include <linux/efi.h> | 5 | #include <linux/efi.h> |
| 6 | #include <linux/dmi.h> | ||
| 6 | #include <acpi/reboot.h> | 7 | #include <acpi/reboot.h> |
| 7 | #include <asm/io.h> | 8 | #include <asm/io.h> |
| 8 | #include <asm/apic.h> | 9 | #include <asm/apic.h> |
| @@ -17,7 +18,6 @@ | |||
| 17 | #include <asm/cpu.h> | 18 | #include <asm/cpu.h> |
| 18 | 19 | ||
| 19 | #ifdef CONFIG_X86_32 | 20 | #ifdef CONFIG_X86_32 |
| 20 | # include <linux/dmi.h> | ||
| 21 | # include <linux/ctype.h> | 21 | # include <linux/ctype.h> |
| 22 | # include <linux/mc146818rtc.h> | 22 | # include <linux/mc146818rtc.h> |
| 23 | #else | 23 | #else |
| @@ -404,6 +404,38 @@ EXPORT_SYMBOL(machine_real_restart); | |||
| 404 | 404 | ||
| 405 | #endif /* CONFIG_X86_32 */ | 405 | #endif /* CONFIG_X86_32 */ |
| 406 | 406 | ||
| 407 | /* | ||
| 408 | * Apple MacBook5,2 (2009 MacBook) needs reboot=p | ||
| 409 | */ | ||
| 410 | static int __init set_pci_reboot(const struct dmi_system_id *d) | ||
| 411 | { | ||
| 412 | if (reboot_type != BOOT_CF9) { | ||
| 413 | reboot_type = BOOT_CF9; | ||
| 414 | printk(KERN_INFO "%s series board detected. " | ||
| 415 | "Selecting PCI-method for reboots.\n", d->ident); | ||
| 416 | } | ||
| 417 | return 0; | ||
| 418 | } | ||
| 419 | |||
| 420 | static struct dmi_system_id __initdata pci_reboot_dmi_table[] = { | ||
| 421 | { /* Handle problems with rebooting on Apple MacBook5,2 */ | ||
| 422 | .callback = set_pci_reboot, | ||
| 423 | .ident = "Apple MacBook", | ||
| 424 | .matches = { | ||
| 425 | DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."), | ||
| 426 | DMI_MATCH(DMI_PRODUCT_NAME, "MacBook5,2"), | ||
| 427 | }, | ||
| 428 | }, | ||
| 429 | { } | ||
| 430 | }; | ||
| 431 | |||
| 432 | static int __init pci_reboot_init(void) | ||
| 433 | { | ||
| 434 | dmi_check_system(pci_reboot_dmi_table); | ||
| 435 | return 0; | ||
| 436 | } | ||
| 437 | core_initcall(pci_reboot_init); | ||
| 438 | |||
| 407 | static inline void kb_wait(void) | 439 | static inline void kb_wait(void) |
| 408 | { | 440 | { |
| 409 | int i; | 441 | int i; |
diff --git a/arch/x86/kernel/vmlinux.lds.S b/arch/x86/kernel/vmlinux.lds.S index 59f31d2dd435..78d185d797de 100644 --- a/arch/x86/kernel/vmlinux.lds.S +++ b/arch/x86/kernel/vmlinux.lds.S | |||
| @@ -393,8 +393,8 @@ SECTIONS | |||
| 393 | 393 | ||
| 394 | 394 | ||
| 395 | #ifdef CONFIG_X86_32 | 395 | #ifdef CONFIG_X86_32 |
| 396 | ASSERT((_end - LOAD_OFFSET <= KERNEL_IMAGE_SIZE), | 396 | . = ASSERT((_end - LOAD_OFFSET <= KERNEL_IMAGE_SIZE), |
| 397 | "kernel image bigger than KERNEL_IMAGE_SIZE") | 397 | "kernel image bigger than KERNEL_IMAGE_SIZE"); |
| 398 | #else | 398 | #else |
| 399 | /* | 399 | /* |
| 400 | * Per-cpu symbols which need to be offset from __per_cpu_load | 400 | * Per-cpu symbols which need to be offset from __per_cpu_load |
| @@ -407,12 +407,12 @@ INIT_PER_CPU(irq_stack_union); | |||
| 407 | /* | 407 | /* |
| 408 | * Build-time check on the image size: | 408 | * Build-time check on the image size: |
| 409 | */ | 409 | */ |
| 410 | ASSERT((_end - _text <= KERNEL_IMAGE_SIZE), | 410 | . = ASSERT((_end - _text <= KERNEL_IMAGE_SIZE), |
| 411 | "kernel image bigger than KERNEL_IMAGE_SIZE") | 411 | "kernel image bigger than KERNEL_IMAGE_SIZE"); |
| 412 | 412 | ||
| 413 | #ifdef CONFIG_SMP | 413 | #ifdef CONFIG_SMP |
| 414 | ASSERT((per_cpu__irq_stack_union == 0), | 414 | . = ASSERT((per_cpu__irq_stack_union == 0), |
| 415 | "irq_stack_union is not at start of per-cpu area"); | 415 | "irq_stack_union is not at start of per-cpu area"); |
| 416 | #endif | 416 | #endif |
| 417 | 417 | ||
| 418 | #endif /* CONFIG_X86_32 */ | 418 | #endif /* CONFIG_X86_32 */ |
| @@ -420,7 +420,7 @@ ASSERT((per_cpu__irq_stack_union == 0), | |||
| 420 | #ifdef CONFIG_KEXEC | 420 | #ifdef CONFIG_KEXEC |
| 421 | #include <asm/kexec.h> | 421 | #include <asm/kexec.h> |
| 422 | 422 | ||
| 423 | ASSERT(kexec_control_code_size <= KEXEC_CONTROL_CODE_MAX_SIZE, | 423 | . = ASSERT(kexec_control_code_size <= KEXEC_CONTROL_CODE_MAX_SIZE, |
| 424 | "kexec control code size is too big") | 424 | "kexec control code size is too big"); |
| 425 | #endif | 425 | #endif |
| 426 | 426 | ||
diff --git a/arch/x86/lib/msr.c b/arch/x86/lib/msr.c index 1440b9c0547e..caa24aca8115 100644 --- a/arch/x86/lib/msr.c +++ b/arch/x86/lib/msr.c | |||
| @@ -89,16 +89,13 @@ void rdmsr_on_cpus(const cpumask_t *mask, u32 msr_no, struct msr *msrs) | |||
| 89 | rv.msrs = msrs; | 89 | rv.msrs = msrs; |
| 90 | rv.msr_no = msr_no; | 90 | rv.msr_no = msr_no; |
| 91 | 91 | ||
| 92 | preempt_disable(); | 92 | this_cpu = get_cpu(); |
| 93 | /* | 93 | |
| 94 | * FIXME: handle the CPU we're executing on separately for now until | 94 | if (cpumask_test_cpu(this_cpu, mask)) |
| 95 | * smp_call_function_many has been fixed to not skip it. | 95 | __rdmsr_on_cpu(&rv); |
| 96 | */ | ||
| 97 | this_cpu = raw_smp_processor_id(); | ||
| 98 | smp_call_function_single(this_cpu, __rdmsr_on_cpu, &rv, 1); | ||
| 99 | 96 | ||
| 100 | smp_call_function_many(mask, __rdmsr_on_cpu, &rv, 1); | 97 | smp_call_function_many(mask, __rdmsr_on_cpu, &rv, 1); |
| 101 | preempt_enable(); | 98 | put_cpu(); |
| 102 | } | 99 | } |
| 103 | EXPORT_SYMBOL(rdmsr_on_cpus); | 100 | EXPORT_SYMBOL(rdmsr_on_cpus); |
| 104 | 101 | ||
| @@ -121,16 +118,13 @@ void wrmsr_on_cpus(const cpumask_t *mask, u32 msr_no, struct msr *msrs) | |||
| 121 | rv.msrs = msrs; | 118 | rv.msrs = msrs; |
| 122 | rv.msr_no = msr_no; | 119 | rv.msr_no = msr_no; |
| 123 | 120 | ||
| 124 | preempt_disable(); | 121 | this_cpu = get_cpu(); |
| 125 | /* | 122 | |
| 126 | * FIXME: handle the CPU we're executing on separately for now until | 123 | if (cpumask_test_cpu(this_cpu, mask)) |
| 127 | * smp_call_function_many has been fixed to not skip it. | 124 | __wrmsr_on_cpu(&rv); |
| 128 | */ | ||
| 129 | this_cpu = raw_smp_processor_id(); | ||
| 130 | smp_call_function_single(this_cpu, __wrmsr_on_cpu, &rv, 1); | ||
| 131 | 125 | ||
| 132 | smp_call_function_many(mask, __wrmsr_on_cpu, &rv, 1); | 126 | smp_call_function_many(mask, __wrmsr_on_cpu, &rv, 1); |
| 133 | preempt_enable(); | 127 | put_cpu(); |
| 134 | } | 128 | } |
| 135 | EXPORT_SYMBOL(wrmsr_on_cpus); | 129 | EXPORT_SYMBOL(wrmsr_on_cpus); |
| 136 | 130 | ||
diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c index 1b734d7a8966..7e600c1962db 100644 --- a/arch/x86/mm/pageattr.c +++ b/arch/x86/mm/pageattr.c | |||
| @@ -591,9 +591,12 @@ static int __change_page_attr(struct cpa_data *cpa, int primary) | |||
| 591 | unsigned int level; | 591 | unsigned int level; |
| 592 | pte_t *kpte, old_pte; | 592 | pte_t *kpte, old_pte; |
| 593 | 593 | ||
| 594 | if (cpa->flags & CPA_PAGES_ARRAY) | 594 | if (cpa->flags & CPA_PAGES_ARRAY) { |
| 595 | address = (unsigned long)page_address(cpa->pages[cpa->curpage]); | 595 | struct page *page = cpa->pages[cpa->curpage]; |
| 596 | else if (cpa->flags & CPA_ARRAY) | 596 | if (unlikely(PageHighMem(page))) |
| 597 | return 0; | ||
| 598 | address = (unsigned long)page_address(page); | ||
| 599 | } else if (cpa->flags & CPA_ARRAY) | ||
| 597 | address = cpa->vaddr[cpa->curpage]; | 600 | address = cpa->vaddr[cpa->curpage]; |
| 598 | else | 601 | else |
| 599 | address = *cpa->vaddr; | 602 | address = *cpa->vaddr; |
| @@ -697,9 +700,12 @@ static int cpa_process_alias(struct cpa_data *cpa) | |||
| 697 | * No need to redo, when the primary call touched the direct | 700 | * No need to redo, when the primary call touched the direct |
| 698 | * mapping already: | 701 | * mapping already: |
| 699 | */ | 702 | */ |
| 700 | if (cpa->flags & CPA_PAGES_ARRAY) | 703 | if (cpa->flags & CPA_PAGES_ARRAY) { |
| 701 | vaddr = (unsigned long)page_address(cpa->pages[cpa->curpage]); | 704 | struct page *page = cpa->pages[cpa->curpage]; |
| 702 | else if (cpa->flags & CPA_ARRAY) | 705 | if (unlikely(PageHighMem(page))) |
| 706 | return 0; | ||
| 707 | vaddr = (unsigned long)page_address(page); | ||
| 708 | } else if (cpa->flags & CPA_ARRAY) | ||
| 703 | vaddr = cpa->vaddr[cpa->curpage]; | 709 | vaddr = cpa->vaddr[cpa->curpage]; |
| 704 | else | 710 | else |
| 705 | vaddr = *cpa->vaddr; | 711 | vaddr = *cpa->vaddr; |
| @@ -997,12 +1003,15 @@ EXPORT_SYMBOL(set_memory_array_uc); | |||
| 997 | int _set_memory_wc(unsigned long addr, int numpages) | 1003 | int _set_memory_wc(unsigned long addr, int numpages) |
| 998 | { | 1004 | { |
| 999 | int ret; | 1005 | int ret; |
| 1006 | unsigned long addr_copy = addr; | ||
| 1007 | |||
| 1000 | ret = change_page_attr_set(&addr, numpages, | 1008 | ret = change_page_attr_set(&addr, numpages, |
| 1001 | __pgprot(_PAGE_CACHE_UC_MINUS), 0); | 1009 | __pgprot(_PAGE_CACHE_UC_MINUS), 0); |
| 1002 | |||
| 1003 | if (!ret) { | 1010 | if (!ret) { |
| 1004 | ret = change_page_attr_set(&addr, numpages, | 1011 | ret = change_page_attr_set_clr(&addr_copy, numpages, |
| 1005 | __pgprot(_PAGE_CACHE_WC), 0); | 1012 | __pgprot(_PAGE_CACHE_WC), |
| 1013 | __pgprot(_PAGE_CACHE_MASK), | ||
| 1014 | 0, 0, NULL); | ||
| 1006 | } | 1015 | } |
| 1007 | return ret; | 1016 | return ret; |
| 1008 | } | 1017 | } |
| @@ -1119,7 +1128,9 @@ int set_pages_array_uc(struct page **pages, int addrinarray) | |||
| 1119 | int free_idx; | 1128 | int free_idx; |
| 1120 | 1129 | ||
| 1121 | for (i = 0; i < addrinarray; i++) { | 1130 | for (i = 0; i < addrinarray; i++) { |
| 1122 | start = (unsigned long)page_address(pages[i]); | 1131 | if (PageHighMem(pages[i])) |
| 1132 | continue; | ||
| 1133 | start = page_to_pfn(pages[i]) << PAGE_SHIFT; | ||
| 1123 | end = start + PAGE_SIZE; | 1134 | end = start + PAGE_SIZE; |
| 1124 | if (reserve_memtype(start, end, _PAGE_CACHE_UC_MINUS, NULL)) | 1135 | if (reserve_memtype(start, end, _PAGE_CACHE_UC_MINUS, NULL)) |
| 1125 | goto err_out; | 1136 | goto err_out; |
| @@ -1132,7 +1143,9 @@ int set_pages_array_uc(struct page **pages, int addrinarray) | |||
| 1132 | err_out: | 1143 | err_out: |
| 1133 | free_idx = i; | 1144 | free_idx = i; |
| 1134 | for (i = 0; i < free_idx; i++) { | 1145 | for (i = 0; i < free_idx; i++) { |
| 1135 | start = (unsigned long)page_address(pages[i]); | 1146 | if (PageHighMem(pages[i])) |
| 1147 | continue; | ||
| 1148 | start = page_to_pfn(pages[i]) << PAGE_SHIFT; | ||
| 1136 | end = start + PAGE_SIZE; | 1149 | end = start + PAGE_SIZE; |
| 1137 | free_memtype(start, end); | 1150 | free_memtype(start, end); |
| 1138 | } | 1151 | } |
| @@ -1161,7 +1174,9 @@ int set_pages_array_wb(struct page **pages, int addrinarray) | |||
| 1161 | return retval; | 1174 | return retval; |
| 1162 | 1175 | ||
| 1163 | for (i = 0; i < addrinarray; i++) { | 1176 | for (i = 0; i < addrinarray; i++) { |
| 1164 | start = (unsigned long)page_address(pages[i]); | 1177 | if (PageHighMem(pages[i])) |
| 1178 | continue; | ||
| 1179 | start = page_to_pfn(pages[i]) << PAGE_SHIFT; | ||
| 1165 | end = start + PAGE_SIZE; | 1180 | end = start + PAGE_SIZE; |
| 1166 | free_memtype(start, end); | 1181 | free_memtype(start, end); |
| 1167 | } | 1182 | } |
diff --git a/arch/x86/mm/pgtable.c b/arch/x86/mm/pgtable.c index af8f9650058c..ed34f5e35999 100644 --- a/arch/x86/mm/pgtable.c +++ b/arch/x86/mm/pgtable.c | |||
| @@ -329,7 +329,6 @@ void __init reserve_top_address(unsigned long reserve) | |||
| 329 | printk(KERN_INFO "Reserving virtual address space above 0x%08x\n", | 329 | printk(KERN_INFO "Reserving virtual address space above 0x%08x\n", |
| 330 | (int)-reserve); | 330 | (int)-reserve); |
| 331 | __FIXADDR_TOP = -reserve - PAGE_SIZE; | 331 | __FIXADDR_TOP = -reserve - PAGE_SIZE; |
| 332 | __VMALLOC_RESERVE += reserve; | ||
| 333 | #endif | 332 | #endif |
| 334 | } | 333 | } |
| 335 | 334 | ||
diff --git a/drivers/char/agp/parisc-agp.c b/drivers/char/agp/parisc-agp.c index f4bb43fb8016..e077701ae3d9 100644 --- a/drivers/char/agp/parisc-agp.c +++ b/drivers/char/agp/parisc-agp.c | |||
| @@ -225,7 +225,7 @@ static const struct agp_bridge_driver parisc_agp_driver = { | |||
| 225 | .configure = parisc_agp_configure, | 225 | .configure = parisc_agp_configure, |
| 226 | .fetch_size = parisc_agp_fetch_size, | 226 | .fetch_size = parisc_agp_fetch_size, |
| 227 | .tlb_flush = parisc_agp_tlbflush, | 227 | .tlb_flush = parisc_agp_tlbflush, |
| 228 | .mask_memory = parisc_agp_mask_memory, | 228 | .mask_memory = parisc_agp_page_mask_memory, |
| 229 | .masks = parisc_agp_masks, | 229 | .masks = parisc_agp_masks, |
| 230 | .agp_enable = parisc_agp_enable, | 230 | .agp_enable = parisc_agp_enable, |
| 231 | .cache_flush = global_cache_flush, | 231 | .cache_flush = global_cache_flush, |
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index b90eda8b3440..fd69086d08d5 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
| @@ -858,6 +858,8 @@ static int cpufreq_add_dev(struct sys_device *sys_dev) | |||
| 858 | 858 | ||
| 859 | /* Check for existing affected CPUs. | 859 | /* Check for existing affected CPUs. |
| 860 | * They may not be aware of it due to CPU Hotplug. | 860 | * They may not be aware of it due to CPU Hotplug. |
| 861 | * cpufreq_cpu_put is called when the device is removed | ||
| 862 | * in __cpufreq_remove_dev() | ||
| 861 | */ | 863 | */ |
| 862 | managed_policy = cpufreq_cpu_get(j); | 864 | managed_policy = cpufreq_cpu_get(j); |
| 863 | if (unlikely(managed_policy)) { | 865 | if (unlikely(managed_policy)) { |
| @@ -884,7 +886,7 @@ static int cpufreq_add_dev(struct sys_device *sys_dev) | |||
| 884 | ret = sysfs_create_link(&sys_dev->kobj, | 886 | ret = sysfs_create_link(&sys_dev->kobj, |
| 885 | &managed_policy->kobj, | 887 | &managed_policy->kobj, |
| 886 | "cpufreq"); | 888 | "cpufreq"); |
| 887 | if (!ret) | 889 | if (ret) |
| 888 | cpufreq_cpu_put(managed_policy); | 890 | cpufreq_cpu_put(managed_policy); |
| 889 | /* | 891 | /* |
| 890 | * Success. We only needed to be added to the mask. | 892 | * Success. We only needed to be added to the mask. |
| @@ -924,6 +926,8 @@ static int cpufreq_add_dev(struct sys_device *sys_dev) | |||
| 924 | 926 | ||
| 925 | spin_lock_irqsave(&cpufreq_driver_lock, flags); | 927 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
| 926 | for_each_cpu(j, policy->cpus) { | 928 | for_each_cpu(j, policy->cpus) { |
| 929 | if (!cpu_online(j)) | ||
| 930 | continue; | ||
| 927 | per_cpu(cpufreq_cpu_data, j) = policy; | 931 | per_cpu(cpufreq_cpu_data, j) = policy; |
| 928 | per_cpu(policy_cpu, j) = policy->cpu; | 932 | per_cpu(policy_cpu, j) = policy->cpu; |
| 929 | } | 933 | } |
| @@ -1244,13 +1248,22 @@ EXPORT_SYMBOL(cpufreq_get); | |||
| 1244 | 1248 | ||
| 1245 | static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg) | 1249 | static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg) |
| 1246 | { | 1250 | { |
| 1247 | int cpu = sysdev->id; | ||
| 1248 | int ret = 0; | 1251 | int ret = 0; |
| 1252 | |||
| 1253 | #ifdef __powerpc__ | ||
| 1254 | int cpu = sysdev->id; | ||
| 1249 | unsigned int cur_freq = 0; | 1255 | unsigned int cur_freq = 0; |
| 1250 | struct cpufreq_policy *cpu_policy; | 1256 | struct cpufreq_policy *cpu_policy; |
| 1251 | 1257 | ||
| 1252 | dprintk("suspending cpu %u\n", cpu); | 1258 | dprintk("suspending cpu %u\n", cpu); |
| 1253 | 1259 | ||
| 1260 | /* | ||
| 1261 | * This whole bogosity is here because Powerbooks are made of fail. | ||
| 1262 | * No sane platform should need any of the code below to be run. | ||
| 1263 | * (it's entirely the wrong thing to do, as driver->get may | ||
| 1264 | * reenable interrupts on some architectures). | ||
| 1265 | */ | ||
| 1266 | |||
| 1254 | if (!cpu_online(cpu)) | 1267 | if (!cpu_online(cpu)) |
| 1255 | return 0; | 1268 | return 0; |
| 1256 | 1269 | ||
| @@ -1309,6 +1322,7 @@ static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg) | |||
| 1309 | 1322 | ||
| 1310 | out: | 1323 | out: |
| 1311 | cpufreq_cpu_put(cpu_policy); | 1324 | cpufreq_cpu_put(cpu_policy); |
| 1325 | #endif /* __powerpc__ */ | ||
| 1312 | return ret; | 1326 | return ret; |
| 1313 | } | 1327 | } |
| 1314 | 1328 | ||
| @@ -1322,12 +1336,18 @@ out: | |||
| 1322 | */ | 1336 | */ |
| 1323 | static int cpufreq_resume(struct sys_device *sysdev) | 1337 | static int cpufreq_resume(struct sys_device *sysdev) |
| 1324 | { | 1338 | { |
| 1325 | int cpu = sysdev->id; | ||
| 1326 | int ret = 0; | 1339 | int ret = 0; |
| 1340 | |||
| 1341 | #ifdef __powerpc__ | ||
| 1342 | int cpu = sysdev->id; | ||
| 1327 | struct cpufreq_policy *cpu_policy; | 1343 | struct cpufreq_policy *cpu_policy; |
| 1328 | 1344 | ||
| 1329 | dprintk("resuming cpu %u\n", cpu); | 1345 | dprintk("resuming cpu %u\n", cpu); |
| 1330 | 1346 | ||
| 1347 | /* As with the ->suspend method, all the code below is | ||
| 1348 | * only necessary because Powerbooks suck. | ||
| 1349 | * See commit 42d4dc3f4e1e for jokes. */ | ||
| 1350 | |||
| 1331 | if (!cpu_online(cpu)) | 1351 | if (!cpu_online(cpu)) |
| 1332 | return 0; | 1352 | return 0; |
| 1333 | 1353 | ||
| @@ -1391,6 +1411,7 @@ out: | |||
| 1391 | schedule_work(&cpu_policy->update); | 1411 | schedule_work(&cpu_policy->update); |
| 1392 | fail: | 1412 | fail: |
| 1393 | cpufreq_cpu_put(cpu_policy); | 1413 | cpufreq_cpu_put(cpu_policy); |
| 1414 | #endif /* __powerpc__ */ | ||
| 1394 | return ret; | 1415 | return ret; |
| 1395 | } | 1416 | } |
| 1396 | 1417 | ||
diff --git a/drivers/cpufreq/cpufreq_conservative.c b/drivers/cpufreq/cpufreq_conservative.c index 57490502b21c..bdea7e2f94ba 100644 --- a/drivers/cpufreq/cpufreq_conservative.c +++ b/drivers/cpufreq/cpufreq_conservative.c | |||
| @@ -63,6 +63,7 @@ struct cpu_dbs_info_s { | |||
| 63 | unsigned int down_skip; | 63 | unsigned int down_skip; |
| 64 | unsigned int requested_freq; | 64 | unsigned int requested_freq; |
| 65 | int cpu; | 65 | int cpu; |
| 66 | unsigned int enable:1; | ||
| 66 | /* | 67 | /* |
| 67 | * percpu mutex that serializes governor limit change with | 68 | * percpu mutex that serializes governor limit change with |
| 68 | * do_dbs_timer invocation. We do not want do_dbs_timer to run | 69 | * do_dbs_timer invocation. We do not want do_dbs_timer to run |
| @@ -141,6 +142,9 @@ dbs_cpufreq_notifier(struct notifier_block *nb, unsigned long val, | |||
| 141 | 142 | ||
| 142 | struct cpufreq_policy *policy; | 143 | struct cpufreq_policy *policy; |
| 143 | 144 | ||
| 145 | if (!this_dbs_info->enable) | ||
| 146 | return 0; | ||
| 147 | |||
| 144 | policy = this_dbs_info->cur_policy; | 148 | policy = this_dbs_info->cur_policy; |
| 145 | 149 | ||
| 146 | /* | 150 | /* |
| @@ -497,6 +501,7 @@ static inline void dbs_timer_init(struct cpu_dbs_info_s *dbs_info) | |||
| 497 | int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate); | 501 | int delay = usecs_to_jiffies(dbs_tuners_ins.sampling_rate); |
| 498 | delay -= jiffies % delay; | 502 | delay -= jiffies % delay; |
| 499 | 503 | ||
| 504 | dbs_info->enable = 1; | ||
| 500 | INIT_DELAYED_WORK_DEFERRABLE(&dbs_info->work, do_dbs_timer); | 505 | INIT_DELAYED_WORK_DEFERRABLE(&dbs_info->work, do_dbs_timer); |
| 501 | queue_delayed_work_on(dbs_info->cpu, kconservative_wq, &dbs_info->work, | 506 | queue_delayed_work_on(dbs_info->cpu, kconservative_wq, &dbs_info->work, |
| 502 | delay); | 507 | delay); |
| @@ -504,6 +509,7 @@ static inline void dbs_timer_init(struct cpu_dbs_info_s *dbs_info) | |||
| 504 | 509 | ||
| 505 | static inline void dbs_timer_exit(struct cpu_dbs_info_s *dbs_info) | 510 | static inline void dbs_timer_exit(struct cpu_dbs_info_s *dbs_info) |
| 506 | { | 511 | { |
| 512 | dbs_info->enable = 0; | ||
| 507 | cancel_delayed_work_sync(&dbs_info->work); | 513 | cancel_delayed_work_sync(&dbs_info->work); |
| 508 | } | 514 | } |
| 509 | 515 | ||
diff --git a/drivers/input/serio/hp_sdc_mlc.c b/drivers/input/serio/hp_sdc_mlc.c index b587e2d576ac..820e51673b26 100644 --- a/drivers/input/serio/hp_sdc_mlc.c +++ b/drivers/input/serio/hp_sdc_mlc.c | |||
| @@ -296,7 +296,7 @@ static void hp_sdc_mlc_out(hil_mlc *mlc) | |||
| 296 | priv->tseq[3] = 0; | 296 | priv->tseq[3] = 0; |
| 297 | if (mlc->opacket & HIL_CTRL_APE) { | 297 | if (mlc->opacket & HIL_CTRL_APE) { |
| 298 | priv->tseq[3] |= HP_SDC_LPC_APE_IPF; | 298 | priv->tseq[3] |= HP_SDC_LPC_APE_IPF; |
| 299 | down_trylock(&mlc->csem); | 299 | BUG_ON(down_trylock(&mlc->csem)); |
| 300 | } | 300 | } |
| 301 | enqueue: | 301 | enqueue: |
| 302 | hp_sdc_enqueue_transaction(&priv->trans); | 302 | hp_sdc_enqueue_transaction(&priv->trans); |
diff --git a/drivers/mfd/twl4030-irq.c b/drivers/mfd/twl4030-irq.c index bae61b22501c..7d430835655f 100644 --- a/drivers/mfd/twl4030-irq.c +++ b/drivers/mfd/twl4030-irq.c | |||
| @@ -180,14 +180,9 @@ static struct completion irq_event; | |||
| 180 | static int twl4030_irq_thread(void *data) | 180 | static int twl4030_irq_thread(void *data) |
| 181 | { | 181 | { |
| 182 | long irq = (long)data; | 182 | long irq = (long)data; |
| 183 | struct irq_desc *desc = irq_to_desc(irq); | ||
| 184 | static unsigned i2c_errors; | 183 | static unsigned i2c_errors; |
| 185 | static const unsigned max_i2c_errors = 100; | 184 | static const unsigned max_i2c_errors = 100; |
| 186 | 185 | ||
| 187 | if (!desc) { | ||
| 188 | pr_err("twl4030: Invalid IRQ: %ld\n", irq); | ||
| 189 | return -EINVAL; | ||
| 190 | } | ||
| 191 | 186 | ||
| 192 | current->flags |= PF_NOFREEZE; | 187 | current->flags |= PF_NOFREEZE; |
| 193 | 188 | ||
| @@ -240,7 +235,7 @@ static int twl4030_irq_thread(void *data) | |||
| 240 | } | 235 | } |
| 241 | local_irq_enable(); | 236 | local_irq_enable(); |
| 242 | 237 | ||
| 243 | desc->chip->unmask(irq); | 238 | enable_irq(irq); |
| 244 | } | 239 | } |
| 245 | 240 | ||
| 246 | return 0; | 241 | return 0; |
| @@ -255,25 +250,13 @@ static int twl4030_irq_thread(void *data) | |||
| 255 | * thread. All we do here is acknowledge and mask the interrupt and wakeup | 250 | * thread. All we do here is acknowledge and mask the interrupt and wakeup |
| 256 | * the kernel thread. | 251 | * the kernel thread. |
| 257 | */ | 252 | */ |
| 258 | static void handle_twl4030_pih(unsigned int irq, struct irq_desc *desc) | 253 | static irqreturn_t handle_twl4030_pih(int irq, void *devid) |
| 259 | { | 254 | { |
| 260 | /* Acknowledge, clear *AND* mask the interrupt... */ | 255 | /* Acknowledge, clear *AND* mask the interrupt... */ |
| 261 | desc->chip->ack(irq); | 256 | disable_irq_nosync(irq); |
| 262 | complete(&irq_event); | 257 | complete(devid); |
| 263 | } | 258 | return IRQ_HANDLED; |
| 264 | |||
| 265 | static struct task_struct *start_twl4030_irq_thread(long irq) | ||
| 266 | { | ||
| 267 | struct task_struct *thread; | ||
| 268 | |||
| 269 | init_completion(&irq_event); | ||
| 270 | thread = kthread_run(twl4030_irq_thread, (void *)irq, "twl4030-irq"); | ||
| 271 | if (!thread) | ||
| 272 | pr_err("twl4030: could not create irq %ld thread!\n", irq); | ||
| 273 | |||
| 274 | return thread; | ||
| 275 | } | 259 | } |
| 276 | |||
| 277 | /*----------------------------------------------------------------------*/ | 260 | /*----------------------------------------------------------------------*/ |
| 278 | 261 | ||
| 279 | /* | 262 | /* |
| @@ -734,18 +717,28 @@ int twl_init_irq(int irq_num, unsigned irq_base, unsigned irq_end) | |||
| 734 | } | 717 | } |
| 735 | 718 | ||
| 736 | /* install an irq handler to demultiplex the TWL4030 interrupt */ | 719 | /* install an irq handler to demultiplex the TWL4030 interrupt */ |
| 737 | task = start_twl4030_irq_thread(irq_num); | ||
| 738 | if (!task) { | ||
| 739 | pr_err("twl4030: irq thread FAIL\n"); | ||
| 740 | status = -ESRCH; | ||
| 741 | goto fail; | ||
| 742 | } | ||
| 743 | 720 | ||
| 744 | set_irq_data(irq_num, task); | ||
| 745 | set_irq_chained_handler(irq_num, handle_twl4030_pih); | ||
| 746 | 721 | ||
| 747 | return status; | 722 | init_completion(&irq_event); |
| 748 | 723 | ||
| 724 | status = request_irq(irq_num, handle_twl4030_pih, IRQF_DISABLED, | ||
| 725 | "TWL4030-PIH", &irq_event); | ||
| 726 | if (status < 0) { | ||
| 727 | pr_err("twl4030: could not claim irq%d: %d\n", irq_num, status); | ||
| 728 | goto fail_rqirq; | ||
| 729 | } | ||
| 730 | |||
| 731 | task = kthread_run(twl4030_irq_thread, (void *)irq_num, "twl4030-irq"); | ||
| 732 | if (IS_ERR(task)) { | ||
| 733 | pr_err("twl4030: could not create irq %d thread!\n", irq_num); | ||
| 734 | status = PTR_ERR(task); | ||
| 735 | goto fail_kthread; | ||
| 736 | } | ||
| 737 | return status; | ||
| 738 | fail_kthread: | ||
| 739 | free_irq(irq_num, &irq_event); | ||
| 740 | fail_rqirq: | ||
| 741 | /* clean up twl4030_sih_setup */ | ||
| 749 | fail: | 742 | fail: |
| 750 | for (i = irq_base; i < irq_end; i++) | 743 | for (i = irq_base; i < irq_end; i++) |
| 751 | set_irq_chip_and_handler(i, NULL, NULL); | 744 | set_irq_chip_and_handler(i, NULL, NULL); |
diff --git a/drivers/parisc/ccio-dma.c b/drivers/parisc/ccio-dma.c index 0f0e0b919ef4..a45b0c0d574e 100644 --- a/drivers/parisc/ccio-dma.c +++ b/drivers/parisc/ccio-dma.c | |||
| @@ -70,7 +70,6 @@ | |||
| 70 | #undef CCIO_COLLECT_STATS | 70 | #undef CCIO_COLLECT_STATS |
| 71 | #endif | 71 | #endif |
| 72 | 72 | ||
| 73 | #include <linux/proc_fs.h> | ||
| 74 | #include <asm/runway.h> /* for proc_runway_root */ | 73 | #include <asm/runway.h> /* for proc_runway_root */ |
| 75 | 74 | ||
| 76 | #ifdef DEBUG_CCIO_INIT | 75 | #ifdef DEBUG_CCIO_INIT |
diff --git a/drivers/parisc/dino.c b/drivers/parisc/dino.c index c590974e9815..d69bde6a2343 100644 --- a/drivers/parisc/dino.c +++ b/drivers/parisc/dino.c | |||
| @@ -614,7 +614,7 @@ dino_fixup_bus(struct pci_bus *bus) | |||
| 614 | dev_name(&bus->self->dev), i, | 614 | dev_name(&bus->self->dev), i, |
| 615 | bus->self->resource[i].start, | 615 | bus->self->resource[i].start, |
| 616 | bus->self->resource[i].end); | 616 | bus->self->resource[i].end); |
| 617 | pci_assign_resource(bus->self, i); | 617 | WARN_ON(pci_assign_resource(bus->self, i)); |
| 618 | DBG("DEBUG %s after assign %d [0x%lx,0x%lx]\n", | 618 | DBG("DEBUG %s after assign %d [0x%lx,0x%lx]\n", |
| 619 | dev_name(&bus->self->dev), i, | 619 | dev_name(&bus->self->dev), i, |
| 620 | bus->self->resource[i].start, | 620 | bus->self->resource[i].start, |
diff --git a/drivers/parisc/eisa_eeprom.c b/drivers/parisc/eisa_eeprom.c index 685d94e69d44..8c0b26e9b98a 100644 --- a/drivers/parisc/eisa_eeprom.c +++ b/drivers/parisc/eisa_eeprom.c | |||
| @@ -55,7 +55,7 @@ static ssize_t eisa_eeprom_read(struct file * file, | |||
| 55 | ssize_t ret; | 55 | ssize_t ret; |
| 56 | int i; | 56 | int i; |
| 57 | 57 | ||
| 58 | if (*ppos >= HPEE_MAX_LENGTH) | 58 | if (*ppos < 0 || *ppos >= HPEE_MAX_LENGTH) |
| 59 | return 0; | 59 | return 0; |
| 60 | 60 | ||
| 61 | count = *ppos + count < HPEE_MAX_LENGTH ? count : HPEE_MAX_LENGTH - *ppos; | 61 | count = *ppos + count < HPEE_MAX_LENGTH ? count : HPEE_MAX_LENGTH - *ppos; |
diff --git a/drivers/parisc/hppb.c b/drivers/parisc/hppb.c index 13856415b432..815db175d427 100644 --- a/drivers/parisc/hppb.c +++ b/drivers/parisc/hppb.c | |||
| @@ -62,7 +62,8 @@ static int hppb_probe(struct parisc_device *dev) | |||
| 62 | } | 62 | } |
| 63 | card = card->next; | 63 | card = card->next; |
| 64 | } | 64 | } |
| 65 | printk(KERN_INFO "Found GeckoBoa at 0x%x\n", dev->hpa.start); | 65 | printk(KERN_INFO "Found GeckoBoa at 0x%llx\n", |
| 66 | (unsigned long long) dev->hpa.start); | ||
| 66 | 67 | ||
| 67 | card->hpa = dev->hpa.start; | 68 | card->hpa = dev->hpa.start; |
| 68 | card->mmio_region.name = "HP-PB Bus"; | 69 | card->mmio_region.name = "HP-PB Bus"; |
| @@ -73,8 +74,10 @@ static int hppb_probe(struct parisc_device *dev) | |||
| 73 | 74 | ||
| 74 | status = ccio_request_resource(dev, &card->mmio_region); | 75 | status = ccio_request_resource(dev, &card->mmio_region); |
| 75 | if(status < 0) { | 76 | if(status < 0) { |
| 76 | printk(KERN_ERR "%s: failed to claim HP-PB bus space (%08x, %08x)\n", | 77 | printk(KERN_ERR "%s: failed to claim HP-PB " |
| 77 | __FILE__, card->mmio_region.start, card->mmio_region.end); | 78 | "bus space (0x%08llx, 0x%08llx)\n", |
| 79 | __FILE__, (unsigned long long) card->mmio_region.start, | ||
| 80 | (unsigned long long) card->mmio_region.end); | ||
| 78 | } | 81 | } |
| 79 | 82 | ||
| 80 | return 0; | 83 | return 0; |
diff --git a/drivers/parisc/lba_pci.c b/drivers/parisc/lba_pci.c index ede614616f8e..3aeb3279c92a 100644 --- a/drivers/parisc/lba_pci.c +++ b/drivers/parisc/lba_pci.c | |||
| @@ -992,7 +992,7 @@ lba_pat_resources(struct parisc_device *pa_dev, struct lba_device *lba_dev) | |||
| 992 | return; | 992 | return; |
| 993 | 993 | ||
| 994 | io_pdc_cell = kzalloc(sizeof(pdc_pat_cell_mod_maddr_block_t), GFP_KERNEL); | 994 | io_pdc_cell = kzalloc(sizeof(pdc_pat_cell_mod_maddr_block_t), GFP_KERNEL); |
| 995 | if (!pa_pdc_cell) { | 995 | if (!io_pdc_cell) { |
| 996 | kfree(pa_pdc_cell); | 996 | kfree(pa_pdc_cell); |
| 997 | return; | 997 | return; |
| 998 | } | 998 | } |
diff --git a/drivers/parisc/pdc_stable.c b/drivers/parisc/pdc_stable.c index f9f9a5f1bbd0..13a64bc081b6 100644 --- a/drivers/parisc/pdc_stable.c +++ b/drivers/parisc/pdc_stable.c | |||
| @@ -370,7 +370,7 @@ pdcspath_layer_read(struct pdcspath_entry *entry, char *buf) | |||
| 370 | if (!i) /* entry is not ready */ | 370 | if (!i) /* entry is not ready */ |
| 371 | return -ENODATA; | 371 | return -ENODATA; |
| 372 | 372 | ||
| 373 | for (i = 0; devpath->layers[i] && (likely(i < 6)); i++) | 373 | for (i = 0; i < 6 && devpath->layers[i]; i++) |
| 374 | out += sprintf(out, "%u ", devpath->layers[i]); | 374 | out += sprintf(out, "%u ", devpath->layers[i]); |
| 375 | 375 | ||
| 376 | out += sprintf(out, "\n"); | 376 | out += sprintf(out, "\n"); |
diff --git a/drivers/video/console/sticore.c b/drivers/video/console/sticore.c index ef7870f5ea08..857b3668b3ba 100644 --- a/drivers/video/console/sticore.c +++ b/drivers/video/console/sticore.c | |||
| @@ -957,9 +957,14 @@ static int __devinit sticore_pci_init(struct pci_dev *pd, | |||
| 957 | #ifdef CONFIG_PCI | 957 | #ifdef CONFIG_PCI |
| 958 | unsigned long fb_base, rom_base; | 958 | unsigned long fb_base, rom_base; |
| 959 | unsigned int fb_len, rom_len; | 959 | unsigned int fb_len, rom_len; |
| 960 | int err; | ||
| 960 | struct sti_struct *sti; | 961 | struct sti_struct *sti; |
| 961 | 962 | ||
| 962 | pci_enable_device(pd); | 963 | err = pci_enable_device(pd); |
| 964 | if (err < 0) { | ||
| 965 | dev_err(&pd->dev, "Cannot enable PCI device\n"); | ||
| 966 | return err; | ||
| 967 | } | ||
| 963 | 968 | ||
| 964 | fb_base = pci_resource_start(pd, 0); | 969 | fb_base = pci_resource_start(pd, 0); |
| 965 | fb_len = pci_resource_len(pd, 0); | 970 | fb_len = pci_resource_len(pd, 0); |
| @@ -1048,7 +1053,7 @@ static void __devinit sti_init_roms(void) | |||
| 1048 | 1053 | ||
| 1049 | /* Register drivers for native & PCI cards */ | 1054 | /* Register drivers for native & PCI cards */ |
| 1050 | register_parisc_driver(&pa_sti_driver); | 1055 | register_parisc_driver(&pa_sti_driver); |
| 1051 | pci_register_driver(&pci_sti_driver); | 1056 | WARN_ON(pci_register_driver(&pci_sti_driver)); |
| 1052 | 1057 | ||
| 1053 | /* if we didn't find the given default sti, take the first one */ | 1058 | /* if we didn't find the given default sti, take the first one */ |
| 1054 | if (!default_sti) | 1059 | if (!default_sti) |
diff --git a/fs/cifs/CHANGES b/fs/cifs/CHANGES index 92888aa90749..e85b1e4389e0 100644 --- a/fs/cifs/CHANGES +++ b/fs/cifs/CHANGES | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | Version 1.60 | ||
| 2 | ------------- | ||
| 3 | Fix memory leak in reconnect. Fix oops in DFS mount error path. | ||
| 4 | Set s_maxbytes to smaller (the max that vfs can handle) so that | ||
| 5 | sendfile will now work over cifs mounts again. Add noforcegid | ||
| 6 | and noforceuid mount parameters. | ||
| 7 | |||
| 1 | Version 1.59 | 8 | Version 1.59 |
| 2 | ------------ | 9 | ------------ |
| 3 | Client uses server inode numbers (which are persistent) rather than | 10 | Client uses server inode numbers (which are persistent) rather than |
diff --git a/fs/cifs/README b/fs/cifs/README index ad92921dbde4..79c1a93400be 100644 --- a/fs/cifs/README +++ b/fs/cifs/README | |||
| @@ -262,11 +262,11 @@ A partial list of the supported mount options follows: | |||
| 262 | mount. | 262 | mount. |
| 263 | domain Set the SMB/CIFS workgroup name prepended to the | 263 | domain Set the SMB/CIFS workgroup name prepended to the |
| 264 | username during CIFS session establishment | 264 | username during CIFS session establishment |
| 265 | forceuid Set the default uid for inodes based on the uid | 265 | forceuid Set the default uid for inodes to the uid |
| 266 | passed in. For mounts to servers | 266 | passed in on mount. For mounts to servers |
| 267 | which do support the CIFS Unix extensions, such as a | 267 | which do support the CIFS Unix extensions, such as a |
| 268 | properly configured Samba server, the server provides | 268 | properly configured Samba server, the server provides |
| 269 | the uid, gid and mode so this parameter should not be | 269 | the uid, gid and mode so this parameter should not be |
| 270 | specified unless the server and clients uid and gid | 270 | specified unless the server and clients uid and gid |
| 271 | numbering differ. If the server and client are in the | 271 | numbering differ. If the server and client are in the |
| 272 | same domain (e.g. running winbind or nss_ldap) and | 272 | same domain (e.g. running winbind or nss_ldap) and |
| @@ -278,11 +278,7 @@ A partial list of the supported mount options follows: | |||
| 278 | of existing files will be the uid (gid) of the person | 278 | of existing files will be the uid (gid) of the person |
| 279 | who executed the mount (root, except when mount.cifs | 279 | who executed the mount (root, except when mount.cifs |
| 280 | is configured setuid for user mounts) unless the "uid=" | 280 | is configured setuid for user mounts) unless the "uid=" |
| 281 | (gid) mount option is specified. For the uid (gid) of newly | 281 | (gid) mount option is specified. Also note that permission |
| 282 | created files and directories, ie files created since | ||
| 283 | the last mount of the server share, the expected uid | ||
| 284 | (gid) is cached as long as the inode remains in | ||
| 285 | memory on the client. Also note that permission | ||
| 286 | checks (authorization checks) on accesses to a file occur | 282 | checks (authorization checks) on accesses to a file occur |
| 287 | at the server, but there are cases in which an administrator | 283 | at the server, but there are cases in which an administrator |
| 288 | may want to restrict at the client as well. For those | 284 | may want to restrict at the client as well. For those |
| @@ -290,12 +286,15 @@ A partial list of the supported mount options follows: | |||
| 290 | (such as Windows), permissions can also be checked at the | 286 | (such as Windows), permissions can also be checked at the |
| 291 | client, and a crude form of client side permission checking | 287 | client, and a crude form of client side permission checking |
| 292 | can be enabled by specifying file_mode and dir_mode on | 288 | can be enabled by specifying file_mode and dir_mode on |
| 293 | the client. Note that the mount.cifs helper must be | 289 | the client. (default) |
| 294 | at version 1.10 or higher to support specifying the uid | 290 | forcegid (similar to above but for the groupid instead of uid) (default) |
| 295 | (or gid) in non-numeric form. | 291 | noforceuid Fill in file owner information (uid) by requesting it from |
| 296 | forcegid (similar to above but for the groupid instead of uid) | 292 | the server if possible. With this option, the value given in |
| 293 | the uid= option (on mount) will only be used if the server | ||
| 294 | can not support returning uids on inodes. | ||
| 295 | noforcegid (similar to above but for the group owner, gid, instead of uid) | ||
| 297 | uid Set the default uid for inodes, and indicate to the | 296 | uid Set the default uid for inodes, and indicate to the |
| 298 | cifs kernel driver which local user mounted . If the server | 297 | cifs kernel driver which local user mounted. If the server |
| 299 | supports the unix extensions the default uid is | 298 | supports the unix extensions the default uid is |
| 300 | not used to fill in the owner fields of inodes (files) | 299 | not used to fill in the owner fields of inodes (files) |
| 301 | unless the "forceuid" parameter is specified. | 300 | unless the "forceuid" parameter is specified. |
diff --git a/fs/cifs/cifs_dfs_ref.c b/fs/cifs/cifs_dfs_ref.c index 3bb11be8b6a8..606912d8f2a8 100644 --- a/fs/cifs/cifs_dfs_ref.c +++ b/fs/cifs/cifs_dfs_ref.c | |||
| @@ -55,7 +55,7 @@ void cifs_dfs_release_automount_timer(void) | |||
| 55 | * i.e. strips from UNC trailing path that is not part of share | 55 | * i.e. strips from UNC trailing path that is not part of share |
| 56 | * name and fixup missing '\' in the begining of DFS node refferal | 56 | * name and fixup missing '\' in the begining of DFS node refferal |
| 57 | * if neccessary. | 57 | * if neccessary. |
| 58 | * Returns pointer to share name on success or NULL on error. | 58 | * Returns pointer to share name on success or ERR_PTR on error. |
| 59 | * Caller is responsible for freeing returned string. | 59 | * Caller is responsible for freeing returned string. |
| 60 | */ | 60 | */ |
| 61 | static char *cifs_get_share_name(const char *node_name) | 61 | static char *cifs_get_share_name(const char *node_name) |
| @@ -68,7 +68,7 @@ static char *cifs_get_share_name(const char *node_name) | |||
| 68 | UNC = kmalloc(len+2 /*for term null and additional \ if it's missed */, | 68 | UNC = kmalloc(len+2 /*for term null and additional \ if it's missed */, |
| 69 | GFP_KERNEL); | 69 | GFP_KERNEL); |
| 70 | if (!UNC) | 70 | if (!UNC) |
| 71 | return NULL; | 71 | return ERR_PTR(-ENOMEM); |
| 72 | 72 | ||
| 73 | /* get share name and server name */ | 73 | /* get share name and server name */ |
| 74 | if (node_name[1] != '\\') { | 74 | if (node_name[1] != '\\') { |
| @@ -87,7 +87,7 @@ static char *cifs_get_share_name(const char *node_name) | |||
| 87 | cERROR(1, ("%s: no server name end in node name: %s", | 87 | cERROR(1, ("%s: no server name end in node name: %s", |
| 88 | __func__, node_name)); | 88 | __func__, node_name)); |
| 89 | kfree(UNC); | 89 | kfree(UNC); |
| 90 | return NULL; | 90 | return ERR_PTR(-EINVAL); |
| 91 | } | 91 | } |
| 92 | 92 | ||
| 93 | /* find sharename end */ | 93 | /* find sharename end */ |
| @@ -133,6 +133,12 @@ char *cifs_compose_mount_options(const char *sb_mountdata, | |||
| 133 | return ERR_PTR(-EINVAL); | 133 | return ERR_PTR(-EINVAL); |
| 134 | 134 | ||
| 135 | *devname = cifs_get_share_name(ref->node_name); | 135 | *devname = cifs_get_share_name(ref->node_name); |
| 136 | if (IS_ERR(*devname)) { | ||
| 137 | rc = PTR_ERR(*devname); | ||
| 138 | *devname = NULL; | ||
| 139 | goto compose_mount_options_err; | ||
| 140 | } | ||
| 141 | |||
| 136 | rc = dns_resolve_server_name_to_ip(*devname, &srvIP); | 142 | rc = dns_resolve_server_name_to_ip(*devname, &srvIP); |
| 137 | if (rc != 0) { | 143 | if (rc != 0) { |
| 138 | cERROR(1, ("%s: Failed to resolve server part of %s to IP: %d", | 144 | cERROR(1, ("%s: Failed to resolve server part of %s to IP: %d", |
diff --git a/fs/cifs/cifs_unicode.c b/fs/cifs/cifs_unicode.c index 60e3c4253de0..714a542cbafc 100644 --- a/fs/cifs/cifs_unicode.c +++ b/fs/cifs/cifs_unicode.c | |||
| @@ -44,7 +44,7 @@ cifs_ucs2_bytes(const __le16 *from, int maxbytes, | |||
| 44 | int maxwords = maxbytes / 2; | 44 | int maxwords = maxbytes / 2; |
| 45 | char tmp[NLS_MAX_CHARSET_SIZE]; | 45 | char tmp[NLS_MAX_CHARSET_SIZE]; |
| 46 | 46 | ||
| 47 | for (i = 0; from[i] && i < maxwords; i++) { | 47 | for (i = 0; i < maxwords && from[i]; i++) { |
| 48 | charlen = codepage->uni2char(le16_to_cpu(from[i]), tmp, | 48 | charlen = codepage->uni2char(le16_to_cpu(from[i]), tmp, |
| 49 | NLS_MAX_CHARSET_SIZE); | 49 | NLS_MAX_CHARSET_SIZE); |
| 50 | if (charlen > 0) | 50 | if (charlen > 0) |
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 44f30504b82d..84b75253b05a 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c | |||
| @@ -376,10 +376,14 @@ cifs_show_options(struct seq_file *s, struct vfsmount *m) | |||
| 376 | seq_printf(s, ",uid=%d", cifs_sb->mnt_uid); | 376 | seq_printf(s, ",uid=%d", cifs_sb->mnt_uid); |
| 377 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID) | 377 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID) |
| 378 | seq_printf(s, ",forceuid"); | 378 | seq_printf(s, ",forceuid"); |
| 379 | else | ||
| 380 | seq_printf(s, ",noforceuid"); | ||
| 379 | 381 | ||
| 380 | seq_printf(s, ",gid=%d", cifs_sb->mnt_gid); | 382 | seq_printf(s, ",gid=%d", cifs_sb->mnt_gid); |
| 381 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID) | 383 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID) |
| 382 | seq_printf(s, ",forcegid"); | 384 | seq_printf(s, ",forcegid"); |
| 385 | else | ||
| 386 | seq_printf(s, ",noforcegid"); | ||
| 383 | 387 | ||
| 384 | cifs_show_address(s, tcon->ses->server); | 388 | cifs_show_address(s, tcon->ses->server); |
| 385 | 389 | ||
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index fc44d316d0bb..1f3345d7fa79 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c | |||
| @@ -803,6 +803,10 @@ cifs_parse_mount_options(char *options, const char *devname, | |||
| 803 | char *data; | 803 | char *data; |
| 804 | unsigned int temp_len, i, j; | 804 | unsigned int temp_len, i, j; |
| 805 | char separator[2]; | 805 | char separator[2]; |
| 806 | short int override_uid = -1; | ||
| 807 | short int override_gid = -1; | ||
| 808 | bool uid_specified = false; | ||
| 809 | bool gid_specified = false; | ||
| 806 | 810 | ||
| 807 | separator[0] = ','; | 811 | separator[0] = ','; |
| 808 | separator[1] = 0; | 812 | separator[1] = 0; |
| @@ -1093,18 +1097,20 @@ cifs_parse_mount_options(char *options, const char *devname, | |||
| 1093 | "too long.\n"); | 1097 | "too long.\n"); |
| 1094 | return 1; | 1098 | return 1; |
| 1095 | } | 1099 | } |
| 1096 | } else if (strnicmp(data, "uid", 3) == 0) { | 1100 | } else if (!strnicmp(data, "uid", 3) && value && *value) { |
| 1097 | if (value && *value) | 1101 | vol->linux_uid = simple_strtoul(value, &value, 0); |
| 1098 | vol->linux_uid = | 1102 | uid_specified = true; |
| 1099 | simple_strtoul(value, &value, 0); | 1103 | } else if (!strnicmp(data, "forceuid", 8)) { |
| 1100 | } else if (strnicmp(data, "forceuid", 8) == 0) { | 1104 | override_uid = 1; |
| 1101 | vol->override_uid = 1; | 1105 | } else if (!strnicmp(data, "noforceuid", 10)) { |
| 1102 | } else if (strnicmp(data, "gid", 3) == 0) { | 1106 | override_uid = 0; |
| 1103 | if (value && *value) | 1107 | } else if (!strnicmp(data, "gid", 3) && value && *value) { |
| 1104 | vol->linux_gid = | 1108 | vol->linux_gid = simple_strtoul(value, &value, 0); |
| 1105 | simple_strtoul(value, &value, 0); | 1109 | gid_specified = true; |
| 1106 | } else if (strnicmp(data, "forcegid", 8) == 0) { | 1110 | } else if (!strnicmp(data, "forcegid", 8)) { |
| 1107 | vol->override_gid = 1; | 1111 | override_gid = 1; |
| 1112 | } else if (!strnicmp(data, "noforcegid", 10)) { | ||
| 1113 | override_gid = 0; | ||
| 1108 | } else if (strnicmp(data, "file_mode", 4) == 0) { | 1114 | } else if (strnicmp(data, "file_mode", 4) == 0) { |
| 1109 | if (value && *value) { | 1115 | if (value && *value) { |
| 1110 | vol->file_mode = | 1116 | vol->file_mode = |
| @@ -1355,6 +1361,18 @@ cifs_parse_mount_options(char *options, const char *devname, | |||
| 1355 | if (vol->UNCip == NULL) | 1361 | if (vol->UNCip == NULL) |
| 1356 | vol->UNCip = &vol->UNC[2]; | 1362 | vol->UNCip = &vol->UNC[2]; |
| 1357 | 1363 | ||
| 1364 | if (uid_specified) | ||
| 1365 | vol->override_uid = override_uid; | ||
| 1366 | else if (override_uid == 1) | ||
| 1367 | printk(KERN_NOTICE "CIFS: ignoring forceuid mount option " | ||
| 1368 | "specified with no uid= option.\n"); | ||
| 1369 | |||
| 1370 | if (gid_specified) | ||
| 1371 | vol->override_gid = override_gid; | ||
| 1372 | else if (override_gid == 1) | ||
| 1373 | printk(KERN_NOTICE "CIFS: ignoring forcegid mount option " | ||
| 1374 | "specified with no gid= option.\n"); | ||
| 1375 | |||
| 1358 | return 0; | 1376 | return 0; |
| 1359 | } | 1377 | } |
| 1360 | 1378 | ||
| @@ -2544,11 +2562,20 @@ remote_path_check: | |||
| 2544 | 2562 | ||
| 2545 | if (mount_data != mount_data_global) | 2563 | if (mount_data != mount_data_global) |
| 2546 | kfree(mount_data); | 2564 | kfree(mount_data); |
| 2565 | |||
| 2547 | mount_data = cifs_compose_mount_options( | 2566 | mount_data = cifs_compose_mount_options( |
| 2548 | cifs_sb->mountdata, full_path + 1, | 2567 | cifs_sb->mountdata, full_path + 1, |
| 2549 | referrals, &fake_devname); | 2568 | referrals, &fake_devname); |
| 2550 | kfree(fake_devname); | 2569 | |
| 2551 | free_dfs_info_array(referrals, num_referrals); | 2570 | free_dfs_info_array(referrals, num_referrals); |
| 2571 | kfree(fake_devname); | ||
| 2572 | kfree(full_path); | ||
| 2573 | |||
| 2574 | if (IS_ERR(mount_data)) { | ||
| 2575 | rc = PTR_ERR(mount_data); | ||
| 2576 | mount_data = NULL; | ||
| 2577 | goto mount_fail_check; | ||
| 2578 | } | ||
| 2552 | 2579 | ||
| 2553 | if (tcon) | 2580 | if (tcon) |
| 2554 | cifs_put_tcon(tcon); | 2581 | cifs_put_tcon(tcon); |
| @@ -2556,8 +2583,6 @@ remote_path_check: | |||
| 2556 | cifs_put_smb_ses(pSesInfo); | 2583 | cifs_put_smb_ses(pSesInfo); |
| 2557 | 2584 | ||
| 2558 | cleanup_volume_info(&volume_info); | 2585 | cleanup_volume_info(&volume_info); |
| 2559 | FreeXid(xid); | ||
| 2560 | kfree(full_path); | ||
| 2561 | referral_walks_count++; | 2586 | referral_walks_count++; |
| 2562 | goto try_mount_again; | 2587 | goto try_mount_again; |
| 2563 | } | 2588 | } |
diff --git a/fs/nilfs2/mdt.c b/fs/nilfs2/mdt.c index 3d3ddb3f5177..2dfd47714ae5 100644 --- a/fs/nilfs2/mdt.c +++ b/fs/nilfs2/mdt.c | |||
| @@ -412,8 +412,10 @@ nilfs_mdt_write_page(struct page *page, struct writeback_control *wbc) | |||
| 412 | return 0; /* Do not request flush for shadow page cache */ | 412 | return 0; /* Do not request flush for shadow page cache */ |
| 413 | if (!sb) { | 413 | if (!sb) { |
| 414 | writer = nilfs_get_writer(NILFS_MDT(inode)->mi_nilfs); | 414 | writer = nilfs_get_writer(NILFS_MDT(inode)->mi_nilfs); |
| 415 | if (!writer) | 415 | if (!writer) { |
| 416 | nilfs_put_writer(NILFS_MDT(inode)->mi_nilfs); | ||
| 416 | return -EROFS; | 417 | return -EROFS; |
| 418 | } | ||
| 417 | sb = writer->s_super; | 419 | sb = writer->s_super; |
| 418 | } | 420 | } |
| 419 | 421 | ||
diff --git a/fs/nilfs2/segment.c b/fs/nilfs2/segment.c index 8b5e4778cf28..51ff3d0a4ee2 100644 --- a/fs/nilfs2/segment.c +++ b/fs/nilfs2/segment.c | |||
| @@ -1859,12 +1859,26 @@ static void nilfs_end_page_io(struct page *page, int err) | |||
| 1859 | if (!page) | 1859 | if (!page) |
| 1860 | return; | 1860 | return; |
| 1861 | 1861 | ||
| 1862 | if (buffer_nilfs_node(page_buffers(page)) && !PageWriteback(page)) | 1862 | if (buffer_nilfs_node(page_buffers(page)) && !PageWriteback(page)) { |
| 1863 | /* | 1863 | /* |
| 1864 | * For b-tree node pages, this function may be called twice | 1864 | * For b-tree node pages, this function may be called twice |
| 1865 | * or more because they might be split in a segment. | 1865 | * or more because they might be split in a segment. |
| 1866 | */ | 1866 | */ |
| 1867 | if (PageDirty(page)) { | ||
| 1868 | /* | ||
| 1869 | * For pages holding split b-tree node buffers, dirty | ||
| 1870 | * flag on the buffers may be cleared discretely. | ||
| 1871 | * In that case, the page is once redirtied for | ||
| 1872 | * remaining buffers, and it must be cancelled if | ||
| 1873 | * all the buffers get cleaned later. | ||
| 1874 | */ | ||
| 1875 | lock_page(page); | ||
| 1876 | if (nilfs_page_buffers_clean(page)) | ||
| 1877 | __nilfs_clear_page_dirty(page); | ||
| 1878 | unlock_page(page); | ||
| 1879 | } | ||
| 1867 | return; | 1880 | return; |
| 1881 | } | ||
| 1868 | 1882 | ||
| 1869 | __nilfs_end_page_io(page, err); | 1883 | __nilfs_end_page_io(page, err); |
| 1870 | } | 1884 | } |
diff --git a/include/linux/perf_counter.h b/include/linux/perf_counter.h index bd15d7a5f5ce..e604e6ef72dd 100644 --- a/include/linux/perf_counter.h +++ b/include/linux/perf_counter.h | |||
| @@ -181,8 +181,9 @@ struct perf_counter_attr { | |||
| 181 | freq : 1, /* use freq, not period */ | 181 | freq : 1, /* use freq, not period */ |
| 182 | inherit_stat : 1, /* per task counts */ | 182 | inherit_stat : 1, /* per task counts */ |
| 183 | enable_on_exec : 1, /* next exec enables */ | 183 | enable_on_exec : 1, /* next exec enables */ |
| 184 | task : 1, /* trace fork/exit */ | ||
| 184 | 185 | ||
| 185 | __reserved_1 : 51; | 186 | __reserved_1 : 50; |
| 186 | 187 | ||
| 187 | __u32 wakeup_events; /* wakeup every n events */ | 188 | __u32 wakeup_events; /* wakeup every n events */ |
| 188 | __u32 __reserved_2; | 189 | __u32 __reserved_2; |
| @@ -311,6 +312,15 @@ enum perf_event_type { | |||
| 311 | /* | 312 | /* |
| 312 | * struct { | 313 | * struct { |
| 313 | * struct perf_event_header header; | 314 | * struct perf_event_header header; |
| 315 | * u32 pid, ppid; | ||
| 316 | * u32 tid, ptid; | ||
| 317 | * }; | ||
| 318 | */ | ||
| 319 | PERF_EVENT_EXIT = 4, | ||
| 320 | |||
| 321 | /* | ||
| 322 | * struct { | ||
| 323 | * struct perf_event_header header; | ||
| 314 | * u64 time; | 324 | * u64 time; |
| 315 | * u64 id; | 325 | * u64 id; |
| 316 | * u64 stream_id; | 326 | * u64 stream_id; |
| @@ -323,6 +333,7 @@ enum perf_event_type { | |||
| 323 | * struct { | 333 | * struct { |
| 324 | * struct perf_event_header header; | 334 | * struct perf_event_header header; |
| 325 | * u32 pid, ppid; | 335 | * u32 pid, ppid; |
| 336 | * u32 tid, ptid; | ||
| 326 | * }; | 337 | * }; |
| 327 | */ | 338 | */ |
| 328 | PERF_EVENT_FORK = 7, | 339 | PERF_EVENT_FORK = 7, |
diff --git a/init/Kconfig b/init/Kconfig index cb2c09270226..3f7e60995c80 100644 --- a/init/Kconfig +++ b/init/Kconfig | |||
| @@ -940,6 +940,7 @@ menu "Performance Counters" | |||
| 940 | 940 | ||
| 941 | config PERF_COUNTERS | 941 | config PERF_COUNTERS |
| 942 | bool "Kernel Performance Counters" | 942 | bool "Kernel Performance Counters" |
| 943 | default y if PROFILING | ||
| 943 | depends on HAVE_PERF_COUNTERS | 944 | depends on HAVE_PERF_COUNTERS |
| 944 | select ANON_INODES | 945 | select ANON_INODES |
| 945 | help | 946 | help |
| @@ -961,9 +962,17 @@ config PERF_COUNTERS | |||
| 961 | Say Y if unsure. | 962 | Say Y if unsure. |
| 962 | 963 | ||
| 963 | config EVENT_PROFILE | 964 | config EVENT_PROFILE |
| 964 | bool "Tracepoint profile sources" | 965 | bool "Tracepoint profiling sources" |
| 965 | depends on PERF_COUNTERS && EVENT_TRACING | 966 | depends on PERF_COUNTERS && EVENT_TRACING |
| 966 | default y | 967 | default y |
| 968 | help | ||
| 969 | Allow the use of tracepoints as software performance counters. | ||
| 970 | |||
| 971 | When this is enabled, you can create perf counters based on | ||
| 972 | tracepoints using PERF_TYPE_TRACEPOINT and the tracepoint ID | ||
| 973 | found in debugfs://tracing/events/*/*/id. (The -e/--events | ||
| 974 | option to the perf tool can parse and interpret symbolic | ||
| 975 | tracepoints, in the subsystem:tracepoint_name format.) | ||
| 967 | 976 | ||
| 968 | endmenu | 977 | endmenu |
| 969 | 978 | ||
diff --git a/kernel/fork.c b/kernel/fork.c index 29b532e718f7..466531eb92cc 100644 --- a/kernel/fork.c +++ b/kernel/fork.c | |||
| @@ -1269,6 +1269,7 @@ static struct task_struct *copy_process(unsigned long clone_flags, | |||
| 1269 | write_unlock_irq(&tasklist_lock); | 1269 | write_unlock_irq(&tasklist_lock); |
| 1270 | proc_fork_connector(p); | 1270 | proc_fork_connector(p); |
| 1271 | cgroup_post_fork(p); | 1271 | cgroup_post_fork(p); |
| 1272 | perf_counter_fork(p); | ||
| 1272 | return p; | 1273 | return p; |
| 1273 | 1274 | ||
| 1274 | bad_fork_free_pid: | 1275 | bad_fork_free_pid: |
| @@ -1410,9 +1411,6 @@ long do_fork(unsigned long clone_flags, | |||
| 1410 | init_completion(&vfork); | 1411 | init_completion(&vfork); |
| 1411 | } | 1412 | } |
| 1412 | 1413 | ||
| 1413 | if (!(clone_flags & CLONE_THREAD)) | ||
| 1414 | perf_counter_fork(p); | ||
| 1415 | |||
| 1416 | audit_finish_fork(p); | 1414 | audit_finish_fork(p); |
| 1417 | tracehook_report_clone(regs, clone_flags, nr, p); | 1415 | tracehook_report_clone(regs, clone_flags, nr, p); |
| 1418 | 1416 | ||
diff --git a/kernel/panic.c b/kernel/panic.c index 984b3ecbd72c..512ab73b0ca3 100644 --- a/kernel/panic.c +++ b/kernel/panic.c | |||
| @@ -301,6 +301,7 @@ int oops_may_print(void) | |||
| 301 | */ | 301 | */ |
| 302 | void oops_enter(void) | 302 | void oops_enter(void) |
| 303 | { | 303 | { |
| 304 | tracing_off(); | ||
| 304 | /* can't trust the integrity of the kernel anymore: */ | 305 | /* can't trust the integrity of the kernel anymore: */ |
| 305 | debug_locks_off(); | 306 | debug_locks_off(); |
| 306 | do_oops_enter_exit(); | 307 | do_oops_enter_exit(); |
diff --git a/kernel/perf_counter.c b/kernel/perf_counter.c index 950931041954..199ed4771315 100644 --- a/kernel/perf_counter.c +++ b/kernel/perf_counter.c | |||
| @@ -42,6 +42,7 @@ static int perf_overcommit __read_mostly = 1; | |||
| 42 | static atomic_t nr_counters __read_mostly; | 42 | static atomic_t nr_counters __read_mostly; |
| 43 | static atomic_t nr_mmap_counters __read_mostly; | 43 | static atomic_t nr_mmap_counters __read_mostly; |
| 44 | static atomic_t nr_comm_counters __read_mostly; | 44 | static atomic_t nr_comm_counters __read_mostly; |
| 45 | static atomic_t nr_task_counters __read_mostly; | ||
| 45 | 46 | ||
| 46 | /* | 47 | /* |
| 47 | * perf counter paranoia level: | 48 | * perf counter paranoia level: |
| @@ -1654,6 +1655,8 @@ static void free_counter(struct perf_counter *counter) | |||
| 1654 | atomic_dec(&nr_mmap_counters); | 1655 | atomic_dec(&nr_mmap_counters); |
| 1655 | if (counter->attr.comm) | 1656 | if (counter->attr.comm) |
| 1656 | atomic_dec(&nr_comm_counters); | 1657 | atomic_dec(&nr_comm_counters); |
| 1658 | if (counter->attr.task) | ||
| 1659 | atomic_dec(&nr_task_counters); | ||
| 1657 | } | 1660 | } |
| 1658 | 1661 | ||
| 1659 | if (counter->destroy) | 1662 | if (counter->destroy) |
| @@ -1688,6 +1691,18 @@ static int perf_release(struct inode *inode, struct file *file) | |||
| 1688 | return 0; | 1691 | return 0; |
| 1689 | } | 1692 | } |
| 1690 | 1693 | ||
| 1694 | static u64 perf_counter_read_tree(struct perf_counter *counter) | ||
| 1695 | { | ||
| 1696 | struct perf_counter *child; | ||
| 1697 | u64 total = 0; | ||
| 1698 | |||
| 1699 | total += perf_counter_read(counter); | ||
| 1700 | list_for_each_entry(child, &counter->child_list, child_list) | ||
| 1701 | total += perf_counter_read(child); | ||
| 1702 | |||
| 1703 | return total; | ||
| 1704 | } | ||
| 1705 | |||
| 1691 | /* | 1706 | /* |
| 1692 | * Read the performance counter - simple non blocking version for now | 1707 | * Read the performance counter - simple non blocking version for now |
| 1693 | */ | 1708 | */ |
| @@ -1707,7 +1722,7 @@ perf_read_hw(struct perf_counter *counter, char __user *buf, size_t count) | |||
| 1707 | 1722 | ||
| 1708 | WARN_ON_ONCE(counter->ctx->parent_ctx); | 1723 | WARN_ON_ONCE(counter->ctx->parent_ctx); |
| 1709 | mutex_lock(&counter->child_mutex); | 1724 | mutex_lock(&counter->child_mutex); |
| 1710 | values[0] = perf_counter_read(counter); | 1725 | values[0] = perf_counter_read_tree(counter); |
| 1711 | n = 1; | 1726 | n = 1; |
| 1712 | if (counter->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) | 1727 | if (counter->attr.read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) |
| 1713 | values[n++] = counter->total_time_enabled + | 1728 | values[n++] = counter->total_time_enabled + |
| @@ -2819,10 +2834,12 @@ perf_counter_read_event(struct perf_counter *counter, | |||
| 2819 | } | 2834 | } |
| 2820 | 2835 | ||
| 2821 | /* | 2836 | /* |
| 2822 | * fork tracking | 2837 | * task tracking -- fork/exit |
| 2838 | * | ||
| 2839 | * enabled by: attr.comm | attr.mmap | attr.task | ||
| 2823 | */ | 2840 | */ |
| 2824 | 2841 | ||
| 2825 | struct perf_fork_event { | 2842 | struct perf_task_event { |
| 2826 | struct task_struct *task; | 2843 | struct task_struct *task; |
| 2827 | 2844 | ||
| 2828 | struct { | 2845 | struct { |
| @@ -2830,37 +2847,42 @@ struct perf_fork_event { | |||
| 2830 | 2847 | ||
| 2831 | u32 pid; | 2848 | u32 pid; |
| 2832 | u32 ppid; | 2849 | u32 ppid; |
| 2850 | u32 tid; | ||
| 2851 | u32 ptid; | ||
| 2833 | } event; | 2852 | } event; |
| 2834 | }; | 2853 | }; |
| 2835 | 2854 | ||
| 2836 | static void perf_counter_fork_output(struct perf_counter *counter, | 2855 | static void perf_counter_task_output(struct perf_counter *counter, |
| 2837 | struct perf_fork_event *fork_event) | 2856 | struct perf_task_event *task_event) |
| 2838 | { | 2857 | { |
| 2839 | struct perf_output_handle handle; | 2858 | struct perf_output_handle handle; |
| 2840 | int size = fork_event->event.header.size; | 2859 | int size = task_event->event.header.size; |
| 2841 | struct task_struct *task = fork_event->task; | 2860 | struct task_struct *task = task_event->task; |
| 2842 | int ret = perf_output_begin(&handle, counter, size, 0, 0); | 2861 | int ret = perf_output_begin(&handle, counter, size, 0, 0); |
| 2843 | 2862 | ||
| 2844 | if (ret) | 2863 | if (ret) |
| 2845 | return; | 2864 | return; |
| 2846 | 2865 | ||
| 2847 | fork_event->event.pid = perf_counter_pid(counter, task); | 2866 | task_event->event.pid = perf_counter_pid(counter, task); |
| 2848 | fork_event->event.ppid = perf_counter_pid(counter, task->real_parent); | 2867 | task_event->event.ppid = perf_counter_pid(counter, task->real_parent); |
| 2849 | 2868 | ||
| 2850 | perf_output_put(&handle, fork_event->event); | 2869 | task_event->event.tid = perf_counter_tid(counter, task); |
| 2870 | task_event->event.ptid = perf_counter_tid(counter, task->real_parent); | ||
| 2871 | |||
| 2872 | perf_output_put(&handle, task_event->event); | ||
| 2851 | perf_output_end(&handle); | 2873 | perf_output_end(&handle); |
| 2852 | } | 2874 | } |
| 2853 | 2875 | ||
| 2854 | static int perf_counter_fork_match(struct perf_counter *counter) | 2876 | static int perf_counter_task_match(struct perf_counter *counter) |
| 2855 | { | 2877 | { |
| 2856 | if (counter->attr.comm || counter->attr.mmap) | 2878 | if (counter->attr.comm || counter->attr.mmap || counter->attr.task) |
| 2857 | return 1; | 2879 | return 1; |
| 2858 | 2880 | ||
| 2859 | return 0; | 2881 | return 0; |
| 2860 | } | 2882 | } |
| 2861 | 2883 | ||
| 2862 | static void perf_counter_fork_ctx(struct perf_counter_context *ctx, | 2884 | static void perf_counter_task_ctx(struct perf_counter_context *ctx, |
| 2863 | struct perf_fork_event *fork_event) | 2885 | struct perf_task_event *task_event) |
| 2864 | { | 2886 | { |
| 2865 | struct perf_counter *counter; | 2887 | struct perf_counter *counter; |
| 2866 | 2888 | ||
| @@ -2869,19 +2891,19 @@ static void perf_counter_fork_ctx(struct perf_counter_context *ctx, | |||
| 2869 | 2891 | ||
| 2870 | rcu_read_lock(); | 2892 | rcu_read_lock(); |
| 2871 | list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) { | 2893 | list_for_each_entry_rcu(counter, &ctx->event_list, event_entry) { |
| 2872 | if (perf_counter_fork_match(counter)) | 2894 | if (perf_counter_task_match(counter)) |
| 2873 | perf_counter_fork_output(counter, fork_event); | 2895 | perf_counter_task_output(counter, task_event); |
| 2874 | } | 2896 | } |
| 2875 | rcu_read_unlock(); | 2897 | rcu_read_unlock(); |
| 2876 | } | 2898 | } |
| 2877 | 2899 | ||
| 2878 | static void perf_counter_fork_event(struct perf_fork_event *fork_event) | 2900 | static void perf_counter_task_event(struct perf_task_event *task_event) |
| 2879 | { | 2901 | { |
| 2880 | struct perf_cpu_context *cpuctx; | 2902 | struct perf_cpu_context *cpuctx; |
| 2881 | struct perf_counter_context *ctx; | 2903 | struct perf_counter_context *ctx; |
| 2882 | 2904 | ||
| 2883 | cpuctx = &get_cpu_var(perf_cpu_context); | 2905 | cpuctx = &get_cpu_var(perf_cpu_context); |
| 2884 | perf_counter_fork_ctx(&cpuctx->ctx, fork_event); | 2906 | perf_counter_task_ctx(&cpuctx->ctx, task_event); |
| 2885 | put_cpu_var(perf_cpu_context); | 2907 | put_cpu_var(perf_cpu_context); |
| 2886 | 2908 | ||
| 2887 | rcu_read_lock(); | 2909 | rcu_read_lock(); |
| @@ -2891,32 +2913,40 @@ static void perf_counter_fork_event(struct perf_fork_event *fork_event) | |||
| 2891 | */ | 2913 | */ |
| 2892 | ctx = rcu_dereference(current->perf_counter_ctxp); | 2914 | ctx = rcu_dereference(current->perf_counter_ctxp); |
| 2893 | if (ctx) | 2915 | if (ctx) |
| 2894 | perf_counter_fork_ctx(ctx, fork_event); | 2916 | perf_counter_task_ctx(ctx, task_event); |
| 2895 | rcu_read_unlock(); | 2917 | rcu_read_unlock(); |
| 2896 | } | 2918 | } |
| 2897 | 2919 | ||
| 2898 | void perf_counter_fork(struct task_struct *task) | 2920 | static void perf_counter_task(struct task_struct *task, int new) |
| 2899 | { | 2921 | { |
| 2900 | struct perf_fork_event fork_event; | 2922 | struct perf_task_event task_event; |
| 2901 | 2923 | ||
| 2902 | if (!atomic_read(&nr_comm_counters) && | 2924 | if (!atomic_read(&nr_comm_counters) && |
| 2903 | !atomic_read(&nr_mmap_counters)) | 2925 | !atomic_read(&nr_mmap_counters) && |
| 2926 | !atomic_read(&nr_task_counters)) | ||
| 2904 | return; | 2927 | return; |
| 2905 | 2928 | ||
| 2906 | fork_event = (struct perf_fork_event){ | 2929 | task_event = (struct perf_task_event){ |
| 2907 | .task = task, | 2930 | .task = task, |
| 2908 | .event = { | 2931 | .event = { |
| 2909 | .header = { | 2932 | .header = { |
| 2910 | .type = PERF_EVENT_FORK, | 2933 | .type = new ? PERF_EVENT_FORK : PERF_EVENT_EXIT, |
| 2911 | .misc = 0, | 2934 | .misc = 0, |
| 2912 | .size = sizeof(fork_event.event), | 2935 | .size = sizeof(task_event.event), |
| 2913 | }, | 2936 | }, |
| 2914 | /* .pid */ | 2937 | /* .pid */ |
| 2915 | /* .ppid */ | 2938 | /* .ppid */ |
| 2939 | /* .tid */ | ||
| 2940 | /* .ptid */ | ||
| 2916 | }, | 2941 | }, |
| 2917 | }; | 2942 | }; |
| 2918 | 2943 | ||
| 2919 | perf_counter_fork_event(&fork_event); | 2944 | perf_counter_task_event(&task_event); |
| 2945 | } | ||
| 2946 | |||
| 2947 | void perf_counter_fork(struct task_struct *task) | ||
| 2948 | { | ||
| 2949 | perf_counter_task(task, 1); | ||
| 2920 | } | 2950 | } |
| 2921 | 2951 | ||
| 2922 | /* | 2952 | /* |
| @@ -3875,6 +3905,8 @@ done: | |||
| 3875 | atomic_inc(&nr_mmap_counters); | 3905 | atomic_inc(&nr_mmap_counters); |
| 3876 | if (counter->attr.comm) | 3906 | if (counter->attr.comm) |
| 3877 | atomic_inc(&nr_comm_counters); | 3907 | atomic_inc(&nr_comm_counters); |
| 3908 | if (counter->attr.task) | ||
| 3909 | atomic_inc(&nr_task_counters); | ||
| 3878 | } | 3910 | } |
| 3879 | 3911 | ||
| 3880 | return counter; | 3912 | return counter; |
| @@ -4236,8 +4268,10 @@ void perf_counter_exit_task(struct task_struct *child) | |||
| 4236 | struct perf_counter_context *child_ctx; | 4268 | struct perf_counter_context *child_ctx; |
| 4237 | unsigned long flags; | 4269 | unsigned long flags; |
| 4238 | 4270 | ||
| 4239 | if (likely(!child->perf_counter_ctxp)) | 4271 | if (likely(!child->perf_counter_ctxp)) { |
| 4272 | perf_counter_task(child, 0); | ||
| 4240 | return; | 4273 | return; |
| 4274 | } | ||
| 4241 | 4275 | ||
| 4242 | local_irq_save(flags); | 4276 | local_irq_save(flags); |
| 4243 | /* | 4277 | /* |
| @@ -4255,15 +4289,22 @@ void perf_counter_exit_task(struct task_struct *child) | |||
| 4255 | * incremented the context's refcount before we do put_ctx below. | 4289 | * incremented the context's refcount before we do put_ctx below. |
| 4256 | */ | 4290 | */ |
| 4257 | spin_lock(&child_ctx->lock); | 4291 | spin_lock(&child_ctx->lock); |
| 4258 | child->perf_counter_ctxp = NULL; | ||
| 4259 | /* | 4292 | /* |
| 4260 | * If this context is a clone; unclone it so it can't get | 4293 | * If this context is a clone; unclone it so it can't get |
| 4261 | * swapped to another process while we're removing all | 4294 | * swapped to another process while we're removing all |
| 4262 | * the counters from it. | 4295 | * the counters from it. |
| 4263 | */ | 4296 | */ |
| 4264 | unclone_ctx(child_ctx); | 4297 | unclone_ctx(child_ctx); |
| 4265 | spin_unlock(&child_ctx->lock); | 4298 | spin_unlock_irqrestore(&child_ctx->lock, flags); |
| 4266 | local_irq_restore(flags); | 4299 | |
| 4300 | /* | ||
| 4301 | * Report the task dead after unscheduling the counters so that we | ||
| 4302 | * won't get any samples after PERF_EVENT_EXIT. We can however still | ||
| 4303 | * get a few PERF_EVENT_READ events. | ||
| 4304 | */ | ||
| 4305 | perf_counter_task(child, 0); | ||
| 4306 | |||
| 4307 | child->perf_counter_ctxp = NULL; | ||
| 4267 | 4308 | ||
| 4268 | /* | 4309 | /* |
| 4269 | * We can recurse on the same lock type through: | 4310 | * We can recurse on the same lock type through: |
diff --git a/kernel/posix-timers.c b/kernel/posix-timers.c index 052ec4d195c7..d089d052c4a9 100644 --- a/kernel/posix-timers.c +++ b/kernel/posix-timers.c | |||
| @@ -202,6 +202,12 @@ static int no_timer_create(struct k_itimer *new_timer) | |||
| 202 | return -EOPNOTSUPP; | 202 | return -EOPNOTSUPP; |
| 203 | } | 203 | } |
| 204 | 204 | ||
| 205 | static int no_nsleep(const clockid_t which_clock, int flags, | ||
| 206 | struct timespec *tsave, struct timespec __user *rmtp) | ||
| 207 | { | ||
| 208 | return -EOPNOTSUPP; | ||
| 209 | } | ||
| 210 | |||
| 205 | /* | 211 | /* |
| 206 | * Return nonzero if we know a priori this clockid_t value is bogus. | 212 | * Return nonzero if we know a priori this clockid_t value is bogus. |
| 207 | */ | 213 | */ |
| @@ -254,6 +260,7 @@ static __init int init_posix_timers(void) | |||
| 254 | .clock_get = posix_get_monotonic_raw, | 260 | .clock_get = posix_get_monotonic_raw, |
| 255 | .clock_set = do_posix_clock_nosettime, | 261 | .clock_set = do_posix_clock_nosettime, |
| 256 | .timer_create = no_timer_create, | 262 | .timer_create = no_timer_create, |
| 263 | .nsleep = no_nsleep, | ||
| 257 | }; | 264 | }; |
| 258 | 265 | ||
| 259 | register_posix_clock(CLOCK_REALTIME, &clock_realtime); | 266 | register_posix_clock(CLOCK_REALTIME, &clock_realtime); |
diff --git a/kernel/sched_cpupri.c b/kernel/sched_cpupri.c index e6c251790dde..d014efbf947a 100644 --- a/kernel/sched_cpupri.c +++ b/kernel/sched_cpupri.c | |||
| @@ -81,8 +81,21 @@ int cpupri_find(struct cpupri *cp, struct task_struct *p, | |||
| 81 | if (cpumask_any_and(&p->cpus_allowed, vec->mask) >= nr_cpu_ids) | 81 | if (cpumask_any_and(&p->cpus_allowed, vec->mask) >= nr_cpu_ids) |
| 82 | continue; | 82 | continue; |
| 83 | 83 | ||
| 84 | if (lowest_mask) | 84 | if (lowest_mask) { |
| 85 | cpumask_and(lowest_mask, &p->cpus_allowed, vec->mask); | 85 | cpumask_and(lowest_mask, &p->cpus_allowed, vec->mask); |
| 86 | |||
| 87 | /* | ||
| 88 | * We have to ensure that we have at least one bit | ||
| 89 | * still set in the array, since the map could have | ||
| 90 | * been concurrently emptied between the first and | ||
| 91 | * second reads of vec->mask. If we hit this | ||
| 92 | * condition, simply act as though we never hit this | ||
| 93 | * priority level and continue on. | ||
| 94 | */ | ||
| 95 | if (cpumask_any(lowest_mask) >= nr_cpu_ids) | ||
| 96 | continue; | ||
| 97 | } | ||
| 98 | |||
| 86 | return 1; | 99 | return 1; |
| 87 | } | 100 | } |
| 88 | 101 | ||
diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c index 9ffb2b2ceba4..652e8bdef9aa 100644 --- a/kernel/sched_fair.c +++ b/kernel/sched_fair.c | |||
| @@ -611,9 +611,13 @@ account_entity_dequeue(struct cfs_rq *cfs_rq, struct sched_entity *se) | |||
| 611 | static void enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se) | 611 | static void enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se) |
| 612 | { | 612 | { |
| 613 | #ifdef CONFIG_SCHEDSTATS | 613 | #ifdef CONFIG_SCHEDSTATS |
| 614 | struct task_struct *tsk = NULL; | ||
| 615 | |||
| 616 | if (entity_is_task(se)) | ||
| 617 | tsk = task_of(se); | ||
| 618 | |||
| 614 | if (se->sleep_start) { | 619 | if (se->sleep_start) { |
| 615 | u64 delta = rq_of(cfs_rq)->clock - se->sleep_start; | 620 | u64 delta = rq_of(cfs_rq)->clock - se->sleep_start; |
| 616 | struct task_struct *tsk = task_of(se); | ||
| 617 | 621 | ||
| 618 | if ((s64)delta < 0) | 622 | if ((s64)delta < 0) |
| 619 | delta = 0; | 623 | delta = 0; |
| @@ -624,11 +628,11 @@ static void enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se) | |||
| 624 | se->sleep_start = 0; | 628 | se->sleep_start = 0; |
| 625 | se->sum_sleep_runtime += delta; | 629 | se->sum_sleep_runtime += delta; |
| 626 | 630 | ||
| 627 | account_scheduler_latency(tsk, delta >> 10, 1); | 631 | if (tsk) |
| 632 | account_scheduler_latency(tsk, delta >> 10, 1); | ||
| 628 | } | 633 | } |
| 629 | if (se->block_start) { | 634 | if (se->block_start) { |
| 630 | u64 delta = rq_of(cfs_rq)->clock - se->block_start; | 635 | u64 delta = rq_of(cfs_rq)->clock - se->block_start; |
| 631 | struct task_struct *tsk = task_of(se); | ||
| 632 | 636 | ||
| 633 | if ((s64)delta < 0) | 637 | if ((s64)delta < 0) |
| 634 | delta = 0; | 638 | delta = 0; |
| @@ -639,17 +643,19 @@ static void enqueue_sleeper(struct cfs_rq *cfs_rq, struct sched_entity *se) | |||
| 639 | se->block_start = 0; | 643 | se->block_start = 0; |
| 640 | se->sum_sleep_runtime += delta; | 644 | se->sum_sleep_runtime += delta; |
| 641 | 645 | ||
| 642 | /* | 646 | if (tsk) { |
| 643 | * Blocking time is in units of nanosecs, so shift by 20 to | 647 | /* |
| 644 | * get a milliseconds-range estimation of the amount of | 648 | * Blocking time is in units of nanosecs, so shift by |
| 645 | * time that the task spent sleeping: | 649 | * 20 to get a milliseconds-range estimation of the |
| 646 | */ | 650 | * amount of time that the task spent sleeping: |
| 647 | if (unlikely(prof_on == SLEEP_PROFILING)) { | 651 | */ |
| 648 | 652 | if (unlikely(prof_on == SLEEP_PROFILING)) { | |
| 649 | profile_hits(SLEEP_PROFILING, (void *)get_wchan(tsk), | 653 | profile_hits(SLEEP_PROFILING, |
| 650 | delta >> 20); | 654 | (void *)get_wchan(tsk), |
| 655 | delta >> 20); | ||
| 656 | } | ||
| 657 | account_scheduler_latency(tsk, delta >> 10, 0); | ||
| 651 | } | 658 | } |
| 652 | account_scheduler_latency(tsk, delta >> 10, 0); | ||
| 653 | } | 659 | } |
| 654 | #endif | 660 | #endif |
| 655 | } | 661 | } |
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index 1f3ec2afa511..1e1d23c26308 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c | |||
| @@ -1662,7 +1662,7 @@ ftrace_regex_open(struct inode *inode, struct file *file, int enable) | |||
| 1662 | 1662 | ||
| 1663 | mutex_lock(&ftrace_regex_lock); | 1663 | mutex_lock(&ftrace_regex_lock); |
| 1664 | if ((file->f_mode & FMODE_WRITE) && | 1664 | if ((file->f_mode & FMODE_WRITE) && |
| 1665 | !(file->f_flags & O_APPEND)) | 1665 | (file->f_flags & O_TRUNC)) |
| 1666 | ftrace_filter_reset(enable); | 1666 | ftrace_filter_reset(enable); |
| 1667 | 1667 | ||
| 1668 | if (file->f_mode & FMODE_READ) { | 1668 | if (file->f_mode & FMODE_READ) { |
| @@ -2577,7 +2577,7 @@ ftrace_graph_open(struct inode *inode, struct file *file) | |||
| 2577 | 2577 | ||
| 2578 | mutex_lock(&graph_lock); | 2578 | mutex_lock(&graph_lock); |
| 2579 | if ((file->f_mode & FMODE_WRITE) && | 2579 | if ((file->f_mode & FMODE_WRITE) && |
| 2580 | !(file->f_flags & O_APPEND)) { | 2580 | (file->f_flags & O_TRUNC)) { |
| 2581 | ftrace_graph_count = 0; | 2581 | ftrace_graph_count = 0; |
| 2582 | memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs)); | 2582 | memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs)); |
| 2583 | } | 2583 | } |
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c index 8bc8d8afea6a..8930e39b9d8c 100644 --- a/kernel/trace/trace.c +++ b/kernel/trace/trace.c | |||
| @@ -2031,7 +2031,7 @@ static int tracing_open(struct inode *inode, struct file *file) | |||
| 2031 | 2031 | ||
| 2032 | /* If this file was open for write, then erase contents */ | 2032 | /* If this file was open for write, then erase contents */ |
| 2033 | if ((file->f_mode & FMODE_WRITE) && | 2033 | if ((file->f_mode & FMODE_WRITE) && |
| 2034 | !(file->f_flags & O_APPEND)) { | 2034 | (file->f_flags & O_TRUNC)) { |
| 2035 | long cpu = (long) inode->i_private; | 2035 | long cpu = (long) inode->i_private; |
| 2036 | 2036 | ||
| 2037 | if (cpu == TRACE_PIPE_ALL_CPU) | 2037 | if (cpu == TRACE_PIPE_ALL_CPU) |
| @@ -3085,7 +3085,8 @@ tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter) | |||
| 3085 | break; | 3085 | break; |
| 3086 | } | 3086 | } |
| 3087 | 3087 | ||
| 3088 | trace_consume(iter); | 3088 | if (ret != TRACE_TYPE_NO_CONSUME) |
| 3089 | trace_consume(iter); | ||
| 3089 | rem -= count; | 3090 | rem -= count; |
| 3090 | if (!find_next_entry_inc(iter)) { | 3091 | if (!find_next_entry_inc(iter)) { |
| 3091 | rem = 0; | 3092 | rem = 0; |
| @@ -4233,8 +4234,11 @@ static void __ftrace_dump(bool disable_tracing) | |||
| 4233 | iter.pos = -1; | 4234 | iter.pos = -1; |
| 4234 | 4235 | ||
| 4235 | if (find_next_entry_inc(&iter) != NULL) { | 4236 | if (find_next_entry_inc(&iter) != NULL) { |
| 4236 | print_trace_line(&iter); | 4237 | int ret; |
| 4237 | trace_consume(&iter); | 4238 | |
| 4239 | ret = print_trace_line(&iter); | ||
| 4240 | if (ret != TRACE_TYPE_NO_CONSUME) | ||
| 4241 | trace_consume(&iter); | ||
| 4238 | } | 4242 | } |
| 4239 | 4243 | ||
| 4240 | trace_printk_seq(&iter.seq); | 4244 | trace_printk_seq(&iter.seq); |
diff --git a/kernel/trace/trace_events.c b/kernel/trace/trace_events.c index 53c8fd376a88..23d2972b22d6 100644 --- a/kernel/trace/trace_events.c +++ b/kernel/trace/trace_events.c | |||
| @@ -376,7 +376,7 @@ ftrace_event_seq_open(struct inode *inode, struct file *file) | |||
| 376 | const struct seq_operations *seq_ops; | 376 | const struct seq_operations *seq_ops; |
| 377 | 377 | ||
| 378 | if ((file->f_mode & FMODE_WRITE) && | 378 | if ((file->f_mode & FMODE_WRITE) && |
| 379 | !(file->f_flags & O_APPEND)) | 379 | (file->f_flags & O_TRUNC)) |
| 380 | ftrace_clear_events(); | 380 | ftrace_clear_events(); |
| 381 | 381 | ||
| 382 | seq_ops = inode->i_private; | 382 | seq_ops = inode->i_private; |
diff --git a/kernel/trace/trace_functions_graph.c b/kernel/trace/trace_functions_graph.c index d2249abafb53..420ec3487579 100644 --- a/kernel/trace/trace_functions_graph.c +++ b/kernel/trace/trace_functions_graph.c | |||
| @@ -843,9 +843,16 @@ print_graph_function(struct trace_iterator *iter) | |||
| 843 | 843 | ||
| 844 | switch (entry->type) { | 844 | switch (entry->type) { |
| 845 | case TRACE_GRAPH_ENT: { | 845 | case TRACE_GRAPH_ENT: { |
| 846 | struct ftrace_graph_ent_entry *field; | 846 | /* |
| 847 | * print_graph_entry() may consume the current event, | ||
| 848 | * thus @field may become invalid, so we need to save it. | ||
| 849 | * sizeof(struct ftrace_graph_ent_entry) is very small, | ||
| 850 | * it can be safely saved at the stack. | ||
| 851 | */ | ||
| 852 | struct ftrace_graph_ent_entry *field, saved; | ||
| 847 | trace_assign_type(field, entry); | 853 | trace_assign_type(field, entry); |
| 848 | return print_graph_entry(field, s, iter); | 854 | saved = *field; |
| 855 | return print_graph_entry(&saved, s, iter); | ||
| 849 | } | 856 | } |
| 850 | case TRACE_GRAPH_RET: { | 857 | case TRACE_GRAPH_RET: { |
| 851 | struct ftrace_graph_ret_entry *field; | 858 | struct ftrace_graph_ret_entry *field; |
diff --git a/kernel/trace/trace_printk.c b/kernel/trace/trace_printk.c index 7b6278110827..687699d365ae 100644 --- a/kernel/trace/trace_printk.c +++ b/kernel/trace/trace_printk.c | |||
| @@ -176,7 +176,7 @@ static int t_show(struct seq_file *m, void *v) | |||
| 176 | const char *str = *fmt; | 176 | const char *str = *fmt; |
| 177 | int i; | 177 | int i; |
| 178 | 178 | ||
| 179 | seq_printf(m, "0x%lx : \"", (unsigned long)fmt); | 179 | seq_printf(m, "0x%lx : \"", *(unsigned long *)fmt); |
| 180 | 180 | ||
| 181 | /* | 181 | /* |
| 182 | * Tabs and new lines need to be converted. | 182 | * Tabs and new lines need to be converted. |
diff --git a/lib/flex_array.c b/lib/flex_array.c index 0e7894ce8882..08f1636d296a 100644 --- a/lib/flex_array.c +++ b/lib/flex_array.c | |||
| @@ -254,7 +254,6 @@ void *flex_array_get(struct flex_array *fa, int element_nr) | |||
| 254 | { | 254 | { |
| 255 | int part_nr = fa_element_to_part_nr(fa, element_nr); | 255 | int part_nr = fa_element_to_part_nr(fa, element_nr); |
| 256 | struct flex_array_part *part; | 256 | struct flex_array_part *part; |
| 257 | int index; | ||
| 258 | 257 | ||
| 259 | if (element_nr >= fa->total_nr_elements) | 258 | if (element_nr >= fa->total_nr_elements) |
| 260 | return NULL; | 259 | return NULL; |
| @@ -264,6 +263,5 @@ void *flex_array_get(struct flex_array *fa, int element_nr) | |||
| 264 | part = (struct flex_array_part *)&fa->parts[0]; | 263 | part = (struct flex_array_part *)&fa->parts[0]; |
| 265 | else | 264 | else |
| 266 | part = fa->parts[part_nr]; | 265 | part = fa->parts[part_nr]; |
| 267 | index = index_inside_part(fa, element_nr); | ||
| 268 | return &part->elements[index_inside_part(fa, element_nr)]; | 266 | return &part->elements[index_inside_part(fa, element_nr)]; |
| 269 | } | 267 | } |
diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl index 7109e2b5bc0a..d29baa2e063a 100755 --- a/scripts/recordmcount.pl +++ b/scripts/recordmcount.pl | |||
| @@ -403,7 +403,6 @@ while (<IN>) { | |||
| 403 | # section found, now is this a start of a function? | 403 | # section found, now is this a start of a function? |
| 404 | } elsif ($read_function && /$function_regex/) { | 404 | } elsif ($read_function && /$function_regex/) { |
| 405 | $text_found = 1; | 405 | $text_found = 1; |
| 406 | $offset = hex $1; | ||
| 407 | $text = $2; | 406 | $text = $2; |
| 408 | 407 | ||
| 409 | # if this is either a local function or a weak function | 408 | # if this is either a local function or a weak function |
| @@ -412,10 +411,12 @@ while (<IN>) { | |||
| 412 | if (!defined($locals{$text}) && !defined($weak{$text})) { | 411 | if (!defined($locals{$text}) && !defined($weak{$text})) { |
| 413 | $ref_func = $text; | 412 | $ref_func = $text; |
| 414 | $read_function = 0; | 413 | $read_function = 0; |
| 414 | $offset = hex $1; | ||
| 415 | } else { | 415 | } else { |
| 416 | # if we already have a function, and this is weak, skip it | 416 | # if we already have a function, and this is weak, skip it |
| 417 | if (!defined($ref_func) || !defined($weak{$text})) { | 417 | if (!defined($ref_func) && !defined($weak{$text})) { |
| 418 | $ref_func = $text; | 418 | $ref_func = $text; |
| 419 | $offset = hex $1; | ||
| 419 | } | 420 | } |
| 420 | } | 421 | } |
| 421 | } elsif ($read_headers && /$mcount_section/) { | 422 | } elsif ($read_headers && /$mcount_section/) { |
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index a5e9b876ca09..4b20fa47c3ab 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
| @@ -345,7 +345,7 @@ BUILTIN_OBJS += builtin-stat.o | |||
| 345 | BUILTIN_OBJS += builtin-top.o | 345 | BUILTIN_OBJS += builtin-top.o |
| 346 | 346 | ||
| 347 | PERFLIBS = $(LIB_FILE) | 347 | PERFLIBS = $(LIB_FILE) |
| 348 | EXTLIBS = -lbfd | 348 | EXTLIBS = -lbfd -liberty |
| 349 | 349 | ||
| 350 | # | 350 | # |
| 351 | # Platform specific tweaks | 351 | # Platform specific tweaks |
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index b20a4b6e31b7..ce4f28645e64 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c | |||
| @@ -99,6 +99,7 @@ struct comm_event { | |||
| 99 | struct fork_event { | 99 | struct fork_event { |
| 100 | struct perf_event_header header; | 100 | struct perf_event_header header; |
| 101 | u32 pid, ppid; | 101 | u32 pid, ppid; |
| 102 | u32 tid, ptid; | ||
| 102 | }; | 103 | }; |
| 103 | 104 | ||
| 104 | struct lost_event { | 105 | struct lost_event { |
| @@ -252,7 +253,7 @@ static int strcommon(const char *pathname) | |||
| 252 | { | 253 | { |
| 253 | int n = 0; | 254 | int n = 0; |
| 254 | 255 | ||
| 255 | while (pathname[n] == cwd[n] && n < cwdlen) | 256 | while (n < cwdlen && pathname[n] == cwd[n]) |
| 256 | ++n; | 257 | ++n; |
| 257 | 258 | ||
| 258 | return n; | 259 | return n; |
| @@ -1608,15 +1609,27 @@ process_comm_event(event_t *event, unsigned long offset, unsigned long head) | |||
| 1608 | } | 1609 | } |
| 1609 | 1610 | ||
| 1610 | static int | 1611 | static int |
| 1611 | process_fork_event(event_t *event, unsigned long offset, unsigned long head) | 1612 | process_task_event(event_t *event, unsigned long offset, unsigned long head) |
| 1612 | { | 1613 | { |
| 1613 | struct thread *thread = threads__findnew(event->fork.pid); | 1614 | struct thread *thread = threads__findnew(event->fork.pid); |
| 1614 | struct thread *parent = threads__findnew(event->fork.ppid); | 1615 | struct thread *parent = threads__findnew(event->fork.ppid); |
| 1615 | 1616 | ||
| 1616 | dprintf("%p [%p]: PERF_EVENT_FORK: %d:%d\n", | 1617 | dprintf("%p [%p]: PERF_EVENT_%s: (%d:%d):(%d:%d)\n", |
| 1617 | (void *)(offset + head), | 1618 | (void *)(offset + head), |
| 1618 | (void *)(long)(event->header.size), | 1619 | (void *)(long)(event->header.size), |
| 1619 | event->fork.pid, event->fork.ppid); | 1620 | event->header.type == PERF_EVENT_FORK ? "FORK" : "EXIT", |
| 1621 | event->fork.pid, event->fork.tid, | ||
| 1622 | event->fork.ppid, event->fork.ptid); | ||
| 1623 | |||
| 1624 | /* | ||
| 1625 | * A thread clone will have the same PID for both | ||
| 1626 | * parent and child. | ||
| 1627 | */ | ||
| 1628 | if (thread == parent) | ||
| 1629 | return 0; | ||
| 1630 | |||
| 1631 | if (event->header.type == PERF_EVENT_EXIT) | ||
| 1632 | return 0; | ||
| 1620 | 1633 | ||
| 1621 | if (!thread || !parent || thread__fork(thread, parent)) { | 1634 | if (!thread || !parent || thread__fork(thread, parent)) { |
| 1622 | dprintf("problem processing PERF_EVENT_FORK, skipping event.\n"); | 1635 | dprintf("problem processing PERF_EVENT_FORK, skipping event.\n"); |
| @@ -1706,7 +1719,8 @@ process_event(event_t *event, unsigned long offset, unsigned long head) | |||
| 1706 | return process_comm_event(event, offset, head); | 1719 | return process_comm_event(event, offset, head); |
| 1707 | 1720 | ||
| 1708 | case PERF_EVENT_FORK: | 1721 | case PERF_EVENT_FORK: |
| 1709 | return process_fork_event(event, offset, head); | 1722 | case PERF_EVENT_EXIT: |
| 1723 | return process_task_event(event, offset, head); | ||
| 1710 | 1724 | ||
| 1711 | case PERF_EVENT_LOST: | 1725 | case PERF_EVENT_LOST: |
| 1712 | return process_lost_event(event, offset, head); | 1726 | return process_lost_event(event, offset, head); |
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index c0a423004e15..f139f1ab9333 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c | |||
| @@ -285,6 +285,7 @@ static const char *skip_symbols[] = { | |||
| 285 | "enter_idle", | 285 | "enter_idle", |
| 286 | "exit_idle", | 286 | "exit_idle", |
| 287 | "mwait_idle", | 287 | "mwait_idle", |
| 288 | "mwait_idle_with_hints", | ||
| 288 | "ppc64_runlatch_off", | 289 | "ppc64_runlatch_off", |
| 289 | "pseries_dedicated_idle_sleep", | 290 | "pseries_dedicated_idle_sleep", |
| 290 | NULL | 291 | NULL |
diff --git a/tools/perf/util/quote.c b/tools/perf/util/quote.c index c6e5dc0dc82f..2726fe40eb5d 100644 --- a/tools/perf/util/quote.c +++ b/tools/perf/util/quote.c | |||
| @@ -318,7 +318,7 @@ char *quote_path_relative(const char *in, int len, | |||
| 318 | strbuf_addch(out, '"'); | 318 | strbuf_addch(out, '"'); |
| 319 | if (prefix) { | 319 | if (prefix) { |
| 320 | int off = 0; | 320 | int off = 0; |
| 321 | while (prefix[off] && off < len && prefix[off] == in[off]) | 321 | while (off < len && prefix[off] && prefix[off] == in[off]) |
| 322 | if (prefix[off] == '/') { | 322 | if (prefix[off] == '/') { |
| 323 | prefix += off + 1; | 323 | prefix += off + 1; |
| 324 | in += off + 1; | 324 | in += off + 1; |
diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c index 28106059bf12..b4fe0579bd6b 100644 --- a/tools/perf/util/symbol.c +++ b/tools/perf/util/symbol.c | |||
| @@ -565,7 +565,7 @@ static int dso__load_sym(struct dso *self, int fd, const char *name, | |||
| 565 | goto out_elf_end; | 565 | goto out_elf_end; |
| 566 | 566 | ||
| 567 | secstrs = elf_getdata(sec_strndx, NULL); | 567 | secstrs = elf_getdata(sec_strndx, NULL); |
| 568 | if (symstrs == NULL) | 568 | if (secstrs == NULL) |
| 569 | goto out_elf_end; | 569 | goto out_elf_end; |
| 570 | 570 | ||
| 571 | nr_syms = shdr.sh_size / shdr.sh_entsize; | 571 | nr_syms = shdr.sh_size / shdr.sh_entsize; |
