Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935340AbXLQKVg (ORCPT ); Mon, 17 Dec 2007 05:21:36 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932649AbXLQKVZ (ORCPT ); Mon, 17 Dec 2007 05:21:25 -0500 Received: from dsl081-033-126.lax1.dsl.speakeasy.net ([64.81.33.126]:41896 "EHLO bifrost.lang.hm" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932612AbXLQKVY (ORCPT ); Mon, 17 Dec 2007 05:21:24 -0500 Date: Mon, 17 Dec 2007 03:31:48 -0800 (PST) From: david@lang.hm X-X-Sender: dlang@asgard To: Renzo Davoli cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, garden@cs.unibo.it Subject: Re: [PATCH 0/1] IPN: Inter Process Networking In-Reply-To: <20071217092401.GC4356@cs.unibo.it> Message-ID: References: <20071217092401.GC4356@cs.unibo.it> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2086 Lines: 46 On Mon, 17 Dec 2007, Renzo Davoli wrote: > Inter Process Networking (PATCH): > > 1. WHAT IS IPN? > --------------- > > IPN is a new address family designed for one-to-many, many-to-many and > peer-to-peer communication among processes. > Berkeley sockets have been designed for client-server or point-to-point > communication; AF_UNIX does not support multicast/broadcast. AF_IPN > does, in a simple, efficient but extensible way. > IPN is an Inter Process Communication paradigm where all the processes > appear as they were connected by a networking bus. > > On IPN, processes can interoperate using real networking protocols > (e.g. ethernet) but also using application defined protocols (maybe > just sending ascii strings, video or audio frames, etc). > IPN provides networking (in the broaden definition you can imagine) to > the processes. Processes can be ethernet nodes, run their own TCP-IP stacks > if they like (e.g. virtual machines), mount ATAonEthernet disks, etc.etc. > > IPN networks can be interconnected with real networks or IPN networks > running on different computers can interoperate (can be connected by > virtual cables). > > IPN is part of the Virtual Square Project (vde, lwipv6, view-os, > umview/kmview, see wiki.virtualsquare.org). other then the fact that this is bi-directional, how is this better then using pipes and splice? wouldn't it be better to just add the ability for multiple writers to send to the same pipe, and then have all of them splice into the output of that pipe? this would give the same data-agnostic communication that you are looking for, and with the minor detail that software would have to filter out messages that they send, would appear to meet all the goals you are looking at, useing existing kernel features that are designed to be very high performance. David Lang -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/