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
2b2c1971
Commit
2b2c1971
authored
10 years ago
by
Robert Morris
Browse files
Options
Downloads
Patches
Plain Diff
write log blocks from cache only at end of transaction
parent
11183588
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
log.c
+21
-7
21 additions, 7 deletions
log.c
with
21 additions
and
7 deletions
log.c
+
21
−
7
View file @
2b2c1971
...
...
@@ -170,10 +170,27 @@ end_op(void)
}
}
// Copy modified blocks from cache to log.
static
void
write_log
(
void
)
{
int
tail
;
for
(
tail
=
0
;
tail
<
log
.
lh
.
n
;
tail
++
)
{
struct
buf
*
to
=
bread
(
log
.
dev
,
log
.
start
+
tail
+
1
);
// log block
struct
buf
*
from
=
bread
(
log
.
dev
,
log
.
lh
.
sector
[
tail
]);
// cache block
memmove
(
to
->
data
,
from
->
data
,
BSIZE
);
bwrite
(
to
);
// write the log
brelse
(
from
);
brelse
(
to
);
}
}
static
void
commit
()
{
if
(
log
.
lh
.
n
>
0
)
{
write_log
();
// Write modified blocks from cache to log
write_head
();
// Write header to disk -- the real commit
install_trans
();
// Now install writes to home locations
log
.
lh
.
n
=
0
;
...
...
@@ -182,8 +199,9 @@ commit()
}
// Caller has modified b->data and is done with the buffer.
// Append the block to the log and record the block number,
// but don't write the log header (which would commit the write).
// Record the block number and pin in the cache with B_DIRTY.
// commit()/write_log() will do the disk write.
//
// log_write() replaces bwrite(); a typical use is:
// bp = bread(...)
// modify bp->data[]
...
...
@@ -197,17 +215,13 @@ log_write(struct buf *b)
if
(
log
.
lh
.
n
>=
LOGSIZE
||
log
.
lh
.
n
>=
log
.
size
-
1
)
panic
(
"too big a transaction"
);
if
(
log
.
outstanding
<
1
)
panic
(
"write outside of trans"
);
panic
(
"
log_
write outside of trans"
);
for
(
i
=
0
;
i
<
log
.
lh
.
n
;
i
++
)
{
if
(
log
.
lh
.
sector
[
i
]
==
b
->
sector
)
// log absorbtion
break
;
}
log
.
lh
.
sector
[
i
]
=
b
->
sector
;
struct
buf
*
lbuf
=
bread
(
b
->
dev
,
log
.
start
+
i
+
1
);
memmove
(
lbuf
->
data
,
b
->
data
,
BSIZE
);
bwrite
(
lbuf
);
brelse
(
lbuf
);
if
(
i
==
log
.
lh
.
n
)
log
.
lh
.
n
++
;
b
->
flags
|=
B_DIRTY
;
// prevent eviction
...
...
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