From owner-p4-projects@FreeBSD.ORG Wed Aug 17 10:25:42 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 6809F1065672; Wed, 17 Aug 2011 10:25:42 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2A83B106564A for ; Wed, 17 Aug 2011 10:25:42 +0000 (UTC) (envelope-from ilya@FreeBSD.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 178668FC16 for ; Wed, 17 Aug 2011 10:25:42 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p7HAPfpj029737 for ; Wed, 17 Aug 2011 10:25:41 GMT (envelope-from ilya@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p7HAPfro029734 for perforce@freebsd.org; Wed, 17 Aug 2011 10:25:41 GMT (envelope-from ilya@FreeBSD.org) Date: Wed, 17 Aug 2011 10:25:41 GMT Message-Id: <201108171025.p7HAPfro029734@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to ilya@FreeBSD.org using -f From: Ilya Putsikau To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 197765 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Aug 2011 10:25:42 -0000 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 ==== //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 + * Copyright (C) 2006-2008 Google. Amit Singh + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. + * See COPYRIGHT file for additional information. */ #include ==== //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 + * Copyright (C) 2006-2008 Google. Amit 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 + * Copyright (C) 2006-2008 Google. Amit Singh + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. + * See COPYRIGHT file for additional information. */ #include ==== //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 + * Copyright (C) 2006-2008 Google. Amit 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 #include #include ==== //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 + * Copyright (C) 2006-2008 Google. Amit Singh + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. + * See COPYRIGHT file for additional information. */ #include ==== //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 + * Copyright (C) 2006-2008 Google. Amit 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 ==== //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 + * Copyright (C) 2006-2008 Google. Amit Singh + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. */ #include ==== //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 + * Copyright (C) 2006-2008 Google. Amit 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 + * Copyright (C) 2006-2008 Google. Amit 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 + * Copyright (C) 2006-2008 Google. Amit Singh + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. */ #include ==== //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 + * Copyright (C) 2006-2008 Google. Amit Singh + * Copyright (C) 2005 Csaba Henk. + * All Rights Reserved. */ #include