taglinefilesource code
to_reada193fs/msdos/file.cint   to_reada;  /* How many block to read all at once */
to_reada195fs/msdos/file.cto_reada = count_max / SECTOR_SIZE;
to_reada196fs/msdos/file.cif (count_max & (SECTOR_SIZE-1)) to_reada++;
to_reada202fs/msdos/file.cPRINTK (("to_reada %d ahead %d\n",to_reada,ahead));
to_reada204fs/msdos/file.cto_reada += ahead;
to_reada206fs/msdos/file.cif (to_reada > MSDOS_PREFETCH) to_reada = MSDOS_PREFETCH;
to_reada208fs/msdos/file.cmsdos_prefetch (inode,&pre,to_reada);