Re: Treat disk space like memory space

2007-11-25 Thread Pavel Machek
Hi! > So I'd like to be able to say "these areas of my file-system hold data > that you can discard whenever you need space". So I can freely fill up > my disk with such irrelevant data, safe in the knowledge that if I ever > need this disk space it'll be automatically reclaimed. > > [ I

Re: Treat disk space like memory space

2007-11-25 Thread Pavel Machek
Hi! So I'd like to be able to say these areas of my file-system hold data that you can discard whenever you need space. So I can freely fill up my disk with such irrelevant data, safe in the knowledge that if I ever need this disk space it'll be automatically reclaimed. [ I realize this

Re: Treat disk space like memory space

2007-11-16 Thread Jörn Engel
On Fri, 16 November 2007 10:30:12 -0800, H. Peter Anvin wrote: > > This, by the way, has been discussed on and off -- often in the context > of undelete (which is an identical problem.) The problem usually is > that performance of real storage users suffer because of locality > issues.

Re: Treat disk space like memory space

2007-11-16 Thread H. Peter Anvin
Lee Revell wrote: On Nov 15, 2007 5:24 PM, Stefan Monnier <[EMAIL PROTECTED]> wrote: [ I realize this is probably better implemented outside of the kernel, but it seems like it might be of interest here. Please redirect me to a more appropriate place if you can think of one (other than

Re: Treat disk space like memory space

2007-11-16 Thread H. Peter Anvin
Lee Revell wrote: On Nov 15, 2007 5:24 PM, Stefan Monnier [EMAIL PROTECTED] wrote: [ I realize this is probably better implemented outside of the kernel, but it seems like it might be of interest here. Please redirect me to a more appropriate place if you can think of one (other than

Re: Treat disk space like memory space

2007-11-16 Thread Jörn Engel
On Fri, 16 November 2007 10:30:12 -0800, H. Peter Anvin wrote: This, by the way, has been discussed on and off -- often in the context of undelete (which is an identical problem.) The problem usually is that performance of real storage users suffer because of locality issues. However,

Re: Treat disk space like memory space

2007-11-15 Thread Wes Felter
Stefan Monnier wrote: So I'd like to be able to say "these areas of my file-system hold data that you can discard whenever you need space". So I can freely fill up my disk with such irrelevant data, safe in the knowledge that if I ever need this disk space it'll be automatically reclaimed.

Re: Treat disk space like memory space

2007-11-15 Thread Lee Revell
On Nov 15, 2007 5:24 PM, Stefan Monnier <[EMAIL PROTECTED]> wrote: > [ I realize this is probably better implemented outside of the kernel, but > it seems like it might be of interest here. Please redirect me to > a more appropriate place if you can think of one (other than > /dev/null that

Treat disk space like memory space

2007-11-15 Thread Stefan Monnier
The normal situation on the memory is side is that most of the memory is in use, but some pages are ready to be discarded, they're just kept around because we have nothing better to do (yet) with that page. Is there a tool to do something similar with file systems. I have a lot of unimportant

Treat disk space like memory space

2007-11-15 Thread Stefan Monnier
The normal situation on the memory is side is that most of the memory is in use, but some pages are ready to be discarded, they're just kept around because we have nothing better to do (yet) with that page. Is there a tool to do something similar with file systems. I have a lot of unimportant

Re: Treat disk space like memory space

2007-11-15 Thread Lee Revell
On Nov 15, 2007 5:24 PM, Stefan Monnier [EMAIL PROTECTED] wrote: [ I realize this is probably better implemented outside of the kernel, but it seems like it might be of interest here. Please redirect me to a more appropriate place if you can think of one (other than /dev/null that is).

Re: Treat disk space like memory space

2007-11-15 Thread Wes Felter
Stefan Monnier wrote: So I'd like to be able to say these areas of my file-system hold data that you can discard whenever you need space. So I can freely fill up my disk with such irrelevant data, safe in the knowledge that if I ever need this disk space it'll be automatically reclaimed.