Home | History | Annotate | Download | only in common

Lines Matching defs:__volume

54 } __volume;
78 __volume.max_block = (maxblk / (USTAR_BLOCK_SIZE >> DEV_BSHIFT)) *
80 __volume.current_volume = 0;
136 if (vol != __volume.current_volume) {
138 __volume.current_volume = vol;
162 if (vol != __volume.current_volume) {
164 __volume.current_volume = vol;
200 if (blk < __volume.max_block)
203 blk -= __volume.max_block;
205 return (blk / (__volume.max_block - 16)) + 1;
212 if (blk < __volume.max_block)
215 blk -= __volume.max_block;
217 return blk % (__volume.max_block - 16) + 16;
224 return __volume.max_block + vol * (__volume.max_block - 16);