From owner-freebsd-fs@FreeBSD.ORG Tue Apr 17 17:30:08 2007 Return-Path: X-Original-To: fs@freebsd.org Delivered-To: freebsd-fs@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D88116A407 for ; Tue, 17 Apr 2007 17:30:08 +0000 (UTC) (envelope-from howard0su@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.239]) by mx1.freebsd.org (Postfix) with ESMTP id 3136613C45A for ; Tue, 17 Apr 2007 17:30:08 +0000 (UTC) (envelope-from howard0su@gmail.com) Received: by wr-out-0506.google.com with SMTP id 70so1936048wra for ; Tue, 17 Apr 2007 10:30:07 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=VHK4L4lglZc+dDhtfRK7zuoZBIdpdBg5ZfhaMNhHC88bzNF0/C796gTvkDym5cuje+O2TKh36qayYBc8Rxs2t0JV6G7uo+dl0kLGhnqkVUCl4EEtDcP9DKASg7HMH10ruH80P1YK+IHBPzXtIvfsRSKnz8qJ04m7HWmS+SuQIhk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=cX57le4VJ3+jNY4tkzjCvcrA6nOJN0GHr2NpRXr/XOHdmJo/mntIizV2QYTpuTOtIhG9w7NstAKQndCWZgg/nAS8BemhqxzIQiHKAN5G9KMlQierHRlK5MBXXDEhBOWCNWO6jC4CYQZlJWc3ILqe7P3xMh6lPBJevdv9jh8T3XE= Received: by 10.114.158.1 with SMTP id g1mr1401032wae.1176829277441; Tue, 17 Apr 2007 10:01:17 -0700 (PDT) Received: by 10.114.241.12 with HTTP; Tue, 17 Apr 2007 10:01:17 -0700 (PDT) Message-ID: Date: Tue, 17 Apr 2007 10:01:17 -0700 From: "Howard Su" To: fs@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: handle special file type in tmpfs X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Apr 2007 17:30:08 -0000 I am facing a problem when porting tmpfs. What's the story for FreeBSD to support special type of files, like BLK, CHR, FIFO, SOCKET? I know BLK/CHR will be handled by devfs. How about FIFO & SOCKET? Need any special code to handle them? Or they will be handled by VFS? Even, should tmpfs support them? -- -Howard