]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/commit
MFC r204076,r204077,r204083,r205279:
authorpjd <pjd@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Sun, 18 Apr 2010 21:14:49 +0000 (21:14 +0000)
committerpjd <pjd@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Sun, 18 Apr 2010 21:14:49 +0000 (21:14 +0000)
commit24530922de0d609528b9936031d3df60309b457d
treef398b448eafd060df59e90a49e3c34b89d12145d
parentb63c2b95ab97f85fc175741302be501d52ee516c
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.

git-svn-id: svn://svn.freebsd.org/base/stable/8@206810 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
56 files changed:
etc/defaults/rc.conf
etc/rc.d/Makefile
etc/rc.d/hastd [new file with mode: 0644]
sbin/Makefile
sbin/ggate/ggatec/ggatec.c
sbin/ggate/ggatel/ggatel.c
sbin/hastctl/Makefile [new file with mode: 0644]
sbin/hastctl/hastctl.8 [new file with mode: 0644]
sbin/hastctl/hastctl.c [new file with mode: 0644]
sbin/hastd/Makefile [new file with mode: 0644]
sbin/hastd/activemap.c [new file with mode: 0644]
sbin/hastd/activemap.h [new file with mode: 0644]
sbin/hastd/control.c [new file with mode: 0644]
sbin/hastd/control.h [new file with mode: 0644]
sbin/hastd/ebuf.c [new file with mode: 0644]
sbin/hastd/ebuf.h [new file with mode: 0644]
sbin/hastd/hast.conf.5 [new file with mode: 0644]
sbin/hastd/hast.h [new file with mode: 0644]
sbin/hastd/hast_proto.c [new file with mode: 0644]
sbin/hastd/hast_proto.h [new file with mode: 0644]
sbin/hastd/hastd.8 [new file with mode: 0644]
sbin/hastd/hastd.c [new file with mode: 0644]
sbin/hastd/hastd.h [new file with mode: 0644]
sbin/hastd/hooks.c [new file with mode: 0644]
sbin/hastd/hooks.h [new file with mode: 0644]
sbin/hastd/metadata.c [new file with mode: 0644]
sbin/hastd/metadata.h [new file with mode: 0644]
sbin/hastd/nv.c [new file with mode: 0644]
sbin/hastd/nv.h [new file with mode: 0644]
sbin/hastd/parse.y [new file with mode: 0644]
sbin/hastd/pjdlog.c [new file with mode: 0644]
sbin/hastd/pjdlog.h [new file with mode: 0644]
sbin/hastd/primary.c [new file with mode: 0644]
sbin/hastd/proto.c [new file with mode: 0644]
sbin/hastd/proto.h [new file with mode: 0644]
sbin/hastd/proto_common.c [new file with mode: 0644]
sbin/hastd/proto_impl.h [new file with mode: 0644]
sbin/hastd/proto_socketpair.c [new file with mode: 0644]
sbin/hastd/proto_tcp4.c [new file with mode: 0644]
sbin/hastd/proto_uds.c [new file with mode: 0644]
sbin/hastd/rangelock.c [new file with mode: 0644]
sbin/hastd/rangelock.h [new file with mode: 0644]
sbin/hastd/secondary.c [new file with mode: 0644]
sbin/hastd/subr.c [new file with mode: 0644]
sbin/hastd/subr.h [new file with mode: 0644]
sbin/hastd/synch.h [new file with mode: 0644]
sbin/hastd/token.l [new file with mode: 0644]
share/examples/Makefile
share/examples/hast/ucarp.sh [new file with mode: 0755]
share/examples/hast/ucarp_down.sh [new file with mode: 0755]
share/examples/hast/ucarp_up.sh [new file with mode: 0755]
share/examples/hast/vip-down.sh [new file with mode: 0755]
share/examples/hast/vip-up.sh [new file with mode: 0755]
share/man/man5/rc.conf.5
sys/geom/gate/g_gate.c
sys/geom/gate/g_gate.h