Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CSEP551
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Krishna Vinnakota
CSEP551
Commits
7895178d
Commit
7895178d
authored
17 years ago
by
rsc
Browse files
Options
Downloads
Patches
Plain Diff
nits
parent
6c34f97c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fs.c
+23
-29
23 additions, 29 deletions
fs.c
with
23 additions
and
29 deletions
fs.c
+
23
−
29
View file @
7895178d
...
...
@@ -143,7 +143,7 @@ iinit(void)
}
// Find the inode with number inum on device dev
// and return the in-memory copy.
h
// and return the in-memory copy.
static
struct
inode
*
iget
(
uint
dev
,
uint
inum
)
{
...
...
@@ -255,6 +255,7 @@ iput(struct inode *ip)
release
(
&
icache
.
lock
);
}
// Common idiom: unlock, then put.
void
iunlockput
(
struct
inode
*
ip
)
{
...
...
@@ -275,7 +276,7 @@ ialloc(uint dev, short type)
readsb
(
dev
,
&
sb
);
for
(
inum
=
1
;
inum
<
sb
.
ninodes
;
inum
++
)
{
// loop over inode blocks
bp
=
bread
(
dev
,
IBLOCK
(
inum
));
dip
=
&
(
(
struct
dinode
*
)(
bp
->
data
)
)[
inum
%
IPB
]
;
dip
=
(
struct
dinode
*
)(
bp
->
data
)
+
inum
%
IPB
;
if
(
dip
->
type
==
0
)
{
// a free inode
memset
(
dip
,
0
,
sizeof
(
*
dip
));
dip
->
type
=
type
;
...
...
@@ -296,7 +297,7 @@ iupdate(struct inode *ip)
struct
dinode
*
dip
;
bp
=
bread
(
ip
->
dev
,
IBLOCK
(
ip
->
inum
));
dip
=
&
(
(
struct
dinode
*
)(
bp
->
data
)
)[
ip
->
inum
%
IPB
]
;
dip
=
(
struct
dinode
*
)(
bp
->
data
)
+
ip
->
inum
%
IPB
;
dip
->
type
=
ip
->
type
;
dip
->
major
=
ip
->
major
;
dip
->
minor
=
ip
->
minor
;
...
...
@@ -312,7 +313,7 @@ iupdate(struct inode *ip)
//
// The contents (data) associated with each inode is stored
// in a sequence of blocks on the disk. The first NDIRECT blocks
// are st
or
ed in ip->addrs[]. The next NINDIRECT blocks are
// are
li
sted in ip->addrs[]. The next NINDIRECT blocks are
// listed in the block ip->addrs[INDIRECT].
// Return the disk block address of the nth block in inode ip.
...
...
@@ -414,7 +415,7 @@ readi(struct inode *ip, char *dst, uint off, uint n)
return
devsw
[
ip
->
major
].
read
(
ip
->
minor
,
dst
,
n
);
}
if
(
off
+
n
<
off
)
if
(
off
>
ip
->
size
||
off
+
n
<
off
)
return
-
1
;
if
(
off
+
n
>
ip
->
size
)
n
=
ip
->
size
-
off
;
...
...
@@ -486,8 +487,8 @@ dirlookup(struct inode *dp, char *name, uint *poff)
for
(
off
=
0
;
off
<
dp
->
size
;
off
+=
BSIZE
){
bp
=
bread
(
dp
->
dev
,
bmap
(
dp
,
off
/
BSIZE
,
0
));
for
(
de
=
(
struct
dirent
*
)
bp
->
data
;
de
<
(
struct
dirent
*
)
(
bp
->
data
+
BSIZE
);
for
(
de
=
(
struct
dirent
*
)
bp
->
data
;
de
<
(
struct
dirent
*
)(
bp
->
data
+
BSIZE
);
de
++
){
if
(
de
->
inum
==
0
)
continue
;
...
...
@@ -522,7 +523,7 @@ dirlink(struct inode *dp, char *name, uint ino)
// Look for an empty dirent.
for
(
off
=
0
;
off
<
dp
->
size
;
off
+=
sizeof
(
de
)){
if
(
readi
(
dp
,
(
char
*
)
&
de
,
off
,
sizeof
(
de
))
!=
sizeof
(
de
))
panic
(
"dir
write
read"
);
panic
(
"dir
link
read"
);
if
(
de
.
inum
==
0
)
break
;
}
...
...
@@ -530,7 +531,7 @@ dirlink(struct inode *dp, char *name, uint ino)
strncpy
(
de
.
name
,
name
,
DIRSIZ
);
de
.
inum
=
ino
;
if
(
writei
(
dp
,
(
char
*
)
&
de
,
off
,
sizeof
(
de
))
!=
sizeof
(
de
))
panic
(
"dir
write
"
);
panic
(
"dir
link
"
);
return
0
;
}
...
...
@@ -546,7 +547,7 @@ dirlink(struct inode *dp, char *name, uint ino)
//
// Examples:
// skipelem("a/bb/c", name) = "bb/c", setting name = "a"
// skipelem("///a/bb", name) = "bb", setting name
=
"a"
// skipelem("///a/
/
bb", name) = "bb", setting name
=
"a"
// skipelem("", name) = skipelem("////", name) = 0
//
static
char
*
...
...
@@ -574,21 +575,6 @@ skipelem(char *path, char *name)
return
path
;
}
static
struct
inode
*
_namei
(
char
*
,
int
,
char
*
);
struct
inode
*
namei
(
char
*
path
)
{
char
name
[
DIRSIZ
];
return
_namei
(
path
,
0
,
name
);
}
struct
inode
*
nameiparent
(
char
*
path
,
char
*
name
)
{
return
_namei
(
path
,
1
,
name
);
}
// Look up and return the inode for a path name.
// If parent is set, return the inode for the parent
// and write the final path element to name, which
...
...
@@ -597,7 +583,6 @@ static struct inode*
_namei
(
char
*
path
,
int
parent
,
char
*
name
)
{
struct
inode
*
ip
,
*
next
;
uint
off
;
if
(
*
path
==
'/'
)
ip
=
iget
(
ROOTDEV
,
1
);
...
...
@@ -610,14 +595,12 @@ _namei(char *path, int parent, char *name)
iunlockput
(
ip
);
return
0
;
}
if
(
parent
&&
*
path
==
'\0'
){
// Stop one level early.
iunlock
(
ip
);
return
ip
;
}
if
((
next
=
dirlookup
(
ip
,
name
,
&
off
))
==
0
){
if
((
next
=
dirlookup
(
ip
,
name
,
0
))
==
0
){
iunlockput
(
ip
);
return
0
;
}
...
...
@@ -631,3 +614,14 @@ _namei(char *path, int parent, char *name)
return
ip
;
}
struct
inode
*
namei
(
char
*
path
)
{
char
name
[
DIRSIZ
];
return
_namei
(
path
,
0
,
name
);
}
struct
inode
*
nameiparent
(
char
*
path
,
char
*
name
)
{
return
_namei
(
path
,
1
,
name
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment