Rename cgget => cglookup to clear name space for new libufs function cgget.
No functional change.
This commit is contained in:
parent
2789832d3c
commit
5fda4f45ad
@ -437,7 +437,7 @@ void freeinodebuf(void);
|
||||
void fsutilinit(void);
|
||||
int ftypeok(union dinode *dp);
|
||||
void getblk(struct bufarea *bp, ufs2_daddr_t blk, long size);
|
||||
struct bufarea *cgget(int cg);
|
||||
struct bufarea *cglookup(int cg);
|
||||
struct bufarea *getdatablk(ufs2_daddr_t blkno, long size, int type);
|
||||
struct inoinfo *getinoinfo(ino_t inumber);
|
||||
union dinode *getnextinode(ino_t inumber, int rebuildcg);
|
||||
|
@ -222,7 +222,7 @@ static struct bufarea *cgbufs; /* header for cylinder group cache */
|
||||
static int flushtries; /* number of tries to reclaim memory */
|
||||
|
||||
struct bufarea *
|
||||
cgget(int cg)
|
||||
cglookup(int cg)
|
||||
{
|
||||
struct bufarea *cgbp;
|
||||
struct cg *cgp;
|
||||
@ -791,7 +791,7 @@ allocblk(long frags)
|
||||
continue;
|
||||
}
|
||||
cg = dtog(&sblock, i + j);
|
||||
cgbp = cgget(cg);
|
||||
cgbp = cglookup(cg);
|
||||
cgp = cgbp->b_un.b_cg;
|
||||
if (!check_cgmagic(cg, cgbp))
|
||||
return (0);
|
||||
|
@ -673,7 +673,7 @@ allocino(ino_t request, int type)
|
||||
if (ino == maxino)
|
||||
return (0);
|
||||
cg = ino_to_cg(&sblock, ino);
|
||||
cgbp = cgget(cg);
|
||||
cgbp = cglookup(cg);
|
||||
cgp = cgbp->b_un.b_cg;
|
||||
if (!check_cgmagic(cg, cgbp))
|
||||
return (0);
|
||||
|
@ -98,7 +98,7 @@ pass1(void)
|
||||
for (c = 0; c < sblock.fs_ncg; c++) {
|
||||
inumber = c * sblock.fs_ipg;
|
||||
setinodebuf(inumber);
|
||||
cgbp = cgget(c);
|
||||
cgbp = cglookup(c);
|
||||
cgp = cgbp->b_un.b_cg;
|
||||
rebuildcg = 0;
|
||||
if (!check_cgmagic(c, cgbp))
|
||||
|
@ -174,7 +174,7 @@ pass5(void)
|
||||
c * 100 / sblock.fs_ncg);
|
||||
got_sigalarm = 0;
|
||||
}
|
||||
cgbp = cgget(c);
|
||||
cgbp = cglookup(c);
|
||||
cg = cgbp->b_un.b_cg;
|
||||
if (!cg_chkmagic(cg))
|
||||
pfatal("CG %d: BAD MAGIC NUMBER\n", c);
|
||||
|
Loading…
Reference in New Issue
Block a user