[Bug 198163] Kernel panic in vm_reserv_populate()

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198163

--- Comment #6 from ikosa...@accesssoftek.com ---
Created attachment 153772
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=153772&action=edit
VirtualBox config used

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 198163] Kernel panic in vm_reserv_populate()

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198163

--- Comment #7 from ikosa...@accesssoftek.com ---
I've attached the VirtualBox config used. I can reproduce the defect on a clean
just-installed system, r277486 specifically.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 155752] [uart] tcdrain(3) does not work with uart(4) driver

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=155752

nk...@demig.de changed:

   What|Removed |Added

 CC||nk...@demig.de

--- Comment #1 from nk...@demig.de ---
I came across the same problem: I need to switch the transmitter
of an external RS232/RS485 converter on before satarting transmittision
and off afterwards using RTS.

My quick driver hack is to always call the chip-specific drain
function whenever there is a request to turn off RTS.

This is my patch to the 16550 code:

--- uart_dev_ns8250.c.orig2015-03-04 13:37:04.0 +0100
+++ uart_dev_ns8250.c2015-03-04 13:40:05.0 +0100
@@ -886,6 +886,10 @@
 }
 } while (!atomic_cmpset_32(&sc->sc_hwsig, old, new));
 uart_lock(sc->sc_hwmtx);
+#ifdef UART_HACK_DRAIN_RTSOFF
+if ((sig & SER_DRTS) && !(sig & SER_RTS))
+ns8250_drain(bas, UART_DRAIN_TRANSMITTER);
+#endif
 ns8250->mcr &= ~(MCR_DTR|MCR_RTS);
 if (new & SER_DTR)
 ns8250->mcr |= MCR_DTR;

The patch is against head but has been tested with 9.1
using a scope with protocol analyzer function.

I did not look into the other chips' code so may it
will not universally work.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 188247] [rpc] [patch] include/rpcsvc/yp_prot.h: remove typedef of bool.

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=188247

--- Comment #2 from tim...@gmail.com ---
I'm interested in this PR, because squid's NIS auth helper can't be built
normally until this PR isn't solved.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 197535] [re] [panic] if_re (Realtek 8168) causes memory write after free and kernel panic

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197535

--- Comment #11 from luca.pizzamig...@gmail.com ---
Created attachment 153780
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=153780&action=edit
patch solving the issue using this hardware

Explanation and solution

The actual problem was that the rx ring (and probably the txring too) wasn't
updated by the driver or, better, the device wasn't able to get these updates.
That explains why the last entry in the ring was ignored and why only few
packets were really copied via DMA.

I found this log entry in the linux git:
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=d6e572911a4cb2b9fcd1c26a38d5317a3971f2fd

It seems that for "some" chips, Rx and Tx should be enabled in the RL_COMMAND
register later, after rings configuration and so on.

The patch shows only how I used this tip, but I don't know how it could affect
other devices.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 198279] Patch to stop world killing jails via failing install -fschg libc.so.7

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198279

Bug ID: 198279
   Summary: Patch to stop world killing jails via failing install
-fschg libc.so.7
   Product: Base System
   Version: 10.1-STABLE
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Many People
  Priority: ---
 Component: bin
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: j...@berklix.com

Created attachment 153787
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=153787&action=edit
bsd.lib.mk.chflags.REL=ALL.diff to stop make world killing jails

Jails are lethaly killed by make world, unless /etc/make.conf contains this:
NO_FSCHG="yes"
#   Avoid bsd.lib.mk 'INSTALLFLAGS+= -fschg' killing FreeBSD jails,
#   deleting /lib/libc.so.7 via 'cd /usr/src/lib/csu/amd64 ; make
install'

Killing:
uname -a
FreeBSD land.berklix.org 10.1-RELEASE-p6 FreeBSD 10.1-RELEASE-p6 #0:
Tue Feb 24 19:00:21 UTC 2015
   r...@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC  amd64

cd /usr/src; make install
===> lib/libc (install)
install -s -o root -g wheel -m 444   -fschg -S  libc.so.7 /lib
install: /lib/libc.so.7: chflags: Operation not permitted
*** Error code 71

Recovery:
/rescue/cp /usr/obj/usr/src/lib/libc/libc.so.7 /lib/

man install falsely claims: -S Safe copy, But is broken by -fschg !

Solutions:
- Disable chflags in bsd.lib.mk & bsd.lib.mk.  Patches appended.
- Or Extend bsd.lib.mk & bsd.lib.mk to be conditional on jail detection. (**)
- Or Fix install to not break with chflags (**)
(**) Last 2 should be done by those who want to keep Chflags in FreeBSD,
 not me, I've used Unix since 1978, but find chflags a Wart best removed.

I discovered this on 8.2-RELEASE 18 Jun 2013, & just got bitten again on
10.1-RELEASE-p6, (as my jail's make.conf lost its NO_FSCHG="yes").

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 197257] man knsupdate causes groff to abort

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197257

Gert Doering  changed:

   What|Removed |Added

 CC||g...@greenie.muc.de

--- Comment #1 from Gert Doering  ---
I can reproduce this with "man cvs2git" on 9.3-RELEASE-p10

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 198281] Mersin İdmanyurdu - Fenerbahçe maçı canli izle 04-03-2015

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198281

Bug ID: 198281
   Summary: Mersin İdmanyurdu - Fenerbahçe maçı canli izle
04-03-2015
   Product: Base System
   Version: 8.4-RELEASE
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: mvi29...@pisls.com

Mersin İdmanyurdu - Fenerbahçe maçı canli izle.

CLICK  HERE   TO  LIVE  NOW
LINK1
 http://x.co/7sGzL
http://x.co/7sGzL

LINK2”
http://bit.ly/18NVf5N
http://bit.ly/18NVf5N



CLICK  HERE   TO  LIVE  NOW
LINK1
 http://x.co/7sGzL
http://x.co/7sGzL

LINK2”
http://bit.ly/18NVf5N
http://bit.ly/18NVf5N




Türkçe kullanmaya devam etDil ayarları.Mersin İdmanyurdu - Fenerbahçe maçını
canlı izle, canlı takip et. Maç hangi kanalda? ATV HD.Mersin İdmanyurdu -
Fenerbahçe maçının özeti, maçın golleri, canlı anlatımı, detaylar ve ...Mersin
İdmanyurdu - Fenerbahçe Türkiye Kupası maçı Atv canlı izle - Spor
Haberleri.Fenerbahçe-Mersin İdman Yurdu maçı Ziraat TK Canlı İzle-ATV.Mersin
İdmanyurdu - Fenerbahçe maçı canli izle hakkındaki diğer haberler.Mersin
İdmanyurdu - Fenerbahçe Türkiye Kupası maçı Atv ...Mersin İdmanyurdu ile
Fenerbahçe arasında bu akşam oynanacak olan Ziraat Türkiye Kupası çeyrek final
ilk maçı Atv'den canlı yayınlanacak.
4 Mart Mersin İdmanyurdu-Fenerbahçe Türkiye Kupası Atv ...Bu Akşam Atv
Ekranlarında nefesler tutulacak , soluksuz bir maç heyecanı futbolseverleri
bekliyor Mersin İdmanyurdu Fenerbahçe Maçı Canlı ...Fenerbahçe-Mersin İdman
Yurdu maçı Ziraat T.K Canlı İzle ...Fenerbahçe Mersin İdman Yurdu ile Ziraat
Türkiye Kupası maçında karşı karşıya geliyor. Derbi öncesi moral bulmak isteyen
Fenerbahçe'de ...
Mersin İdman Yurdu - Fenerbahçe Maçı ne zaman? Saat ...Karşılaşmayı Yunus
Yıldırım yönetecek. Fenerbahçe - Mersin İdman Yurdu maçını ATV'den Canlı
izlemek için haberimizde ki linke tıklayınız.
Mersin İdmanyurdu Fenerbahçe maçı ne zaman saat kaçta ...Mersin İdmanyurdu
Fenerbahçe maçı ATV'den canlı olarak yayınlanacak. Mersin İdmanyurdu Fenerbahçe
ZTK çeyrek final maçını ATV'den ...Justin Tv Mersin İdmanyurdu – Fenerbahçe
maçını canlı izle ...Mersin İdmanyurdu – Fenerbahçe maçı canlı izle justin tv
seyret, Mersin İdmanyurdu – Fenerbahçe canlı maç izle kesintisiz lig tv, Mersin
...2014-2015 sezonu 15. haftada 1 - 0 biten Fenerbahçe 1-0 Mersin İdman Yurdu
maç özetini izlemek için maç özetleri sayfamızı ziyaret edebilirsiniz.Bedava
Lig tv izle , Canlı maç izle , Lig tv izle , D-smart izle ...Lig tv izle,
Bedava Lig tv izle, Lig tv 3 izle, Ligtv bedava izle,Canlı Maç izle,Maç izle,
Kesintisiz Lig tv ... 20:30 Mersin İdmanyurdu - Fenerbahçe Maçını canlı
izle.Lig Tv Mersin İdmanyurdu - Fenerbahçe maçı canlı izle ...Mersin İdmanyurdu
– Fenerbahçe maçı canlı izle justin tv seyret, Mersin İdmanyurdu – Fenerbahçe
canlı maç izle kesintisiz lig tv, Mersin ...

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"

[Bug 198282] Fenerbahçe-Mersin İdman Yurdu Maçı Canlı İzle

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198282

Bug ID: 198282
   Summary: Fenerbahçe-Mersin İdman Yurdu Maçı Canlı İzle
   Product: Base System
   Version: 8.4-STABLE
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: mvi29...@pisls.com

Mersin İdmanyurdu - Fenerbahçe maçı canli izle.

CLICK  HERE   TO  LIVE  NOW
LINK1
 http://x.co/7sGzL
http://x.co/7sGzL

LINK2”
http://bit.ly/18NVf5N
http://bit.ly/18NVf5N



CLICK  HERE   TO  LIVE  NOW
LINK1
 http://x.co/7sGzL
http://x.co/7sGzL

LINK2”
http://bit.ly/18NVf5N
http://bit.ly/18NVf5N


Mersin İdmanyurdu - Fenerbahçe maçı canli izle.

CLICK  HERE   TO  LIVE  NOW
LINK1
 http://x.co/7sGzL
http://x.co/7sGzL

LINK2”
http://bit.ly/18NVf5N
http://bit.ly/18NVf5N



CLICK  HERE   TO  LIVE  NOW
LINK1
 http://x.co/7sGzL
http://x.co/7sGzL

LINK2”
http://bit.ly/18NVf5N
http://bit.ly/18NVf5N

Fenerbahçe-Mersin İdmanyurdu maçı canli izle.Mersin İdmanyurdu - Fenerbahçe
maçını canlı izle, canlı takip et. Maç hangi kanalda? ATV HD.Mersin İdmanyurdu
- Fenerbahçe maçının özeti, maçın golleri, canlı anlatımı, detaylar ve
...Fenerbahçe-Mersin İdman Yurdu maçı Ziraat TK Canlı İzle-ATV.Mersin
İdmanyurdu - Fenerbahçe Türkiye Kupası maçı Atv canlı izle - Spor
Haberleri.Fenerbahçe-Mersin İdmanyurdu maçı canli izle hakkındaki diğer
haberler.Fenerbahçe-Mersin İdman Yurdu maçı Ziraat T.K Canlı İzle ...-
Fenerbahçe Mersin İdman Yurdu ile Ziraat Türkiye Kupası maçında karşı karşıya
geliyor. Derbi öncesi moral bulmak isteyen Fenerbahçe'de ...
Mersin İdmanyurdu - Fenerbahçe Türkiye Kupası maçı Atv ...- Mersin İdmanyurdu
ile Fenerbahçe arasında bu akşam oynanacak olan Ziraat Türkiye Kupası çeyrek
final ilk maçı Atv'den canlı yayınlanacak.
Mersin İdman Yurdu - Fenerbahçe Maçı ne zaman? Saat ...- Karşılaşmayı Yunus
Yıldırım yönetecek. Fenerbahçe - Mersin İdman Yurdu maçını ATV'den Canlı
izlemek için haberimizde ki linke tıklayınız.2014-2015 sezonu 15. haftada 1 - 0
biten Fenerbahçe 1-0 Mersin İdman Yurdu maç özetini izlemek için maç özetleri
sayfamızı ziyaret edebilirsiniz.
4 Mart Mersin İdmanyurdu-Fenerbahçe Türkiye Kupası Atv ...- Bu Akşam Atv
Ekranlarında nefesler tutulacak , soluksuz bir maç heyecanı futbolseverleri
bekliyor Mersin İdmanyurdu Fenerbahçe Maçı Canlı ...
Mersin İdmanyurdu - Fenerbahçe maçı canli izle 04-03-2015... last search
results. Bug 198281 - Mersin İdmanyurdu - Fenerbahçe maçı canli izle 04-03-2015
... Fenerbahçe-Mersin İdman Yurdu maçı Ziraat T.K Canlı İzle .Mersin İdmanyurdu
Fenerbahçe maçı ne zaman saat kaçta ...Mersin İdmanyurdu Fenerbahçe maçı
ATV'den canlı olarak yayınlanacak. Mersin İdmanyurdu Fenerbahçe ZTK çeyrek
final maçını ATV'den ...Fenerbahçe - Mersin İdman Yurdu Maç Merkezi - NTVSpor
...Spor Toto Süper Lig'in 15. haftasında Fenerbahçe, Mersin İdman Yurdu'nu
konuk ediyor. Bu karşılaşmanın canlı anlatımını NTV Spor.net'ten takip
edebilirsiniz.Mersin İdman Yurdu - Fenerbahçe Maçı ÖZEL YAYIN İçin ...Mersin
İdman Yurdu - Fenerbahçe Maçı ÖZEL YAYIN İçin TIKLA. ... "Maçları Canlı İzlemek
İçin Değişmez Adres" "Canlı Maç Keyfi"

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"

[Bug 198284] JUSTIN TV Villarreal - Barcelona maçını canlı izle 4 Mart 2015

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198284

Bug ID: 198284
   Summary: JUSTIN TV Villarreal - Barcelona maçını canlı izle 4
Mart 2015
   Product: Base System
   Version: 8.4-STABLE
  Hardware: amd64
OS: Any
Status: New
  Severity: Affects Some People
  Priority: ---
 Component: conf
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: vagi...@flurred.com

Villarreal'in final şansı çok az. Gol yemeden 2 gol atmaları gerekecek ve bu
sebeple çok fazla kapanamayacaklar. Barcelona'nın da kapanmayan takımlar
karşısında nasıl sonuçlar aldığı da ortada.


http://habersaatim.blogspot.com.tr/
http://habersaatim.blogspot.com.tr/


http://habersaatim.blogspot.com.tr/
http://habersaatim.blogspot.com.tr/


Villarreal - Barcelona maçı canlı izle justin tv seyret, Villarreal - Barcelona
canlı maç izle kesintisiz lig tv, Villarreal - Barcelona maçı donmadan canlı
izle lig tv 3, Villarreal - Barcelona maçı saat kaçta hangi kanalda, Villarreal
- Barcelona maçı justin tv canlı izle, Watch Villarreal - Barcelona live
streaming online free, Villarreal - Barcelona diretta streaming online, Lig Tv
Villarreal - Barcelona maçı canlı izle, Villarreal - Barcelona maç özeti
golleri, Justin Tv Villarreal - Barcelona maçını canlı izle 4 Mart 2015

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"

[Bug 198282] Fenerbahçe-Mersin İdman Yurdu Maçı Canlı İzle

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198282

polat99  changed:

   What|Removed |Added

 CC||vagi...@flurred.com

--- Comment #1 from polat99  ---
http://habersaatim.blogspot.com.tr/
http://habersaatim.blogspot.com.tr/


http://habersaatim.blogspot.com.tr/
http://habersaatim.blogspot.com.tr/
http://habersaatim.blogspot.com.tr/
http://habersaatim.blogspot.com.tr/


http://habersaatim.blogspot.com.tr/
http://habersaatim.blogspot.com.tr/

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 198282] Fenerbahçe-Mersin İdman Yurdu Maçı Canlı İzle

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198282

Sunpoet Po-Chuan Hsieh  changed:

   What|Removed |Added

  Component|kern|Spam
   Keywords||spam
   Assignee|freebsd-bugs@FreeBSD.org|bugmeis...@freebsd.org
Product|Base System |Other
Version|8.4-STABLE  |unspecified

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 198281] Mersin İdmanyurdu - Fenerbahçe maçı canli izle 04-03-2015

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198281

Sunpoet Po-Chuan Hsieh  changed:

   What|Removed |Added

  Component|kern|Spam
   Keywords||spam
Product|Base System |Other
Version|8.4-RELEASE |unspecified
   Assignee|freebsd-bugs@FreeBSD.org|bugmeis...@freebsd.org

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 198284] JUSTIN TV Villarreal - Barcelona maçını canlı izle 4 Mart 2015

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198284

Sunpoet Po-Chuan Hsieh  changed:

   What|Removed |Added

Version|8.4-STABLE  |unspecified
  Component|conf|Spam
   Keywords||spam
Product|Base System |Other
   Assignee|freebsd-bugs@FreeBSD.org|bugmeis...@freebsd.org

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 198208] FreeBSD 10.1 multiple kernel panics

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198208

Dan  changed:

   What|Removed |Added

   Severity|Affects Only Me |Affects Many People

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 146889] [libc] [patch] Not having NET_RT_IFLIST #defined causes getifaddrs.c (libc) to fail to build

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=146889

Gleb Smirnoff  changed:

   What|Removed |Added

 Resolution|--- |Overcome By Events
 Status|In Progress |Closed
 CC||gleb...@freebsd.org

--- Comment #1 from Gleb Smirnoff  ---
Since FreeBSD 10 getifaddrs(3) uses NET_RT_IFLISTL, and the legacy SIOCGIFCONF
code was simply removed.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 198298] [ath] ath_edma_rxbuf_alloc()/ath_edma_rxfifo_alloc() causes system lockup when RX buffers are exausted

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198298

Bug ID: 198298
   Summary: [ath] ath_edma_rxbuf_alloc()/ath_edma_rxfifo_alloc()
causes system lockup when RX buffers are exausted
   Product: Base System
   Version: 11.0-CURRENT
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: g...@freebsd.org

syslog(8) logs the following just before the system becomes unresponsive:

Mar  4 20:48:15 nucleus kernel: ath0: ath_edma_rxfifo_alloc: Q1: alloc failed:
i=0, nbufs=128?
Mar  4 20:48:15 nucleus kernel: ath0: ath_edma_rxbuf_alloc: nothing on rxbuf?!
Mar  4 20:48:15 nucleus kernel: ath0: ath_edma_rxfifo_alloc: Q1: alloc failed:
i=0, nbufs=128?
Mar  4 20:48:15 nucleus kernel: ath0: ath_edma_rxbuf_alloc: nothing on rxbuf?!

When setting dev.ath.0.txagg to '1', dmesg(8) shows:

Mar  4 20:57:44 nucleus kernel: no tx bufs (empty list): 0
Mar  4 20:57:44 nucleus kernel: no tx bufs (was busy): 0
Mar  4 20:57:44 nucleus kernel: aggr single packet: 0
Mar  4 20:57:44 nucleus kernel: aggr single packet w/ BAW closed: 0
Mar  4 20:57:44 nucleus kernel: aggr non-baw packet: 0
Mar  4 20:57:44 nucleus kernel: aggr aggregate packet: 0
Mar  4 20:57:44 nucleus kernel: aggr single packet low hwq: 0
Mar  4 20:57:44 nucleus kernel: aggr single packet RTS aggr limited: 0
Mar  4 20:57:44 nucleus kernel: aggr sched, no work: 41
Mar  4 20:57:44 nucleus kernel: 0:  0  1:  0  2:  0  3:
 0 
Mar  4 20:57:44 nucleus kernel: 4:  0  5:  0  6:  0  7:
 0 
Mar  4 20:57:44 nucleus kernel: 8:  0  9:  0 10:  0 11:
 0 
Mar  4 20:57:44 nucleus kernel: 12:  0 13:  0 14:  0
15:  0 
Mar  4 20:57:44 nucleus kernel: 16:  0 17:  0 18:  0
19:  0 
Mar  4 20:57:44 nucleus kernel: 20:  0 21:  0 22:  0
23:  0 
Mar  4 20:57:44 nucleus kernel: 24:  0 25:  0 26:  0
27:  0 
Mar  4 20:57:44 nucleus kernel: 28:  0 29:  0 30:  0
31:  0 
Mar  4 20:57:44 nucleus kernel: 32:  0 33:  0 34:  0
35:  0 
Mar  4 20:57:44 nucleus kernel: 36:  0 37:  0 38:  0
39:  0 
Mar  4 20:57:44 nucleus kernel: 40:  0 41:  0 42:  0
43:  0 
Mar  4 20:57:44 nucleus kernel: 44:  0 45:  0 46:  0
47:  0 
Mar  4 20:57:44 nucleus kernel: 48:  0 49:  0 50:  0
51:  0 
Mar  4 20:57:44 nucleus kernel: 52:  0 53:  0 54:  0
55:  0 
Mar  4 20:57:44 nucleus kernel: 56:  0 57:  0 58:  0
59:  0 
Mar  4 20:57:44 nucleus kernel: 60:  0 61:  0 62:  0
63:  0 
Mar  4 20:57:44 nucleus kernel: 
Mar  4 20:57:44 nucleus kernel: HW TXQ 0: axq_depth=0, axq_aggr_depth=0,
axq_fifo_depth=0, holdingbf=0
Mar  4 20:57:44 nucleus kernel: HW TXQ 1: axq_depth=0, axq_aggr_depth=0,
axq_fifo_depth=0, holdingbf=0
Mar  4 20:57:44 nucleus kernel: HW TXQ 2: axq_depth=0, axq_aggr_depth=0,
axq_fifo_depth=0, holdingbf=0
Mar  4 20:57:44 nucleus kernel: HW TXQ 3: axq_depth=0, axq_aggr_depth=0,
axq_fifo_depth=0, holdingbf=0
Mar  4 20:57:44 nucleus kernel: HW TXQ 8: axq_depth=0, axq_aggr_depth=0,
axq_fifo_depth=0, holdingbf=0
Mar  4 20:57:44 nucleus kernel: Total TX buffers: 512; Total TX buffers busy: 0
(512)
Mar  4 20:57:44 nucleus kernel: Total mgmt TX buffers: 32; Total mgmt TX
buffers busy: 0
Mar  4 20:57:44 nucleus kernel: 0: fifolen: 16/16; head=0; tail=0; m_pending=0,
m_holdbf=0
Mar  4 20:57:44 nucleus kernel: 1: fifolen: 128/128; head=50; tail=50;
m_pending=0, m_holdbf=0
Mar  4 20:57:44 nucleus kernel: Total RX buffers in free list: 368 buffers

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 198298] [ath] ath_edma_rxbuf_alloc()/ath_edma_rxfifo_alloc() causes system lockup when RX buffers are exausted

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198298

Glen Barber  changed:

   What|Removed |Added

   Assignee|freebsd-bugs@FreeBSD.org|freebsd-wirel...@freebsd.or
   ||g

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 198211] tcpreplay not working for lo0

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198211

Gleb Smirnoff  changed:

   What|Removed |Added

 CC||gleb...@freebsd.org
 Status|New |In Progress
   Assignee|freebsd-bugs@FreeBSD.org|melif...@freebsd.org

--- Comment #2 from Gleb Smirnoff  ---
Mr. BPF expert, can you please look at this? :)

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


Re: [Bug 198148] [hwpmc] pmcstat -G doesn't resolve symbols from userland processes

2015-03-04 Thread hiren panchasara
On 03/02/15 at 01:47P, bugzilla-nore...@freebsd.org wrote:
> https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198148
> 
> Bug ID: 198148
>Summary: [hwpmc] pmcstat -G doesn't resolve symbols from
> userland processes
>Product: Base System
>Version: 11.0-CURRENT
>   Hardware: Any
> OS: Any
> Status: New
>   Severity: Affects Only Me
>   Priority: ---
>  Component: kern
>   Assignee: freebsd-bugs@FreeBSD.org
>   Reporter: adr...@freebsd.org
> 
> pmcstat -G doesn't seem to resolve symbols from userland processes correctly 
> or
> reliably. In almost every instance, running pmcstat -G on a log file just
> plainly doesn't resolve anything that isn't a kernel symbol.
> 
> To reproduce:
> 
> * run some very CPU busy process with lots of threads and syscalls;
> * run pmcstat -O to record events to a logfile;
> * when you're done, try using pmcstat -R  -G to spit out the callgraph 
> to
> stdout.
> 
> Even if all of the events are process-spec, I see /just/ kernel events.
> 
> This happens on both -HEAD and -10.

On -HEAD (r278050M), I do see non-kernel events. 
# pmcstat -S instructions -O /var/tmp/sample
# pmcstat -R /var/tmp/sample -G /var/tmp/sample.callgraph

In sample.callgraph, I see things like
 00.24%  [1] sqlite3_column_bytes @ /usr/local/lib/libsqlite3.so.0.8.6
  100.0%  [1]  0xdb799d @ /usr/local/lib/firefox/libxul.so
 00.24%  [1] unixShmLock @ /usr/local/lib/libsqlite3.so.0.8.6
  100.0%  [1]  walTryBeginRead
   100.0%  [1]   sqlite3PagerSharedLock
100.0%  [1]sqlite3BtreeBeginTrans
 100.0%  [1] sqlite3VdbeExec
  100.0%  [1]  sqlite3_step
   100.0%  [1]   0xdb06b1 @ /usr/local/lib/firefox/libxul.so
 00.24%  [1] copy_boxes @ /usr/local/lib/libcairo.so.2.11200.18
  100.0%  [1]  clip_and_composite_boxes
   100.0%  [1]   _cairo_traps_compositor_paint
100.0%  [1]_cairo_compositor_paint
 100.0%  [1] _cairo_surface_paint
  100.0%  [1]  _cairo_gstate_paint
   100.0%  [1]   _cairo_default_context_paint_with_alpha
100.0%  [1]cairo_paint_with_alpha
 100.0%  [1] 0xf540c6 @ /usr/local/lib/firefox/libxul.so

Am I understanding this correctly?

cheers,
Hiren


pgpKMqpt15jbY.pgp
Description: PGP signature


[Bug 198148] [hwpmc] pmcstat -G doesn't resolve symbols from userland processes

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198148

Hiren Panchasara  changed:

   What|Removed |Added

 CC||hi...@freebsd.org

--- Comment #1 from Hiren Panchasara  ---
On -HEAD (r278050M), I do see non-kernel events.
# pmcstat -S instructions -O /var/tmp/sample
# pmcstat -R /var/tmp/sample -G /var/tmp/sample.callgraph

In sample.callgraph, I see things like
 00.24%  [1] sqlite3_column_bytes @ /usr/local/lib/libsqlite3.so.0.8.6
  100.0%  [1]  0xdb799d @ /usr/local/lib/firefox/libxul.so
 00.24%  [1] unixShmLock @ /usr/local/lib/libsqlite3.so.0.8.6
  100.0%  [1]  walTryBeginRead
   100.0%  [1]   sqlite3PagerSharedLock
100.0%  [1]sqlite3BtreeBeginTrans
 100.0%  [1] sqlite3VdbeExec
  100.0%  [1]  sqlite3_step
   100.0%  [1]   0xdb06b1 @ /usr/local/lib/firefox/libxul.so
 00.24%  [1] copy_boxes @ /usr/local/lib/libcairo.so.2.11200.18
  100.0%  [1]  clip_and_composite_boxes
   100.0%  [1]   _cairo_traps_compositor_paint
100.0%  [1]_cairo_compositor_paint
 100.0%  [1] _cairo_surface_paint
  100.0%  [1]  _cairo_gstate_paint
   100.0%  [1]   _cairo_default_context_paint_with_alpha
100.0%  [1]cairo_paint_with_alpha
 100.0%  [1] 0xf540c6 @
/usr/local/lib/firefox/libxul.so

Am I understanding this correctly?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 198148] [hwpmc] pmcstat -G doesn't resolve symbols from userland processes

2015-03-04 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198148

--- Comment #2 from Adrian Chadd  ---
Yeah. Try running something that you know is pegging CPUs in a tight loop of
doing work (like a busy webserveR) and where the processes aren't being created
/ destroyed. I don't see any events; i only see the kernel ones.

You're seeing '1' event, which isn't exactly a lot. What were you doing?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


Luxury Jewellery Sets

2015-03-04 Thread ImporterDeals
ImporterDeals


ROYAL BLUE Jewellery Set:
http://rdir.importerdeals.com.au/d/d.html?qbwq00jris00dlyi000j6kni5

VIOLET Jewellery Set:
http://rdir.importerdeals.com.au/d/d.html?qbwy00jris00dlyi000jvhv05

240 Watt Solar Folding - $290:
http://rdir.importerdeals.com.au/d/d.html?qbv000jris00dlyi000j7pp05

Safe Wash - $299:
http://rdir.importerdeals.com.au/d/d.html?qbvi00jris00dlyi000jucxi5

un-subscribe:
http://rdir.importerdeals.com.au/d/d.html?qbvq00jris00klyi000j2nlq5
___
freebsd-bugs@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"