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.
>
>
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).
Defragmenti
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_LOC
-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
: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 proces
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 -R
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.
>
>
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
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 7,
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 r
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
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
4.10
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
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 cre
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 io-
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
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 an
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
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
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)
>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 fi
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
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
__
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 the
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 oper
25 matches
Mail list logo