From: Alan Cox Date: Tue, 25 Nov 2014 00:31:09 +0000 (+0000) Subject: i_alloc: shave another 60 bytes off X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=06b009b90b28000019f326abc25a501ed902ce02;p=FUZIX.git i_alloc: shave another 60 bytes off --- diff --git a/Kernel/filesys.c b/Kernel/filesys.c index 5f0e1590..971988b0 100644 --- a/Kernel/filesys.c +++ b/Kernel/filesys.c @@ -465,10 +465,11 @@ bool baddev(fsptr dev) uint16_t i_alloc(uint16_t devno) { - fsptr dev; - blkno_t blk; + staticfast fsptr dev; + staticfast blkno_t blk; struct dinode *buf; - int j, k; + staticfast uint16_t j; + uint16_t k; unsigned ino; if(baddev(dev = getdev(devno)))