From owner-cvs-src-old@FreeBSD.ORG Tue Apr 14 23:11:11 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCDCD106566B for ; Tue, 14 Apr 2009 23:11:11 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C9D638FC0C for ; Tue, 14 Apr 2009 23:11:11 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n3ENBBAR054023 for ; Tue, 14 Apr 2009 23:11:11 GMT (envelope-from kmacy@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n3ENBBEC054022 for cvs-src-old@freebsd.org; Tue, 14 Apr 2009 23:11:11 GMT (envelope-from kmacy@repoman.freebsd.org) Message-Id: <200904142311.n3ENBBEC054022@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kmacy@repoman.freebsd.org using -f From: Kip Macy Date: Tue, 14 Apr 2009 23:05:36 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING src/sbin/route keywords route.c src/sys/net radix_mpath.c route.c route.h rtsock.c src/sys/sys param.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Apr 2009 23:11:12 -0000 kmacy 2009-04-14 23:05:36 UTC FreeBSD src repository Modified files: . UPDATING sbin/route keywords route.c sys/net radix_mpath.c route.c route.h rtsock.c sys/sys param.h Log: SVN rev 191080 on 2009-04-14 23:05:36Z by kmacy Extend route command: - add show as alias for get - add weights to allow mpath to do more than equal cost - add sticky / nostick to disable / re-enable per-connection load balancing This adds a field to rt_metrics_lite so network bits of world will need to be re-built. Reviewed by: jeli & qingli Revision Changes Path 1.590 +7 -0 src/UPDATING 1.7 +4 -0 src/sbin/route/keywords 1.91 +20 -11 src/sbin/route/route.c 1.10 +27 -16 src/sys/net/radix_mpath.c 1.153 +103 -58 src/sys/net/route.c 1.80 +10 -6 src/sys/net/route.h 1.168 +8 -6 src/sys/net/rtsock.c 1.398 +1 -1 src/sys/sys/param.h