Re: [Qemu-devel] [QEMU : VVFAT] vvfat.c - help required for understanding/modification

2011-10-27 Thread Kevin Wolf
Am 26.10.2011 21:17, schrieb Pintu Kumar: Dear Mr. Johannes, I am sorry but I think you took me wrong. I never asked you to do things for me. I just wanted few clarifications to proceed further as I was stuck after performing few experiments as below: You are stuck because you still

Re: [Qemu-devel] [QEMU : VVFAT] vvfat.c - help required for understanding/modification

2011-10-27 Thread Johannes Schindelin
Hi Kevin, On Thu, 27 Oct 2011, Kevin Wolf wrote: When you have a design to solve the problem (and I believe it might be better to start that from scratch rather than extending vvfat as it would end up being a rewrite anyway), we can discuss that design. I fully agree on all three accounts.

Re: [Qemu-devel] [QEMU : VVFAT] vvfat.c - help required for understanding/modification

2011-10-26 Thread Pintu Kumar
Dear Mr. Johannes, I am sorry but I think you took me wrong. I never asked you to do things for me. I just wanted few clarifications to proceed further as I was stuck after performing few experiments as below: For scanning only top-level directory I used the following approach. You can refer to

Re: [Qemu-devel] [QEMU : VVFAT] vvfat.c - help required for understanding/modification

2011-10-22 Thread Pintu Kumar
Hello Mr. Johannes, Kevin I already did some work for scanning only top level directory in vvfat. Using the following logic in read_directory() if(parent_index = 0 (!dot !dotdot)) { free(buffer); break; } Hope this is correct logic for skipping sub-directories content by just

Re: [Qemu-devel] [QEMU : VVFAT] vvfat.c - help required for understanding/modification

2011-10-22 Thread Johannes Schindelin
Hi Pintu, On Sat, 22 Oct 2011, Pintu Kumar wrote: I already did some work for scanning only top level directory in vvfat. Using the following logic in read_directory() if(parent_index = 0 (!dot !dotdot)) { free(buffer); break; } Sorry, this is way too deep in the code