taglinefilesource code
to_reada194fs/fat/file.cint   to_reada;  /* How many block to read all at once */
to_reada196fs/fat/file.cto_reada = count_max / SECTOR_SIZE;
to_reada197fs/fat/file.cif (count_max & (SECTOR_SIZE-1)) to_reada++;
to_reada203fs/fat/file.cPRINTK (("to_reada %d ahead %d\n",to_reada,ahead));
to_reada205fs/fat/file.cto_reada += ahead;
to_reada207fs/fat/file.cif (to_reada > MSDOS_PREFETCH) to_reada = MSDOS_PREFETCH;
to_reada209fs/fat/file.cfat_prefetch (inode,&pre,to_reada);