From owner-p4-projects@FreeBSD.ORG Sun May 29 11:01:53 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 7F5991065673; Sun, 29 May 2011 11:01:53 +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 29C101065670 for ; Sun, 29 May 2011 11:01:53 +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 179718FC13 for ; Sun, 29 May 2011 11:01:53 +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 p4TB1qXh081163 for ; Sun, 29 May 2011 11:01:52 GMT (envelope-from ilya@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p4TB1qZC081160 for perforce@freebsd.org; Sun, 29 May 2011 11:01:52 GMT (envelope-from ilya@FreeBSD.org) Date: Sun, 29 May 2011 11:01:52 GMT Message-Id: <201105291101.p4TB1qZC081160@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 193896 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: Sun, 29 May 2011 11:01:54 -0000 http://p4web.freebsd.org/@@193896?ac=10 Change 193896 by ilya@ilya_triton2011 on 2011/05/29 11:01:08 Rename fuse_session.h -> fuse_ipc.h Affected files ... .. //depot/projects/soc2011/ilya_fuse/fuse_module/Makefile#7 edit .. //depot/projects/soc2011/ilya_fuse/fuse_module/fmaster.c#2 edit .. //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_device.c#3 edit .. //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_io.c#6 edit .. //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_ipc.h#1 move/add .. //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_msg.c#3 edit .. //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_session.h#2 move/delete .. //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_subr.c#2 edit .. //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_vfsops.c#5 edit .. //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_vnops.c#7 edit Moved files ... .. //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_ipc.h#1 moved from //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_session.h#1 Differences ... ==== //depot/projects/soc2011/ilya_fuse/fuse_module/Makefile#7 (text+ko) ==== @@ -10,7 +10,7 @@ fuse_io.c \ fuse_subr.c \ fuse.h \ - fuse_session.h \ + fuse_ipc.h \ fuse_file.h \ fuse_internal.h \ fuse_io.h \ ==== //depot/projects/soc2011/ilya_fuse/fuse_module/fmaster.c#2 (text+ko) ==== @@ -22,7 +22,7 @@ #include #include "fuse.h" -#include "fuse_session.h" +#include "fuse_ipc.h" #if ! FUSE_KERNELABI_GEQ(7, 5) #define fuse_init_out fuse_init_in_out ==== //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_device.c#3 (text+ko) ==== @@ -26,7 +26,7 @@ #include #include "fuse.h" -#include "fuse_session.h" +#include "fuse_ipc.h" static __inline int fuse_ohead_audit(struct fuse_out_header *ohead, struct uio *uio); ==== //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_io.c#6 (text+ko) ==== @@ -42,7 +42,7 @@ #include "fuse.h" #include "fuse_file.h" #include "fuse_node.h" -#include "fuse_session.h" +#include "fuse_ipc.h" #include "fuse_io.h" int fuse_read_directbackend(struct fuse_io_data *fioda); ==== //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_ipc.h#1 (text+ko) ==== ==== //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_msg.c#3 (text+ko) ==== @@ -24,7 +24,7 @@ #include "fuse.h" #include "fuse_node.h" -#include "fuse_session.h" +#include "fuse_ipc.h" static struct fuse_ticket *fticket_alloc(struct fuse_data *data); static void fticket_refresh(struct fuse_ticket *tick); ==== //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_subr.c#2 (text+ko) ==== @@ -19,7 +19,7 @@ #include #include "fuse.h" -#include "fuse_session.h" +#include "fuse_ipc.h" #if _DEBUG || _DEBUG2G || _DEBUG3G || defined(INVARIANTS) || FUSELIB_CONFORM_BIOREAD int ==== //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_vfsops.c#5 (text+ko) ==== @@ -22,7 +22,7 @@ #include "fuse.h" #include "fuse_node.h" -#include "fuse_session.h" +#include "fuse_ipc.h" #include #include ==== //depot/projects/soc2011/ilya_fuse/fuse_module/fuse_vnops.c#7 (text+ko) ==== @@ -40,7 +40,7 @@ #include "fuse.h" #include "fuse_file.h" #include "fuse_internal.h" -#include "fuse_session.h" +#include "fuse_ipc.h" #include "fuse_node.h" #include "fuse_io.h"