Re: [patch] allow seeking in linear files

2006-01-28 Thread Jindrich Makovicka
Pavel Tsekov wrote: On Fri, 20 Jan 2006, Jindrich Makovicka wrote: this patch adds an ability to seek in linear files before the first read operation. It is achieved by postponing the actual opening to linear_read() call. The main reason of this is to make ftpfs' reget function work again.

Re: [patch] allow seeking in linear files

2006-01-28 Thread Pavel Tsekov
On Sat, 28 Jan 2006, Jindrich Makovicka wrote: Pavel Tsekov wrote: On Fri, 20 Jan 2006, Jindrich Makovicka wrote: this patch adds an ability to seek in linear files before the first read operation. It is achieved by postponing the actual opening to linear_read() call. The main reason of

Re: [patch] allow seeking in linear files

2006-01-28 Thread Pavel Tsekov
On Sat, 28 Jan 2006, Jindrich Makovicka wrote: Pavel Tsekov wrote: On Fri, 20 Jan 2006, Jindrich Makovicka wrote: this patch adds an ability to seek in linear files before the first read operation. It is achieved by postponing the actual opening to linear_read() call. The main reason of

Re: [patch] allow seeking in linear files

2006-01-25 Thread Jindrich Makovicka
On 1/25/06, Pavel Tsekov [EMAIL PROTECTED] wrote: I've commited your patch with minor changes. Next time, please, provide a changelog. Thank you. I am glad i can finally drop this patch out of my build script. -- Jindrich Makovicka ___ Mc-devel

Re: [patch] allow seeking in linear files

2006-01-24 Thread Jindrich Makovicka
On 1/23/06, Pavel Tsekov [EMAIL PROTECTED] wrote: Hello Jindrich, I see you have submitted this patch several time by now - the first one appears to be from May 2003. Hopefully it will get into CVS this time... So now to the patch - first I'd like to comment the last hunk of your patch: -

Re: [patch] allow seeking in linear files

2006-01-24 Thread Pavel Tsekov
Hello Jindrich, On Tue, 24 Jan 2006, Jindrich Makovicka wrote: On 1/23/06, Pavel Tsekov [EMAIL PROTECTED] wrote: So now to the patch - first I'd like to comment the last hunk of your patch: - n_read_total, ctx-progress_bytes); + n_read_total +

Re: [patch] allow seeking in linear files

2006-01-23 Thread Pavel Tsekov
Hello Jindrich, I see you have submitted this patch several time by now - the first one appears to be from May 2003. Hopefully it will get into CVS this time... So now to the patch - first I'd like to comment the last hunk of your patch: - n_read_total, ctx-progress_bytes); +

[patch] allow seeking in linear files

2006-01-20 Thread Jindrich Makovicka
Hi, this patch adds an ability to seek in linear files before the first read operation. It is achieved by postponing the actual opening to linear_read() call. The main reason of this is to make ftpfs' reget function work again. Modification for fish to work with this change, and a minor fix of