Rename cgget => cglookup to clear name space for new libufs function cgget.

No functional change.
This commit is contained in:
Kirk McKusick 2018-01-17 06:31:21 +00:00
parent 84d6a5d4a7
commit 957fc241ec
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=328075
5 changed files with 6 additions and 6 deletions

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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))

View File

@ -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);