From b765b17feaa2e002c87353b720158e7e39ffef7d Mon Sep 17 00:00:00 2001 From: Christof Schmitt Date: Wed, 18 Feb 2015 15:25:02 -0700 Subject: [PATCH] gpfs: Update file headers MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Update file headers to reflect the new code organization and reformat for consistency. Signed-off-by: Christof Schmitt Reviewed-by: Ralph Böhme --- source3/modules/gpfs.c | 3 ++- source3/modules/vfs_gpfs.c | 41 +++++++++++++++++------------------ source3/modules/vfs_gpfs.h | 44 ++++++++++++++++++-------------------- 3 files changed, 43 insertions(+), 45 deletions(-) diff --git a/source3/modules/gpfs.c b/source3/modules/gpfs.c index 9e08a1be247..05ff9926804 100644 --- a/source3/modules/gpfs.c +++ b/source3/modules/gpfs.c @@ -1,7 +1,8 @@ /* * Unix SMB/CIFS implementation. - * Provide a connection to GPFS specific features + * Wrapper for GPFS library * Copyright (C) Volker Lendecke 2005 + * Copyright (C) Christof Schmitt 2015 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index 74617a833cd..c8a5ee27072 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -1,25 +1,24 @@ /* - Unix SMB/CIFS implementation. - Wrap gpfs calls in vfs functions. - - Copyright (C) Christian Ambach 2006 - - Major code contributions by Chetan Shringarpure - and Gomati Mohanan - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ + * Unix SMB/CIFS implementation. + * Samba VFS module for GPFS filesystem + * Copyright (C) Christian Ambach 2006 + * Copyright (C) Christof Schmitt 2015 + * Major code contributions by Chetan Shringarpure + * and Gomati Mohanan + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see . + */ #include "includes.h" #include "smbd/smbd.h" diff --git a/source3/modules/vfs_gpfs.h b/source3/modules/vfs_gpfs.h index a96b0a20bee..40b2c9e8da4 100644 --- a/source3/modules/vfs_gpfs.h +++ b/source3/modules/vfs_gpfs.h @@ -1,27 +1,25 @@ /* - Unix SMB/CIFS implementation. - Wrap gpfs calls in vfs functions. - - Copyright (C) Christian Ambach 2006 - - Major code contributions by Chetan Shringarpure - and Gomati Mohanan - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -*/ + * Unix SMB/CIFS implementation. + * Wrapper for GPFS library + * Copyright (C) Christian Ambach 2006 + * Copyright (C) Christof Schmitt 2015 + * + * Major code contributions by Chetan Shringarpure + * and Gomati Mohanan + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see . + */ #include -- 2.34.1