From owner-cvs-src-old@FreeBSD.ORG Thu Feb 18 23:31:58 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 7DE9A106566C for ; Thu, 18 Feb 2010 23:31:58 +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 67D498FC0C for ; Thu, 18 Feb 2010 23:31:58 +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 o1INVwNg087542 for ; Thu, 18 Feb 2010 23:31:58 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1INVwwJ087541 for cvs-src-old@freebsd.org; Thu, 18 Feb 2010 23:31:58 GMT (envelope-from pjd@repoman.freebsd.org) Message-Id: <201002182331.o1INVwwJ087541@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pjd@repoman.freebsd.org using -f From: Pawel Jakub Dawidek Date: Thu, 18 Feb 2010 23:16:19 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD 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: Thu, 18 Feb 2010 23:31:58 -0000 pjd 2010-02-18 23:16:19 UTC FreeBSD src repository Modified files: 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: 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 204076 on 2010-02-18 23:16:19Z by pjd 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 Revision Changes Path 1.370 +3 -0 src/etc/defaults/rc.conf 1.104 +1 -1 src/etc/rc.d/Makefile 1.1 +31 -0 src/etc/rc.d/hastd (new) 1.177 +2 -0 src/sbin/Makefile 1.8 +1 -1 src/sbin/ggate/ggatec/ggatec.c 1.7 +1 -1 src/sbin/ggate/ggatel/ggatel.c 1.1 +36 -0 src/sbin/hastctl/Makefile (new) 1.1 +217 -0 src/sbin/hastctl/hastctl.8 (new) 1.1 +526 -0 src/sbin/hastctl/hastctl.c (new) 1.1 +37 -0 src/sbin/hastd/Makefile (new) 1.1 +691 -0 src/sbin/hastd/activemap.c (new) 1.1 +69 -0 src/sbin/hastd/activemap.h (new) 1.1 +426 -0 src/sbin/hastd/control.c (new) 1.1 +44 -0 src/sbin/hastd/control.h (new) 1.1 +252 -0 src/sbin/hastd/ebuf.c (new) 1.1 +51 -0 src/sbin/hastd/ebuf.h (new) 1.1 +267 -0 src/sbin/hastd/hast.conf.5 (new) 1.1 +190 -0 src/sbin/hastd/hast.h (new) 1.1 +401 -0 src/sbin/hastd/hast_proto.c (new) 1.1 +48 -0 src/sbin/hastd/hast_proto.h (new) 1.1 +232 -0 src/sbin/hastd/hastd.8 (new) 1.1 +522 -0 src/sbin/hastd/hastd.c (new) 1.1 +48 -0 src/sbin/hastd/hastd.h (new) 1.1 +148 -0 src/sbin/hastd/hooks.c (new) 1.1 +40 -0 src/sbin/hastd/hooks.h (new) 1.1 +222 -0 src/sbin/hastd/metadata.c (new) 1.1 +48 -0 src/sbin/hastd/metadata.h (new) 1.1 +882 -0 src/sbin/hastd/nv.c (new) 1.1 +158 -0 src/sbin/hastd/nv.h (new) 1.1 +507 -0 src/sbin/hastd/parse.y (new) 1.1 +367 -0 src/sbin/hastd/pjdlog.c (new) 1.1 +88 -0 src/sbin/hastd/pjdlog.h (new) 1.1 +1769 -0 src/sbin/hastd/primary.c (new) 1.1 +261 -0 src/sbin/hastd/proto.c (new) 1.1 +54 -0 src/sbin/hastd/proto.h (new) 1.1 +85 -0 src/sbin/hastd/proto_common.c (new) 1.1 +75 -0 src/sbin/hastd/proto_impl.h (new) 1.1 +272 -0 src/sbin/hastd/proto_socketpair.c (new) 1.1 +447 -0 src/sbin/hastd/proto_tcp4.c (new) 1.1 +330 -0 src/sbin/hastd/proto_uds.c (new) 1.1 +137 -0 src/sbin/hastd/rangelock.c (new) 1.1 +46 -0 src/sbin/hastd/rangelock.h (new) 1.1 +697 -0 src/sbin/hastd/secondary.c (new) 1.1 +118 -0 src/sbin/hastd/subr.c (new) 1.1 +51 -0 src/sbin/hastd/subr.h (new) 1.1 +162 -0 src/sbin/hastd/synch.h (new) 1.1 +66 -0 src/sbin/hastd/token.l (new) 1.56 +6 -0 src/share/examples/Makefile 1.1 +69 -0 src/share/examples/hast/ucarp.sh (new) 1.1 +98 -0 src/share/examples/hast/ucarp_down.sh (new) 1.1 +105 -0 src/share/examples/hast/ucarp_up.sh (new) 1.1 +5 -0 src/share/examples/hast/vip-down.sh (new) 1.1 +7 -0 src/share/examples/hast/vip-up.sh (new) 1.371 +22 -1 src/share/man/man5/rc.conf.5 1.28 +118 -70 src/sys/geom/gate/g_gate.c 1.11 +15 -3 src/sys/geom/gate/g_gate.h