<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/sys/gnu/ext2fs/ext2_linux_ialloc.c, branch releng/4.9</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=releng%2F4.9</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=releng%2F4.9'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2001-08-14T18:03:19Z</updated>
<entry>
<title>MFC: ext2fs support on alpha.  I have tested it using an ext2fs fs created</title>
<updated>2001-08-14T18:03:19Z</updated>
<author>
<name>Andrew Gallatin</name>
<email>gallatin@FreeBSD.org</email>
</author>
<published>2001-08-14T18:03:19Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=8fa227552b6d5e238f547a4af6985e49888c8dc0'/>
<id>urn:sha1:8fa227552b6d5e238f547a4af6985e49888c8dc0</id>
<content type='text'>
by rh7.1 on alpha &amp; it appears to work
approved by: murray
</content>
</entry>
<entry>
<title>MFC: $FreeBSD$</title>
<updated>2000-08-03T00:54:41Z</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>2000-08-03T00:54:41Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=b245958cd3ea7381f0622c14daf335461b9d0bc8'/>
<id>urn:sha1:b245958cd3ea7381f0622c14daf335461b9d0bc8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>        Fix warnings in preparation for adding -Wall -Wcast-qual to the</title>
<updated>1999-01-27T21:50:00Z</updated>
<author>
<name>Matthew Dillon</name>
<email>dillon@FreeBSD.org</email>
</author>
<published>1999-01-27T21:50:00Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=d254af07a14b8ea8891c2369150729943aa142df'/>
<id>urn:sha1:d254af07a14b8ea8891c2369150729943aa142df</id>
<content type='text'>
        kernel compile
</content>
</entry>
<entry>
<title>Quick fix for not being able to sync all the buffers in boot() if</title>
<updated>1998-10-03T16:19:28Z</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1998-10-03T16:19:28Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=8f359bc68c24ccfff3754c753a4a65d529f60b30'/>
<id>urn:sha1:8f359bc68c24ccfff3754c753a4a65d529f60b30</id>
<content type='text'>
an ext2fs file system is mounted.  The soft update changes added
a check for B_DELWRI buffers.  This exposed the complete brokenness
of the previous quick fix for failing syncs (PR 3571, committed on
1997/08/04).  Use a new buffer flag B_DIRTY and don't abuse B_DELWRI.
B_DIRTY buffers are still written too late, as broken in the previous
fix.  This is fairly harmless, because B_DIRTY is only used for
bitmap buffers and fsck.ext2 can fix up the bitmaps perfectly.

Fixed a race in ULCK_BUF() (bremfree() was outside of the splbio()
section).
</content>
</entry>
<entry>
<title>Fixed printf format errors.</title>
<updated>1998-07-11T07:46:16Z</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1998-07-11T07:46:16Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ac1e407b32ad79ecad415cd6d0955f90ba53efc2'/>
<id>urn:sha1:ac1e407b32ad79ecad415cd6d0955f90ba53efc2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed (?) races in mark_buffer_dirty().  We abuse the buffer cache</title>
<updated>1998-06-21T21:06:04Z</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1998-06-21T21:06:04Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=add4ae93245a804dedbb182073fb4aeb05ab2b37'/>
<id>urn:sha1:add4ae93245a804dedbb182073fb4aeb05ab2b37</id>
<content type='text'>
by hacking on locked buffers without getblk()ing them, and we didn't
even use splbio() to prevent biodone() changing the buffer underneath
use when a write completes.  I think there was no problem in practice
on i386's because the operations on b_flags and numdirtybufs happen to
be atomic.  We still depend on biodone()'s operations on b_flags not
interfering with ours.  I think there is only interference for B_ERROR,
and this is harmless because errors for async writes are ignored anyway.

Don't use mark_buffer_dirty() except for superblock-related metadata.
It was used in just one case where ordinary BSD buffering is more
natural.
</content>
</entry>
<entry>
<title>Removed unused function ll_w_block().  It has always had races due</title>
<updated>1998-06-21T19:56:31Z</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1998-06-21T19:56:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=9b7a8fb7d80987137d1d08e965c6490502913659'/>
<id>urn:sha1:9b7a8fb7d80987137d1d08e965c6490502913659</id>
<content type='text'>
to not using splbio(), and has rotted a little.  The races were
probably harmless in practice because this function was only used
for superblock updates, and separate superblock updates are probably
prevented from running into each other by doing part of the update
synchronously.
</content>
</entry>
<entry>
<title>Removed __FreeBSD__ ifdefs.</title>
<updated>1997-12-02T10:39:42Z</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1997-12-02T10:39:42Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=2f169e4b76deb797ac0fd9d61b341cab6faa64f4'/>
<id>urn:sha1:2f169e4b76deb797ac0fd9d61b341cab6faa64f4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>`numdirtybuffers' was not maintained properly.  This caused excessive</title>
<updated>1997-10-07T11:10:18Z</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1997-10-07T11:10:18Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=dab8d6e4e7602b4ed45ce4aeb7b5835c81fc1d73'/>
<id>urn:sha1:dab8d6e4e7602b4ed45ce4aeb7b5835c81fc1d73</id>
<content type='text'>
flushing of buffers in an attempt to reduce numdirtybuffers, and
perhaps other problems.
</content>
</entry>
<entry>
<title>Fix a problem with ext2fs so that filesystems mounted at reboot don't</title>
<updated>1997-08-04T05:10:31Z</updated>
<author>
<name>John Dyson</name>
<email>dyson@FreeBSD.org</email>
</author>
<published>1997-08-04T05:10:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=5fd549b62eeb2d34acff683fceabcc532ea7eb4a'/>
<id>urn:sha1:5fd549b62eeb2d34acff683fceabcc532ea7eb4a</id>
<content type='text'>
keep ahold of buffers, and therefore leave filesystems dirty.  I haven't
been able to test, but the code compiles.  Those who run -current, please
test and report back!!!  (Sorry :-)).

PR:		kern/3571
Submitted by:	Dirk Keunecke &lt;dk@panda.rhein-main.de&gt;
</content>
</entry>
</feed>
