From owner-cvs-src-old@FreeBSD.ORG Sun Apr 18 21:19:36 2010 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 BB7E41065672 for ; Sun, 18 Apr 2010 21:19:36 +0000 (UTC) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A577B8FC23 for ; Sun, 18 Apr 2010 21:19:36 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o3ILJakn091538 for ; Sun, 18 Apr 2010 21:19:36 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o3ILJa3n091537 for cvs-src-old@freebsd.org; Sun, 18 Apr 2010 21:19:36 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201004182119.o3ILJa3n091537@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Sun, 18 Apr 2010 21:14:49 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/etc/defaults rc.conf src/etc/rc.d Makefile hastd src/sbin Makefile src/sbin/ggate/ggatec ggatec.c src/sbin/ggate/ggatel ggatel.c src/sbin/hastctl Makefile hastctl.8 hastctl.c src/sbin/hastd Makefile activemap.c activemap.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: Sun, 18 Apr 2010 21:19:36 -0000 pjd 2010-04-18 21:14:49 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) etc/defaults rc.conf etc/rc.d Makefile sbin Makefile sbin/ggate/ggatec ggatec.c sbin/ggate/ggatel ggatel.c share/examples Makefile share/man/man5 rc.conf.5 sys/geom/gate g_gate.c g_gate.h Added files: (Branch: RELENG_8) etc/rc.d hastd sbin/hastctl Makefile hastctl.8 hastctl.c sbin/hastd Makefile activemap.c activemap.h control.c control.h ebuf.c ebuf.h hast.conf.5 hast.h hast_proto.c hast_proto.h hastd.8 hastd.c hastd.h hooks.c hooks.h metadata.c metadata.h nv.c nv.h parse.y pjdlog.c pjdlog.h primary.c proto.c proto.h proto_common.c proto_impl.h proto_socketpair.c proto_tcp4.c proto_uds.c rangelock.c rangelock.h secondary.c subr.c subr.h synch.h token.l share/examples/hast ucarp.sh ucarp_down.sh ucarp_up.sh vip-down.sh vip-up.sh Log: SVN rev 206810 on 2010-04-18 21:14:49Z by pjd MFC r204076,r204077,r204083,r205279: r204076: Please welcome HAST - Highly Avalable Storage. HAST allows to transparently store data on two physically separated machines connected over the TCP/IP network. HAST works in Primary-Secondary (Master-Backup, Master-Slave) configuration, which means that only one of the cluster nodes can be active at any given time. Only Primary node is able to handle I/O requests to HAST-managed devices. Currently HAST is limited to two cluster nodes in total. HAST operates on block level - it provides disk-like devices in /dev/hast/ directory for use by file systems and/or applications. Working on block level makes it transparent for file systems and applications. There in no difference between using HAST-provided device and raw disk, partition, etc. All of them are just regular GEOM providers in FreeBSD. For more information please consult hastd(8), hastctl(8) and hast.conf(5) manual pages, as well as http://wiki.FreeBSD.org/HAST. Sponsored by: FreeBSD Foundation Sponsored by: OMCnet Internet Service GmbH Sponsored by: TransIP BV r204077: Remove some lines left over by accident. r204083: Add missing KEYWORD line. Pointed out by: dougb r205279 sys: Simplify loops. Revision Changes Path 1.358.2.11 +3 -0 src/etc/defaults/rc.conf 1.99.2.5 +1 -1 src/etc/rc.d/Makefile 1.3.2.2 +28 -0 src/etc/rc.d/hastd (new) 1.176.2.2 +2 -0 src/sbin/Makefile 1.7.10.2 +1 -1 src/sbin/ggate/ggatec/ggatec.c 1.6.22.2 +1 -1 src/sbin/ggate/ggatel/ggatel.c 1.2.2.2 +36 -0 src/sbin/hastctl/Makefile (new) 1.1.2.2 +217 -0 src/sbin/hastctl/hastctl.8 (new) 1.1.2.2 +526 -0 src/sbin/hastctl/hastctl.c (new) 1.3.2.2 +37 -0 src/sbin/hastd/Makefile (new) 1.1.2.2 +691 -0 src/sbin/hastd/activemap.c (new) 1.1.2.2 +69 -0 src/sbin/hastd/activemap.h (new) 1.1.2.2 +426 -0 src/sbin/hastd/control.c (new) 1.1.2.2 +44 -0 src/sbin/hastd/control.h (new) 1.1.2.2 +252 -0 src/sbin/hastd/ebuf.c (new) 1.1.2.2 +51 -0 src/sbin/hastd/ebuf.h (new) 1.1.2.2 +267 -0 src/sbin/hastd/hast.conf.5 (new) 1.1.2.2 +190 -0 src/sbin/hastd/hast.h (new) 1.1.2.2 +401 -0 src/sbin/hastd/hast_proto.c (new) 1.1.2.2 +48 -0 src/sbin/hastd/hast_proto.h (new) 1.1.2.2 +232 -0 src/sbin/hastd/hastd.8 (new) 1.2.2.2 +522 -0 src/sbin/hastd/hastd.c (new) 1.1.2.2 +48 -0 src/sbin/hastd/hastd.h (new) 1.1.2.2 +148 -0 src/sbin/hastd/hooks.c (new) 1.1.2.2 +40 -0 src/sbin/hastd/hooks.h (new) 1.1.2.2 +222 -0 src/sbin/hastd/metadata.c (new) 1.1.2.2 +48 -0 src/sbin/hastd/metadata.h (new) 1.1.2.2 +882 -0 src/sbin/hastd/nv.c (new) 1.1.2.2 +158 -0 src/sbin/hastd/nv.h (new) 1.1.2.2 +507 -0 src/sbin/hastd/parse.y (new) 1.2.2.2 +367 -0 src/sbin/hastd/pjdlog.c (new) 1.1.2.2 +88 -0 src/sbin/hastd/pjdlog.h (new) 1.3.2.2 +1769 -0 src/sbin/hastd/primary.c (new) 1.1.2.2 +261 -0 src/sbin/hastd/proto.c (new) 1.1.2.2 +54 -0 src/sbin/hastd/proto.h (new) 1.1.2.2 +85 -0 src/sbin/hastd/proto_common.c (new) 1.1.2.2 +75 -0 src/sbin/hastd/proto_impl.h (new) 1.2.2.2 +272 -0 src/sbin/hastd/proto_socketpair.c (new) 1.1.2.2 +447 -0 src/sbin/hastd/proto_tcp4.c (new) 1.1.2.2 +330 -0 src/sbin/hastd/proto_uds.c (new) 1.1.2.2 +137 -0 src/sbin/hastd/rangelock.c (new) 1.1.2.2 +46 -0 src/sbin/hastd/rangelock.h (new) 1.1.2.2 +697 -0 src/sbin/hastd/secondary.c (new) 1.1.2.2 +118 -0 src/sbin/hastd/subr.c (new) 1.1.2.2 +51 -0 src/sbin/hastd/subr.h (new) 1.1.2.2 +162 -0 src/sbin/hastd/synch.h (new) 1.1.2.2 +66 -0 src/sbin/hastd/token.l (new) 1.53.2.4 +6 -0 src/share/examples/Makefile 1.1.2.2 +69 -0 src/share/examples/hast/ucarp.sh (new) 1.1.2.2 +98 -0 src/share/examples/hast/ucarp_down.sh (new) 1.1.2.2 +105 -0 src/share/examples/hast/ucarp_up.sh (new) 1.1.2.2 +5 -0 src/share/examples/hast/vip-down.sh (new) 1.1.2.2 +7 -0 src/share/examples/hast/vip-up.sh (new) 1.360.2.8 +21 -0 src/share/man/man5/rc.conf.5 1.26.10.3 +128 -90 src/sys/geom/gate/g_gate.c 1.10.10.2 +15 -3 src/sys/geom/gate/g_gate.h