diff options
-rw-r--r-- | daemons/clvmd/clvmd-corosync.c | 26 | ||||
-rw-r--r-- | daemons/clvmd/clvmd-gulm.c | 28 | ||||
-rw-r--r-- | daemons/clvmd/clvmd-openais.c | 26 | ||||
-rw-r--r-- | daemons/clvmd/refresh_clvmd.c | 1 | ||||
-rw-r--r-- | daemons/clvmd/tcp-comms.c | 35 |
5 files changed, 70 insertions, 46 deletions
diff --git a/daemons/clvmd/clvmd-corosync.c b/daemons/clvmd/clvmd-corosync.c index 239942ca7..37281530f 100644 --- a/daemons/clvmd/clvmd-corosync.c +++ b/daemons/clvmd/clvmd-corosync.c @@ -1,14 +1,20 @@ -/****************************************************************************** -******************************************************************************* -** -** Copyright (C) 2009 Red Hat, Inc. All rights reserved. -** -******************************************************************************* -******************************************************************************/ - -/* This provides the interface between clvmd and corosync/DLM as the cluster - * and lock manager. +/* + * Copyright (C) 2009 Red Hat, Inc. All rights reserved. + * + * This file is part of LVM2. + * + * This copyrighted material is made available to anyone wishing to use, + * modify, copy, or redistribute it subject to the terms and conditions + * of the GNU Lesser General Public License v.2.1. * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* + * This provides the interface between clvmd and corosync/DLM as the cluster + * and lock manager. */ #define _GNU_SOURCE diff --git a/daemons/clvmd/clvmd-gulm.c b/daemons/clvmd/clvmd-gulm.c index 2489f56d9..54dce4d8c 100644 --- a/daemons/clvmd/clvmd-gulm.c +++ b/daemons/clvmd/clvmd-gulm.c @@ -1,13 +1,20 @@ -/****************************************************************************** -******************************************************************************* -** -** Copyright (C) Sistina Software, Inc. 2002-2003 All rights reserved. -** Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved. -** -******************************************************************************* -******************************************************************************/ - -/* This provides the interface between clvmd and gulm as the cluster +/* + * Copyright (C) 2002-2003 Sistina Software, Inc. All rights reserved. + * Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved. + * + * This file is part of LVM2. + * + * This copyrighted material is made available to anyone wishing to use, + * modify, copy, or redistribute it subject to the terms and conditions + * of the GNU Lesser General Public License v.2.1. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* + * This provides the interface between clvmd and gulm as the cluster * and lock manager. * * It also provides the "liblm" functions too as it's hard (and pointless) @@ -17,7 +24,6 @@ * on the cluster nodes. That is done in tcp-comms.c */ - #include <pthread.h> #include <sys/types.h> #include <sys/utsname.h> diff --git a/daemons/clvmd/clvmd-openais.c b/daemons/clvmd/clvmd-openais.c index 7c058a814..f67347e97 100644 --- a/daemons/clvmd/clvmd-openais.c +++ b/daemons/clvmd/clvmd-openais.c @@ -1,14 +1,20 @@ -/****************************************************************************** -******************************************************************************* -** -** Copyright (C) 2007-2009 Red Hat, Inc. All rights reserved. -** -******************************************************************************* -******************************************************************************/ - -/* This provides the interface between clvmd and OpenAIS as the cluster - * and lock manager. +/* + * Copyright (C) 2007-2009 Red Hat, Inc. All rights reserved. + * + * This file is part of LVM2. + * + * This copyrighted material is made available to anyone wishing to use, + * modify, copy, or redistribute it subject to the terms and conditions + * of the GNU Lesser General Public License v.2.1. * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* + * This provides the interface between clvmd and OpenAIS as the cluster + * and lock manager. */ #define _GNU_SOURCE diff --git a/daemons/clvmd/refresh_clvmd.c b/daemons/clvmd/refresh_clvmd.c index 850990c11..cca5e5798 100644 --- a/daemons/clvmd/refresh_clvmd.c +++ b/daemons/clvmd/refresh_clvmd.c @@ -15,7 +15,6 @@ /* * Tell all clvmds in a cluster to refresh their toolcontext - * */ #define _GNU_SOURCE diff --git a/daemons/clvmd/tcp-comms.c b/daemons/clvmd/tcp-comms.c index 306a7eb8a..95fb351f0 100644 --- a/daemons/clvmd/tcp-comms.c +++ b/daemons/clvmd/tcp-comms.c @@ -1,17 +1,24 @@ -/****************************************************************************** -******************************************************************************* -** -** Copyright (C) Sistina Software, Inc. 2002-2003 All rights reserved. -** Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved. -** -******************************************************************************* -******************************************************************************/ - -/* This provides the inter-clvmd communications for a system without CMAN. - There is a listening TCP socket which accepts new connections in the - normal way. - It can also make outgoing connnections to the other clvmd nodes. -*/ +/* + * Copyright (C) 2002-2003 Sistina Software, Inc. All rights reserved. + * Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved. + * + * This file is part of LVM2. + * + * This copyrighted material is made available to anyone wishing to use, + * modify, copy, or redistribute it subject to the terms and conditions + * of the GNU Lesser General Public License v.2.1. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +/* + * This provides the inter-clvmd communications for a system without CMAN. + * There is a listening TCP socket which accepts new connections in the + * normal way. + * It can also make outgoing connnections to the other clvmd nodes. + */ #define _GNU_SOURCE #define _FILE_OFFSET_BITS 64 |