From mboxrd@z Thu Jan 1 00:00:00 1970 From: Swapnil Nagle Subject: Re: Persistent module data Date: Thu, 12 Aug 2004 10:40:43 +0530 Sender: linux-fsdevel-owner@vger.kernel.org Message-ID: <411AFBD3.9030307@rediffmail.com> References: <33598.128.115.223.147.1092244522.squirrel@gaia.ecs.csus.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: linux-fsdevel@vger.kernel.org Return-path: Received: from webmail38.rediffmail.com ([203.199.83.29]:16792 "HELO rediffmail.com") by vger.kernel.org with SMTP id S268401AbUHLFKh (ORCPT ); Thu, 12 Aug 2004 01:10:37 -0400 To: sirpj@ecs.csus.edu In-Reply-To: <33598.128.115.223.147.1092244522.squirrel@gaia.ecs.csus.edu> List-Id: linux-fsdevel.vger.kernel.org > My question is about data preservation from inside a FS... I want to > preserve the contents of my queue in case of a crash. When mount is > called I want to scan this list and rebuild the queues in memory. Is it > possible to write data out to a persistent file from within the system? One way is to write the data out to a character device and have a userspace program poll for it. Regards, Swapnil.