Skip to content

Commit

Permalink
[MIPS] SMP: Use ISO C struct initializer for local structs.
Browse files Browse the repository at this point in the history
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Ralf Baechle committed Oct 11, 2007
1 parent c50cade commit 89a8a5a
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions arch/mips/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -407,11 +407,12 @@ void flush_tlb_range(struct vm_area_struct *vma, unsigned long start, unsigned l

preempt_disable();
if ((atomic_read(&mm->mm_users) != 1) || (current->mm != mm)) {
struct flush_tlb_data fd;
struct flush_tlb_data fd = {
.vma = vma,
.addr1 = start,
.addr2 = end,
};

fd.vma = vma;
fd.addr1 = start;
fd.addr2 = end;
smp_on_other_tlbs(flush_tlb_range_ipi, &fd);
} else {
cpumask_t mask = cpu_online_map;
Expand All @@ -435,10 +436,11 @@ static void flush_tlb_kernel_range_ipi(void *info)

void flush_tlb_kernel_range(unsigned long start, unsigned long end)
{
struct flush_tlb_data fd;
struct flush_tlb_data fd = {
.addr1 = start,
.addr2 = end,
};

fd.addr1 = start;
fd.addr2 = end;
on_each_cpu(flush_tlb_kernel_range_ipi, &fd, 1, 1);
}

Expand All @@ -453,10 +455,11 @@ void flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
{
preempt_disable();
if ((atomic_read(&vma->vm_mm->mm_users) != 1) || (current->mm != vma->vm_mm)) {
struct flush_tlb_data fd;
struct flush_tlb_data fd = {
.vma = vma,
.addr1 = page,
};

fd.vma = vma;
fd.addr1 = page;
smp_on_other_tlbs(flush_tlb_page_ipi, &fd);
} else {
cpumask_t mask = cpu_online_map;
Expand Down

0 comments on commit 89a8a5a

Please sign in to comment.