drivers/acpi/battery.c | 2
drivers/acpi/button.c | 2
drivers/acpi/thermal.c | 2
drivers/md/Kconfig | 14 +++
drivers/pci/pci.c | 2
drivers/usb/host/ehci-hcd.c | 2
drivers/usb/host/ohci-hcd.c | 2
drivers/usb/host/uhci-hcd.c | 2
include/asm-generic/vmlinux.lds.h | 6 +
include/linux/init.h | 8 +
init/Kconfig | 11 ++
init/do_mounts.c | 2
init/do_mounts_md.c | 41 +++++++--
init/initramfs.c | 73 ++++++++++++++---
init/main.c | 84 ++++++++++++++++++--
scripts/bootgraph.pl | 156 ++++++++++++++++++++++++++++++++++++++
16 files changed, 370 insertions(+), 39 deletions(-)
New commits:
commit 7b9f428d9af7664754b3cbdbd70c4f232ff9f364
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Thu Nov 13 08:29:41 2008 -0800
tracing.fastboot: put error message on stderr
Since this scripts output is usually redirected, put error messages
on standard error and exit with error code if no data is found.
Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]>
commit 8fc0beb2c4f2deae87afb9c204bb753459d5155f
Author: Stephen Hemminger <[EMAIL PROTECTED]>
Date: Wed Nov 12 10:17:42 2008 -0800
tracing/fastboot: fix perlcritic warning
Fix the following warning from the perl syntax checking tool perlcritic.
This tool is a lint like tool that checks for perl best practices.
Loop iterator is not lexical at line 113, column 1.
See page 108 of PBP. (Severity: 5)
Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]>
commit d3e0f697d5d1b890859d0b096e7d1509270b8da3
Author: Alan Jenkins <[EMAIL PROTECTED]>
Date: Tue Oct 14 14:19:15 2008 +0100
tracing/fastboot: fix row order in bootgraph.pl
When bootgraph.pl parses a file, it gives one row for each initcall's
pid. But they are displayed in random (perl hash) order. Let's
sort the pids by the start time of their first initcall instead.
This helps trace module initcalls, where each has a separate pid.
bootgraph.pl will show module initcalls during the initramfs; it may
also be adapted to show subsequent module initcalls.
Signed-off-by: Alan Jenkins <[EMAIL PROTECTED]>
Acked-by: Frédéric Weisbecker <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit 75aa88745e5d4dccbd1d51c4a337060a3a2f86b2
Author: Alan Jenkins <[EMAIL PROTECTED]>
Date: Tue Oct 14 14:18:07 2008 +0100
tracing/fastboot: fix bootgraph.pl to run with "use strict"
As a perl novice, I would prefer to have the benefit of the interpreters'
wisdom. It turns out there were already some warnings, so let's fix them.
Signed-off-by: Alan Jenkins <[EMAIL PROTECTED]>
Acked-by: Frédéric Weisbecker <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit 6b91a348d7bae3af9be6b145b95a5641cd1467b9
Author: Frederic Weisbecker <[EMAIL PROTECTED]>
Date: Sat Oct 4 21:35:48 2008 +0200
tracing/fastboot: fix initcalls disposition in bootgraph.pl
When bootgraph.pl parses a file, it gives one row
for each initcall's pid. But only few of them will
be displayed => the longest.
This patch corrects it by giving only a rows for pids
which have initcalls that will be displayed.
Signed-off-by: Frederic Weisbecker <[EMAIL PROTECTED]>
Acked-by: Arjan van de Ven <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit b83fc3d2a76d32282ef8087a260218814f015de8
Author: Arnaud Patard <[EMAIL PROTECTED]>
Date: Fri Sep 19 20:16:25 2008 -0700
tracing/fastboot: fix bootgraph.pl initcall name regexp
The regexp used to match the start and the end of an initcall
are matching only on [a-zA-Z\_]. This rules out initcalls with
a number in them. This patch is fixing that.
Signed-off-by: Arnaud Patard <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit 3833dc499e3947e381f25ede97ba848121f0196d
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Sun Sep 14 15:30:52 2008 -0700
tracing/fastboot: fix issues and improve output of bootgraph.pl
David Sanders reported some issues with bootgraph.pl's display
of his sytems bootup; this commit fixes these by scaling the graph
not from 0 - end time but from the first initcall to the end time;
the minimum display size etc also now need to scale with this, as does
the axis display.
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
commit 90b28802f5faa0344803ea7f2137b4029fc36086
Author: Frederic Weisbecker <[EMAIL PROTECTED]>
Date: Sat Oct 4 21:35:48 2008 +0200
tracing/fastboot: fix initcalls disposition in bootgraph.pl
When bootgraph.pl parses a file, it gives one row
for each initcall's pid. But only few of them will
be displayed => the longest.
This patch corrects it by giving only a rows for pids
which have initcalls that will be displayed.
[ [EMAIL PROTECTED]: resolved conflicts ]
Signed-off-by: Frederic Weisbecker <[EMAIL PROTECTED]>
Acked-by: Arjan van de Ven <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit 3f2dad48f0a0618195ea8cec337804bcaff39a81
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Sat Sep 13 09:36:06 2008 -0700
Add a script to visualize the kernel boot process / time
When optimizing the kernel boot time, it's very valuable to visualize
what is going on at which time. In addition, with some of the initializing
going asynchronous soon, it's valuable to track/print which worker thread
is executing the initialization.
This patch adds a script to turn a dmesg into a SVG graph (that can be
shown with tools such as InkScape, Gimp or Firefox) and a small change
to the initcall code to print the PID of the thread calling the initcall
(so that the script can work out the parallelism).
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
commit 150d37a2426dbd4d7718ce9acd408dcdb42b5d2f
Author: KOSAKI Motohiro <[EMAIL PROTECTED]>
Date: Sat Oct 4 19:09:08 2008 +0900
fastboot: fix build error of autodetect_raid()
md.git removes an #include <linux/delay.h> from md.h which generates
this build error:
> CC init/do_mounts_md.o
>init/do_mounts_md.c: In function 'autodetect_raid':
>init/do_mounts_md.c:278: error: implicit declaration of function 'msleep'
>make[1]: *** [init/do_mounts_md.o] Error 1
>make: *** [init] Error 2
add the #include to the right place before the build error can hit
the fastboot tree.
Signed-off-by: KOSAKI Motohiro <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit da827bea62d62cabfe913e05fc05879faa614af8
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Sun Sep 21 15:44:32 2008 -0700
raid: make RAID autodetect default a KConfig option
RAID autodetect has the side effect of requiring synchronisation
of all device drivers, which can make the boot several seconds longer
(I've measured 7 on one of my laptops).... even for systems that don't
have RAID setup for the root filesystem (the only FS where this matters).
This patch makes the default for autodetect a config option; either way
the user can always override via the kernel command line.
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
Acked-by: NeilBrown <[EMAIL PROTECTED]>
commit 3f34372fd593683121ca22d6daf516d2f92c3542
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Fri Sep 19 19:41:15 2008 -0700
use the fancy new printk flags to print the function pointer
Use the new printk format to print function pointers, so that the printk's
are one line and don't get broken up by threading
idea by Andrew Morten
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
commit 91da30b46a696290a6cbcc5d0a8072cc57f51c45
Author: Arnaud Patard <[EMAIL PROTECTED]>
Date: Fri Sep 19 20:16:25 2008 -0700
fastboot: Fix bootgraph.pl initcall name regexp
The regexp used to match the start and the end of an initcall
are matching only on [a-zA-Z\_]. This rules out initcalls with
a number in them. This patch is fixing that.
Signed-off-by: Arnaud Patard <[EMAIL PROTECTED]>
commit 5470e09b98074974316bbf98c8b8da01d670c2a4
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Sun Sep 14 15:30:52 2008 -0700
fastboot: fix issues and improve output of bootgraph.pl
David Sanders reported some issues with bootgraph.pl's display
of his sytems bootup; this commit fixes these by scaling the graph
not from 0 - end time but from the first initcall to the end time;
the minimum display size etc also now need to scale with this, as does
the axis display.
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
commit 77e9695b9d5c9ce761dedc193045d9cb64b8e245
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Sat Sep 13 09:36:06 2008 -0700
Add a script to visualize the kernel boot process / time
When optimizing the kernel boot time, it's very valuable to visualize
what is going on at which time. In addition, with the fastboot asynchronous
initcall level, it's very valuable to see which initcall gets run where
and when.
This patch adds a script to turn a dmesg into a SVG graph (that can be
shown with tools such as InkScape, Gimp or Firefox) and a small change
to the initcall code to print the PID of the thread calling the initcall
(so that the script can work out the parallelism).
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
commit 5e4f25d1f43991324794657655bbbc43983522a2
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Wed Sep 10 08:25:34 2008 -0700
fastboot: fix blackfin breakage due to vmlinux.lds change
As reported by Mike Frysinger, the vmlinux.lds changes should
have used VMLINUX_SYMBOL()...
Reported-by: Mike Frysinger <[EMAIL PROTECTED]>
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
Acked-by: Bryan Wu <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit b4931e6c151acad06b4c12dc7cdb634366d7d27a
Author: Steven Noonan <[EMAIL PROTECTED]>
Date: Mon Sep 8 16:19:10 2008 -0700
init/initramfs.c: unused function when compiling without CONFIG_BLK_DEV_RAM
Fixing compiler warning when the kernel isn't compiled with support
for RAM block devices enabled.
Signed-off-by: Steven Noonan <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit fa3038625d7df2a1244c5b753069e7fdf99af3b5
Author: Ingo Molnar <[EMAIL PROTECTED]>
Date: Mon Aug 18 12:54:00 2008 +0200
warning: fix init do_mounts_md c
fix warning:
init/do_mounts_md.c: In function âmd_run_setupâ:
init/do_mounts_md.c:282: warning: ISO C90 forbids mixed declarations and
code
also, use the opportunity to put the RAID autodetection code
into a separate function - this also solves a checkpatch style warning.
No code changed:
md5:
aa36a35faef371b05f1974ad583bdbbd do_mounts_md.o.before.asm
aa36a35faef371b05f1974ad583bdbbd do_mounts_md.o.after.asm
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit 8929dda869d51b953c8f300864da62297db8a74e
Author: Li, Shaohua <[EMAIL PROTECTED]>
Date: Wed Aug 13 17:26:01 2008 +0800
fastboot: remove duplicate unpack_to_rootfs()
we check if initrd is initramfs first and then do real unpack. The
check isn't required, we can directly do unpack. If initrd isn't
initramfs, we can remove garbage. In my laptop, this saves 0.1s boot
time. This penalizes non-initramfs case, but now initramfs is mostly
widely used.
Signed-off-by: Shaohua Li <[EMAIL PROTECTED]>
Acked-by: Arjan van de Ven <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit 1a23ed42e1baf0481cc70c2f71d97b0bf0f1be70
Author: Ingo Molnar <[EMAIL PROTECTED]>
Date: Thu Jul 31 12:52:29 2008 +0200
fastboot: fix typo in init/Kconfig text
noticed by Randy Dunlap.
Reported-by: Randy Dunlap <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit 799d0da9e645258b9d1ae11d4aac73c9474906e3
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Sun Jul 20 16:30:29 2008 -0700
fastboot: make the RAID autostart code print a message just before waiting
As requested/suggested by Neil Brown: make the raid code print that it's
about to wait for probing to be done as well as give a suggestion on how
to disable the probing if the user doesn't use raid.
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]
commit 1b5a2bd0602010398cb473d1b821a9f1c1399caf
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Sun Jul 20 13:12:16 2008 -0700
fastboot: remove "wait for all devices before mounting root" delay
In the non-initrd case, we wait for all devices to finish their
probing before we try to mount the rootfs.
In practice, this means that we end up waiting 2 extra seconds for
the PS/2 mouse probing even though the root holding device has been
ready since a long time.
The previous two patches in this series made the RAID autodetect code
do it's own "wait for probing to be done" code, and added
"wait and retry" functionality in case the root device isn't actually
available.
These two changes should make it safe to remove the delay itself,
and this patch does this. On my test laptop, this reduces the boot time
by 2 seconds (kernel time goes from 3.9 to 1.9 seconds).
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
commit b52c36a95ed8026b6925fe8595ebcab6921ae62d
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Sun Jul 20 13:07:09 2008 -0700
fastboot: make the raid autodetect code wait for all devices to init
The raid autodetect code really needs to have all devices probed before
it can detect raid arrays; not doing so would give rather messy situations
where arrays would get detected as degraded while they shouldn't be etc.
This is in preparation of removing the "wait for everything to init"
code that makes everyone pay, not just raid users.
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
commit db62cd29f9b9142c19c574ca00916f66ff22ed4a
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Sun Jul 20 13:01:28 2008 -0700
fastboot: retry mounting the root fs if we can't find init
currently we wait until all device init is done before trying to mount
the root fs, and to consequently execute init.
In preparation for relaxing the first delay, this patch adds a retry
attempt in case /sbin/init is not found. Before retrying, the code
will wait for all device init to complete.
While this patch by itself doesn't gain boot time yet (it needs follow on
patches), the alternative already is to panic()...
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
commit a06e1c2b448b317bc141934879cbbbed8319b4d4
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Thu Jul 17 12:24:06 2008 -0700
modules: extend initcall_debug functionality to the module loader
The kernel has this really nice facility where if you put "initcall_debug"
on the kernel commandline, it'll print which function it's going to execute
just before calling an initcall, and then after the call completes it will
1) print if it had an error code
2) checks for a few simple bugs (like leaving irqs off)
and
3) print how long the init call took in milliseconds.
While trying to optimize the boot speed of my laptop, I have been loving
number 3 to figure out what to optimize...
... and then I wished that the same thing was done for module loading.
This patch makes the module loader use this exact same functionality;
it's a logical extension in my view (since modules are just sort of
late binding initcalls anyway) and so far I've found it quite useful
in finding where things are too slow in my boot.
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit 50b6962016b824dfac254b8f36fc6cac301c8a8d
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Sun Jul 20 10:20:49 2008 -0700
fastboot: make fastboot a config option
to mitigate the risks of async bootup, make fastboot a configuration
option...
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit 660625fb93f2fc0e633da9cb71d13d895b385f64
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Sun Jul 20 09:00:41 2008 -0700
fastboot: sync the async execution before late_initcall and move level 6s
(sync) first
Rene Herman points out several cases where it's basically needed to have
all level 6/6a/6s calls done before the level 7 (late_initcall) code
runs. This patch adds a sync point in the transition from the 6's to the
7's.
Second, this patch makes sure that level 6s (sync) happens before the
async code starts, and puts a user in driver/pci in this category that
needs to happen before device init.
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit 3e6558b693dd1e69e3177bc248977f067a769f14
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Sun Jul 20 08:59:24 2008 -0700
fastboot: hold the BKL over the async init call sequence
Regular init calls are called with the BKL held; make sure
the async init calls are also called with the BKL held.
While this reduces parallelism a little, it does provide
lock-for-lock compatibility. The hit to prallelism isn't too
bad, most of the init calls are done immediately or actually
block for their delays.
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit 60ddc2e5c44b4b9f5fcb440065469eacbeabf5eb
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Fri Jul 18 15:17:35 2008 -0700
fastboot: convert a few non-critical ACPI drivers to async initcalls
This patch converts a few non-critical ACPI drivers to async initcalls;
these initcalls (battery, button and thermal) tend to take quite a bit of
time (100's of milliseconds) due to the hardware they need to talk to,
but are otherwise clearly non-essential for the boot process.
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit d1a26186ee222329a797bb0b2c8e2b5bc7d94d42
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Fri Jul 18 15:16:53 2008 -0700
fastboot: turn the USB hostcontroller initcalls into async initcalls
the USB host controller init calls take a long time, mostly due to a
"minimally 100 msec" delay *per port* during initialization.
These are prime candidates for going in parallel to everything else.
The USB device ordering is not affected by this due to the
serialized-within-eachother property of async initcalls.
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
commit ac9103dd8e4dc65c110d6cba9a3380c6c617ffa7
Author: Arjan van de Ven <[EMAIL PROTECTED]>
Date: Fri Jul 18 15:16:08 2008 -0700
fastboot: create a "asynchronous" initlevel
This patch creates an asynchronous initlevel (6a) which is at the same
level as the normal device initcalls, but with the difference that they
are run asynchronous from all the other initcalls. The purpose of this
*selective* level is that we can move long waiting inits that are not
boot-critical to this level one at a time.
To keep things not totally insane, the asynchronous initcalls are async
to the other initcalls, but are still ordered to themselves; think of it
as "bottom-half-not-softirq". This has the benefit that async drivers
still have stable device ordering between them.
Signed-off-by: Arjan van de Ven <[EMAIL PROTECTED]>
Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=7b9f428d9af7664754b3cbdbd70c4f232ff9f364
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=8fc0beb2c4f2deae87afb9c204bb753459d5155f
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=d3e0f697d5d1b890859d0b096e7d1509270b8da3
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=75aa88745e5d4dccbd1d51c4a337060a3a2f86b2
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=6b91a348d7bae3af9be6b145b95a5641cd1467b9
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=b83fc3d2a76d32282ef8087a260218814f015de8
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=3833dc499e3947e381f25ede97ba848121f0196d
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=90b28802f5faa0344803ea7f2137b4029fc36086
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=3f2dad48f0a0618195ea8cec337804bcaff39a81
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=150d37a2426dbd4d7718ce9acd408dcdb42b5d2f
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=da827bea62d62cabfe913e05fc05879faa614af8
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=3f34372fd593683121ca22d6daf516d2f92c3542
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=91da30b46a696290a6cbcc5d0a8072cc57f51c45
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=5470e09b98074974316bbf98c8b8da01d670c2a4
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=77e9695b9d5c9ce761dedc193045d9cb64b8e245
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=5e4f25d1f43991324794657655bbbc43983522a2
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=b4931e6c151acad06b4c12dc7cdb634366d7d27a
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=fa3038625d7df2a1244c5b753069e7fdf99af3b5
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=8929dda869d51b953c8f300864da62297db8a74e
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=1a23ed42e1baf0481cc70c2f71d97b0bf0f1be70
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=799d0da9e645258b9d1ae11d4aac73c9474906e3
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=1b5a2bd0602010398cb473d1b821a9f1c1399caf
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=b52c36a95ed8026b6925fe8595ebcab6921ae62d
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=db62cd29f9b9142c19c574ca00916f66ff22ed4a
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=a06e1c2b448b317bc141934879cbbbed8319b4d4
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=50b6962016b824dfac254b8f36fc6cac301c8a8d
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=660625fb93f2fc0e633da9cb71d13d895b385f64
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=3e6558b693dd1e69e3177bc248977f067a769f14
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=60ddc2e5c44b4b9f5fcb440065469eacbeabf5eb
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=d1a26186ee222329a797bb0b2c8e2b5bc7d94d42
http://suva.vyatta.com/git/?p=linux-vyatta.git;a=commitdiff;h=ac9103dd8e4dc65c110d6cba9a3380c6c617ffa7
_______________________________________________
svn mailing list
[email protected]
http://mailman.vyatta.com/mailman/listinfo/svn