configure                                |   93 +++++-
 debian/changelog                         |  102 +++++++
 doc/ip-cref.tex                          |   21 -
 include/SNAPSHOT.h                       |    2 
 include/libnetlink.h                     |   12 
 include/linux/fib_rules.h                |   17 -
 include/linux/gen_stats.h                |   15 -
 include/linux/if.h                       |   16 -
 include/linux/if_addr.h                  |    9 
 include/linux/if_addrlabel.h             |    6 
 include/linux/if_arp.h                   |    3 
 include/linux/if_link.h                  |   42 +--
 include/linux/if_tunnel.h                |   17 -
 include/linux/if_vlan.h                  |    1 
 include/linux/neighbour.h                |   18 -
 include/linux/netdevice.h                |    3 
 include/linux/netfilter/x_tables.h       |   21 -
 include/linux/netfilter/xt_tcpudp.h      |    6 
 include/linux/netfilter_ipv4/ip_tables.h |   15 -
 include/linux/netlink.h                  |   15 -
 include/linux/pkt_cls.h                  |   84 ++----
 include/linux/pkt_sched.h                |  111 ++-----
 include/linux/rtnetlink.h                |   57 +---
 include/linux/tc_act/tc_gact.h           |    9 
 include/linux/tc_act/tc_ipt.h            |    3 
 include/linux/tc_act/tc_mirred.h         |    6 
 include/linux/tc_act/tc_nat.h            |    6 
 include/linux/tc_act/tc_pedit.h          |    9 
 include/linux/tc_act/tc_skbedit.h        |    2 
 include/linux/tc_ematch/tc_em_cmp.h      |    6 
 include/linux/tc_ematch/tc_em_meta.h     |   15 -
 include/linux/tc_ematch/tc_em_nbyte.h    |    3 
 include/linux/xfrm.h                     |   35 +-
 include/ll_map.h                         |    2 
 ip/Makefile                              |    3 
 ip/ip.c                                  |    5 
 ip/ip6tunnel.c                           |    5 
 ip/ipaddress.c                           |   65 ++++
 ip/iplink_macvlan.c                      |   93 ++++++
 ip/iplink_vlan.c                         |   11 
 ip/ipmroute.c                            |    3 
 ip/ipneigh.c                             |    4 
 ip/iproute.c                             |   31 +-
 ip/iprule.c                              |   17 -
 ip/iptunnel.c                            |    6 
 ip/ipxfrm.c                              |    2 
 ip/xfrm_policy.c                         |    4 
 ip/xfrm_state.c                          |    6 
 lib/Makefile                             |    1 
 lib/libnetlink.c                         |   84 +++---
 lib/ll_map.c                             |   23 +
 lib/utils.c                              |    4 
 man/man8/ip.8                            |   35 +-
 man/man8/tc-drr.8                        |   94 ++++++
 man/man8/tc-prio.8                       |    2 
 man/man8/tc-sfq.8                        |    3 
 man/man8/tc.8                            |    1 
 misc/nstat.c                             |    8 
 misc/ss.c                                |   23 +
 tc/Makefile                              |   15 -
 tc/f_fw.c                                |   16 -
 tc/f_route.c                             |    2 
 tc/f_rsvp.c                              |    2 
 tc/f_tcindex.c                           |    4 
 tc/f_u32.c                               |    2 
 tc/m_skbedit.c                           |   29 +-
 tc/m_xt.c                                |  161 ++---------
 tc/m_xt_old.c                            |  433 +++++++++++++++++++++++++++++++
 tc/q_atm.c                               |    2 
 tc/q_cbq.c                               |    3 
 tc/q_drr.c                               |    1 
 tc/q_dsmark.c                            |    3 
 tc/q_fifo.c                              |    2 
 tc/q_gred.c                              |    7 
 tc/q_htb.c                               |    2 
 tc/q_ingress.c                           |    2 
 tc/q_multiq.c                            |    2 
 tc/q_netem.c                             |    6 
 tc/q_prio.c                              |    8 
 tc/q_red.c                               |   16 -
 tc/q_rr.c                                |    8 
 tc/q_sfq.c                               |    2 
 tc/q_tbf.c                               |    8 
 83 files changed, 1354 insertions(+), 697 deletions(-)

New commits:
commit 38b4b04785452a66c02938210ff3e7ddb511f512
Author: Stephen Hemminger <[email protected]>
Date:   Tue Feb 9 11:13:00 2010 -0800

    20100205-vyatta2

commit a1b9ffccc29f160618d6018d6934d90daa959592
Author: Brian Haley <[email protected]>
Date:   Mon Sep 14 17:01:43 2009 -0400

    ip: print "temporary" for IPv6 temp addresses
    
    IPv6 addresses that have IFA_F_SECONDARY set are actually temporary 
addresses,
    hence the IFA_F_TEMPORARY equivalent.  Change the output in this case and
    allow filtering on the word "temporary".
    
    Signed-off-by: Brian Haley <[email protected]>

commit 63a0f20ac1fb2b98b6e68531b67ad83f09bbd272
Author: Andreas Henriksson <[email protected]>
Date:   Tue Feb 9 10:58:51 2010 -0800

    iproute2: drop equalize support
    
    Currently you can configure "equalize" and it looks all fine and dandy.
    The kernel has the interface defined, but apparently there's never actually
    been any implementation for it (only a never merged patch in the 2.4 era).
    
    I'm suggesting to drop the code to give any potential users of this feature
    the benefit of receiving a proper error message. I see it unlikely that
    this will be implemented in the near future, but if it ever happens
    reviving the iproute2 side should be as easy as git revert this patch.
    
    For more details see http://bugs.debian.org/149897

commit 68769ce5fb7b0ccceb9cd908ac38ed5d6f0ed90a
Author: Stephen Hemminger <[email protected]>
Date:   Fri Feb 5 12:07:40 2010 -0800

    20100205-vyatta1

commit 147450d4cdcc7e1d2825e878ab344b97761e6cdf
Author: Stephen Hemminger <[email protected]>
Date:   Fri Feb 5 12:06:59 2010 -0800

    Fix spelling errors in changelog
    
    Build warning.

commit a982e10a52407ca81b1c9aaec93871ec5b8bdb22
Author: Stephen Hemminger <[email protected]>
Date:   Fri Feb 5 12:02:38 2010 -0800

    iproute2-100205

commit 5080db330ec15be7a1892f49949effd807a996fe
Author: Florian Westphal <[email protected]>
Date:   Mon Jan 18 23:54:02 2010 +0100

    tc: man: add man page for drr scheduler
    
    With help from Patrick McHardy.
    
    Signed-off-by: Florian Westphal <[email protected]>

commit 8d8de1139c95d79bc1b5ac1ec301a30ef5e6ee50
Author: Florian Westphal <[email protected]>
Date:   Tue Jan 12 21:45:01 2010 +0100

    tc: remove stale code
    
    remove unused #define and "ok" statements.
    
    Signed-off-by: Florian Westphal <[email protected]>

commit ddf216c8631195549dbf84e4ebe3da1d77b45ce0
Author: Florian Westphal <[email protected]>
Date:   Tue Jan 12 21:44:29 2010 +0100

    tc: red, gred, tbf: more helpful error messages
    
    $ tc qdisc add dev eth1 root tbf
    RTNETLINK answers: Invalid argument
    
    $ tc qdisc add dev eth1 root red
    RTNETLINK answers: Invalid argument
    
    with patch:
    $ tc qdisc add dev eth1 root red
    Required parameter (min, max, burst, limit, avpkt) is missing
    
    $ tc qdisc add dev eth1 root tbf
    Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS ...
    
    Signed-off-by: Florian Westphal <[email protected]>

commit 9e318455a34bd76ab8b630d9133df830c0112200
Author: Florian Westphal <[email protected]>
Date:   Tue Jan 12 21:43:19 2010 +0100

    tc: man: SO_PRIORITY is described in socket documentation, not tc one
    
    fix up reference: there is no tc(7) man page.
    
    Signed-off-by: Florian Westphal <[email protected]>

commit 60de6507bb94f8d94b663c30847ad63655c7c30a
Author: Florian Westphal <[email protected]>
Date:   Tue Jan 12 21:39:12 2010 +0100

    tc: man: add limit parameter to tc-sfq man page
    
    Signed-off-by: Florian Westphal <[email protected]>

commit e6e0b60f2a3d2720d4d9d6d0a50e3b48deea45e4
Author: Alex Badea <[email protected]>
Date:   Mon Jan 11 17:24:04 2010 +0200

    ip xfrm policy: allow different tmpl family
    
    Allow tmpl IP addresses to have a different family than
    selector addresses.  This is useful in conjunction with
    XFRM_STATE_AF_UNSPEC.
    
    Signed-off-by: Alex Badea <[email protected]>

commit 15bb82c6fb9ae401f48eb7f03179ee6669496bf0
Author: Alex Badea <[email protected]>
Date:   Mon Jan 11 17:23:41 2010 +0200

    ip xfrm state: parse and print "icmp" and "af-unspec" flags
    
    Convert to/from XFRM_STATE_ICMP and XFRM_STATE_AF_UNSPEC state flags.
    
    Signed-off-by: Alex Badea <[email protected]>

commit 14743a78eb774d61fd952c4a4856346ced79b9fb
Author: Andreas Henriksson <[email protected]>
Date:   Fri Jan 1 23:20:30 2010 +0100

    iproute2: avoid using bashisms in configure script.
    
    "function foo" should be "foo()" to work when sh is not bash.
    
    Signed-off-by: Andreas Henriksson <[email protected]>

commit 73152614bcab505198f443d3f79fb090ba458e51
Author: Mike Frysinger <[email protected]>
Date:   Sat Dec 26 14:52:36 2009 -0500

    tc: respect LDFLAGS for %.so targets
    
    Since there aren't any targets that currently use this pattern rule, this
    is more of a proactive fix.
    
    Signed-off-by: Mike Frysinger <[email protected]>

commit d63a9b2b1e4e3eab0d0577d0a0f412d50be1e0a7
Author: Arnd Bergmann <[email protected]>
Date:   Sat Dec 26 11:22:57 2009 -0800

    iproute2/iplink: add macvlan options for bridge mode
    
    Macvlan can now optionally support forwarding between its
    ports, if they are in "bridge" mode. This adds support
    for this option to "ip link add", "ip link set" and "ip
    -d link show".
    
    The default mode in the kernel is now "vepa" mode, meaning
    "virtual ethernet port aggregator". This mode is used
    together with the "hairpin" mode of an ethernet bridge
    that the parent of the macvlan device is connected to.
    All frames still get sent out to the external interface,
    but the adjacent bridge is able to send them back on
    the same wire in hairpin mode, so the macvlan ports
    are able to see each other, which the bridge can be
    configured to monitor and control traffic between
    all macvlan instances. Multicast traffic coming in
    from the external interface is checked for the source
    MAC address and only delivered to ports that have not
    yet seen it.
    
    In bridge mode, macvlan will send all multicast traffic
    to other interfaces that are also in bridge mode but
    not to those in vepa mode, which get them on the way
    back from the hairpin.
    
    The third supported mode is "private", which prevents
    communication between macvlans even if the adjacent
    bridge is in hairpin mode. This behavior is closer to
    the original implementation of macvlan but stricly
    maintains isolation.
    
    Signed-off-by: Arnd Bergmann <[email protected]>

commit a1f277943f86bd6974dfef9f59e5ee43eaeac300
Author: Brian Haley <[email protected]>
Date:   Thu Dec 3 10:39:36 2009 +0000

    Add dadfailed option to ip command
    
    Fix support for IFA_F_DADFAILED and update ip.8 man page.
    
    Signed-off-by: Brian Haley <[email protected]>

commit 85eae222d252546435bb5638b15d46ccfc9df32a
Author: Patrick McHardy <[email protected]>
Date:   Thu Dec 3 20:07:14 2009 +0000

    iprule: add oif classification support
    
    David Miller wrote:
    > From: Patrick McHardy <[email protected]>
    > Date: Mon, 30 Nov 2009 19:00:14 +0100
    >
    >> This patch contains iproute support for iprule oif classification
    >> for the send-to-self RFC I just sent out.
    >
    > Patrick, you need to submit a new version of this patch with
    > the FIB_RULE_* macro fixed, just like the kernel version got
    > fixed.
    
    Thanks for reminind me of this. New patch attached.
    
    commit 0fe5164cbaa1d65dda341075710be71bf1f32d10
    Author: Patrick McHardy <[email protected]>
    Date:   Fri Dec 4 07:06:18 2009 +0100
    
        iprule: add oif classification support
    
        Signed-off-by: Patrick McHardy <[email protected]>

commit e04dd30a38130a3d85065a747cc33274766a9cb6
Author: Jamal Hadi Salim <[email protected]>
Date:   Sat Dec 26 11:12:43 2009 -0800

    skbedit: Add support to mark packets
    
    This adds support for setting the skb mark.
    
    Signed-off-by: Jamal Hadi Salim <[email protected]>
    Signed-off-by: Alexander Duyck <[email protected]>

commit 2180b6b50bdc50e1a7740e5283930088da0bbae7
Author: Patrick McHardy <[email protected]>
Date:   Tue Dec 1 01:21:39 2009 +0000

    iplink_vlan: add support for VLAN loose binding flag
    
    This patch adds support for the VLAN loose binding flag that is
    supported in net-next to iplink_vlan.
    
    commit 870970deb6cbea7a5d4881bdd717304d5284d315
    Author: Patrick McHardy <[email protected]>
    Date:   Tue Dec 1 12:21:15 2009 +0100
    
        iplink_vlan: add support for VLAN loose binding flag
    
        Signed-off-by: Patrick McHardy <[email protected]>

commit ab322673298bd0b8927cdd9d11f3d36af5941b93
Author: Stephen Hemminger <[email protected]>
Date:   Sat Dec 26 11:02:25 2009 -0800

    Update exported kernel headers
    
    These corespond with 2.6.33-rc2

commit abdd9bf7c4a69a41c67432ca28f690463e6abd6b
Author: Stephen Hemminger <[email protected]>
Date:   Sat Dec 26 10:26:44 2009 -0800

    iproute2-091226

commit f1a0125bc090a9310a2a86adc9acf59fc417d44a
Author: Andreas Henriksson <[email protected]>
Date:   Wed Dec 2 05:12:30 2009 +0000

    Slightly improve the configure script.
    
    Split up in functions. Make XT checks bail if previous XT check
    was successful.
    
    This result improves the output of the configure script to not indicate
    using iptables only because the last test failed (when previous ones could
    have already succeded).
    
    Signed-off-by: Andreas Henriksson <[email protected]>

commit 896ebd6c705651abe0a6eedc9c6158a5db6e38d3
Author: Stephen Hemminger <[email protected]>
Date:   Sat Dec 26 10:21:13 2009 -0800

    Fix warning about sprintf() and NSTAT_HIST
    
    The environment variable could contain format characters, causing
    problems. Better to just use it directly.

commit 985f4578c6f14bb85100613776c36cecd26e0d2b
Author: Stephen Hemminger <[email protected]>
Date:   Sat Dec 26 10:20:50 2009 -0800

    Fix warning about strtod() return value

commit b49240ec7eab91418d2f090536bf8cd2205988d6
Author: Simon Horman <[email protected]>
Date:   Thu Dec 3 12:08:27 2009 +1100

    flush secondary addresses before primary ones
    
    Unless promote_secondaries has been active deleting the primary address of
    an interface will automatically delete all the secondary addresses.
    
    In the case where ip flush requests the primary then secondary addresses to
    be removed - which is the order the addresses are returned by the kernel -
    this will cause an error as by the time the request to remove a secondary
    address is made it will be missing as it will have been deleted in the
    course of deleting the primary address.
    
    This approach to solving this problem orders requests for the
    deletion of secondary addresses before primary ones providing
    rtnl_dump_filter_l(), a version of rtnl_dump_filter() that
    iterates over a list of filters. And by providing two specialised
    filters print_addrinfo_secondary() and print_addrinfo_primary().
    
    rtnl_dump_filter_l() first iterates over all addresses using
    print_addrinfo_secondary(), which appends secondary addresses to the
    request buffer.  Then again using print_addrinfo_primary() which appends
    primary addresses.
    
    This approach should work regardless of it promote_secondaries is
    active or not. And regardless of if any primary of secondary addresses
    are present or not.
    
    Signed-off-by: Simon Horman <[email protected]>

commit a36ceb85d7ae6a9742c35417e80ae837ce9f146d
Author: Andreas Henriksson <[email protected]>
Date:   Wed Dec 2 16:11:50 2009 +0100

    Add new (iptables 1.4.5 compatible) tc/ipt/xt module.
    
    Add a new cleaned up m_xt.c based on m_xt_old.c
    The new m_xt.c has been updated to use the new names and new api
    that xtables exposes in iptables 1.4.5.
    All the old internal api cruft has also been dropped.
    
    Additionally, a configure script test is added to check for
    the new xtables api and set the TC_CONFIG_XT flag in Config.
    (tc/Makefile already handles this flag in previous commit.)
    
    Signed-off-by: Andreas Henriksson <[email protected]>

commit 80d689d055b2169b390a7cd4ca2c01ba871d02a2
Author: Andreas Henriksson <[email protected]>
Date:   Wed Dec 2 16:11:21 2009 +0100

    Keep the old tc/ipt/xt module for compatibility.
    
    Move the file and rename the configure flags.
    The file is being kept around for iptables < 1.4.5 compatibility.
    
    Signed-off-by: Andreas Henriksson <[email protected]>

commit 7a96e1997782044cdb834b6c086f6287d0e641c2
Author: Andreas Henriksson <[email protected]>
Date:   Mon Dec 7 13:12:36 2009 +0100

    iproute: make ss --help output to stdout
    
    Peter Palfrader said in http://bugs.debian.org/545008 that
    "--help output, if explicitly requested, should go to stdout, not stderr."
    which this patch fixes.
    
    Additionally, the exit code was adjusted to success if help was
    explicitly requested.
    
    (Syntax error still outputs to stderr and has the same exit code.)
    
    Signed-off-by: Andreas Henriksson <[email protected]>

commit c90308ffc74d1e20c9de9521bfe6560b6b948650
Author: Patrick McHardy <[email protected]>
Date:   Mon Nov 23 12:03:41 2009 +0100

    f_fw: fix compat mode
    
    The kernel takes a lack of options as indication that the fw classifier
    should operate in compatibility mode, where marks are mapped directly to
    classids.
    
    Commit e22b42a (tc mask patch) broke this by adding an empty TCA_OPTIONS
    attribute even if no handle is specified. Restore the old behaviour.
    
    Signed-off-by: Patrick McHardy <[email protected]>

commit 6837f771edf49d5b19c12a2d2760234e86241c48
Author: Andreas Henriksson <[email protected]>
Date:   Mon Nov 23 11:03:52 2009 +0100

    iproute2: use -fPIC in lib/
    
    The static libnetlink.a library is exposed to other users in Debian via the
    "iproute-dev" package. Apparently people are interested in using it in their
    shared libraries and would like to see the code be position independent.
    
    Patch below makes the code under lib/ build with -fPIC.
    
    See http://bugs.debian.org/547602
    
    Signed-off-by: Andreas Henriksson <[email protected]>

commit 080b3ad42820e002b91ab4e3ddb728d2c6763b58
Author: Mark Borst <[email protected]>
Date:   Tue Dec 1 16:15:15 2009 -0800

    iproute: "ip mroute show" doesn't show all output interfaces
    
    The command "ip mroute show" will only show the first Oif.
    
    m...@flappie:~$ ip mroute show
    (192.168.1.1, 224.0.0.123)       Iif: _rename    Oifs: eth1
    
    m...@flappie:~$ cat /proc/net/ip_mr_cache
    Group    Origin   Iif     Pkts    Bytes    Wrong Oifs
    7B0000E0 0101A8C0 2          0        0        0  0:1    1:1
    
    This shows 2 Oifs here. However, ipmroute.c, function read_mroute_list(), 
uses sscanf() with a %s mask for oiflist, which stops after the first 
whitespace (i.e. after Oif 0:1). The patch below fixes this to read until the 
newline (though I'm not sure whether this is the proper way to fix it).
    
    After this patch:
    m...@flappie:~/iproute-20090324/ip$ ./ip mroute show
    (192.168.1.1, 224.0.0.123)       Iif: _rename    Oifs: eth1 eth0
    
    This patch originally submitted as http://bugs.debian.org/550097
    
    Signed-off-by: Andreas Henriksson <[email protected]>

commit f4af851bac12b0a72515912d6e1458d41aa2e009
Author: Brian Haley <[email protected]>
Date:   Tue Dec 1 15:58:44 2009 -0800

    ipv6: Add IFA_F_DADFAILED flag
    
    Add IFA_F_DADFAILED flag to denote an IPv6 address that has
    failed Duplicate Address Detection, that way tools like
    /sbin/ip can be more informative.
    
    3: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qlen 1000
        inet6 2001:db8::1/64 scope global tentative dadfailed
           valid_lft forever preferred_lft forever
    
    Signed-off-by: Brian Haley <[email protected]>

commit ee7ba9875d2b1662fc13a96d082a31cc4258465f
Author: David Ward <[email protected]>
Date:   Thu Oct 15 14:53:13 2009 -0400

    iproute2: Add ll_index_to_addr function
    
    After calling ll_init_map, all of the information stored in the link-layer 
map
    can be retrieved by function calls (ll_index_to_*), except for the 
link-layer
    address. This patch fills the gap by adding a ll_index_to_addr function.
    Changes welcome.
    
    Signed-off-by: David Ward <[email protected]>

commit 71e5815105fb0b86af7df9c719f7c106f05f29c0
Author: Gilad Ben-Yossef <[email protected]>
Date:   Tue Oct 6 15:40:34 2009 +0200

    iproute2 add hoplimit parsing and update usage and documentation
    
    - Parse and handle the hoplimit ip route option and add it to the usage
      line and documentation.
    
    - Add the missing reordering ip route option to the usage line.
    
    - Add documentation for initcwnd ip route option.
    
    Tested by setting hoplimit and retreiving it via "show".
    
    Signed-off-by: Gilad Ben-Yossef <[email protected]>
    [ported to HEAD, fixed a bug with hoplimit lock handling, added 
documentation]
    Signed-off-by: Ori Finkelman <[email protected]>
    Signed-off-by: Yony Amit <[email protected]>

commit 232642c28c5320e6cf1e32f667f866c5f7372bfe
Author: Stephen Hemminger <[email protected]>
Date:   Tue Dec 1 15:49:48 2009 -0800

    Remove Changes: comments
    
    Discourage developers from putting change log in comments
    now that software has been under change control for 5 years.

commit e03dcc040d47e87991314991ba2f79af9fab2218
Author: David Ward <[email protected]>
Date:   Thu Oct 15 14:53:21 2009 -0400

    iproute2: Support 20-byte link layer address in idxmap
    
    Extend the link-layer address field from 8 to 20 bytes to support 
InfiniBand.
    
    Signed-off-by: David Ward <[email protected]>

http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=38b4b04785452a66c02938210ff3e7ddb511f512
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=a1b9ffccc29f160618d6018d6934d90daa959592
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=63a0f20ac1fb2b98b6e68531b67ad83f09bbd272
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=68769ce5fb7b0ccceb9cd908ac38ed5d6f0ed90a
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=147450d4cdcc7e1d2825e878ab344b97761e6cdf
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=a982e10a52407ca81b1c9aaec93871ec5b8bdb22
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=5080db330ec15be7a1892f49949effd807a996fe
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=8d8de1139c95d79bc1b5ac1ec301a30ef5e6ee50
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=ddf216c8631195549dbf84e4ebe3da1d77b45ce0
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=9e318455a34bd76ab8b630d9133df830c0112200
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=60de6507bb94f8d94b663c30847ad63655c7c30a
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=e6e0b60f2a3d2720d4d9d6d0a50e3b48deea45e4
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=15bb82c6fb9ae401f48eb7f03179ee6669496bf0
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=14743a78eb774d61fd952c4a4856346ced79b9fb
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=73152614bcab505198f443d3f79fb090ba458e51
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=d63a9b2b1e4e3eab0d0577d0a0f412d50be1e0a7
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=a1f277943f86bd6974dfef9f59e5ee43eaeac300
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=85eae222d252546435bb5638b15d46ccfc9df32a
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=e04dd30a38130a3d85065a747cc33274766a9cb6
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=2180b6b50bdc50e1a7740e5283930088da0bbae7
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=ab322673298bd0b8927cdd9d11f3d36af5941b93
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=abdd9bf7c4a69a41c67432ca28f690463e6abd6b
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=f1a0125bc090a9310a2a86adc9acf59fc417d44a
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=896ebd6c705651abe0a6eedc9c6158a5db6e38d3
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=985f4578c6f14bb85100613776c36cecd26e0d2b
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=b49240ec7eab91418d2f090536bf8cd2205988d6
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=a36ceb85d7ae6a9742c35417e80ae837ce9f146d
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=80d689d055b2169b390a7cd4ca2c01ba871d02a2
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=7a96e1997782044cdb834b6c086f6287d0e641c2
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=c90308ffc74d1e20c9de9521bfe6560b6b948650
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=6837f771edf49d5b19c12a2d2760234e86241c48
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=080b3ad42820e002b91ab4e3ddb728d2c6763b58
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=f4af851bac12b0a72515912d6e1458d41aa2e009
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=ee7ba9875d2b1662fc13a96d082a31cc4258465f
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=71e5815105fb0b86af7df9c719f7c106f05f29c0
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=232642c28c5320e6cf1e32f667f866c5f7372bfe
http://suva.vyatta.com/git/?p=vyatta-iproute.git;a=commitdiff;h=e03dcc040d47e87991314991ba2f79af9fab2218
_______________________________________________
svn mailing list
[email protected]
http://mailman.vyatta.com/mailman/listinfo/svn

Reply via email to