Why is our symbol lookup the way it is?

2005-09-07 Thread Joe Marcus Clarke
This is something that's been bothering me for a while, ever since I fixed the symbol conflicts in Mozilla with -Bsymbolic. Why do we not look in the referencing object first by default? I'm referring to the great comments in the symlook_default() function in rtld.c. We only check the

Re: panic in propagate_priority w/ postgresql under heavy load

2005-09-07 Thread Koen Martens
Vinod Kashyap wrote: You seem to be booting off of a 9000 (twa) controller and not 7000/8000 (twe). It could be because of a 9000 firmware bug that you are not being able to get the dump. The firmware wrongly interprets physical address 0x0 as invalid during dumps, and fails the

Re: vn_fullpath() again

2005-09-07 Thread Robert Watson
On Tue, 6 Sep 2005, Matthew Dillon wrote: NFS views from the client are one of those shades of gray, since files and directories can be ripped up by other clients or the server, but since clients have to assume a certain level of consistency anyway it's hardly a show stopper from

Driver for Intel PRO/Wireless 2200BG/2195ABG

2005-09-07 Thread Nick Strebkov
Hi, hackers. Does anybody here work already on this piece of hardware? I'm very interested in getting it work under FreeBSD and ready to help. -- Nick Strebkov Public key: http://humgat.org/~nick/pubkey.txt fpr: 552C 88D6 895B 6E64 F277 D367 8A70 8132 47F5 C1B6

accept: Invalid argument

2005-09-07 Thread erkan kolemen
Hi, In a daemon loop, i am using accept() to accept incoming connections. while(1) { if((fd = accept(socketd, (struct sockaddr *) addr, addrlen)) == -1) { syslog(LOG_ERR, accept: %s, strerror(errno)); continue; } else { ... } accept always fails. What is wrong? i could create socket and i

Re: Re: vn_fullpath() again

2005-09-07 Thread Sergey Babkin
From: Giorgos Keramidas [EMAIL PROTECTED] On 2005-09-06 19:27, Igor Shmukler [EMAIL PROTECTED] wrote: Perhaps, I do not get it or maybe you are do not getting my point. There are times when resolving would not be possible or a name returned is not necessarily the one used when file was first

Re: accept: Invalid argument

2005-09-07 Thread Sergey S. Ropchan
It seems, one from accept() arguments not correctly defined, could you please show definitions of: socketd, addr and addrlen !? Or full source !? Hi, In a daemon loop, i am using accept() to accept incoming connections. while(1) { if((fd = accept(socketd, (struct sockaddr *) addr, addrlen))

Re: Why is our symbol lookup the way it is?

2005-09-07 Thread Alexander Kabaev
On Wed, Sep 07, 2005 at 02:06:44AM -0400, Joe Marcus Clarke wrote: This is something that's been bothering me for a while, ever since I fixed the symbol conflicts in Mozilla with -Bsymbolic. Why do we not look in the referencing object first by default? I'm referring to the great comments in

Re: Re: vn_fullpath() again

2005-09-07 Thread Giorgos Keramidas
On 2005-09-06 11:29, Sergey Babkin [EMAIL PROTECTED] wrote: Giorgos Keramidas [EMAIL PROTECTED] On 2005-09-06 19:27, Igor Shmukler [EMAIL PROTECTED] wrote: Perhaps, I do not get it or maybe you are do not getting my point. There are times when resolving would not be possible or a name returned

Project in FreeBSD.

2005-09-07 Thread Pranav Peshwe
Hello, I am a final year CS student and wish to do a project in the FBSD kernel or networking domains. I am a part of a project group of four and we have the project as a part of syllabus for the final year. Ideas we could think of were : 1) Dynamically Configurable IO schedulers

Sendmail not using aliases

2005-09-07 Thread Steve Suhre
I'm upgrading a server and have sendmail 8.13.1 installed. I've moved the aliases and virtusertable files over and have run makemap and newaliases. Sendmail has been complaining that it can't find aliased users like postmaster and www. I doublechecked the aliases file and they are there. If

panic: mutex ipf state entry already initialized

2005-09-07 Thread Vasil Dimov
Hi, all I have submitted a PR for this (kern/85809), but I guess someone on this list may have some explanation: After adding: options WITNESS options INVARIANTS options INVARIANT_SUPPORT options MUTEX_DEBUG to my kernel config (for bug hunting, related to disk

how to handling read only cvs trees

2005-09-07 Thread Gordon Bergling
Hi, I currently working to get an old patch up to HEAD, but I have a problem with generating a diff from my work. I usually checkout out src from a local cvs mirror of the FreeBSD repository. I do this with cvs -Rd/home/ncvs checkout src Without the -R flag I must do the checkout as root to

Re: Project in FreeBSD.

2005-09-07 Thread Kamal R. Prasad
On 9/7/05, Pranav Peshwe [EMAIL PROTECTED] wrote: Hello, I am a final year CS student and wish to do a project in the FBSD kernel or networking domains. I am a part of a project group of four and we have the project as a part of syllabus for the final year. Ideas we could think of were :

Re: Adding new option to ktrace

2005-09-07 Thread Nikhil Dharashivkar
Hi, I went through the ktr and ktrdump options. I compiled the kernel with options ktr. I found that ktr support is mostly for lock and schedule. We can trace drivers using mask KTR_DEV and some CTR* statements in dirver. But This ktr support is from freebsd 5. I am aslo using freebsd

Re: Adding new option to ktrace

2005-09-07 Thread Robert Watson
On Wed, 7 Sep 2005, Nikhil Dharashivkar wrote: I went through the ktr and ktrdump options. I compiled the kernel with options ktr. I found that ktr support is mostly for lock and schedule. We can trace drivers using mask KTR_DEV and some CTR* statements in dirver. But This ktr support

Re: Why is our symbol lookup the way it is?

2005-09-07 Thread Joerg Sonnenberger
On Wed, Sep 07, 2005 at 11:32:06AM +, Alexander Kabaev wrote: On Wed, Sep 07, 2005 at 02:06:44AM -0400, Joe Marcus Clarke wrote: This is something that's been bothering me for a while, ever since I fixed the symbol conflicts in Mozilla with -Bsymbolic. Why do we not look in the

Re: Project in FreeBSD.

2005-09-07 Thread R. Tyler Ballance
If you run out of ideas, or are looking for something else, try looking at some of the SoC projects that weren't chosen/accepted/etc. http://www.freebsd.org/projects/summerofcode.html Im sure you could expand one of these to cover a final CS project. Cheers, -R. Tyler Ballance On Sep

Re: Re: vn_fullpath() again

2005-09-07 Thread Robert Watson
On Tue, 6 Sep 2005, Sergey Babkin wrote: Corner cases and their handling *is* important. Find another way to do whatever it is you're thinking you can do with the real name of a vnode. This particular case is easy to handle: all that user 1 needs to do is to do fstat() after opening the

Re: Project in FreeBSD.

2005-09-07 Thread Brooks Davis
On Wed, Sep 07, 2005 at 05:39:30PM +0530, Pranav Peshwe wrote: Hello, I am a final year CS student and wish to do a project in the FBSD kernel or networking domains. I am a part of a project group of four and we have the project as a part of syllabus for the final year. Ideas

Re: how to handling read only cvs trees

2005-09-07 Thread Brooks Davis
On Wed, Sep 07, 2005 at 03:32:39PM +0200, Gordon Bergling wrote: Hi, I currently working to get an old patch up to HEAD, but I have a problem with generating a diff from my work. I usually checkout out src from a local cvs mirror of the FreeBSD repository. I do this with cvs

Re: vn_fullpath() again

2005-09-07 Thread Matthew Dillon
:The NFS server problem I was referring to specifically came up in the case :of the DTE work is as follows, and can't be solved through modifications :to the name cache: : :- An NFS client uses lookups to retrieve the file handle of /foo/bar/baz : on an NFS server. It sets the cwd of a

Re: Why is our symbol lookup the way it is?

2005-09-07 Thread Joe Marcus Clarke
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Alexander Kabaev wrote: | On Wed, Sep 07, 2005 at 02:06:44AM -0400, Joe Marcus Clarke wrote: | |This is something that's been bothering me for a while, ever since I |fixed the symbol conflicts in Mozilla with -Bsymbolic. Why do we not |look in the

Re: Why is our symbol lookup the way it is?

2005-09-07 Thread Joerg Sonnenberger
On Wed, Sep 07, 2005 at 01:32:26PM -0400, Joe Marcus Clarke wrote: My solution was to rename the offending symbol in the Clearlooks engine. ~ This is not ideal, but it works, and I will certainly report the bug to the authors, but apparently Linux does not have this problem. Doesn't RTLD_LOCAL

ieee80211_input() and fragmented mbufs

2005-09-07 Thread Sebastien
Hello, I'm passing ieee80211_input() heavily fragmented mbuf chains and it makes (at least) the function fail to parse beacons correctly. I have the ieee80211_recv_mgmt: no ratesin beacon frame message, and it makes the driver unable to scan for networks (always return no results).

Re: Reproducable panic under heavy disk I/O on 5.4-latestandthegreatest

2005-09-07 Thread Kris Kennaway
On Wed, Sep 07, 2005 at 09:46:43PM +0300, Vasil Dimov wrote: The command that causes the panic is: # duplicity / rsync://backuphost:873/kutelo1 It generally traverses the whole FS. When 500-600M are uploaded to backuphost, the machine (the one that runs duplicity command) panics. Below