From owner-freebsd-fs Wed May 31 15:25:23 2000 Delivered-To: freebsd-fs@freebsd.org Received: from arjun.niksun.com (gwnew.niksun.com [206.20.52.130]) by hub.freebsd.org (Postfix) with ESMTP id 5F40E37B54C; Wed, 31 May 2000 15:25:14 -0700 (PDT) (envelope-from joy@niksun.com) Received: from falcon.niksun.com (falcon.niksun.com [10.0.0.167]) by arjun.niksun.com (8.9.3/8.9.3) with ESMTP id SAA59480; Wed, 31 May 2000 18:25:02 -0400 (EDT) (envelope-from joy@falcon.niksun.com) Message-ID: <39359159.F69A3BC@falcon.niksun.com> Date: Wed, 31 May 2000 18:25:30 -0400 From: Joy Ganguly X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-hackers , fs Subject: QUEUE_VMIO...??? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-fs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi all, what is the significance of QUEUE_VMIO buffer (struct buf) queue ?? as far as i could see they are not used at all....but maybe i am wrong. thanx in advance joy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-fs" in the body of the message From owner-freebsd-fs Wed May 31 18:45:20 2000 Delivered-To: freebsd-fs@freebsd.org Received: from mail-relay.eunet.no (mail-relay.eunet.no [193.71.71.242]) by hub.freebsd.org (Postfix) with ESMTP id 407B737BF60 for ; Wed, 31 May 2000 18:45:17 -0700 (PDT) (envelope-from mbendiks@eunet.no) Received: from login-1.eunet.no (login-1.eunet.no [193.75.110.2]) by mail-relay.eunet.no (8.9.3/8.9.3/GN) with ESMTP id DAA15869 for ; Thu, 1 Jun 2000 03:45:14 +0200 (CEST) (envelope-from mbendiks@eunet.no) Received: from localhost (mbendiks@localhost) by login-1.eunet.no (8.9.3/8.8.8) with ESMTP id DAA79267 for ; Thu, 1 Jun 2000 03:45:14 +0200 (CEST) (envelope-from mbendiks@eunet.no) X-Authentication-Warning: login-1.eunet.no: mbendiks owned process doing -bs Date: Thu, 1 Jun 2000 03:45:14 +0200 (CEST) From: Marius Bendiksen To: freebsd-fs@freebsd.org Subject: MIME file types Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-fs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org How about adding MIME types to files, and a VOP to get/set these? It might make sense not to treat this as an extended attribute... Opinions on the likelyhood of committing such a thing if it was added? Or, at least, committing the stubs for such functionality? --- Marius Bendiksen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-fs" in the body of the message From owner-freebsd-fs Wed May 31 23:20:40 2000 Delivered-To: freebsd-fs@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 7B06B37B58A; Wed, 31 May 2000 23:20:35 -0700 (PDT) (envelope-from dillon@apollo.backplane.com) Received: (from dillon@localhost) by apollo.backplane.com (8.9.3/8.9.1) id XAA32748; Wed, 31 May 2000 23:20:31 -0700 (PDT) (envelope-from dillon) Date: Wed, 31 May 2000 23:20:31 -0700 (PDT) From: Matthew Dillon Message-Id: <200006010620.XAA32748@apollo.backplane.com> To: Joy Ganguly Cc: freebsd-hackers , fs Subject: Re: QUEUE_VMIO...??? References: <39359159.F69A3BC@falcon.niksun.com> Sender: owner-freebsd-fs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org :hi all, : :what is the significance of QUEUE_VMIO buffer (struct buf) queue ?? as :far as i could see they are not used at all....but maybe i am wrong. : :thanx in advance : :joy There is no QUEUE_VMIO queue. There's: QUEUE_NONE, QUEUE_LOCKED, QUEUE_CLEAN, QUEUE_DIRTY, QUEUE_EMPTYKVA, and QUEUE_EMPTY. -Matt Matthew Dillon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-fs" in the body of the message From owner-freebsd-fs Wed May 31 23:59:37 2000 Delivered-To: freebsd-fs@freebsd.org Received: from gidora.zeta.org.au (gidora.zeta.org.au [203.26.10.25]) by hub.freebsd.org (Postfix) with SMTP id DA33F37B87E for ; Wed, 31 May 2000 23:59:30 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: (qmail 24759 invoked from network); 1 Jun 2000 06:59:28 -0000 Received: from unknown (HELO bde.zeta.org.au) (203.2.228.102) by gidora.zeta.org.au with SMTP; 1 Jun 2000 06:59:28 -0000 Date: Thu, 1 Jun 2000 16:59:24 +1000 (EST) From: Bruce Evans X-Sender: bde@besplex.bde.org To: Joy Ganguly Cc: freebsd-hackers , fs Subject: Re: QUEUE_VMIO...??? In-Reply-To: <39359159.F69A3BC@falcon.niksun.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-fs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 31 May 2000, Joy Ganguly wrote: > what is the significance of QUEUE_VMIO buffer (struct buf) queue ?? as > far as i could see they are not used at all....but maybe i am wrong. It signifies bitrot. Its use was removed more than 5 years ago in rev.1.35 of sys/kern/vfs_bio.c, but its definition was not removed until less than a year ago in rev.1.75 of sys/sys/buf.h. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-fs" in the body of the message