Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 4059
b: refs/heads/master
c: 86166f9
h: refs/heads/master
i:
  4057: d456246
  4055: e4fbe3b
v: v3
  • Loading branch information
Linus Torvalds committed Jul 2, 2005
1 parent a5cc62c commit 2a5b855
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: db5795547694cf68388aaf8f59723e850f7466f6
refs/heads/master: 86166f9846590fa46f8e24e9346d002e938a8b81
2 changes: 2 additions & 0 deletions trunk/arch/alpha/kernel/irq_alpha.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ do_entInt(unsigned long type, unsigned long vector,
#ifdef CONFIG_SMP
{
long cpu;

local_irq_disable();
smp_percpu_timer_interrupt(regs);
cpu = smp_processor_id();
if (cpu != boot_cpuid) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/alpha/kernel/traps.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ do_entIF(unsigned long type, struct pt_regs *regs)
siginfo_t info;
int signo, code;

if (regs->ps == 0) {
if ((regs->ps & ~IPL_MAX) == 0) {
if (type == 1) {
const unsigned int *data
= (const unsigned int *) regs->pc;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/acpi/pci_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ acpi_pci_irq_enable (
printk(KERN_WARNING PREFIX "PCI Interrupt %s[%c]: no GSI",
pci_name(dev), ('A' + pin));
/* Interrupt Line values above 0xF are forbidden */
if (dev->irq >= 0 && (dev->irq <= 0xF)) {
if (dev->irq > 0 && (dev->irq <= 0xF)) {
printk(" - using IRQ %d\n", dev->irq);
acpi_register_gsi(dev->irq, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW);
return_VALUE(0);
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/fat/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ int __init fat_cache_init(void)
return 0;
}

void __exit fat_cache_destroy(void)
void fat_cache_destroy(void)
{
if (kmem_cache_destroy(fat_cache_cachep))
printk(KERN_INFO "fat_cache: not all structures were freed\n");
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/fat/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,7 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
EXPORT_SYMBOL(fat_fill_super);

int __init fat_cache_init(void);
void __exit fat_cache_destroy(void);
void fat_cache_destroy(void);

static int __init init_fat_fs(void)
{
Expand Down

0 comments on commit 2a5b855

Please sign in to comment.