Mach hangs during boot, triggered by -no-kvm-irqchip

2016-08-04 Thread Brent W. Baccala
Hi - I'm running Mach/Hurd in qemu/kvm, on a Linux 4.4.0 host (Ubuntu 16.04), with the -no-kvm-irqchip option, as suggested here: https://www.gnu.org/software/hurd/contributing.html Mach is 1.7+git20160607-486-dbg; the Hurd is from debian-hurd-20160325. I've been having intermit

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-20 Thread James Clarke
I have now got a patch that drains down the queue, and it does successfully stop sblock from being dereferenced etc when we actually reload. However, sometimes thread 5 (the same one that would dereference sblock) seems to get stuck in vm_fault_continue (at least according to the kernel debugger

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-19 Thread Richard Braun
On Sun, Jul 19, 2015 at 02:25:14PM +0100, James Clarke wrote: > Yeah, I tried inhibiting both buckets, but the paging RPCs still got through, > so my guess was that libports's inhibit/resume methods weren't able to deal > with libpager's own threads. The thing is I don't think we currently keep

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-19 Thread James Clarke
Yeah, I tried inhibiting both buckets, but the paging RPCs still got through, so my guess was that libports's inhibit/resume methods weren't able to deal with libpager's own threads. The thing is I don't think we currently keep track of any reference to the main/worker threads, as pager_start_wo

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-19 Thread Justus Winter
Hello James :) Quoting James Clarke (2015-07-15 22:20:57) > I had a look today at what's happening, and it's that the *file* > pager is trying to read from disk. Any thoughts? There is another thing I forgot. libpager is special, it has its own demuxer (see libpager/demuxer.c) that writes reques

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-15 Thread James Clarke
As discussed in IRC, this successfully stopped the disk pager from dereferencing sblock. However, it was still hanging at boot a lot of the time (seemingly if and only if I booted in normal mode ie not recovery mode, but that's probably just a timing thing). I had a look today at what's happeni

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-14 Thread Justus Winter
Hi James :) you found a long-standing bug in ext2fs. Fixing it allows us to get rid of the ugly workaround in daemons/runsystem.sh (look for `XXX'). Quoting Richard Braun (2015-07-13 10:16:14) > On Sun, Jul 12, 2015 at 12:56:31PM +0100, James Clarke wrote: > > That doesn’t seem to boot at all. I

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-14 Thread Justus Winter
Quoting Richard Braun (2015-07-13 10:16:14) > On Sun, Jul 12, 2015 at 12:56:31PM +0100, James Clarke wrote: > > That doesn’t seem to boot at all. I had tried changing it to inhibiting all > > RPCs (it looks like you’ve inhibited an extra class?), but it seems that > > paging is needed? Perhaps pa

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-13 Thread Richard Braun
On Sun, Jul 12, 2015 at 12:56:31PM +0100, James Clarke wrote: > That doesn’t seem to boot at all. I had tried changing it to inhibiting all > RPCs (it looks like you’ve inhibited an extra class?), but it seems that > paging is needed? Perhaps part of ext2fs gets paged out, and it needs to be > p

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-12 Thread Justus Winter
Quoting James Clarke (2015-07-12 13:56:31) > That doesn’t seem to boot at all. Indeed :/ db> show all tasks ID TASK NAME [THREADS] 0 f2745f00 gnumach [8] 1 f2745e40 ext2fs [12] 2 f2745d80 exec [5] 3 f2745cc0 (ext2fs) [1] 4 f2745c00 /hurd/proc [4] 5 f2745b40 /hurd/auth [5] 6 f2745a80 /bin/sh(1

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-12 Thread James Clarke
That doesn’t seem to boot at all. I had tried changing it to inhibiting all RPCs (it looks like you’ve inhibited an extra class?), but it seems that paging is needed? Perhaps part of ext2fs gets paged out, and it needs to be paged in when remounting? James > On 12 Jul 2015, at 00:27, Justus Wi

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-11 Thread Justus Winter
Quoting James Clarke (2015-07-11 22:33:44) > I did some more digging around today. I think what’s happening is > that ext2fs tries to handle a pager RPC while the disk is being > remounted Sounds plausible. Could you try: http://darnassus.sceen.net/~teythoon/ext2fs.static I'll send the patch as

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-11 Thread James Clarke
I did some more digging around today. I think what’s happening is that ext2fs tries to handle a pager RPC while the disk is being remounted. We do call ports_inhibit_class_rpcs, which will wait until all RPCs for that class have finished. However, we call this with diskfs_protoid_class, which d

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-06-27 Thread Richard Braun
On Sat, Jun 27, 2015 at 03:39:58PM +0100, James Clarke wrote: > I have been suffering a lot from my Hurd system (running in VirtualBox) > hanging at startup, just after "Hurd server bootstrap..." but before "INIT: > version 2.88 booting". > > I have been able to trace it back to getblk.c:248 (un

VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-06-27 Thread James Clarke
Hi, I have been suffering a lot from my Hurd system (running in VirtualBox) hanging at startup, just after "Hurd server bootstrap..." but before "INIT: version 2.88 booting". I have been able to trace it back to getblk.c:248 (unsigned long addr_per_block = EXT2_ADDR_PER_BLOCK (sblock);) in ext2

Re: boot hangs, corruption at every attempt

2015-04-08 Thread Riccardo Mottola
Hi Riccardo Mottola wrote: They are just a few kb, but of course inconvenient to read, sorry. Does this help? can we know which process is hanging? I forgot to mention that I have frozen the virtual machine in the kernel debugger, so I could in case resume it and ive more information. Ri

Re: boot hangs, corruption at every attempt

2015-04-08 Thread Riccardo Mottola
t, I did not find anything equivalent to a -curses option. show all tasks shows 44 process when the shutdown hangs. I attach two screenshots which show 43, the last one is /bin/sh They are just a few kb, but of course inconvenient to read, sorry. Does this help? can we know which process is hanging? Riccardo

Re: boot hangs, corruption at every attempt

2015-04-01 Thread Justus Winter
Quoting Riccardo Mottola (2015-04-01 18:03:39) > Hi, > > (no need to put me in CC everytime, I'm subscribed) I'm not. I'm putting you in `To' because I'm writing a mail to you. > Justus Winter wrote: > > No. Although the shutdown sometimes hangs, it

Re: boot hangs, corruption at every attempt

2015-04-01 Thread Riccardo Mottola
Hi, (no need to put me in CC everytime, I'm subscribed) Justus Winter wrote: No. Although the shutdown sometimes hangs, it is quite reliable nowadays. Just do a normal sysvinit shutdown (e.g. use halt, or shutdown). I did a shutdown -hP now. I did a "sync" before... and I had

Re: boot hangs, corruption at every attempt

2015-04-01 Thread Riccardo Mottola
. Can we understand why my shutdown is not clean? No. Although the shutdown sometimes hangs, it is quite reliable nowadays. Just do a normal sysvinit shutdown (e.g. use halt, or shutdown). I think I used poweroff. In case I try entering the kernel debugger the next time and report the processes

Re: boot hangs, corruption at every attempt

2015-04-01 Thread Justus Winter
> > Can we understand why my shutdown is not clean? No. Although the shutdown sometimes hangs, it is quite reliable nowadays. Just do a normal sysvinit shutdown (e.g. use halt, or shutdown). That being said, there are two issues that fsck will constantly complain about: /dev/hd0s1: Deleted in

Re: boot hangs, corruption at every attempt

2015-04-01 Thread Riccardo Mottola
Hi, Justus Winter wrote: Quoting Samuel Thibault (2015-04-01 13:25:27) Riccardo Mottola, le Wed 01 Apr 2015 13:20:05 +0200, a écrit : using my HURD instance in VirtualBox shows it is extremely unreliable. It almost always hangs at boot. A also see the occasional hang at boot, not at this

Re: boot hangs, corruption at every attempt

2015-04-01 Thread Justus Winter
Quoting Samuel Thibault (2015-04-01 13:25:27) > Riccardo Mottola, le Wed 01 Apr 2015 13:20:05 +0200, a écrit : > > using my HURD instance in VirtualBox shows it is extremely unreliable. It > > almost always hangs at boot. A also see the occasional hang at boot, not at this po

Re: boot hangs, corruption at every attempt

2015-04-01 Thread Samuel Thibault
Riccardo Mottola, le Wed 01 Apr 2015 13:20:05 +0200, a écrit : > using my HURD instance in VirtualBox shows it is extremely unreliable. It > almost always hangs at boot. Note: I don't recommend using VirtualBox. It tends to implement hacks to make simulation faster at the expense of

boot hangs, corruption at every attempt

2015-04-01 Thread Riccardo Mottola
Hi, using my HURD instance in VirtualBox shows it is extremely unreliable. It almost always hangs at boot. Shut down is usually not clean, I get some errors reported to be harmless. As soon as I boot again, I usually get a hang. In this case the FS is marked as dirty, but no check starts

Re: aptitude hangs

2015-03-15 Thread Riccardo Mottola
y options for a NIC. I retried, cancelling pending actions and installing just one package, it hangs. However installing through apt-get install worked. Riccardo

Re: aptitude hangs

2015-03-15 Thread Justus Winter
Quoting Riccardo Mottola (2015-03-15 13:14:31) > I am now in the same situation that brought previously my hurd VM to a > hang. I attach a screenshot of the xterm. > > After having downloaded a number of packages, it just hangs. No hight > cpu usage. > [...] > I hit ct

aptitude hangs

2015-03-15 Thread Riccardo Mottola
Hi, I am now in the same situation that brought previously my hurd VM to a hang. I attach a screenshot of the xterm. After having downloaded a number of packages, it just hangs. No hight cpu usage. From another console I checked: root@vmhurd:~# vmstat pagesize: 4096 size

Re: [BUG] ps hangs when given "-o user".

2012-12-16 Thread Samuel Thibault
Indeed, applied, thanks! Samuel

Re: [BUG] ps hangs when given "-o user".

2012-12-10 Thread Richard Braun
On Mon, Dec 10, 2012 at 01:45:55AM +0100, Cyril Roelandt wrote: > I attached a patch that fixes the issue, but I can't guarantee that > it doesn't break anything. What do you think ? Looks fine. -- Richard Braun

[BUG] ps hangs when given "-o user".

2012-12-09 Thread Cyril Roelandt
Hello, The following command hangs: $ ps -o user -p 1 Funnily enough, this works as expected: $ ps -o user, -p 1 User root I took a look at the code: 1) with "-o user", the "fmt_string" variable is set to "user", and the "posix_fmt" variable is

[bug #3939] rpctrace:d program hangs when signal that terminates or suspends it is sent

2012-06-30 Thread Samuel Thibault
Update of bug #3939 (project hurd): Status:None => Fixed Open/Closed:Open => Closed ___ Follow-up Comment #3: Fixed in ccbbdf63102a21

[bug #35501] Work with memory object before it is initiated hangs the kernel.

2012-02-21 Thread Maksym Planeta
Update of bug #35501 (project hurd): Open/Closed: Closed => Open ___ Follow-up Comment #1: I closed this bug. But it seems to me that I was wrong. With new defpager this bug just changed beh

[bug #35501] Work with memory object before it is initiated hangs the kernel.

2012-02-19 Thread Maksym Planeta
Update of bug #35501 (project hurd): Status:None => Invalid Open/Closed:Open => Closed Wiki-like text discussion box: => Bug is present only with defpager, I work on.

[bug #35501] Work with memory object before it is initiated hangs the kernel.

2012-02-10 Thread Maksym Planeta
Additional Item Attachment, bug #35501 (project hurd): File name: test.shSize:0 KB ___ Reply to this item at: ___ Message sent

[bug #35501] Work with memory object before it is initiated hangs the kernel.

2012-02-10 Thread Maksym Planeta
URL: <http://savannah.gnu.org/bugs/?35501> Summary: Work with memory object before it is initiated hangs the kernel. Project: The GNU Hurd Submitted by: mplaneta Submitted on: Fri 10 Feb 2012 08:53:19 PM EET Ca

[bug #27854] ps -o command hangs

2009-11-23 Thread Samuel Thibault
Update of bug #27854 (project hurd): Category:None => Hurd Status:None => Fixed Assigned to:None => sthibaul Open/Closed:

Re: [bug #27854] ps -o command hangs

2009-11-03 Thread olafBuddenhagen
Hi, On Fri, Oct 30, 2009 at 12:04:18AM +, Samuel Thibault wrote: > ps -o command seems to just hang, Not always -- it depends on the actual format. I tried a few (not all), and 'tty' seems to hang indeed, while 'pid' and 'args' work fine... -antrik-

Re: [bug #27539] pfinet hangs

2009-10-31 Thread olafBuddenhagen
Hi, On Sun, Sep 27, 2009 at 03:08:40PM +, anonymous wrote: > awoodland: hmm I seem to be able to repeatably cause /hurd/pfinet to hang by > running 'apt-get source icedove' in an NFS directory > awoodland: at least I think it's pfinet that's hanging because I can't ping > the box any more >

[bug #27854] ps -o command hangs

2009-10-29 Thread Samuel Thibault
URL: <http://savannah.gnu.org/bugs/?27854> Summary: ps -o command hangs Project: The GNU Hurd Submitted by: sthibaul Submitted on: ven 30 oct 2009 01:04:17 CET Category: None Severity: 3 -

Re: [bug #27539] pfinet hangs

2009-09-27 Thread Samuel Thibault
Philip Charles, le Sun 27 Sep 2009 19:16:47 +, a écrit : > netbase does not configure and many packages depend on this. > ifupdown (unreleased) is configured and replaces netbase. Err, I believe it is not related to bug #27539, which only happens with the Xen driver and a high network load. W

[bug #27539] pfinet hangs

2009-09-27 Thread Philip Charles
Follow-up Comment #4, bug #27539 (project hurd): netbase does not configure and many packages depend on this. ifupdown (unreleased) is configured and replaces netbase. ___ Reply to this item at: __

[bug #27539] pfinet hangs

2009-09-27 Thread anonymous
Follow-up Comment #3, bug #27539 (project hurd): Seems to be locked somehwere in thread_block in if (notify) hyp_event_channel_send(nd->evt); simple_unlock(&nd->pushlock); thread_block(NULL); hyp_grant_takeback(gref); i.e. dom0 doesn't release the grant ref. Sending trafic on the same bridge

[bug #27539] pfinet hangs

2009-09-27 Thread anonymous
Follow-up Comment #2, bug #27539 (project hurd): Note: this is with under Xen, with the Xen network driver of gnumach ___ Reply to this item at: ___ M

[bug #27539] pfinet hangs

2009-09-27 Thread Samuel Thibault
Follow-up Comment #1, bug #27539 (project hurd): Looks like ethernet_xmit() is actually hanging, thus keeping the mutex locked. ___ Reply to this item at: _

[bug #27539] pfinet hangs

2009-09-27 Thread anonymous
Additional Item Attachment, bug #27539 (project hurd): File name: bt Size:8 KB ___ Reply to this item at: ___ Message post

[bug #27539] pfinet hangs

2009-09-27 Thread anonymous
URL: <http://savannah.gnu.org/bugs/?27539> Summary: pfinet hangs Project: The GNU Hurd Submitted by: None Submitted on: dim 27 sep 2009 15:08:38 UTC Category: None Severity: 3 -

in my program mach_msg() hangs after it is called many times

2008-09-01 Thread Da Zheng
Hello, I wrote a program called eth-multiplexer. It creates several virtual network interfaces. When it gets the packet from one interface, it will broadcast the packet to all interfaces, to all clients that connect to the interfaces. There is a BPF filter for each client, so the packet shoul

Re: syslog (was: hangs)

2008-07-23 Thread Samuel Thibault
Thomas Schwinge, le Tue 22 Jul 2008 16:54:47 +0200, a écrit : > On Tue, Jul 22, 2008 at 02:33:34PM +0100, Samuel Thibault wrote: > > It looks like the hangs we're encountering on flubber/gnubber and which > > I'm having on the buildd are due to syslog() blocking somewher

syslog (was: hangs)

2008-07-22 Thread Thomas Schwinge
Hello! On Tue, Jul 22, 2008 at 02:33:34PM +0100, Samuel Thibault wrote: > It looks like the hangs we're encountering on flubber/gnubber and which > I'm having on the buildd are due to syslog() blocking somewhere. Interesting... While being at syslog, I can again point to t

hangs

2008-07-22 Thread Samuel Thibault
It looks like the hangs we're encountering on flubber/gnubber and which I'm having on the buildd are due to syslog() blocking somewhere. Samuel

Re: Debian GNU/Hurd in qemu completely hangs on perl File::Temp test t/mktemp 1/9

2008-01-31 Thread Slava S. Kardakov
It is qemu's gdb server & dgb> target remote localhost:1234. I can't get 'backtrace full' from it. Can you tell me how can I collect needed info? -- Best Regards, Slava S. Kardakov Samuel Thibault wrote: news.gmane.org, le Thu 31 Jan 2008 13:35:14 +0300, a écrit : In gdb I'm getting s

Re: Debian GNU/Hurd in qemu completely hangs on perl File::Temp test t/mktemp 1/9

2008-01-31 Thread Samuel Thibault
news.gmane.org, le Thu 31 Jan 2008 13:35:14 +0300, a écrit : > In gdb I'm getting something like this: > > >(gdb) nexti > >Cannot access memory at address 0x2cd738 Could you also run trace ? Samuel

Debian GNU/Hurd in qemu completely hangs on perl File::Temp test t/mktemp 1/9

2008-01-31 Thread news.gmane.org
In gdb I'm getting something like this: (gdb) nexti Cannot access memory at address 0x2cd738 (gdb) info registers eax0x2 2 ecx0x2710 1 edx0x0 0 ebx0x7ff5600134174208 esp0x2cd738 0x2cd738 ebp0x2cd754 0x2c

Re: libpthread in glibc (was: Bug#407208: imagemagick: convert hangs on hurd-i386)

2007-02-04 Thread Neal H. Walfield
At Sun, 4 Feb 2007 13:38:15 +0100, Thomas Schwinge wrote: > On Wed, Jan 31, 2007 at 03:28:26PM +0100, Samuel Thibault wrote: > > Samuel Thibault, le Wed 31 Jan 2007 00:32:17 +0100, a ?crit : > > > Unfortunately this is not enough: oddly enough, libX11's weak definition > > > wins (at least in glibc

libpthread in glibc (was: Bug#407208: imagemagick: convert hangs on hurd-i386)

2007-02-04 Thread Thomas Schwinge
Hello! On Wed, Jan 31, 2007 at 03:28:26PM +0100, Samuel Thibault wrote: > Samuel Thibault, le Wed 31 Jan 2007 00:32:17 +0100, a ?crit : > > Unfortunately this is not enough: oddly enough, libX11's weak definition > > wins (at least in glibc 2.3.6 and 2.5.0, but not in glibc 2.2.5)... I > > fail t

Re: libpthread linking problem -- [EMAIL PROTECTED]: Re: imagemagick: convert hangs on hurd-i386]

2007-01-28 Thread Neal H. Walfield
At Sat, 27 Jan 2007 00:21:15 +0100, Samuel Thibault wrote: > > And why do we need all three of `__NAME', `_NAME' and `NAME'? > > __NAME is usually used for letting libpthread be sure to call its own > functions, while NAME can be overriden by other libraries. I don't know > for _NAME. NAME is a s

Re: python 2.4: os.urandom() hangs if /dev/random, /dev/urandom are not reconnected to a translator

2007-01-28 Thread massimo s.
[EMAIL PROTECTED] ha scritto: > Hi, > > On Sat, Jan 27, 2007 at 06:16:22PM +, massimo s. wrote: >> [EMAIL PROTECTED] ha scritto: > >>> Does it also hang if you don't have a translator there at all? >> If I settrans -fg /dev/urandom yes, it hangs. >

Re: python 2.4: os.urandom() hangs if /dev/random, /dev/urandom are not reconnected to a translator

2007-01-28 Thread olafBuddenhagen
Hi, On Sat, Jan 27, 2007 at 06:16:22PM +, massimo s. wrote: > [EMAIL PROTECTED] ha scritto: > > Does it also hang if you don't have a translator there at all? > > If I settrans -fg /dev/urandom yes, it hangs. settrans -fg only removes the active translator, but the

Re: python 2.4: os.urandom() hangs if /dev/random, /dev/urandom are not reconnected to a translator

2007-01-27 Thread Michael Banck
On Sat, Jan 27, 2007 at 06:16:22PM +, massimo s. wrote: > I thought that for os.urandom(): > - a timeout could be useful on any platform without a reliable random > device (I don't think Hurd is alone in this). I'll ask to the python > mailing list. /dev/urandom does not provide reliable rando

Re: python 2.4: os.urandom() hangs if /dev/random, /dev/urandom are not reconnected to a translator

2007-01-27 Thread massimo s.
ching (settrans -fg /dev/urandom) and >> then reattaching the translator fixed the bug. If I release the >> translator the bug comes out again. > > Does it also hang if you don't have a translator there at all? If I settrans -fg /dev/urandom yes, it hangs. I haven't tried w

Re: python 2.4: os.urandom() hangs if /dev/random, /dev/urandom are not reconnected to a translator

2007-01-27 Thread olafBuddenhagen
Hi, On Thu, Jan 25, 2007 at 11:36:01PM +, massimo s. wrote: > I noticed that gconf-schemas was hung (even overnight) until ctrl-c is > pressed. [...] > When using ctrl-c python gives the following traceback, showing the > instruction where it hangs: [...] > File "/usr

Re: libpthread linking problem -- [EMAIL PROTECTED]: Re: imagemagick: convert hangs on hurd-i386]

2007-01-26 Thread Samuel Thibault
Hi, Thomas Schwinge, le Fri 26 Jan 2007 14:13:48 +0100, a écrit : > > Ok, the problem is that convert is linked both with libpthread and > > libX11, and when looking for the pthread_mutex_unlock() symbol, the one > > from libX11 (void stub) is found instead of the one from libpthread. > > 19:

Re: libpthread linking problem -- [EMAIL PROTECTED]: Re: imagemagick: convert hangs on hurd-i386]

2007-01-26 Thread Thomas Schwinge
Hello! > Ok, the problem is that convert is linked both with libpthread and > libX11, and when looking for the pthread_mutex_unlock() symbol, the one > from libX11 (void stub) is found instead of the one from libpthread. Before applying Samuel's patch: #v+ 36: 62f041 FUNCGLOBAL

python 2.4: os.urandom() hangs if /dev/random, /dev/urandom are not reconnected to a translator

2007-01-25 Thread massimo s.
where it hangs: Traceback (most recent call last): File "/usr/lib/python2.4/tempfile.py", line 33, in ? from random import Random as _Random File "/usr/lib/python2.4/random.py", line 834, in ? inst = Random() File "/usr/lib/python2.4/random.py", line

Re: libpthread linking problem -- [EMAIL PROTECTED]: Re: imagemagick: convert hangs on hurd-i386]

2007-01-20 Thread Samuel Thibault
Neal H. Walfield, le Sat 20 Jan 2007 13:23:59 +0100, a écrit : > This looks reasonable. Feel free to apply. Ok, applied. Michael, maybe you'll want to grab a new snapshot just for this fix ;) Samuel ___ Bug-hurd mailing list Bug-hurd@gnu.org http://l

Re: libpthread linking problem -- [EMAIL PROTECTED]: Re: imagemagick: convert hangs on hurd-i386]

2007-01-20 Thread Neal H. Walfield
This looks reasonable. Feel free to apply. ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

libpthread linking problem -- [EMAIL PROTECTED]: Re: imagemagick: convert hangs on hurd-i386]

2007-01-20 Thread Thomas Schwinge
; convert currently hangs on hurd-i386, which makes apache FTBFS. We have > yet to investigate, this bug report is mostly for letting people know > the issue and remember to fix it. Ok, the problem is that convert is linked both with libpthread and libX11, and when looking for the pthre

Re: imagemagick: convert hangs on hurd-i386

2007-01-19 Thread Samuel Thibault
reassign 407208 hurd thanks Hi, Samuel Thibault, le Tue 16 Jan 2007 22:16:01 +0100, a écrit : > convert currently hangs on hurd-i386, which makes apache FTBFS. We have > yet to investigate, this bug report is mostly for letting people know > the issue and remember to fix it. Ok, the p

[bug #15296] gnumach hangs because of Linux 2.0.36 adaptec drivers

2005-12-30 Thread Alfred M. Szmidt
Update of bug #15296 (project hurd): Status:None => Need Info ___ Reply to this item at: ___

[bug #15296] gnumach hangs because of Linux 2.0.36 adaptec drivers

2005-12-26 Thread Samuel Thibault
URL: <http://savannah.gnu.org/bugs/?func=detailitem&item_id=15296> Summary: gnumach hangs because of Linux 2.0.36 adaptec drivers Project: The GNU Hurd Submitted by: sthibaul Submitted on: lun 26.12.2005 à 22:57

[bug #3939] rpctrace:d program hangs when signal that terminates or suspends it is sent

2005-12-26 Thread Alfred M. Szmidt
Update of bug #3939 (project hurd): Status: Fixed => None ___ Reply to this item at: _

Re: hangs with (hd0,2)/hurd/ext2fs.static

2005-02-08 Thread Shakthi Kannan
Hi, Thanks for your reply Patrick Strasser. --- Patrick Strasser <[EMAIL PROTECTED]> wrote: > > Partition check (DOS partitions): > > hd0: hd0: status timeout: status=0xff { Busy } > > hd1: disabled DMA > > hd0: drive not ready for command > > Tell us more about your IDE configuration: > Do

Re: hangs with (hd0,2)/hurd/ext2fs.static

2005-02-07 Thread Patrick Strasser
Shakthi Kannan wrote: Greetings! Rebooted to grub.At grub prompt, ("find /boot/gnumach.gz" returns (hd0,2) Once You've found gnumach.gz you've found your working partition. You can set your default partition for the following commands with "root": root (hd0,2) For the "kernel" and "module" comm

Re: hangs with (hd0,2)/hurd/ext2fs.static

2005-02-06 Thread Bas Wijnen
Alfred M. Szmidt wrote: Other suggestions for what? You didn't tell us what your current problem was (atleast, I couldn't see it). His booting stopped after saying start (hd0,2)/hurd/ext2fs.static: (hd0,2)/hurd/ext2fs.static: (as he described in his original post, and is still in the topic) Howeve

Re: hangs with (hd0,2)/hurd/ext2fs.static

2005-02-06 Thread Alfred M. Szmidt
Actually, I am typing everything in one line in the grub prompt. Why don't you use menu.lst? It will save you a bit of useless typing... See the grub manual for details. I hit an enter while posting in the mailing list for readability. Please don't, always always leave the input and

Re: hangs with (hd0,2)/hurd/ext2fs.static

2005-02-05 Thread Shakthi Kannan
Hi, Thanks for your replies Ognyan Kulev, Marco Gerards and Alfred M. Szmidt. I forgot to give my hardware details: Intel Celeron (Mendacino), 500 MHz, 128 MB RAM. "Marco Gerards" <[EMAIL PROTECTED]> wrote: Perhaps your emailclient did this, but it should be one line: module (hd0,2)/hurd/ext2f

Re: hangs with (hd0,2)/hurd/ext2fs.static

2005-02-05 Thread Alfred M. Szmidt
> --multiboot-command-line=${kernel-command-line} > --host-priv-port=${host-port} > --device-master-port=${device-port} > --exec-server-task=${exec-task} -T typed Perhaps your emailclient did this, but it should be one line: module (hd0,2)/hurd/ext2fs.sta

Re: hangs with (hd0,2)/hurd/ext2fs.static

2005-02-05 Thread Marco Gerards
Shakthi Kannan <[EMAIL PROTECTED]> writes: > --multiboot-command-line=${kernel-command-line} > --host-priv-port=${host-port} > --device-master-port=${device-port} > --exec-server-task=${exec-task} -T typed Perhaps your emailclient did this, but it should be one line: modu

Re: hangs with (hd0,2)/hurd/ext2fs.static

2005-02-05 Thread Ognyan Kulev
Shakthi Kannan wrote: GNU Mach 1.3 AT386 boot: physical memory from 0x0 to 0x7ff ...pci probe Partition check (DOS partitions): hd0: hd0: status timeout: status=0xff { Busy } hd1: disabled DMA hd0: drive not ready for command ide0: reset timed-out, status=0xff h

hangs with (hd0,2)/hurd/ext2fs.static

2005-02-05 Thread Shakthi Kannan
Greetings! Thanks to Anand Babu for getting us started on GNU/Hurd. I have installed Knoppix 3.6 to hard disk. Have made a 1 GB Linux native partition for GNU/Hurd (/dev/hdb3). Created the filesystem using: #mke2fs -b 4096 -o hurd /dev/hdb3 Mounted the same using: #mount /dev/hdb3 /gnu Install

[bug #3939] rpctrace:d program hangs when signal that terminates orsuspends it is sent

2003-08-16 Thread nobody
Status: Open Reproducibility: Every Time Size (loc): Medium 30 - 200 Effort: 0.50 Summary: rpctrace:d program hangs when signal that terminates or suspends it is sent Original Submission: All RPC communication of a rp

[bug #3939] rpctrace:d program hangs when signal that terminates orsuspends it is sent

2003-08-14 Thread nobody
Status: Closed Reproducibility: Every Time Size (loc): Low <30 Effort: 0.50 Summary: rpctrace:d program hangs when signal that terminates or suspends it is sent Original Submission: All RPC communication of a rpctrace:d programs is catched by rp

Re: ps just hangs

2001-10-25 Thread Roland McGrath
>But there is no excuse for C-c not working in gdb. >Someone should debug gdb. > > Hmm. C-c is supposed to interrupt the program, which obviously fails > because the signal thread isn't responding. Should it interrupt GDB > instead in such a case? He's using attach in gdb. C-c should n

Re: ps just hangs

2001-10-25 Thread Mark Kettenis
From: Roland McGrath <[EMAIL PROTECTED]> Date: Thu, 25 Oct 2001 02:31:19 -0400 (EDT) > (gdb) attach 743 > Attaching to program `/usr/bin/tail', pid 743 > ^C^C Hmm. That might be gdb trying to talk to the signal thread. Definitely. But there is no excuse for C-c not worki

Re: ps just hangs

2001-10-24 Thread Roland McGrath
> GDB here seems to be stuck, and C-c won't break out back to the gdb prompt. > > buildd@hurd:~$ gdb /usr/bin/tail > GNU gdb 5.0.90-cvs (MI_OUT) > Copyright 2001 Free Software Foundation, Inc. > GDB is free software, covered by the GNU General Public License, and you are > welcome to change it an

Re: ps just hangs

2001-10-24 Thread Jeff Bailey
On Thu, Oct 25, 2001 at 02:03:35AM -0400, Roland McGrath wrote: > Well don't be shy man, take your gdb there and attach it to the tail process! Sorry, sleepiness talking again. =) I'm going to sleep after this message. I assume the system will be still stuck in the morning. If not, this isn't

Re: ps just hangs

2001-10-24 Thread Roland McGrath
> On Thu, Oct 25, 2001 at 01:42:48AM -0400, Roland McGrath wrote: > > Whenever ps hangs, try ps -M and then narrow down if it hangs only querying > > specific processes without -M. > > Got one. What do I do next? > > buildd@hurd:~$ ps -M > PID STAT TIME COM

Re: ps just hangs

2001-10-24 Thread Jeff Bailey
On Thu, Oct 25, 2001 at 01:42:48AM -0400, Roland McGrath wrote: > Whenever ps hangs, try ps -M and then narrow down if it hangs only querying > specific processes without -M. Got one. What do I do next? buildd@hurd:~$ ps -M PID STAT TIME COMMAND 656 Sw0:00.35 gdb tail 743 S

Re: ps just hangs

2001-10-24 Thread Roland McGrath
Whenever ps hangs, try ps -M and then narrow down if it hangs only querying specific processes without -M. ___ Bug-hurd mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-hurd

ps just hangs

2001-10-24 Thread Jeff Bailey
Here is the problem I'm having: buildd@hurd:~$ ps ^C buildd@hurd:~$ gdb ps GNU gdb 5.0.90-cvs (MI_OUT) Copyright 2001 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain condi

Re: rlogin hangs when setting clock

2001-06-14 Thread Jeff Bailey
On Thu, Jun 14, 2001 at 06:39:21PM +0200, Johan Rydberg wrote: > I have logged into my (Debian) GNU/Hurd machine from a remote Linux-machine > using rlogin. When setting the clock using "date -s" the rlogin session hangs. > I have not yet had the time to look more into this.

rlogin hangs when setting clock

2001-06-14 Thread Johan Rydberg
Hi! I have logged into my (Debian) GNU/Hurd machine from a remote Linux-machine using rlogin. When setting the clock using "date -s" the rlogin session hangs. I have not yet had the time to look more into this. It also seems that "pfinet" goes crazy and starts taking 95%-

Bug#98071: symlink to itself hangs

2001-05-20 Thread Roland McGrath
> The problem is that with the latest glibc, the system doesn't boot anymore. > Userspace programs (tested with LD_LIBRARY_PATH and using the new linker) > seem to run fine, but at boot time when the server are started, it prints > "exec init" and hangs. If this w

Bug#98071: symlink to itself hangs

2001-05-20 Thread Marcus Brinkmann
, but at boot time when the server are started, it prints "exec init" and hangs. Jeff saw that, too. I could get an older glibc version and back-port the patch. Thanks, Marcus -- `Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED] Marcus Brinkmann

Bug#98071: symlink to itself hangs

2001-05-19 Thread Roland McGrath
It looks like the ELOOP check is not being done for absolute symlinks. I think there was also a port leak in the ELOOP error case that did work (e.g. for "ln -s x x; ls -L x", ls would leak a send right). I've just checked in a fix for this to libc, but I have not tested it. Please tell me if it

Bug#98071: symlink to itself hangs

2001-05-19 Thread Marcus Brinkmann
Package: hurd Hi, the following doesn't return: $ cd /tmp $ ln -s /tmp/x x $ ls x The variant "ln -s x x" does not show such errornous behaviour. Filesystem is ext2fs. It is sufficient to do "ls". Here is a backtrace: Script started on Sun May 20 02:23:35 2001 marcus@ulysses:/tmp$ gdb /b b