Date: Wed, 17 Aug 2011 10:25:41 GMT From: Ilya Putsikau <ilya@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 197765 for review Message-ID: <201108171025.p7HAPfro029734@skunkworks.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@197765?ac=10 Change 197765 by ilya@ilya_triton2011 on 2011/08/17 10:25:06 Add Google copyright to files Affected files ... .. //depot/projects/soc2011/ilya_fuse/COPYRIGHT#2 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse.h#3 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_debug.h#1 add .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_device.c#2 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_file.c#4 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_file.h#3 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_internal.c#3 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_internal.h#2 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_io.c#4 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_io.h#2 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_ipc.c#3 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_ipc.h#4 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_main.c#2 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_node.c#4 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_node.h#4 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_param.h#2 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_vfsops.c#3 edit .. //depot/projects/soc2011/ilya_fuse/fuse/fuse_vnops.c#5 edit Differences ... ==== //depot/projects/soc2011/ilya_fuse/COPYRIGHT#2 (text+ko) ==== @@ -1,4 +1,5 @@ -Copyright (C) 2005 Csaba Henk. All rights reserved. +Copyright (C) 2005 Csaba Henk. +All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -20,3 +21,42 @@ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +Copyright (c) 2007-2009 Google Inc. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following disclaimer + in the documentation and/or other materials provided with the + distribution. +* Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +Portions of this package were derived from code developed by other authors. +Please read further for specific details. + +* fusefs/fuse_kernel.h is an unmodified copy of the interface header from + the Linux FUSE distribution (http://fuse.sourceforge.net). fuse_kernel.h + can be redistributed either under the GPL or under the BSD license. It + is being redistributed here under the BSD license. ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse.h#3 (text+ko) ==== @@ -1,6 +1,7 @@ /* - * Just macros for switching some features on and off, some allover used macros - * and debugging. + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. + * See COPYRIGHT file for additional information. */ #include "fuse_version.h" ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_device.c#2 (text+ko) ==== @@ -1,5 +1,7 @@ /* - * I/O methods for fuse devices. + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. + * See COPYRIGHT file for additional information. */ #include <sys/types.h> ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_file.c#4 (text+ko) ==== @@ -1,6 +1,8 @@ /* - * Copyright (C) 2006-2008 Google. All Rights Reserved. - * Amit Singh <singh@> + * Copyright (C) 2006-2008 Google. Amit Singh <singh@> + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. + * See COPYRIGHT file for additional information. */ #include <sys/types.h> ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_file.h#3 (text+ko) ==== @@ -1,6 +1,8 @@ /* - * Copyright (C) 2006-2008 Google. All Rights Reserved. - * Amit Singh <singh@> + * Copyright (C) 2006-2008 Google. Amit Singh <singh@> + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. + * See COPYRIGHT file for additional information. */ #ifndef _FUSE_FILE_H_ ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_internal.c#3 (text+ko) ==== @@ -1,6 +1,8 @@ /* - * Copyright (C) 2006-2008 Google. All Rights Reserved. - * Amit Singh <singh@> + * Copyright (C) 2006-2008 Google. Amit Singh <singh@> + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. + * See COPYRIGHT file for additional information. */ #include <sys/types.h> ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_internal.h#2 (text+ko) ==== @@ -1,6 +1,8 @@ /* - * Copyright (C) 2006-2008 Google. All Rights Reserved. - * Amit Singh <singh@> + * Copyright (C) 2006-2008 Google. Amit Singh <singh@> + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. + * See COPYRIGHT file for additional information. */ #ifndef _FUSE_INTERNAL_H_ ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_io.c#4 (text+ko) ==== @@ -1,3 +1,9 @@ +/* + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. + * See COPYRIGHT file for additional information. + */ + #include <sys/types.h> #include <sys/module.h> #include <sys/systm.h> ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_io.h#2 (text+ko) ==== @@ -1,3 +1,9 @@ +/* + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. + * See COPYRIGHT file for additional information. + */ + #ifndef _FUSE_IO_H_ #define _FUSE_IO_H_ ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_ipc.c#3 (text+ko) ==== @@ -1,6 +1,8 @@ /* - * Copyright (C) 2006-2008 Google. All Rights Reserved. - * Amit Singh <singh@> + * Copyright (C) 2006-2008 Google. Amit Singh <singh@> + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. + * See COPYRIGHT file for additional information. */ #include <sys/types.h> ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_ipc.h#4 (text+ko) ==== @@ -1,6 +1,8 @@ /* - * Copyright (C) 2006-2008 Google. All Rights Reserved. - * Amit Singh <singh@> + * Copyright (C) 2006-2008 Google. Amit Singh <singh@> + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. + * See COPYRIGHT file for additional information. */ #ifndef _FUSE_IPC_H_ ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_main.c#2 (text+ko) ==== @@ -1,5 +1,6 @@ /* - * Module load/unload stuff. + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. */ #include <sys/types.h> ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_node.c#4 (text+ko) ==== @@ -1,6 +1,7 @@ /* - * Copyright (C) 2006-2008 Google. All Rights Reserved. - * Amit Singh <singh@> + * Copyright (C) 2006-2008 Google. Amit Singh <singh@> + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. */ #include <sys/types.h> ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_node.h#4 (text+ko) ==== @@ -1,6 +1,7 @@ /* - * Copyright (C) 2006-2008 Google. All Rights Reserved. - * Amit Singh <singh@> + * Copyright (C) 2006-2008 Google. Amit Singh <singh@> + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. */ #ifndef _FUSE_NODE_H_ ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_param.h#2 (text+ko) ==== @@ -1,6 +1,6 @@ /* - * Copyright (C) 2006-2008 Google. All Rights Reserved. - * Amit Singh <singh@> + * Copyright (C) 2006-2008 Google. Amit Singh <singh@> + * All Rights Reserved. */ #ifndef _FUSE_PARAM_H_ ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_vfsops.c#3 (text+ko) ==== @@ -1,6 +1,7 @@ /* - * Copyright (C) 2006-2008 Google. All Rights Reserved. - * Amit Singh <singh@> + * Copyright (C) 2006-2008 Google. Amit Singh <singh@> + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. */ #include <sys/types.h> ==== //depot/projects/soc2011/ilya_fuse/fuse/fuse_vnops.c#5 (text+ko) ==== @@ -1,6 +1,7 @@ /* - * Copyright (C) 2006-2008 Google. All Rights Reserved. - * Amit Singh <singh@> + * Copyright (C) 2006-2008 Google. Amit Singh <singh@> + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. */ #include <sys/types.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201108171025.p7HAPfro029734>