| 323 |
|
static long nextfragwarn = 100*(1L<<20); |
| 324 |
|
static int idle = 0; |
| 325 |
|
PACKET *pl = NULL, *plend; |
| 326 |
< |
off_t fsiz; |
| 326 |
> |
off_t fsiz, fuse; |
| 327 |
|
int pksiz; |
| 328 |
|
register PACKET *p; |
| 329 |
|
time_t t; |
| 345 |
|
} |
| 346 |
|
#if FRAGWARN |
| 347 |
|
if (fsiz >= nextfragwarn && |
| 348 |
< |
(fsiz-hdfiluse(hdlist[0]->fd,0))/(fsiz/100) > FRAGWARN) { |
| 349 |
< |
double pctfrag = 100.*(fsiz-hdfiluse(hdlist[0]->fd,1))/fsiz; |
| 350 |
< |
if (pctfrag >= (double)FRAGWARN) { |
| 351 |
< |
sprintf(errmsg, "holodeck file fragmentation is %.0f%%", |
| 352 |
< |
pctfrag); |
| 353 |
< |
error(WARNING, errmsg); |
| 354 |
< |
nextfragwarn = fsiz + (fsiz>>2); |
| 355 |
< |
} |
| 348 |
> |
(fsiz-(fuse=hdfiluse(hdlist[0]->fd)))/(fsiz/100) > FRAGWARN) { |
| 349 |
> |
sprintf(errmsg, "holodeck file fragmentation is %.0f%%", |
| 350 |
> |
100.*(fsiz-fuse)/fsiz); |
| 351 |
> |
error(WARNING, errmsg); |
| 352 |
> |
nextfragwarn = fsiz + (fsiz>>2); |
| 353 |
|
} |
| 354 |
|
#endif |
| 355 |
|
t = time(NULL); /* check time */ |
| 659 |
|
if ((ncprocs > 0) & (force >= 0) && vdef(REPORT)) { |
| 660 |
|
off_t fsiz, fuse; |
| 661 |
|
fsiz = hdfilen(hdlist[0]->fd); |
| 662 |
< |
fuse = hdfiluse(hdlist[0]->fd, 1); |
| 662 |
> |
fuse = hdfiluse(hdlist[0]->fd); |
| 663 |
|
fprintf(stderr, |
| 664 |
|
"%s: %.1f Mbyte holodeck file, %.1f%% fragmentation\n", |
| 665 |
|
hdkfile, fsiz/(1024.*1024.), |