[Ocfs2-commits] jlbec commits r2030 - trunk/fs/usysfs
svn-commits at oss.oracle.com
svn-commits at oss.oracle.com
Mon Mar 21 17:53:03 CST 2005
Author: jlbec
Signed-off-by: mfasheh
Date: 2005-03-21 17:53:02 -0600 (Mon, 21 Mar 2005)
New Revision: 2030
Modified:
trunk/fs/usysfs/bin.c
trunk/fs/usysfs/bobtest.c
trunk/fs/usysfs/dir.c
trunk/fs/usysfs/file.c
trunk/fs/usysfs/inode.c
trunk/fs/usysfs/mount.c
trunk/fs/usysfs/symlink.c
trunk/fs/usysfs/usysfs.h
trunk/fs/usysfs/usysfs_internal.h
Log:
o Fill in GPLv2 stuff
Signed-off-by: mfasheh
Modified: trunk/fs/usysfs/bin.c
===================================================================
--- trunk/fs/usysfs/bin.c 2005-03-21 22:54:17 UTC (rev 2029)
+++ trunk/fs/usysfs/bin.c 2005-03-21 23:53:02 UTC (rev 2030)
@@ -1,7 +1,25 @@
/*
* bin.c - binary file operations for usysfs.
*
- * Changes for usysfs Copyright (c) 2005 Oracle
+ * 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., 59 Temple Place - Suite 330,
+ * Boston, MA 021110-1307, USA.
+ *
+ * Based on sysfs:
+ * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
+ *
+ * usysfs Copyright (C) 2005 Oracle. All rights reserved.
*/
#undef DEBUG
Modified: trunk/fs/usysfs/bobtest.c
===================================================================
--- trunk/fs/usysfs/bobtest.c 2005-03-21 22:54:17 UTC (rev 2029)
+++ trunk/fs/usysfs/bobtest.c 2005-03-21 23:53:02 UTC (rev 2030)
@@ -1,7 +1,25 @@
/*
* vim: noexpandtab ts=8 sts=0 sw=8:
*
- * Copyright (c) 2005 Oracle
+ * 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., 59 Temple Place - Suite 330,
+ * Boston, MA 021110-1307, USA.
+ *
+ * Based on sysfs:
+ * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
+ *
+ * usysfs Copyright (C) 2005 Oracle. All rights reserved.
*/
#include <linux/init.h>
Modified: trunk/fs/usysfs/dir.c
===================================================================
--- trunk/fs/usysfs/dir.c 2005-03-21 22:54:17 UTC (rev 2029)
+++ trunk/fs/usysfs/dir.c 2005-03-21 23:53:02 UTC (rev 2030)
@@ -3,7 +3,25 @@
*
* dir.c - Operations for usysfs directories.
*
- * Changes for usysfs Copyright (c) 2005 Oracle
+ * 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., 59 Temple Place - Suite 330,
+ * Boston, MA 021110-1307, USA.
+ *
+ * Based on sysfs:
+ * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
+ *
+ * usysfs Copyright (C) 2005 Oracle. All rights reserved.
*/
#undef DEBUG
Modified: trunk/fs/usysfs/file.c
===================================================================
--- trunk/fs/usysfs/file.c 2005-03-21 22:54:17 UTC (rev 2029)
+++ trunk/fs/usysfs/file.c 2005-03-21 23:53:02 UTC (rev 2030)
@@ -1,8 +1,27 @@
/* -*- mode: c; c-basic-offset: 8; -*-
* vim: noexpandtab sw=8 ts=8 sts=0:
+ *
* file.c - operations for regular (text) files.
*
- * Changes for usysfs Copyright (c) 2005 Oracle
+ * 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., 59 Temple Place - Suite 330,
+ * Boston, MA 021110-1307, USA.
+ *
+ * Based on sysfs:
+ * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
+ *
+ * usysfs Copyright (C) 2005 Oracle. All rights reserved.
*/
#include <linux/fs.h>
Modified: trunk/fs/usysfs/inode.c
===================================================================
--- trunk/fs/usysfs/inode.c 2005-03-21 22:54:17 UTC (rev 2029)
+++ trunk/fs/usysfs/inode.c 2005-03-21 23:53:02 UTC (rev 2030)
@@ -3,10 +3,26 @@
*
* inode.c - basic inode and dentry operations.
*
- * sysfs is Copyright (c) 2001-3 Patrick Mochel
+ * 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., 59 Temple Place - Suite 330,
+ * Boston, MA 021110-1307, USA.
*
- * Changes for usysfs (c) 2005 Oracle
+ * Based on sysfs:
+ * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
*
+ * usysfs Copyright (C) 2005 Oracle. All rights reserved.
+ *
* Please see Documentation/filesystems/usysfs.txt for more information.
*/
Modified: trunk/fs/usysfs/mount.c
===================================================================
--- trunk/fs/usysfs/mount.c 2005-03-21 22:54:17 UTC (rev 2029)
+++ trunk/fs/usysfs/mount.c 2005-03-21 23:53:02 UTC (rev 2030)
@@ -3,7 +3,25 @@
*
* mount.c - operations for initializing and mounting usysfs.
*
- * Changes for usysfs Copyright (c) 2005 Oracle
+ * 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., 59 Temple Place - Suite 330,
+ * Boston, MA 021110-1307, USA.
+ *
+ * Based on sysfs:
+ * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
+ *
+ * usysfs Copyright (C) 2005 Oracle. All rights reserved.
*/
#define DEBUG 1
Modified: trunk/fs/usysfs/symlink.c
===================================================================
--- trunk/fs/usysfs/symlink.c 2005-03-21 22:54:17 UTC (rev 2029)
+++ trunk/fs/usysfs/symlink.c 2005-03-21 23:53:02 UTC (rev 2030)
@@ -3,7 +3,25 @@
*
* symlink.c - operations for usysfs symlinks.
*
- * Changes for usysfs Copyright (c) 2005 Oracle
+ * 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., 59 Temple Place - Suite 330,
+ * Boston, MA 021110-1307, USA.
+ *
+ * Based on sysfs:
+ * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
+ *
+ * usysfs Copyright (C) 2005 Oracle. All rights reserved.
*/
#include <linux/version.h>
Modified: trunk/fs/usysfs/usysfs.h
===================================================================
--- trunk/fs/usysfs/usysfs.h 2005-03-21 22:54:17 UTC (rev 2029)
+++ trunk/fs/usysfs/usysfs.h 2005-03-21 23:53:02 UTC (rev 2030)
@@ -3,11 +3,27 @@
*
* usysfs.h - definitions for the device driver filesystem
*
- * Copyright (c) 2001,2002 Patrick Mochel
+ * 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., 59 Temple Place - Suite 330,
+ * Boston, MA 021110-1307, USA.
*
+ * Based on sysfs:
+ * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
+ *
+ * usysfs Copyright (C) 2005 Oracle. All rights reserved.
+ *
* Please see Documentation/filesystems/usysfs.txt for more information.
- *
- * Changes for usysfs Copyright (c) 2005 Oracle
*/
#ifndef _USYSFS_H_
Modified: trunk/fs/usysfs/usysfs_internal.h
===================================================================
--- trunk/fs/usysfs/usysfs_internal.h 2005-03-21 22:54:17 UTC (rev 2029)
+++ trunk/fs/usysfs/usysfs_internal.h 2005-03-21 23:53:02 UTC (rev 2030)
@@ -3,7 +3,25 @@
*
* usysfs_internal.h - Internal stuff for usysfs
*
- * Changes for usyfs Copyright (c) 2005 Oracle
+ * 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., 59 Temple Place - Suite 330,
+ * Boston, MA 021110-1307, USA.
+ *
+ * Based on sysfs:
+ * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
+ *
+ * usysfs Copyright (C) 2005 Oracle. All rights reserved.
*/
#include <linux/version.h>
More information about the Ocfs2-commits
mailing list