Date: Thu, 18 Feb 2010 23:16:19 +0000 (UTC) From: Pawel Jakub Dawidek <pjd@FreeBSD.org> To: cvs-src-old@freebsd.org 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 ... Message-ID: <201002182331.o1INVwwJ087541@repoman.freebsd.org>
index | next in thread | raw e-mail
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
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201002182331.o1INVwwJ087541>
