RE: kernel panic: ffs_valloc: dup alloc

2013-05-14 Thread Andriy Kornatskyy
A part of core.txt file is here:
http://pastebin.com/gygnMh6G

Andriy

- info --

Dump header from device /dev/ada0s1b
  Architecture: i386
  Architecture Version: 2
  Dump Length: 232882176B (222 MB)
  Blocksize: 512
  Dumptime: Fri May 10 15:39:57 2013
  Hostname: freex
  Magic: FreeBSD Kernel Dump
  Version String: FreeBSD 9.1-RELEASE-p3 #0: Mon Apr 29 18:11:52 UTC 2013
    r...@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC
  Panic String: ffs_valloc: dup alloc
  Dump Parity: 4278856205
  Bounds: 0
  Dump Status: good



> To: freebsd-stable@freebsd.org; andriy.kornats...@live.com
> Subject: Re: kernel panic: ffs_valloc: dup alloc
> Date: Mon, 13 May 2013 14:14:09 +0200
> From: ronald-freeb...@klop.yi.org
>
> On Mon, 13 May 2013 11:10:04 +0200, Andriy Kornatskyy
>  wrote:
>
> > The core.txt and info files can be found in attached archive (there are
> > 2 crash reports there). If you need vmcores, just let me know where I
> > can upload them.
> >
> > ASUS K73E
> > Architecture: i386
> > OS: FreeBSD 9.1-RELEASE-p3
> >
> > Please let me know should you need some other information.
> >
> > Thanks.
> >
> > Andriy
>
> Attachments are stripped by the mailinglist. Put them inline or on
> something like http://pastebin.com/.
>
> Ronald.
> ___
> freebsd-stable@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-stable
> To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org" 
>   
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"

How to get pkgng work through a proxy?

2013-05-14 Thread Rainer Duffner
Hi,

I have this host (a cloned VM, FreeBSD 9.1 AMD64) behind an Astaro
Web-Proxy:


(blahost ) 70 # pkg
update
[12:00] Updating repository catalogue
repo.txz3%
10KB   0.5KB/s   0.0KB/s - stalled -pkg:
http://pkgng.our.repo/91amd64-91patch/repo.txz: Operation timed out


It's a proxy with authentication.

I'm not sure if it's a fetch(3) problem in general.
Because a single fetch from the same server of a small and large file
does work, though a bit slow.

pkg is 1.0.2







___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: How to get pkgng work through a proxy?

2013-05-14 Thread Lars Engels
On Tue, May 14, 2013 at 12:36:44PM +0200, Rainer Duffner wrote:
> Hi,
> 
> I have this host (a cloned VM, FreeBSD 9.1 AMD64) behind an Astaro
> Web-Proxy:
> 
> 
> (blahost ) 70 # pkg
> update
> [12:00] Updating repository catalogue
> repo.txz3%
> 10KB   0.5KB/s   0.0KB/s - stalled -pkg:
> http://pkgng.our.repo/91amd64-91patch/repo.txz: Operation timed out
> 
> 
> It's a proxy with authentication.
> 
> I'm not sure if it's a fetch(3) problem in general.
> Because a single fetch from the same server of a small and large file
> does work, though a bit slow.
> 
> pkg is 1.0.2

It's working here with these env vars set:

http_proxy=http://:@:8080
ftp_proxy=http://:@:8080
HTTP_PROXY=http://:@:8080
FTP_PROXY=http://:@:8080
HTTP_PROXY_AUTH=basic:*::


But I can't tell which one get's pulled in.


pgpNafNJQla1I.pgp
Description: PGP signature


Re: How to get pkgng work through a proxy?

2013-05-14 Thread Tom Evans
On Tue, May 14, 2013 at 3:58 PM, Lars Engels  wrote:
> On Tue, May 14, 2013 at 12:36:44PM +0200, Rainer Duffner wrote:
>> Hi,
>>
>> I have this host (a cloned VM, FreeBSD 9.1 AMD64) behind an Astaro
>> Web-Proxy:
>>
>>
>> (blahost ) 70 # pkg
>> update
>> [12:00] Updating repository catalogue
>> repo.txz3%
>> 10KB   0.5KB/s   0.0KB/s - stalled -pkg:
>> http://pkgng.our.repo/91amd64-91patch/repo.txz: Operation timed out
>>
>>
>> It's a proxy with authentication.
>>
>> I'm not sure if it's a fetch(3) problem in general.
>> Because a single fetch from the same server of a small and large file
>> does work, though a bit slow.
>>
>> pkg is 1.0.2
>
> It's working here with these env vars set:
>
> http_proxy=http://:@:8080
> ftp_proxy=http://:@:8080
> HTTP_PROXY=http://:@:8080
> FTP_PROXY=http://:@:8080
> HTTP_PROXY_AUTH=basic:*::
>
>
> But I can't tell which one get's pulled in.

My work require proxy authentication also, with the annoying
requirement that the username is my email address, which ultimately
means that I cannot insert username/pass into http_proxy or variants.
libfetch is smart enough to pull these out of HTTP_PROXY_AUTH, but
very few other applications are.

Eventually, I gave up trying to convince all these disparate
applications to discover my proxy auth, and instead I set up a local
copy of squid on my laptop, which I point at my upstream proxy and
provide with authentication details. I can then use this
unauthenticated proxy on localhost to access my corporate proxy fully
authenticated. It's a bit of hassle in the short term, but all proxy
setup becomes much simpler with it in place.

IIRC, the only lines I added to squid.conf's defaults were these:

http_port 127.0.0.1:3128
cache_peer  parent 3128 0 proxy-only default login=:

Cheers

Tom
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: freebsd-update and /boot/kernel/linker.hints

2013-05-14 Thread Jean-Sébastien Pédron
On 13.05.2013 11:22, Wolfgang Riegler wrote:
> since last freebsd-update fetch install I always get this message after 
> freebsd-update fetch:
> 
> The following files will be updated as part of updating to 9.1-RELEASE-p3:
> /boot/kernel/linker.hints
> 
> but freebsd-update install doesn't install anything.

I have exactly the same problem but didn't have the time to investigate
deeper...

-- 
Jean-Sébastien Pédron



signature.asc
Description: OpenPGP digital signature