Dresden 1945

2005-05-15 Thread james
Lese selbst: http://www.kommunisten-online.de/blackchanel/dresden3.htm ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

GNU emacs on Hurd

2012-07-05 Thread James Collier
ebian/ sid/main hurd-i386 Packages I would appreciate some advice on what to do next. Should I forward the bug to Debian (I can't find it on the debian bug tracker) with the patch? Thanks very much, James

re involved

2013-04-13 Thread James Simko
do you still need a technical writer to do documentation?

VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-06-27 Thread James Clarke
k. Does anyone have an idea how this situation could be occurring? James Clarke

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-11 Thread James Clarke
-request.c:113 (_pager_S_memory_object_data_request) 5 libpager/memory_objectServer.c:443 (_Xmemory_object_data_request) 6 libpager/demuxer.c:215 (worker_func) 7 libpthread/pthread/pt-create.c:64 (entry_point) James Clarke > On 27 Jun 2015, at 20:34, Richard Braun wrote: > > On Sa

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, Jus

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-15 Thread James Clarke
hat's happening, and it's that the *file* pager is trying to read from disk. Any thoughts? James > On 14 Jul 2015, at 20:54, Justus Winter <4win...@informatik.uni-hamburg.de> > wrote: > > Hi James :) > > you found a long-standing bug in ext2fs. Fixing it allows us

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-19 Thread James Clarke
n/worker threads, as pager_start_workers just takes a bucket and returns void. Is there a way we can instead make the main thread and/or workers able to block ports_inhibit_X_rpcs like normal RPC handlers and be cancelled etc? If possible I think that would be a cleaner solution. James > On 19 Jul 2015,

Re: VirtualBox Hangs Pre-Init Due To Ext2FS Fault

2015-07-20 Thread James Clarke
debugger), so I need to do some more debugging to see why. James > On 19 Jul 2015, at 15:00, Richard Braun wrote: > >> 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 g

[PATCH] WIP: Fix ext2fs remount race condition

2015-07-21 Thread James Clarke
--- ext2fs/ext2fs.c | 18 +++ ext2fs/ext2fs.h | 6 +++ ext2fs/pager.c | 35 +- fatfs/fatfs.h| 2 + fatfs/pager.c| 35 +- libdiskfs/disk-pager.c | 3 +- libdiskfs/diskfs-pager.h | 1 + libpager/demuxer.c

[PATCH] Fix race condition in ext2fs when remounting

2015-07-22 Thread James Clarke
On some systems, ext2fs.static would regularly hang at startup, as a race condition meant it would process paging requests while reounting. To fix this, libpager has been altered to allow inhibiting and resuming its worker threads. * console/pager.c (pager_requests): New variable. (user_pager_init

[PATCH v2] Fix race condition in ext2fs when remounting

2015-07-22 Thread James Clarke
On some systems, ext2fs.static would regularly hang at startup, as a race condition meant it would process paging requests while remounting. To fix this, libpager has been altered to allow inhibiting and resuming its worker threads, and ext2fs uses this to inhibit paging while remounting. * consol

Re: [PATCH] Fix race condition in ext2fs when remounting

2015-07-22 Thread James Clarke
Perhaps; I was following what diskfs_remount does when inhibiting RPCs, which stay inhibited on error. James > On 23 Jul 2015, at 00:51, Diego Nieto Cid wrote: > > Hi > > This is me being picky about a corner case :-) > > 2015-07-22 19:42 GMT-03:00 James

[PATCH v3] Fix race condition in ext2fs when remounting

2015-07-23 Thread James Clarke
On some systems, ext2fs.static would regularly hang at startup, as a race condition meant it would process paging requests while remounting. To fix this, libpager has been altered to allow inhibiting and resuming its worker threads, and ext2fs uses this to inhibit paging while remounting. * consol

Re: [PATCH v3] Fix race condition in ext2fs when remounting

2015-08-15 Thread James Clarke
Not sure how I missed that; will grep for any others. James > On 14 Aug 2015, at 13:16, Justus Winter <4win...@informatik.uni-hamburg.de> > wrote: > > Quoting James Clarke (2015-07-23 19:33:42) >> diff --git a/libdiskfs/disk-pager.c b/libdiskfs/disk-pager.c >>

[PATCH] Fix race condition in ext2fs when remounting

2015-08-27 Thread James Clarke
On some systems, ext2fs.static would regularly hang at startup, as a race condition meant it would process paging requests while remounting. To fix this, libpager has been altered to allow inhibiting and resuming its worker threads, and ext2fs uses this to inhibit paging while remounting. * consol

[RFC] Fix printk not handling ANSI escape codes

2015-08-29 Thread James Clarke
* i386/i386at/kd.c (kdstart): Moved escape sequence handling to new kd_putc_esc function. (kd_putc_esc): New function with logic from kdstart. (kdcnputc): Call kd_putc_esc rather than kd_putc to allow for ANSI escape codes. * i386/i386at/kd.h (kd_putc_esc): New function. --- i386/i386at/kd.c | 63

Re: [RFC] Fix printk not handling ANSI escape codes

2015-08-29 Thread James Clarke
you think that was the right decision? James > On 29 Aug 2015, at 11:20, Samuel Thibault wrote: > > James Clarke, le Sat 29 Aug 2015 11:15:29 +0100, a écrit : >> @@ -1069,33 +1068,12 @@ kdstart(struct tty *tp) >>break; >>if ((tp->t_outq.c_cc

Re: [RFC] Fix printk not handling ANSI escape codes

2015-08-29 Thread James Clarke
I never gave that as an option? James > On 29 Aug 2015, at 11:44, Samuel Thibault wrote: > > James Clarke, le Sat 29 Aug 2015 11:42:38 +0100, a écrit : >> Yes, it should be; since I didn't catch that I'd guess nothing in Mach/Hurd >> is actually using escap

Re: [RFC] Fix printk not handling ANSI escape codes

2015-08-29 Thread James Clarke
Yes, that was a mistake, it should call kd_putc_esc. James > On 29 Aug 2015, at 11:55, Samuel Thibault wrote: > > James Clarke, le Sat 29 Aug 2015 11:53:57 +0100, a écrit : >> I never gave that as an option? > > ? I understand even less. AIUI, before kd_start had esc

[PATCH] Install port-deref-deferred.h header for ports.h

2015-09-10 Thread James Clarke
* libports/Makefile (installhdrs): Add port-deref-deferred.h for ports.h --- libports/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libports/Makefile b/libports/Makefile index b8b82ee..af881f8 100644 --- a/libports/Makefile +++ b/libports/Makefile @@ -38,7 +38,7 @@ S

[PATCH] Add support for ANSI.SYS SCP/RCP escape codes

2015-09-11 Thread James Clarke
This adds support for CSI s and u, which are equivalent to ESC 7 and 8, saving/restoring the cursor position. * console/display.c (handle_esc_bracket): Added support for CSI s and u. --- console/display.c | 12 1 file changed, 12 insertions(+) diff --git a/console/display.c b/consol

Re: [PATCH] Add support for ANSI.SYS SCP/RCP escape codes

2015-09-12 Thread James Clarke
CP/RCP, because ANSI.SYS called them Save/Restore Cursor Position, and everywhere seems to refer to them by that acronym (they're even listed on Wikipedia in the table of codes, despite not being in ECMA-48, nor being implemented by the VT100). James > On 12 Sep 2015, at 10:15, Samuel Thib

Re: (Newbie question) Failed building hurd on Debian GNU Hurd

2015-09-24 Thread James Clarke
That’s an issue with the current Hurd repo on Savannah. You need this patch http://darnassus.sceen.net/gitweb/teythoon/packaging/hurd.git/blob/HEAD:/debian/patches/proc-task-notify-0005-proc-fix-build.patch, from what I gather (at least it fixes it for me). James > On 24 Sep 2015, at 13

Hurd Login Utility

2015-09-29 Thread James Clarke
prompt for a username, and then exec login, which seems unnecessary). Thoughts? James

Re: Hurd Login Utility

2015-09-30 Thread James Clarke
This seems to be caused by a segfault, so I imagine this is not intended! Tracking down the cause... James On Tue, 29 Sep 2015, James Clarke wrote: Whilst looking through the code in utils/login.c, I noticed a security issue. Even if --paranoid is set, if you give it a UID that doesn’t

[PATCH 1/1] Add missing null checks in libshouldbeinlibc

2015-09-30 Thread James Clarke
The getpwnam_r and similar functions only return non-zero on error, but not finding the given name/UID/GID does not count as an error. When they return 0, the value of the result (*result when looking at the arguments in the man pages) still needs to be checked for null. * libshouldbeinlibc/idvec-

[PATCH 0/1] Add missing null checks in libshouldbeinlibc

2015-09-30 Thread James Clarke
This stops /bin/login segfaulting when giving it a bad UID. However, the fact that the UID does not exist is still leaked, since libshouldbeinlibc/idvec-verify.c:verify_id falls back on asking for the root password, and indicates this by changing the prompt to "Password for root". James

[PATCH] sulogin: Use fallback method on the Hurd for detecting consoles

2015-10-09 Thread James Clarke
Signed-off-by: James Clarke --- login-utils/sulogin-consoles.c | 8 1 file changed, 8 insertions(+) diff --git a/login-utils/sulogin-consoles.c b/login-utils/sulogin-consoles.c index 39d24d2..1b05b38 100644 --- a/login-utils/sulogin-consoles.c +++ b/login-utils/sulogin-consoles.c

Re: PATCH: Hurd FTBFS with perl 5.22

2016-01-04 Thread James Clarke
die "Usage: $0 HZ\n"; > } > > @val = @{$canned_values{$hz}}; > - if (!defined(@val)) { > + if (!@val) { > @val = compute_values($hz); > } > output($hz, @val); > } > exit 0; James [1] https://metacpan.org/pod/r

Re: [PATCH] Check for a return value in netfs_make_peropen before using it in netfs_make_protid.

2016-02-07 Thread James Clarke
On 7 Feb 2016, at 14:51, Flavio Cruz wrote: > - cred = netfs_make_protid (netfs_make_peropen (node, flags, cookie2), > - user); > + po = netfs_make_peropen (node, flags, cookie2); > + if (! po) > +return errno; You need to free user. James

[PATCH] Fixed leaks in _netfs_translator_callback2_fn

2016-02-07 Thread James Clarke
* libnetfs/trans-callback.c (_netfs_translator_callback2_fn): Fixed leaking iouser and peropen structs on error. --- libnetfs/trans-callback.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libnetfs/trans-callback.c b/libnetfs/trans-callback.c index 3f1aee6..7816bd1 10064

Re: [PATCH] Fixed leaks in _netfs_translator_callback2_fn

2016-02-07 Thread James Clarke
po = netfs_make_peropen (node, flags, cookie2); > if (! po) > -return errno; > +{ > + err = errno; > + iohelp_free_iouser (user); > + return err; > +} or can we assume the free functions don’t set errno? James signature.asc Description: Message signed with OpenPGP using GPGMail

[PATCH v2] Fixed leaks in _netfs_translator_callback2_fn

2016-02-07 Thread James Clarke
* libnetfs/trans-callback.c (_netfs_translator_callback2_fn): Fixed leaking iouser and peropen structs on error. --- libnetfs/trans-callback.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/libnetfs/trans-callback.c b/libnetfs/trans-callback.c index 3f1aee6..ed21aa2

Re: Coppyright assignment (was: RFC: Lightweight synchronization mechanism for gnumach)

2016-03-03 Thread James Clarke
're to contribute >> more to GNU/Hurd, it'd be useful that you already assign copyright for >> GNUMACH, HURD, GLIBC. > > You forgot MIG. Unless it’s changed since I assigned copyright last year, MIG is an individual project and you can’t assign copyright for it. Ja

Re: gnumach 1.7 issue

2016-06-04 Thread James Clarke
tions with a red-black tree I shall try building a kernel with 1db202e reverted. James [1] https://anonscm.debian.org/cgit/pkg-hurd/gnumach.git/commit/?id=8d63d9c0d3b84e8496248093ce333c959fe985c9 signature.asc Description: Message signed with OpenPGP using GPGMail

Re: gnumach 1.7 issue

2016-06-04 Thread James Clarke
> On 4 Jun 2016, at 15:04, James Clarke wrote: > >> On 3 Jun 2016, at 19:36, Samuel Thibault wrote: >> >> Samuel Thibault, on Fri 03 Jun 2016 20:35:13 +0200, wrote: >>> Adam Richards, on Fri 03 Jun 2016 19:30:40 +0100, wrote: >>>> On rebooting and

Re: [PATCH] LwIP translator

2017-08-24 Thread James Clarke
ypt. > HAVE_LIBGCRYPT = @HAVE_LIBGCRYPT@ > > +# Whether we found libgcrypt. Copy-paste error :) James

Re: [PATCH] eth-multiplxer: Implement ds_device_close()

2017-09-20 Thread James Clarke
; +CFLAGS += -I$(top_srcdir)/libbpf -ggdb -O0 I don't think you meant to include this hunk? :) James

Re: [PATCH] LwIP translator

2017-12-18 Thread James Clarke
ive which last saw an upload in 2012, so might be worth unifying them if possible (it seems to be a fork from a while ago[1], probably before IPv6 was added upstream). Regards, James [1] https://sourceforge.net/p/view-os/code/HEAD/tree/trunk/lwipv6/

Re: [PATCH] LwIP translator

2017-12-18 Thread James Clarke
On 18 Dec 2017, at 17:09, Samuel Thibault wrote: > James Clarke, on lun. 18 déc. 2017 17:06:28 +, wrote: >> On 18 Dec 2017, at 16:28, Samuel Thibault wrote: >>> Joan Lledó, on lun. 18 déc. 2017 17:10:42 +0100, wrote: >>>> 2017-12-18 14:46 GMT+01:00 Samuel Th

Re: Glibc port: commit clenup

2018-02-17 Thread James Clarke
agesize >> >> I have completely changed the fix there, and commited upstream. > > Maybe I can try to help out here after being AFK for a month. Where is > upstream? Noting visible at > http://git.savannah.gnu.org/cgit/hurd/glibc.git/ > except your commit?? That's

Re: Samuel: Do you have permission to _enable_ the gccgo patches again?

2018-03-26 Thread James Clarke
r you (or him), see #894080. > > Next step is to send them to golang-dev for upstream adoption. gcc-patches > seems > to be a null sink. Sending patches there gives no reply whatsoever: Recent > examples gdb and gccgo. The best place for them is https://go-review.googlesource.com against go-frontend. James

Re: Enable SMP support

2018-06-08 Thread James Clarke
[ $mach_ncpus -gt 1 ]; then] > AC_DEFINE([MULTIPROCESSOR], [1], [set things up for a multiprocessor]) > [fi] So enabling it is just a case of tweaking that constant or making it a configurable option. James

Re: Error with gnumach compilation

2019-02-15 Thread James Clarke
a few minutes for me. You've had more than enough information from us to pinpoint the problem; this mailing list is really not for simple programming questions like this. James [1] https://github.com/AlmuHS/GNUMach_SMP/commit/371df36e565f4408737948ccc3d25acf2e1ccb57

Re: Error with gnumach compilation

2019-02-15 Thread James Clarke
On 15 Feb 2019, at 13:33, Almudena Garcia wrote: > El vie., 15 feb. 2019 a las 14:28, James Clarke () > escribió: >> On 15 Feb 2019, at 13:21, Samuel Thibault wrote: >> > >> > Almudena Garcia, le ven. 15 févr. 2019 14:13:17 +0100, a ecrit: >> >> This

Re: mapped-time interface

2019-07-19 Thread James Clarke
einlibc/maptime.[ch]; it's exposed through /dev/time and/or the "time" mach device. James > > 1: https://www.gnu.org/software/hurd/gnumach-doc/Host-Time.html > -- > Andrew Eggenberger

Re: [PATCH 3/4] pci-arbiter: Fix a -Wstringop-truncation warning

2019-11-03 Thread James Clarke
;%04x", device->domain); >> + snprintf (entry_name, NAME_SIZE - 1, "%04x", device->domain); > > Perhaps replace the whole memset with just setting > entry_name[NAME_SIZE-1] = 0 > ? and ditto below. snprintf guarantees NUL termination, so this now over-truncates. James

Re: Hurd user survey

2000-03-07 Thread James Gibson
y, so you could correlate the successes and failures with the system their running on? For the record, here's mine: hurd-2130 P-166, 64MB physical, 150MB swap, Hurd on 540MB partition James __ Get Your Private, Free Email at http://www.hotmail.com

RE: GRUB problem installing menu.lst when e2fs_stage1_5 is present

2001-02-19 Thread James Franklin
PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of James Franklin Sent: Saturday, February 17, 2001 12:57 AM To: [EMAIL PROTECTED] Subject: GRUB problem installing menu.lst when e2fs_stage1_5 is present Hi folks, I was installing GRUB 0.5.96.1 on my new setup. This is a couple of 30 Gig IDE hard

/include/bits/sigaction.h:35: parse error

2001-09-20 Thread James Morrison
Hi, I tried to compile uw-imap today and go this error: /include/bits/sigaction.h:35: parse error before siginfo_t the section is union { __sighandler_t sa_handler; void (*sa_sigaction)(int,siginfo_t *, void *); } __sigaction_handler = James Morrison University of Waterloo

Re: I'm a bit pouched

2001-09-23 Thread James Morrison
--- Marcus Brinkmann <[EMAIL PROTECTED]> wrote: > On Sat, Sep 22, 2001 at 10:15:52AM -0700, James Morrison wrote: > > Here is the error I am getting on boot: > > > > 1 multiboot modules > > You get this? I get > > Loading single multiboot mod

More about being pouched

2001-09-23 Thread James Morrison
cd worked. My question is why this would happen? serverboot is only used on boot right? So how would it change while the system is running? = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op __ Do

I'm a bit pouched

2001-09-22 Thread James Morrison
e. I have upgraded gnumach and hurd since I last rebooted. Could this be causing my problem? hw config: Pentium 200 MMX 1 3c509 NIC 1 TLAN NIC 32 megs of ram. = James Morrison University of Waterloo Computer Science - Digital Hardware

Re: Cannot su or sudo

2001-10-25 Thread James Morrison
ver, I cannot su - so I don't think this is just my > ssh session that's screwed up. I'll try to leave the box in this > state for as longas I can. If it's just gdb screwing up, maybe a > new > one will tell me more. > > I'll keep you posted. > >

tail -f seg faults

2001-10-31 Thread James Morrison
from /lib/libhurduser.so.0.0 #5 0x01056fb9 in get_privileged_ports () from /lib/libc.so.0.2 #6 0x0104b52b in mach_msg_server_timeout () from /lib/libc.so.0.2 #7 0x0104b614 in mach_msg_server () from /lib/libc.so.0.2 #8 0x0105705b in get_privileged_ports () from /lib/libc.so.0.2 (gdb) = Jame

Re: tail -f seg faults

2001-10-31 Thread James Morrison
gh tail. One my second 'next' gdb froze. It is no longer taking keyboard signals C-c or C-\ and I can't change screens to try externel signals. My system seems to be up, but I can't use it. = James Morrison University of Waterloo Computer Science

Python2.1

2001-11-01 Thread James Morrison
ini>, stack_end=0x1025c2c) at ../sysdeps/generic/libc-start.c:129 (gdb) = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org __ Do You Yahoo!? Find a job, post your resume. http:/

My understanding of python2.1 and cthreads

2001-11-02 Thread James Morrison
en I do not run cthread_init(); I have made a simple program that does what I think python2.1 is doing but it has no problems. The back trace has not changed from my posting yesterday. = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://

sethostname()

2001-11-03 Thread James Morrison
the right place. Now I've got python2.2 going ;) = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org __ Do You Yahoo!? Find a job, post yo

What I know of sethostname()

2001-11-03 Thread James Morrison
or. I haven't found the sources for the __io_write function yet. This __io_write finds a bad file descriptor no matter if /etc/hostname exists or not. = James Morrison University of Waterloo Computer Science - Digital Hardware 2A

heimdal on GNU HURD

2001-09-28 Thread James Morrison
oken but be more > > appropriate then libkrb5, but apart from that everything else > looks > > OK (not tested thoroughly yet, as I do not have the latest > automake > > required). > > > > Thanks. > > -- > > Brian May <[EMAIL PROTECTED]> > > >

snprintf

2001-11-28 Thread James Morrison
ng string is less than maxsize passed to snprintf. = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org Anyone refering this as 'Open Source' shall be eaten by a GNU __ Do You

Re: ssh as user: setrlimit failed

2001-10-07 Thread James Morrison
ntly and there are two mach_port_t 's that I noticed. One is realnode and the other is realnodenoauth. What is the difference between these port_t's. = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org ___

Re: ports in symlink server

2001-10-08 Thread James Morrison
't seem to use the translator when gdb is attached. I've been looking through the processes run when hurd boots and I have a process with pid 3 but there is no cmdline for it. What is this process. = James Morrison University of Waterloo Computer Science - Digital Hardw

symlinks and filemux'ers

2001-10-08 Thread James Morrison
file1 S_fsys_getroot tries file2 S_fsys_getroot tries file3 and gives back this node Perhaps there is a magic retry variable? = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndn

Re: PowerPC port

2001-10-11 Thread James Morrison
TECTED] > When I extracted osf Mach from MkLinux I noticed that it had 3 architextures, i386, PowerPC, and HP700. I'm wondering how well i386 and HP700 source still builds. Do you know anyone who has used osf mach on these architextures? = James Morrison University of Wa

running system, can't exec programs.

2001-12-02 Thread James Morrison
I've still got irc, but no new processes. Is there anything I can do to get the exec server working again without rebooting? = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org Anyone refering this as 'O

Re: running system, can't exec programs.

2001-12-02 Thread James Morrison
ught to > work, but there might be some problems with things not getting a > new port > when their old one dies. Try it and debug it. But note that it > will only > ever work right if the old translator dies so that the open ports > to it die. > > now for the obvious, if

libc_cv_gcc_unwind_find_fde

2001-12-17 Thread James Morrison
n. Is there any explaination for this contradiction? = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org Anyone refering this as 'Open Source' shall be eaten by a GNU ___

Re: httpfs, tarfs --help

2001-12-21 Thread James Morrison
g them > with > vim, and presumably every other app that already supports gzipped > files. Being compatable is very important. Humm, it seems vim is broken. > -- > Adam Olsen, aka Rhamphoryncus > = James Morrison University of Waterloo Computer Science - Digital

Re: realtek 8029

2001-12-30 Thread James Morrison
m/arenn/hacking/hurd/hurd-hardware.html ) > GNUMach supports the PCI NE2000. > That HCL is old. The new HCL is at http://www.freesoftware.fsf.org/thug/gnumach_hardware.html . = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://h

assertion failure at line 47 of libfshelp/lock-acquire.c

2002-01-21 Thread James Morrison
partition is hd0s3, I am booting a sub-hurd off of hd3s1 so I settrans -a /mnt /hurd/ext2fs /dev/hd3s1; boot -I -D/mnt /mnt/boot/servers.boot hd3s1 Thanks for any help ;) = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org An

hostname again.

2002-01-30 Thread James Morrison
rite the contents. */ ===== James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org Anyone refering this as 'Open Source' shall be eaten by a GNU __ Do You Yahoo!? Great stuff see

Re: hostname again.

2002-01-31 Thread James Morrison
--- "Thomas Bushnell, BSG" <[EMAIL PROTECTED]> wrote: > James Morrison <[EMAIL PROTECTED]> writes: > > > Before I get to the patch, here is an interesting error: > > > > Fatal error, aborting. > > load average of 17 is too high > >

Re: hostname again.

2002-02-01 Thread James Morrison
It seems my assumption of Rolands patch being in the debian tree is wrong. --- "Thomas Bushnell, BSG" <[EMAIL PROTECTED]> wrote: > James Morrison <[EMAIL PROTECTED]> writes: > > > - err = __dir_mkfile (dir, O_WRONLY, 0644, &new); > > + err = __dir

Re: hostname again.

2002-02-05 Thread James Morrison
--- "Thomas Bushnell, BSG" <[EMAIL PROTECTED]> wrote: > James Morrison <[EMAIL PROTECTED]> writes: > > > Actually, O_READ, O_WRITE, O_EXEC are the only things that can be > > turned on. > > No, O_APPEND, the O_*SYNC flags, and so forth, are al

boot scripts

2002-02-13 Thread James Morrison
denote comments. Does this make sense? = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org Anyone refering this as 'Open Source' shall be eaten by a GNU __ Do You Ya

bad news for libtrivfs/libthread

2002-02-23 Thread James Morrison
checkout of the Hurd tonight, this is of course assuming a new checkout will compile natively. changing ports_manage_port_operations_multithread to ports_manage_port_operations_one_thread fixes the SIGILL. = James Morrison University of Waterloo Computer Science - Digital Hardw

Re: bad news for libtrivfs/libthread

2002-02-23 Thread James Morrison
Thanks, linking to libthreads fixed it. = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org Anyone refering this as 'Open Source' shall be eaten by a GNU __ Do You Yahoo!? Yahoo!

Re: hostmux patch

2002-03-03 Thread James Morrison
--- Neal H Walfield <[EMAIL PROTECTED]> wrote: > > Hey, > > > > Guess what? It's time for my weekly patch ;) This stuff is > mostly > > out of the glibc manual ;) > > > > 2002-03-03 James A. Morrison <[EMAIL PROTECTED]> > &g

I am slowly going crazy 1,2,3,4,5,6 switch

2002-03-06 Thread James Morrison
hostmux --help|--usage still work and ./hostmux /hurd/ftpfs still says hostmux must be started as a translator. Any hints would be appriciated. = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org Anyone r

Re: I am slowly going crazy 1,2,3,4,5,6 switch

2002-03-08 Thread James Morrison
--- Marcus Brinkmann <[EMAIL PROTECTED]> wrote: > On Wed, Mar 06, 2002 at 09:02:07PM -0800, James Morrison wrote: > > I CAN'T hostmux to WORK. > > You have linked it with libthreads? The ldd output is not enough > to tell us > this. Even the order of libraries

Re: added an error_t to netfs_startup

2002-03-09 Thread James Morrison
de is wrong. This is the Right Way. > Ok, next week's patch will contains the rest of these fixes. > > * init-startup: Changed errno to err. > > This is better: > > * init-startup (netfs_startup): Use err, not errno. > > And look, my changelog entry

feeping creaturism

2002-03-10 Thread James Morrison
> > This firmlink patch should conform to the GCS, and the time mode works > > nicely. > > > > 2002-03-09 James A. Morrison <[EMAIL PROTECTED]> > > > > * firmlink.c: Added the functionality for multiple targets decided > > on by a com

Re: feeping creaturism

2002-03-11 Thread James Morrison
tten to, or some optimized version of this. It seems gopherd, smbd, and nmbd all would need a SIGHUP as well. At least I can feel comfortable that this will work for my changelogs when I am working this summer ;) It will also work as my ogg playlist, but that will require an nfsd on my machin

Re: patch: use err, not errno

2002-03-14 Thread James Morrison
--- "Thomas Bushnell, BSG" <[EMAIL PROTECTED]> wrote: > James A Morrison <[EMAIL PROTECTED]> writes: > > > Ok, I've grep'd through the hurd source looking for instances of > errno being > > assigned directly. These seem to be the places wher

Re: patch: use err, not errno

2002-03-14 Thread James Morrison
tancy things I should look for while reading through more code? = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org Anyone refering this as 'Open Source' shall be eaten by a GNU __

Re: patch: use err, not errno

2002-03-14 Thread James Morrison
--- "Thomas Bushnell, BSG" <[EMAIL PROTECTED]> wrote: > James Morrison <[EMAIL PROTECTED]> writes: > > > > > I've also changed !var to var == MACH_PORT_NULL where > > > > appropriate because some documentation, mach.texi, says > &g

oskit-mach success

2002-03-17 Thread James Morrison
Well, I compiled the newest version of oskit today, I added the tlan driver to oskit and oskit-mach compiled and run with the following patch. However, I did notice that my oskit-mach kernel did not boot the Hurd directly. I had to go back to using serverboot. 2002-03-17 James A. Morrison

Re: oskit-mach success

2002-03-18 Thread James Morrison
--- Jeroen Dekkers <[EMAIL PROTECTED]> wrote: > On Sun, Mar 17, 2002 at 04:18:27PM -0800, James Morrison wrote: > > Well, I compiled the newest version of oskit today, I added the tlan > driver to > > oskit and oskit-mach compiled and run with the following patch. >

Re: oskit-mach (oskit-20010214/oskit-20020317) and ping -f

2002-03-18 Thread James Morrison
...^C --- localhost ping statistics --- 1094 packets transmitted, 546 packets received, 50% packet loss round-trip min/avg/max = 30.0/1441.0/3360.0 ms What ethernet driver are you using? = James Morrison University of Waterlo

Re: Linux style /proc filesystem translator && httpfs

2002-03-20 Thread James Morrison
Makeconf needs to be edited to include the appropriate libxml headers. If need be I'll make a self-contained tarball of httpfs this weekend, and send a Makefile patch here. Sorry about bitching, I just want to compile and play with cool things out of the box ;). Note: libxml2 is compil

fstests and stuff

2002-03-20 Thread James Morrison
hanks. = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org Anyone refering this as 'Open Source' shall be eaten by a GNU __ Do You Yahoo!? Yahoo! Movies - coverage of the 74th

Re: Linux style /proc filesystem translator

2002-03-20 Thread James Morrison
n't use ps -a. I don't know why I couldn't use ps -a, but I couldn't. = James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op http://hurd.dyndns.org Anyone refering this as 'O

Re: posix shared memory

2002-03-21 Thread James Morrison
--- Jon Arney <[EMAIL PROTECTED]> wrote: > James, > > Thanks for the links. One of the difficult things about coming up to > speed on the Hurd is that there are so many different websites with > lots of (sometimes conflicting) information. Yes, luckily this has gotten a

compiling the hurd under oskit-Mach

2002-03-23 Thread James Morrison
("/include/machine-lock.h") 53)) ] ) -1 (insn_list 106 (insn_list 111 (nil))) (expr_list:REG_DEAD (reg:SI 41) (nil))) make[1]: *** [file-syncfs.o] Error 1 make[1]: Leaving directory `/home/compile/A/cvs/hurd/build/libdiskfs' make: *** [libdiskfs] Error 2 machine-lock.h com

make check

2002-03-24 Thread James Morrison
Hi, I'm curious what types of checks would be in a make check target for the hurd. Would have to be run in a sub-hurd to test all the hurd translators and libc functions? Should the test programs be compiled within that test sub-hurd? = James Morrison University of Wat

fetch_boot_time () to libshouldbeinlibc or libhurduser

2002-03-24 Thread James Morrison
There is a function in utils/w.c called fetch_boot_time (). Moving this function to a hurd libraries would make it much simpler for people to write there own uptime programs for GNU Hurd and any other application that might want to get the systems boot time, like procfs. = James Morrison

Re: zealous use of error

2002-03-24 Thread James Morrison
--- "Thomas Bushnell, BSG" <[EMAIL PROTECTED]> wrote: > James A Morrison <[EMAIL PROTECTED]> writes: > > > libnetfs: > > * make-protid.c (netfs_make_protid): Use err, not errno. > > This one is incorrect; it changes the established interface

  1   2   3   >