XINU
lfiballoc.c
Go to the documentation of this file.
1 /* lfiballoc.c - lfiballoc */
2 
3 #include <xinu.h>
4 
5 /*------------------------------------------------------------------------
6  * lfiballoc - Allocate a new index block from free list on disk
7  * (assumes directory mutex held)
8  *------------------------------------------------------------------------
9  */
11 {
12  ibid32 ibnum; /* ID of next block on the free list */
13  struct lfiblk iblock; /* Buffer to hold an index block */
14 
15  /* Get ID of first index block on free list */
16 
17  ibnum = Lf_data.lf_dir.lfd_ifree;
18  if (ibnum == LF_INULL) { /* Ran out of free index blocks */
19  panic("out of index blocks");
20  }
21  lfibget(Lf_data.lf_dskdev, ibnum, &iblock);
22 
23  /* Unlink index block from the directory free list */
24 
26 
27  /* Write a copy of the directory to disk after the change */
28 
31 
32  return ibnum;
33 }
int32 ibid32
ブロックIDのインデックス(ファイルシステムで使用する)
Definition: kernel.h:40
全てのシステムヘッダファイルをインクルードする。
struct lfdata Lf_data
Definition: lfsinit.c:5
ibid32 lfd_ifree
Definition: lfilesys.h:121
did32 lf_dskdev
Definition: lfilesys.h:131
void lfibget(did32, ibid32, struct lfiblk *)
Definition: lfibget.c:10
#define LF_INULL
Definition: lfilesys.h:55
#define LF_AREA_DIR
Definition: lfilesys.h:67
syscall write(did32, char *, uint32)
Definition: write.c:9
struct lfdir lf_dir
Definition: lfilesys.h:134
#define FALSE
Boolean False(0)
Definition: kernel.h:63
ibid32 ib_next
Definition: lfilesys.h:72
bool8 lf_dirdirty
Definition: lfilesys.h:137
void panic(char *)
Panic状態に陥った旨のメッセージを表示し、全てのプロセスを停止させる。
Definition: panic.c:12
ibid32 lfiballoc(void)
Definition: lfiballoc.c:10