<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mdadm.git/ChangeLog, branch devel</title>
<subtitle>Official Fedora mdadm git repository cloned from upstream mdadm maintainer</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/dledford/public_git/mdadm.git/'/>
<entry>
<title>Release 2.6.5</title>
<updated>2008-05-15T05:50:59+00:00</updated>
<author>
<name>Neil Brown</name>
<email>neilb@suse.de</email>
</author>
<published>2008-05-15T05:50:59+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/dledford/public_git/mdadm.git/commit/?id=2270232245dc189807e6ca36835b44146377fc37'/>
<id>2270232245dc189807e6ca36835b44146377fc37</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Get Changelog uptodate</title>
<updated>2008-05-15T05:50:57+00:00</updated>
<author>
<name>Neil Brown</name>
<email>neilb@suse.de</email>
</author>
<published>2008-05-15T05:50:57+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/dledford/public_git/mdadm.git/commit/?id=e509e779cdba36a8b8352a51f90bed77a795ea0f'/>
<id>e509e779cdba36a8b8352a51f90bed77a795ea0f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow creation of a RAID6 with a single missing device.</title>
<updated>2008-04-28T06:30:09+00:00</updated>
<author>
<name>Neil Brown</name>
<email>neilb@suse.de</email>
</author>
<published>2008-04-28T06:30:09+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/dledford/public_git/mdadm.git/commit/?id=6fb79233b050b4a3575f0e466ab04b5d301ac1de'/>
<id>6fb79233b050b4a3575f0e466ab04b5d301ac1de</id>
<content type='text'>
This did not work before as we couldn't mark it clean as there would
be some parity blocks out of sync, and raid6 will not assemble a
dirty degraded array.
So make such arrays doubly degraded (the last device becomes a spare)
and clean.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This did not work before as we couldn't mark it clean as there would
be some parity blocks out of sync, and raid6 will not assemble a
dirty degraded array.
So make such arrays doubly degraded (the last device becomes a spare)
and clean.
</pre>
</div>
</content>
</entry>
<entry>
<title>Updates some URLs in the man page.</title>
<updated>2008-04-28T06:29:53+00:00</updated>
<author>
<name>Neil Brown</name>
<email>neilb@suse.de</email>
</author>
<published>2008-04-28T06:29:53+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/dledford/public_git/mdadm.git/commit/?id=3cdfb6a71259759f24f48d4c14b76e056d0bfaf6'/>
<id>3cdfb6a71259759f24f48d4c14b76e056d0bfaf6</id>
<content type='text'>
Particularly, add the wiki on osdl.org
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Particularly, add the wiki on osdl.org
</pre>
</div>
</content>
</entry>
<entry>
<title>Print 'Events' more sensibly.</title>
<updated>2008-04-28T06:29:45+00:00</updated>
<author>
<name>Neil Brown</name>
<email>neilb@suse.de</email>
</author>
<published>2008-04-28T06:29:45+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/dledford/public_git/mdadm.git/commit/?id=1486e43fec5394bcb23a90f678451a8c3e378b10'/>
<id>1486e43fec5394bcb23a90f678451a8c3e378b10</id>
<content type='text'>
Instead of MSW.LSW, just print it as a 64bit number.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of MSW.LSW, just print it as a 64bit number.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix problems with array.size overflowing on large arrays.</title>
<updated>2008-04-28T06:29:37+00:00</updated>
<author>
<name>Neil Brown</name>
<email>neilb@suse.de</email>
</author>
<published>2008-04-28T06:29:37+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/dledford/public_git/mdadm.git/commit/?id=7a3be72fc621b4a7589e923cf0652c51493f831a'/>
<id>7a3be72fc621b4a7589e923cf0652c51493f831a</id>
<content type='text'>
array.size is 32bits and counts K.  So for arrays with
more than 4Terrabytes, it can overflow.
The correct number can be read from sysfs, but there are still
a few places that use array.size and risk truncation.  What is worse.
they compare a number of kilobytes with a number of sectors !!

So use get_component_size() to read the sysfs information, and be
more consistent about units.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
array.size is 32bits and counts K.  So for arrays with
more than 4Terrabytes, it can overflow.
The correct number can be read from sysfs, but there are still
a few places that use array.size and risk truncation.  What is worse.
they compare a number of kilobytes with a number of sectors !!

So use get_component_size() to read the sysfs information, and be
more consistent about units.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix for segfault when reading /proc/mdstat</title>
<updated>2008-04-28T06:29:12+00:00</updated>
<author>
<name>Neil Brown</name>
<email>neilb@suse.de</email>
</author>
<published>2008-04-28T06:29:12+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/dledford/public_git/mdadm.git/commit/?id=2cdb64897d4fe33a11af13c6356dcd338c561e77'/>
<id>2cdb64897d4fe33a11af13c6356dcd338c561e77</id>
<content type='text'>
Some kernel versions don't put a space between 'active' and '(auto-read-only)'
in /proc/mdstat.  This causes a parsing problem leaving 'level' set to
NULL which causes a crash.

So synthesise a space there if it is missing, and check for 'level' to
be NULL and don't de-ref if it is.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some kernel versions don't put a space between 'active' and '(auto-read-only)'
in /proc/mdstat.  This causes a parsing problem leaving 'level' set to
NULL which causes a crash.

So synthesise a space there if it is missing, and check for 'level' to
be NULL and don't de-ref if it is.
</pre>
</div>
</content>
</entry>
<entry>
<title>Release 2.6.4</title>
<updated>2007-10-19T04:13:04+00:00</updated>
<author>
<name>Neil Brown</name>
<email>neilb@suse.de</email>
</author>
<published>2007-10-19T04:13:04+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/dledford/public_git/mdadm.git/commit/?id=6a0671608bd94e75683fd5ca7ea006b9c7552de3'/>
<id>6a0671608bd94e75683fd5ca7ea006b9c7552de3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Release 2.6.3</title>
<updated>2007-08-20T04:22:15+00:00</updated>
<author>
<name>Neil Brown</name>
<email>neilb@suse.de</email>
</author>
<published>2007-08-20T04:22:15+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/dledford/public_git/mdadm.git/commit/?id=e5bddffd352ac071becbaee65dab5b7e18f03793'/>
<id>e5bddffd352ac071becbaee65dab5b7e18f03793</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update changelog</title>
<updated>2007-08-20T04:14:46+00:00</updated>
<author>
<name>Neil Brown</name>
<email>neilb@suse.de</email>
</author>
<published>2007-08-20T04:14:46+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/dledford/public_git/mdadm.git/commit/?id=e1584dd2c7c05a34f14eb645fbe574a4735dcb63'/>
<id>e1584dd2c7c05a34f14eb645fbe574a4735dcb63</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
