29 Mar, 2010

1 commit

  • Use set_cpus_allowed_ptr rather than set_cpus_allowed.

    The semantic patch that makes this change is as follows:
    (http://coccinelle.lip6.fr/)

    //
    @@
    expression E1,E2;
    @@

    - set_cpus_allowed(E1, cpumask_of_cpu(E2))
    + set_cpus_allowed_ptr(E1, cpumask_of(E2))

    @@
    expression E;
    identifier I;
    @@

    - set_cpus_allowed(E, I)
    + set_cpus_allowed_ptr(E, &I)
    //

    Signed-off-by: Julia Lawall
    Signed-off-by: Paul Mundt

    Julia Lawall
     

15 Sep, 2009

1 commit


14 Oct, 2007

1 commit

  • * git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6: (124 commits)
    sh: allow building for both r2d boards in same binary.
    sh: fix r2d board detection
    sh: Discard .exit.text/.exit.data at runtime.
    sh: Fix up some section alignments in linker script.
    sh: Fix SH-4 DMAC CHCR masking.
    sh: Rip out left-over nommu cond syscall cruft.
    sh: Make kgdb i-cache flushing less inept.
    sh: kgdb section mismatches and tidying.
    sh: cleanup struct irqaction initializers.
    sh: early_printk tidying.
    video: pvr2fb: Add TV (RGB) support to Dreamcast PVR driver.
    sh: Conditionalize gUSA support.
    sh: Follow gUSA preempt changes in __switch_to().
    sh: Tidy up gUSA preempt handling.
    sh: __copy_user() optimizations for small copies.
    sh: clkfwk: Support multi-level clock propagation.
    sh: Fix URAM start address on SH7785.
    sh: Use boot_cpu_data for CPU probe.
    sh: Support extended mode TLB on SH-X3.
    sh: Bump MAX_ACTIVE_REGIONS for SH7785.
    ...

    Linus Torvalds
     

05 Oct, 2007

1 commit


21 Sep, 2007

1 commit


20 Jul, 2007

2 commits

  • Signed-off-by: Paul Mundt

    Paul Mundt
     
  • This gets the SH cpufreq working again. We follow the changes
    in the AVR32 implementation for wrapping in to the clock framework.
    CPUs that wish to use this are required to define rate rounding
    primitives in order to satisfy clk_round_rate().

    This works well enough for the common case, though we should
    look at unifying this driver across all of the platforms that
    implement clock framework support in one capacity or another.

    Signed-off-by: Paul Mundt

    Paul Mundt
     

31 Oct, 2005

1 commit

  • I recently picked up my older work to remove unnecessary #includes of
    sched.h, starting from a patch by Dave Jones to not include sched.h
    from module.h. This reduces the number of indirect includes of sched.h
    by ~300. Another ~400 pointless direct includes can be removed after
    this disentangling (patch to follow later).
    However, quite a few indirect includes need to be fixed up for this.

    In order to feed the patches through -mm with as little disturbance as
    possible, I've split out the fixes I accumulated up to now (complete for
    i386 and x86_64, more archs to follow later) and post them before the real
    patch. This way this large part of the patch is kept simple with only
    adding #includes, and all hunks are independent of each other. So if any
    hunk rejects or gets in the way of other patches, just drop it. My scripts
    will pick it up again in the next round.

    Signed-off-by: Tim Schmielau
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Tim Schmielau
     

17 Apr, 2005

1 commit

  • Initial git repository build. I'm not bothering with the full history,
    even though we have it. We can create a separate "historical" git
    archive of that later if we want to, and in the meantime it's about
    3.2GB when imported into git - space that would just make the early
    git days unnecessarily complicated, when we don't have a lot of good
    infrastructure for it.

    Let it rip!

    Linus Torvalds