tag | line | file | source code |
to_reada | 189 | fs/msdos/file.c | int to_reada; /* How many block to read all at once */ |
to_reada | 191 | fs/msdos/file.c | to_reada = count_max / SECTOR_SIZE; |
to_reada | 192 | fs/msdos/file.c | if (count_max & (SECTOR_SIZE-1)) to_reada++; |
to_reada | 198 | fs/msdos/file.c | PRINTK (("to_reada %d ahead %d\n",to_reada,ahead)); |
to_reada | 200 | fs/msdos/file.c | to_reada += ahead; |
to_reada | 202 | fs/msdos/file.c | if (to_reada > MSDOS_PREFETCH) to_reada = MSDOS_PREFETCH; |
to_reada | 204 | fs/msdos/file.c | msdos_prefetch (inode,&pre,to_reada); |