* warning: process 'update' used the obsolete bdflush...
@ 2003-05-31 9:04 Paul Rolland
2003-05-31 9:34 ` Stewart Smith
0 siblings, 1 reply; 6+ messages in thread
From: Paul Rolland @ 2003-05-31 9:04 UTC (permalink / raw)
To: linux-kernel; +Cc: rol
Hello,
When switching from 2.4.20 to 2.5.x (x being recent), I have this
message...
What does this mean ?
1 - I have no process named update running,
2 - I can't find anything name update in /etc/rc.d/* recursively.
Regards,
Paul
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: warning: process 'update' used the obsolete bdflush...
2003-05-31 9:04 warning: process 'update' used the obsolete bdflush Paul Rolland
@ 2003-05-31 9:34 ` Stewart Smith
2003-06-01 19:31 ` Felipe Alfaro Solana
0 siblings, 1 reply; 6+ messages in thread
From: Stewart Smith @ 2003-05-31 9:34 UTC (permalink / raw)
To: Paul Rolland; +Cc: linux-kernel, rol
On Saturday, May 31, 2003, at 07:04 PM, Paul Rolland wrote:
> Hello,
>
> When switching from 2.4.20 to 2.5.x (x being recent), I have this
> message...
>
> What does this mean ?
> 1 - I have no process named update running,
> 2 - I can't find anything name update in /etc/rc.d/* recursively.
from fs/buffer.c:
/*
* There are no bdflush tunables left. But distributions are
* still running obsolete flush daemons, so we terminate them here.
*
* Use of bdflush() is deprecated and will be removed in a future
kernel.
* The `pdflush' kernel threads fully replace bdflush daemons and this
call.
*/
I'd upgrade whatever package update comes from. I can't seem to find
that binary around on some of my systems, what distribution and version
are you running? Maybe it's time to upgrade.
Someone else might know specifics :)
------------------------------
Stewart Smith
stewartsmith@mac.com
Ph: +61 4 3884 4332
ICQ: 6734154
http://www.flamingspork.com/ http://www.linux.org.au
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: warning: process 'update' used the obsolete bdflush...
2003-05-31 9:34 ` Stewart Smith
@ 2003-06-01 19:31 ` Felipe Alfaro Solana
2003-06-01 20:09 ` Michael Buesch
0 siblings, 1 reply; 6+ messages in thread
From: Felipe Alfaro Solana @ 2003-06-01 19:31 UTC (permalink / raw)
To: Stewart Smith; +Cc: Paul Rolland, LKML, rol
On Sat, 2003-05-31 at 11:34, Stewart Smith wrote:
> On Saturday, May 31, 2003, at 07:04 PM, Paul Rolland wrote:
> > When switching from 2.4.20 to 2.5.x (x being recent), I have this
> > message...
> >
> > What does this mean ?
> > 1 - I have no process named update running,
> > 2 - I can't find anything name update in /etc/rc.d/* recursively.
>
> from fs/buffer.c:
> /*
> * There are no bdflush tunables left. But distributions are
> * still running obsolete flush daemons, so we terminate them here.
> *
> * Use of bdflush() is deprecated and will be removed in a future
> kernel.
> * The `pdflush' kernel threads fully replace bdflush daemons and this
> call.
> */
>
> I'd upgrade whatever package update comes from. I can't seem to find
> that binary around on some of my systems, what distribution and version
> are you running? Maybe it's time to upgrade.
>
> Someone else might know specifics :)
"update" is not a program, but a kernel daemon that was superseded by
pdflush in 2.5 kernels. I just can't remember right know what caused
that warning, but it's similar to the SO_BSDCOMPAT warning that is
triggered when running bind.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: warning: process 'update' used the obsolete bdflush...
2003-06-01 19:31 ` Felipe Alfaro Solana
@ 2003-06-01 20:09 ` Michael Buesch
0 siblings, 0 replies; 6+ messages in thread
From: Michael Buesch @ 2003-06-01 20:09 UTC (permalink / raw)
To: Felipe Alfaro Solana; +Cc: linux kernel mailing list
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Sunday 01 June 2003 21:31, Felipe Alfaro Solana wrote:
> "update" is not a program, but a kernel daemon that was superseded by
> pdflush in 2.5 kernels. I just can't remember right know what caused
> that warning, but it's similar to the SO_BSDCOMPAT warning that is
> triggered when running bind.
calling syscall bdflush() triggers this warning.
this syscall is obsolete.
Things can now be done through /proc/sys/vm
- --
Regards Michael Büsch
http://www.8ung.at/tuxsoft
22:07:21 up 2:53, 3 users, load average: 1.00, 1.07, 1.06
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)
iD8DBQE+2l1hoxoigfggmSgRApnXAJkBfQw8CBVaUmJRuCNGA/8oZOAPygCfYREJ
sHauLAtZZfbcbAC+P9OL3BE=
=zBAB
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: warning: process 'update' used the obsolete bdflush...
@ 2003-05-31 10:53 mikpe
2003-05-31 11:51 ` Paul Rolland
0 siblings, 1 reply; 6+ messages in thread
From: mikpe @ 2003-05-31 10:53 UTC (permalink / raw)
To: rol; +Cc: linux-kernel
On Sat, 31 May 2003 11:04:20 +0200, Paul Rolland wrote:
>When switching from 2.4.20 to 2.5.x (x being recent), I have this
>message...
>
>What does this mean ?
>1 - I have no process named update running,
>2 - I can't find anything name update in /etc/rc.d/* recursively.
If you have a line with 'update' or 'bdflush' in /etc/inittab,
remove it. (Its obsolete since mid-2.2 or so.)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: warning: process 'update' used the obsolete bdflush...
2003-05-31 10:53 mikpe
@ 2003-05-31 11:51 ` Paul Rolland
0 siblings, 0 replies; 6+ messages in thread
From: Paul Rolland @ 2003-05-31 11:51 UTC (permalink / raw)
To: mikpe; +Cc: linux-kernel
Hello,
> On Sat, 31 May 2003 11:04:20 +0200, Paul Rolland wrote:
> >When switching from 2.4.20 to 2.5.x (x being recent), I have this
> >message...
> >
> >What does this mean ?
> >1 - I have no process named update running,
> >2 - I can't find anything name update in /etc/rc.d/* recursively.
>
> If you have a line with 'update' or 'bdflush' in
> /etc/inittab, remove it. (Its obsolete since mid-2.2 or so.)
Nice guess ! I have
ud:once:/sbin/update
within inittab.
The puzzling part is that, if it obsolete since mid-2.2, why is it
present on a RedHat 8.0 install ?
However, this question is not important ;-)
Thanks for the info, I'm gonna clean this !
Regards,
Paul
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2003-06-01 19:56 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-05-31 9:04 warning: process 'update' used the obsolete bdflush Paul Rolland
2003-05-31 9:34 ` Stewart Smith
2003-06-01 19:31 ` Felipe Alfaro Solana
2003-06-01 20:09 ` Michael Buesch
-- strict thread matches above, loose matches on Subject: below --
2003-05-31 10:53 mikpe
2003-05-31 11:51 ` Paul Rolland
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox