diff options
author | Juli Mallett <jmallett@FreeBSD.org> | 2003-01-19 05:46:23 +0000 |
---|---|---|
committer | Juli Mallett <jmallett@FreeBSD.org> | 2003-01-19 05:46:23 +0000 |
commit | cc3dd52898c0ec5f192ce466461fc186db1764e2 (patch) | |
tree | 9b1a1f6153020c07f6b7e6583f80d2dfeb36d488 /lib/libufs/cgroup.c | |
parent | aac0e9388ea5f8de34c2399bc1b58ed1798057b7 (diff) | |
download | src-cc3dd52898c0ec5f192ce466461fc186db1764e2.tar.gz src-cc3dd52898c0ec5f192ce466461fc186db1764e2.zip |
Store not only the current cylinder group in the series (i.e. next that needs
to be read in) but also the last cylinder group in the series (i.e. what is
stored in the structure).
Notes
Notes:
svn path=/head/; revision=109518
Diffstat (limited to 'lib/libufs/cgroup.c')
-rw-r--r-- | lib/libufs/cgroup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libufs/cgroup.c b/lib/libufs/cgroup.c index 2948e618aeb6..a1d624df0049 100644 --- a/lib/libufs/cgroup.c +++ b/lib/libufs/cgroup.c @@ -68,5 +68,6 @@ cgread1(struct uufsd *disk, int c) ERROR(disk, "unable to read cylinder group"); return -1; } + disk->d_lcg = c; return 1; } |