* ANNOUNCE: mdadm 3.0.1 - A tool for managing Soft RAID under Linux
@ 2009-09-25 7:09 Neil Brown
2009-10-04 23:16 ` Mr. James W. Laferriere
0 siblings, 1 reply; 4+ messages in thread
From: Neil Brown @ 2009-09-25 7:09 UTC (permalink / raw)
To: linux-raid
I am pleased to announce the availability of
mdadm version 3.0.1
It is available at the usual places:
countrycode=xx.
http://www.${countrycode}kernel.org/pub/linux/utils/raid/mdadm/
and via git at
git://neil.brown.name/mdadm
http://neil.brown.name/git?p=mdadm
This contains only minor bug fixes over 3.0. If you are using
3.0, you could consider upgrading.
The brief change log is:
- Fix various segfaults
- Fixed for --examine with containers
- Lots of other little fixes.
NeilBrown 25th September 2009
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: ANNOUNCE: mdadm 3.0.1 - A tool for managing Soft RAID under Linux
2009-09-25 7:09 ANNOUNCE: mdadm 3.0.1 - A tool for managing Soft RAID under Linux Neil Brown
@ 2009-10-04 23:16 ` Mr. James W. Laferriere
2009-10-05 9:47 ` Michael Tokarev
0 siblings, 1 reply; 4+ messages in thread
From: Mr. James W. Laferriere @ 2009-10-04 23:16 UTC (permalink / raw)
To: Neil Brown; +Cc: linux-raid
Hello Neil (& All) , Am I missing something here ? I've not had much
if any difficulties compiling mdadm , from -very- old distro. tooled boxen to
very new , But ...
Tia , JimL
...snip...
gcc -o mdadm mdadm.o config.o mdstat.o ReadMe.o util.o Manage.o Assemble.o
Build.o Create.o Detail.o Examine.o Grow.o Monitor.o dlink.o Kill.o Query.o
Incremental.o mdopen.o super0.o super1.o super-ddf.o super-intel.o bitmap.o
restripe.o sysfs.o sha1.o mapfile.o crc32.o sg_io.o msg.o platform-intel.o
probe_roms.o
gcc -Wall -Werror -Wstrict-prototypes -ggdb -DSendmail=\""/usr/sbin/sendmail
-t"\" -DCONFFILE=\"/etc/mdadm.conf\" -DCONFFILE2=\"/etc/mdadm/mdadm.conf\" -c
-o mdmon.o mdmon.c
gcc -Wall -Werror -Wstrict-prototypes -ggdb -DSendmail=\""/usr/sbin/sendmail
-t"\" -DCONFFILE=\"/etc/mdadm.conf\" -DCONFFILE2=\"/etc/mdadm/mdadm.conf\" -c
-o monitor.o monitor.c
monitor.c: In function `signal_manager':
monitor.c:139: error: `SYS_tgkill' undeclared (first use in this function)
monitor.c:139: error: (Each undeclared identifier is reported only once
monitor.c:139: error: for each function it appears in.)
make: *** [monitor.o] Error 1
# uname -a
Linux ns3 2.6.30.6 #1 SMP Wed Sep 9 05:50:45 UTC 2009 i686 pentium3 i386 GNU/Linux
# /usr/src/linux/scripts/ver_linux
If some fields are empty or look unusual you may have an old version.
Compare to the current minimal requirements in Documentation/Changes.
Linux ns3 2.6.30.6 #1 SMP Wed Sep 9 05:50:45 UTC 2009 i686 pentium3 i386
GNU/Linux
Gnu C 3.4.6
Gnu make 3.81
binutils 2.15.92.0.2
util-linux 2.12r
mount 2.12r
module-init-tools 3.2.2
e2fsprogs 1.38
jfsutils 1.1.11
reiserfsprogs 3.6.19
xfsprogs 2.8.10
pcmciautils 014
pcmcia-cs 3.2.8
quota-tools 3.13.
PPP 2.4.4
Linux C Library 2.3.6
Dynamic linker (ldd) 2.3.6
Linux C++ Library 6.0.3
Procps 3.2.7
Net-tools 1.60
Kbd 1.12
oprofile 0.9.1
Sh-utils 5.97
udev 097
Modules Loaded i2c_piix4
--
+------------------------------------------------------------------+
| James W. Laferriere | System Techniques | Give me VMS |
| Network&System Engineer | 2133 McCullam Ave | Give me Linux |
| babydr@baby-dragons.com | Fairbanks, AK. 99701 | only on AXP |
+------------------------------------------------------------------+
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: ANNOUNCE: mdadm 3.0.1 - A tool for managing Soft RAID under Linux
2009-10-04 23:16 ` Mr. James W. Laferriere
@ 2009-10-05 9:47 ` Michael Tokarev
2009-10-05 17:40 ` Mr. James W. Laferriere
0 siblings, 1 reply; 4+ messages in thread
From: Michael Tokarev @ 2009-10-05 9:47 UTC (permalink / raw)
To: Mr. James W. Laferriere; +Cc: Neil Brown, linux-raid
Mr. James W. Laferriere wrote:
> Hello Neil (& All) , Am I missing something here ? I've not had
> much if any difficulties compiling mdadm , from -very- old distro.
> tooled boxen to very new , But ...
[]
> monitor.c: In function `signal_manager':
> monitor.c:139: error: `SYS_tgkill' undeclared (first use in this function)
> monitor.c:139: error: (Each undeclared identifier is reported only once
> monitor.c:139: error: for each function it appears in.)
> make: *** [monitor.o] Error 1
>
> # uname -a
> Linux ns3 2.6.30.6 #1 SMP Wed Sep 9 05:50:45 UTC 2009 i686 pentium3 i386
> GNU/Linux
If you use that new kernel, how about updating kernel-headers
to match your kernel? SYS_tgkill comes from linux headers.
> # /usr/src/linux/scripts/ver_linux
that's all fine except it does not show
version of kernel headers installed on
your system. Or the "counterpart" from
the glibc.
/mjt
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: ANNOUNCE: mdadm 3.0.1 - A tool for managing Soft RAID under Linux
2009-10-05 9:47 ` Michael Tokarev
@ 2009-10-05 17:40 ` Mr. James W. Laferriere
0 siblings, 0 replies; 4+ messages in thread
From: Mr. James W. Laferriere @ 2009-10-05 17:40 UTC (permalink / raw)
To: Michael Tokarev; +Cc: Neil Brown, linux-raid
Hello Michael ,
On Mon, 5 Oct 2009, Michael Tokarev wrote:
> Mr. James W. Laferriere wrote:
>> Hello Neil (& All) , Am I missing something here ? I've not had much
>> if any difficulties compiling mdadm , from -very- old distro. tooled boxen
>> to very new , But ...
> []
>> monitor.c: In function `signal_manager':
>> monitor.c:139: error: `SYS_tgkill' undeclared (first use in this function)
>> monitor.c:139: error: (Each undeclared identifier is reported only once
>> monitor.c:139: error: for each function it appears in.)
>> make: *** [monitor.o] Error 1
>>
>> # uname -a
>> Linux ns3 2.6.30.6 #1 SMP Wed Sep 9 05:50:45 UTC 2009 i686 pentium3 i386
>> GNU/Linux
>
> If you use that new kernel, how about updating kernel-headers
> to match your kernel? SYS_tgkill comes from linux headers.
Cool , Thank you .
>> # /usr/src/linux/scripts/ver_linux
>
> that's all fine except it does not show
> version of kernel headers installed on
> your system. Or the "counterpart" from
> the glibc.
> /mjt
Is there a Kernel provided tool to determine what versions of each are
in place on a system ?
Tia , JimL
--
+------------------------------------------------------------------+
| James W. Laferriere | System Techniques | Give me VMS |
| Network&System Engineer | 2133 McCullam Ave | Give me Linux |
| babydr@baby-dragons.com | Fairbanks, AK. 99701 | only on AXP |
+------------------------------------------------------------------+
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-10-05 17:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-25 7:09 ANNOUNCE: mdadm 3.0.1 - A tool for managing Soft RAID under Linux Neil Brown
2009-10-04 23:16 ` Mr. James W. Laferriere
2009-10-05 9:47 ` Michael Tokarev
2009-10-05 17:40 ` Mr. James W. Laferriere
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).