[Bug 198211] tcpreplay not working for lo0

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

Bug ID: 198211
   Summary: tcpreplay not working for lo0
   Product: Base System
   Version: 10.1-RELEASE
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: hol...@freyther.de
 Attachment #153698 maintainer-approval?
 Flags:

Created attachment 153698
  -- https://bugs.freebsd.org/bugzilla/attachment.cgi?id=153698action=edit
Check for pseudo_AF_HDRCMPLT to allow tcpreplay on loopback

Capturing a pcap file for loopback/null encapsulation and then replaying with
tcpreplay doesn't work.

Reproduce:

* Capture a trace on lo0 e.g.   tcpdump -i lo0 -s 0 -n -w loopback.pcap
* echo bla | nc localhost 1234
* Stop the capture. It has two packages.. the UDP message and ICMP
* Install tcpreplay with pkg install tcpreplay
* Monitor loopback for traffic tcpdump -i lo0 -s 0 -n -X
* Replay with tcpreplay --intf1=lo0 loopback.pcap

Expectation:
* Replayed packets arriving on the loopback device

Outcome:
* $ dmesg
looutput: af=31 unexpected
looutput: af=31 unexpected

Reason:

tcpreplay is using libpcap for replay and is setting the complete header field

open(/dev/bpf0,O_RDWR,00) = 3 (0x3)
ioctl(3,BIOCVERSION,0xbfbfe7c8) = 0 (0x0)
ioctl(3,BIOCSETIF,0xbfbfe7d0) = 0 (0x0)
ioctl(3,BIOCGDLT,0xbfbfe7c4) = 0 (0x0)
ioctl(3,BIOCSHDRCMPLT,0xbfbfe7c0) = 0 (0x0)
ioctl(3,BIOCGDLT,0xbfbfe808) = 0 (0x0)


This means that in bpf.c:bpfwrite

if (d-bd_hdrcmplt)
dst.sa_family = pseudo_AF_HDRCMPLT;

will be executed but in if_loop.c:looutput
/* BPF writes need to be handled specially. */
if (dst-sa_family == AF_UNSPEC)
bcopy(dst-sa_data, af, sizeof(af));
else
af = dst-sa_family;

will be checked. This means that the local variable af will contain
pseudo_AF_HDRCMPLT which is not handled in the switch.

Proposal. Change the check from AF_UNSPEC to pseudo_AF_HDRCMPLT or at least
check for pseudo_AF_HDRCMPLT as well.

-- 
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 195458] Hang on shutdown/root unmount after FreeBSD 10.1R upgrade

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

--- Comment #27 from m...@tnpi.net ---
Re: elof...@hotmail.com

I needed a KVM to be put on two servers exactly *because* of this issue. So
maybe that's part of it, but it's certainly not all of it.

-- 
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-02 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198163

Bug ID: 198163
   Summary: Kernel panic in vm_reserv_populate()
   Product: Base System
   Version: 11.0-CURRENT
  Hardware: amd64
OS: Any
Status: New
  Severity: Affects Some People
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: ikosa...@accesssoftek.com

Created attachment 153661
  -- https://bugs.freebsd.org/bugzilla/attachment.cgi?id=153661action=edit
The test source.

See attached for the minimzed source.

How to reproduce:
$ clang fork.cc -o fork.cc.tmp
$ ./fork.cc.tmp

-- 
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-02 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198163

--- Comment #1 from ikosa...@accesssoftek.com ---
Created attachment 153662
  -- https://bugs.freebsd.org/bugzilla/attachment.cgi?id=153662action=edit
Core dumped

-- 
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 195458] Hang on shutdown/root unmount after FreeBSD 10.1R upgrade

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

elof...@hotmail.com changed:

   What|Removed |Added

 CC||elof...@hotmail.com

--- Comment #26 from elof...@hotmail.com ---
I have no idea if this is related or not, but...


When I install FreeBSD 10.0 via an ILO/IPMI/KVM-mounted .iso image, the machine
usually hang in very much the same manner as described in this thread, just
when it is supposed to reboot.

The problem seem to be related with the USB system, which simply won't die, and
the machine will therefore never reboot itself.
(I guess the USB system is busy with my virtual CD/keyboard/mouse)

Workarounds:
press the reset-button, and the machine will reboot just fine...
or first set the sysctl hw.usb.no_shutdown_wait=1 before the installer reboot
the machine.



So if someone has a machine where the problem can *always* be reproduced, test
the sysctl command above just to see if the USB system is the real reason for
the hang and the subsequent dirty filesystem.

/Elof

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


Professional Modern Office Desk

2015-03-02 Thread ImporterDeals
Importer Deals

Pedestal Office Desk:
http://rdir.importerdeals.com.au/d/d.html?q06q00jris00dlyi000flxb05

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

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

un-subscribe:
http://rdir.importerdeals.com.au/d/d.html?q05i00jris00klyi000fck7i5
___
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 198151] /usr/include/sys/elf64.h macro ELF64_R_INFO needs a cast

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

Bug ID: 198151
   Summary: /usr/include/sys/elf64.h macro ELF64_R_INFO needs a
cast
   Product: Base System
   Version: 9.1-RELEASE
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Some People
  Priority: ---
 Component: bin
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: jphartm...@gmail.com

Created attachment 153658
  -- https://bugs.freebsd.org/bugzilla/attachment.cgi?id=153658action=edit
Trivial test case

https://svnweb.freebsd.org/base/head/sys/sys/elf64.h?revision=276539view=markup

Line 160 in the current SVN:

#define ELF64_R_INFO(sym, type) (((sym)  32) + ((type)  0xL))

This means that sym is not promoted to 64 bit and as a result it is truncated
by the shift.  Gcc 4.2.1 issues a warning about this. 

 cc1: warnings being treated as errors
elf.c: In function 'elfrld':
elf.c:513: warning: left shift count = width of type

Linux defines the macro as

#define ELF64_R_INFO(sym,type)  Elf64_Xword) (sym))  32) +
(type))

[john@fb91 ~/src/z/hlasm]$ gcc --version
gcc (GCC) 4.2.1 20070831 patched [FreeBSD]
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

[john@fb91 ~/src/z/hlasm]$ uname -a
FreeBSD fb91.jphartmann.net 9.1-RELEASE-p10 FreeBSD 9.1-RELEASE-p10 #0: Tue Apr
 8 06:17:44 CEST 2014 r...@fb91.jphartmann.net:/usr/obj/usr/src/sys/GENERIC
 amd64

Test case in FreeBSD 9.1:

[john@fb91 ~/src/testing]$ gcc ebug.c -o ebug
ebug.c: In function 'main':
ebug.c:25: warning: left shift count = width of type
[john@fb91 ~/src/testing]$ ./ebug
00 00 02 00 00 00 

Same on Linux:
[/home/john/src/testing] ./ebug
00 00 02 01 00 00

-- 
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 198168] tail a FiFo: high IVCSW after first echo: 100% load

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

Bug ID: 198168
   Summary: tail a FiFo: high IVCSW after first echo: 100% load
   Product: Base System
   Version: 10.0-RELEASE
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: kal...@gmx.at

Created attachment 153665
  -- https://bugs.freebsd.org/bugzilla/attachment.cgi?id=153665action=edit
truss tail -f TestFiFo

Greetings!

I have stumbled over one very interesting problem on amd64 10.0-p18 as well
as on amd64 10.1-p6.

The shortest reconstruction I can present to you is as follows:

In one terminal:
$ mkfifo TestFiFo
$ tail -f TestFiFo

(and the manual page of tail(1) allows »tail -f« of a fifo)

In a second terminal let us start good old top(1). Use a-key to toggle
the displaying of process parameters (that way, we can find our tail more
easily). Our tail process should not do much.

Now in a third terminal:
$ echo I am some input  TestFiFo

We can see the text in our first terminal displayed by tail.

But: the load of that tail rises up to 100%; switching to io mode by
pressing the m-key in top shows us, that IVCSW rises to the sky;
furthermore the used cpu changes all the time.

The manual page does not state what IVCSW stands for, but in this article
http://lists.freebsd.org/pipermail/freebsd-questions/2007-September/158479.html
we are told: “IVCSW = 'Involuntary context switches'”.

I had a look at the output of truss(1). You can find the output of
»truss tail -f TestFiFo« in the attachment. (I did hit C-c at some point)
After writing our test text to the screen, the following happens:
---8---
madvise(0x80100d000,0x1000,0x5,0xaaab,0x7fffd650,0x800bc8be0) =
0 (0x0)
madvise(0x80101d000,0x1000,0x5,0xaaab,0x7fffd650,0x800bc8be0) =
0 (0x0)
kqueue(0x800b9fbc0,0x7fffc,0x0,0x0,0x9,0x3a8) = 4 (0x4)
fstatfs(0x3,0x7fffdfb8,0x1,0x800624330,0x2,0x80100d010) = 0 (0x0)
kevent(4,{0x3,EVFILT_READ,EV_ADD|EV_ENABLE|EV_CLEAR,0,0x0,0x0},1,0x0,0,{0.0
}) = 0 (0x0)
kevent(4,0x0,0,{0x3,EVFILT_READ,EV_CLEAR|EV_EOF,0,0x0,0x0},1,0x0) = 1 (0x1)
read(3,0x801009000,16384) = 0 (0x0)
kevent(4,0x0,0,{0x3,EVFILT_READ,EV_CLEAR|EV_EOF,0,0x0,0x0},1,0x0) = 1 (0x1)
read(3,0x801009000,16384) = 0 (0x0)
kevent(4,0x0,0,{0x3,EVFILT_READ,EV_CLEAR|EV_EOF,0,0x0,0x0},1,0x0) = 1 (0x1)
read(3,0x801009000,16384) = 0 (0x0)
---8---
repeating those last two lines over and over again.

I think, that is quite some interesting bug ;-)

(Could it be related to the closed Bug 23099 Comment 2 form the year 2000
in some way? As »cat TestFiFo« closes after the echo-command, I assume,
that EOF is sent?)

Regards,
 Kalten

-- 
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 198168] tail a FiFo: high IVCSW after first echo: 100% load

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

Kalten kal...@gmx.at changed:

   What|Removed |Added

   See Also||https://bugs.freebsd.org/bu
   ||gzilla/show_bug.cgi?id=2309
   ||9
Version|10.0-RELEASE|10.1-RELEASE
   Hardware|Any |amd64
   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 197286] Panic in IPv6 stack - 0xc0d0b1fc is in ip6_input (/usr/src/sys/netinet6/ip6_input.c:702)

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

Andrey V. Elsukov a...@freebsd.org changed:

   What|Removed |Added

 CC||a...@freebsd.org

--- Comment #2 from Andrey V. Elsukov a...@freebsd.org ---
(In reply to Tim Bishop from comment #0)
 Kernel panic (triggered by receiving an IPv6 ping!). Running stable/10
 r277643. System has a tun0 device controlled by ppp and a gif device
 tunnelled over that connection for IPv6.

Can you show ifconfig output of your configuration?

-- 
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 198169] Creating jail corrupts /etc/passwd

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

Bug ID: 198169
   Summary: Creating jail corrupts /etc/passwd
   Product: Base System
   Version: 10.1-RELEASE
  Hardware: amd64
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: misc
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: hbow...@securelabsllc.com

I just installed FreeBSD 10.1 RELEASE on a iMac. After installing and setting
up networking and installing the sudo package I used freebsd-update fetch, then
freebsd-update install then I rebooted. Then Using the script below I tried
creating a jail.

#!/bin/sh
setenv D /usr/home/nah/jail
mkdir -p $D
cd /usr/src
make buildworld
installworld DESTDIR=$D
distribution DESTDIR=$D
mount -t devfs devfs $D/dev

After the script finishes running the system becomes broken. By broken I mean
sudo returns, sudo unknown uid 1001 who are you, when you try to use it, and su
returns, who are you? Looking at /etc/passwd the user I created is no longer
there and root has no password anymore, But the home directory for the user is
still there. If I use exit to log out and try to login with root, it logs me in
with no password prompt. And trying to su to the user nah(the one deleted)
returns unkown login: nah. 

So any ideas on why running the script above destroys my install?

-- 
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-02 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198163

--- Comment #2 from ikosa...@accesssoftek.com ---
Worth mentioning that this bug prevents the Clang's memory sanitizer (Msan)
from working on FreeBSD 11.

-- 
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 198169] Creating jail corrupts /etc/passwd

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

Gary freebsd-bugzi...@in-addr.com changed:

   What|Removed |Added

 CC||freebsd-bugzi...@in-addr.co
   ||m

--- Comment #1 from Gary freebsd-bugzi...@in-addr.com ---
(In reply to hbowden from comment #0)
Your shell syntax is wrong

If you run

setenv D /usr/home/nah/jail

in a /bin/sh shell on it's own you get

# setenv D /usr/home/nah/jail
setenv: not found
# 


The correct syntax would be something like

D=/usr/home/nah/jail

e.g.

# D=/usr/home/nah/jail
# echo $D
/usr/home/nah/jail
# 

What you did was you didn't have a value for D so you overwrote your existing
installation with your make buildworld/installworld/distribution

-- 
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 194439] mld_v1_transmit_report corrupts memory

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

herbie.robin...@stratus.com changed:

   What|Removed |Added

 Resolution|--- |Not A Bug
 Status|New |Closed

--- Comment #1 from herbie.robin...@stratus.com ---
My appologies.  I was working in am out of tree fork where someone had combined
the two mbuf allocations and I didn't look closely enough at the code in the
FreeBSD branch.

-- 
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 198178] sys/sysctl.h should probably include sys/types.h

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

Bug ID: 198178
   Summary: sys/sysctl.h should probably include sys/types.h
   Product: Base System
   Version: 10.1-RELEASE
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: misc
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: e...@efcs.ca

sysctl.h seems to use u_int which is defined in sys/types.h. For this reason
sysctl.h should probably include sys/types.h. Is there a reason this isn't
done?

-- 
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 198179] Juventus Roma diretta streaming 2015 online

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

Bug ID: 198179
   Summary: Juventus Roma diretta streaming 2015 online
   Product: Base System
   Version: 9.1-STABLE
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: conf
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: bxo65...@qisoa.com

LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v
LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v

LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v
LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v



Diretta Roma-Juventus (risultato live): info streaming, tv e radio Cronaca: l
ultima vittoria giallorossa (oggi 2 marzo 
Il Sussidiarionet‎ - 28 min fa
Diretta Roma Juventus, info streaming e tv: risultato live e cronaca dello
scontro diretto in 
DIRETTA Roma - Juventus: dove vederla in streaming e probabili formazioni
International Business Times Italia‎ - 7 ore fa
Roma Juventus streaming live gratis dopo streaming Udinese Cesena diretta
live
Business Online‎ - 14 min fa
Altre notizie su Roma Juventus diretta streaming
Le Partite della Juventus in diretta streaming | Facebook
Juventus vs Roma in diretta streaming  TV link  Stasera la fida infinita
Roma-Juventus: Le probabili formazioni  foto di Roma Juventus Streaming
DirettaPartitecom
wwwdirettapartitecom/
GUARDA ONLINE IL VIDEO LIVE DELLA PARTITA DEL CAMPIONATO DI SERIE A TRA
Juventus – Roma IN STREAMING DIRETTA TV, GRATIS E SENZA 
‎Fiorentina – Inter streaming  - ‎Streaming - ‎Diretta Partita - ‎Serie A
Partite Calcio in Diretta Serie A Live - Amici Nel Mondo Nostro 
nelmondonostroforumfreeit/?f=9874896
STREAMING ROMA-JUVENTUS DIRETTA LIVE ORE 20:45 GRATIS LUNEDI 2-3-2015 
CAGLIARI-VERONA STREAMING DIRETTA ORE 12:30 GRATIS 
DIRETTA Roma - Juventus: dove vederla in streaming e 
itibtimescom//roma-juventus-diretta-live-streaming-cronaca-aggiorna
7 ore fa - Lunedì 2 marzo il big match tra Roma e Juventus, in programma alle
pre 2045 (ma che inizierà con 15 minuti di ritardo per protesta nei 
Diffusioni in diretta, live stream, football, hockey su ghiaccio 
livetvsx/it/
LiveTV Italia / Tutti gli avvenimenti sportivi in diretta,gratuito!  Roma –
Juventus  Week 17 NCAA Men's Basketball 2014-15 | Streaming  Discussion
guarda~Roma Juventus diretta streaming - CarGurus
wwwcarguruscom › Questions
6 ore fa - Le Partite della Juventus in diretta streaming, iscriviti subito a
Facebook IscrivitiAccedi  foto di Roma Juventus Streaming copy pas 
Roma Juventus in streaming LIVE, diretta TV e su Twitter 
newssuperscommesseit//roma-juventus-streaming-live-diretta-tv-e-su-t
9 ore fa - Tutte le info per seguire oggi 2 marzo ore 21 la partita Roma
Juventus in diretta TV, in streaming gratis e tramite Twitter Da non mancare 
Roma-Juventus info streaming live: dove vedere la gara in 
itblastingnewscom › News calcio › 2015 › 03
Valutazione: 5 - ‎3 voti
1 giorno fa - Lunedì 2 marzo c'è il big match Roma-Juventus, dove vedere lo
streaming live e la diretta tv? Ecco le informazioni e le probabili formazioni
Juventus Roma streaming gratis live oggi dopo Napoli 
wwwbusinessonlineit//torino-napoli-streaming-live-gratis-in-attesa-str
http://www.scienceofsciencepolicy.net/job/juventus-roma-diretta-streaming
4 ore fa - Juventus Roma streaming gratis live oggi dopo Napoli Torino
streaming  La Roma, diretta avversaria dei partenopei, giocherà sapendo già il

-- 
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 198186] Roma Juventus diretta streaming

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

Sunpoet Po-Chuan Hsieh sunp...@freebsd.org changed:

   What|Removed |Added

Product|Base System |Other
Version|9.1-RELEASE |unspecified
  Component|misc|Spam
   Keywords||spam
   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 192701] [fusefs] FOPEN_DIRECT_IO not honored by fuse module

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

Edward Tomasz Napierala tr...@freebsd.org changed:

   What|Removed |Added

 CC||tr...@freebsd.org
   Assignee|freebsd-bugs@FreeBSD.org|tr...@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 192701] [fusefs] FOPEN_DIRECT_IO not honored by fuse module

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

--- Comment #4 from commit-h...@freebsd.org ---
A commit references this bug:

Author: trasz
Date: Mon Mar  2 19:04:29 UTC 2015
New revision: 279536
URL: https://svnweb.freebsd.org/changeset/base/279536

Log:
  Make fuse(4) respect FOPEN_DIRECT_IO.  This is required for correct
  operation of GlusterFS.

  PR:192701
  Submitted by:harsha at harshavardhana.net
  Reviewed by:kib@
  MFC after:1 month
  Sponsored by:The FreeBSD Foundation

Changes:
  head/sys/fs/fuse/fuse_node.c
  head/sys/fs/fuse/fuse_node.h
  head/sys/fs/fuse/fuse_vnops.c

-- 
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 198180] Juventus Roma diretta streaming gratis online

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

Bug ID: 198180
   Summary: Juventus Roma diretta streaming gratis online
   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: bxo65...@qisoa.com

LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v
LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v
LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v
LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v


Roma Juventus streaming live gratis dopo streaming Udinese Cesena diretta live
Business Online‎ - 25 min fa
Il match di cartello di questo turno di campionato è sicuramente quello tra
Roma e Juventus, 
Roma Juventus in streaming LIVE, diretta TV e su Twitter oggi 2 marzo
SuperNews‎ - 9 ore fa
Juventus Roma streaming gratis live oggi dopo Napoli Torino streaming live
diretta ieri
Business Online‎ - 4 ore fa
Altre notizie su Juventus Roma diretta streaming gratis
DirettaPartitecom
wwwdirettapartitecom/
GUARDA ONLINE IL VIDEO LIVE DELLA PARTITA DEL CAMPIONATO DI SERIE A TRA
Juventus – Roma IN STREAMING DIRETTA TV, GRATIS E SENZA 
Partite Calcio in Diretta Serie A Live - Amici Nel Mondo Nostro 
nelmondonostroforumfreeit/?f=9874896
STREAMING ROMA-JUVENTUS DIRETTA LIVE ORE 2045 GRATIS LUNEDI 2-3-2015 
CAGLIARI-VERONA STREAMING DIRETTA ORE 1230 GRATIS 
Le Partite della Juventus in diretta streaming | Facebook
s//it-itfacebookcom/juventsstreaminghdita
Juventus – Borussia Dortmund 24/02 2045 diretta live 24 febbraio  Juventus vs
Roma in diretta streaming  TV link //webnewsstreamscom/soccerlive/
Juventus Roma streaming live gratis dopo Napoli Torino 
wwwbusinessonlineit//roma-juventus-streaming-live-gratis-dopo-strea
6 ore fa - Archiviata con successo l'Europa League, la Roma si prepara al big
match contro la Juventus, mentre il Napoli andrà a fare visita al Torino, 
Juventus Roma streaming gratis live oggi dopo Napoli 
wwwbusinessonlineit//torino-napoli-streaming-live-gratis-in-attesa-str
4 ore fa - Sfida dal pronostico aperto quella tra Torino e Napoli nel posticipo
domenicale dell'Olimpico Granata forse più stanchi dopo l'emozionante 2 
Juventus Roma streaming gratis live dopo streaming 
wwwbusinessonlineit//inter-fiorentina-streaming-live-gratis-in-attesa-s
4 ore fa - Dopo l'ennesima grande prova in Europa, Fiorentina e Roma si
affrontano in campionato, mentre a catalizzare l'attenzione sarà il big match
tra 
UccioCalcioit Partite di Calcio e Sport in Streaming Gratis e 
wwwucciocalcioit/
Partite di calcio gratis in streaming Serie A, Serie B, Champions, Europa
League e tutte le informazioni sul campionato di Serie A!
Juventus Roma diretta streaming - CarGurus
wwwcarguruscom › Questions
6 ore fa - STREAMING ROMA-JUVENTUS DIRETTA LIVE ORE 2045 GRATIS LUNEDI 2-3-2015
CAGLIARI-VERONA STREAMING DIRETTA ORE 
@#@Juventus Roma Diretta Streaming Gratis | Science of 
wwwscienceofsciencepolicynet//juventus-roma-diretta-streaming-grati
3 ore fa - Juventus Roma streaming gratis live oggi dopo Napoli Torino
streaming live diretta ieri Sfida dal pronostico aperto quella tra Torino e
Napoli

-- 
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 198179] Juventus Roma diretta streaming 2015 online

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

Sunpoet Po-Chuan Hsieh sunp...@freebsd.org changed:

   What|Removed |Added

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

-- 
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 198186] Roma Juventus diretta streaming

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

Bug ID: 198186
   Summary: Roma Juventus diretta streaming
   Product: Base System
   Version: 9.1-RELEASE
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: misc
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: bxo65...@qisoa.com

LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v
LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v

LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v
LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v

LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v
LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v

LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v
LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v

LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v
LIVE NOW
LINK 1

http://w.atch.me/7Mdf88
http://w.atch.me/7Mdf88
LINK2”””
http://tinyurl.com/l7ot33v
http://tinyurl.com/l7ot33v




Diretta Roma-Juventus (risultato live) info streaming, tv e radio Cronaca l
ultima vittoria giallorossa (oggi 2 marzo 
Il Sussidiarionet‎ - 19 min fa11 ore fa - La partita tra Roma-Juventus verrà
trasmessa in diretta streaming live  Dmax gratis in attesa streaming Torino
Napoli streaming live diretta 
Come vedere Roma-Juventus streaming gratis live diretta tv 
wwwfum-networkorg/come-vedere-roma-juventus-streaming-gratis/
23 ore fa - Ecco come e dove vedere Roma-Juventus streaming gratis diretta live
anche online, coni canali tv e le formazioni ufficiali di lunedì 2 marzo 
Roma-Juventus Diretta streaming tv live gratis, formazioni 
wwwfum-networkorg/roma-juventus-diretta-streaming-tv-live-gratis-fo
9 ore fa - Roma-Juventus in diretta streaming tv live gratis, con le probabili
formazioni ufficiali, i canali televisivi, orario del match ed ultime notizie
della 
Roma-Juventus streaming live, diretta, pronostico e formazioni
calcioexciteit › Attualità › Calcio › Serie A
23 ore fa - Serie A, è il giorno di Roma-Juventus ecco tutte le informazioni
utili per  Roma-Juventus, formazioni, diretta tv e streaming e pronostico della 
(((Soccer))) Roma - Juventus diretta streaming | Science of 
wwwscienceofsciencepolicynet//soccer-roma-juventus-diretta-streami
16 min fa - Roma - Juventus diretta streaming, Roma - Juventus in diretta, Roma
vs Juventus in diretta, Roma vs Juventus in diretta streaming, Diretta 
Roma-Juve Live Diretta Streaming gratis su Rojadirecta (2 
calcionowit/roma-juve-live-diretta-streaming-gratis-su-rojadirecta-2-mar
6 ore fa - È arrivato il grande giorno dell'attesissima sfida tra Roma e
Juventus Questa sera allo stadio Olimpico si chiude la 25ª giornata di Serie A
con  

Diretta Roma Juventus, info streaming e tv risultato live e cronaca dello
scontro diretto in 
ROMA-JUVENTUS DIRETTA STREAMING
Giornalettismo‎ - 5 min fa
DIRETTA Roma - Juventus dove vederla in streaming e formazioni ufficiali
International Business Times Italia‎ - 7 ore fa
Altre notizie su Roma Juventus diretta streaming
Le Partite della Juventus in diretta streaming | Facebook
https//it-itfacebookcom/juventsstreaminghdita
Juventus vs Roma in diretta streaming  TV link  Stasera la fida infinita
Roma-Juventus Le probabili formazioni  foto di Roma Juventus Streaming
DirettaPartitecom
wwwdirettapartitecom/
GUARDA ONLINE IL VIDEO LIVE DELLA PARTITA DEL CAMPIONATO DI SERIE A TRA
Juventus – Roma IN STREAMING DIRETTA TV, GRATIS E SENZA 
‎Fiorentina – Inter streaming  - ‎Streaming - ‎Diretta Partita - ‎Serie A
Partite Calcio in Diretta Serie A Live - Amici Nel Mondo Nostro 
nelmondonostroforumfreeit/?f=9874896
STREAMING ROMA-JUVENTUS DIRETTA LIVE ORE 2045 GRATIS LUNEDI 2-3-2015 
CAGLIARI-VERONA STREAMING DIRETTA ORE 1230 GRATIS 
DIRETTA Roma - Juventus dove vederla in streaming e 
itibtimescom//roma-juventus-diretta-live-streaming-cronaca-aggiorna
7 ore fa - Lunedì 2 marzo il big match tra Roma e Juventus, in programma alle
pre 2045 (ma che inizierà con 15 minuti di ritardo per protesta nei 
Diffusioni in 

[Bug 197286] Panic in IPv6 stack - 0xc0d0b1fc is in ip6_input (/usr/src/sys/netinet6/ip6_input.c:702)

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

--- Comment #3 from Tim Bishop t...@freebsd.org ---
(In reply to Andrey V. Elsukov from comment #2)
 Can you show ifconfig output of your configuration?

I've got the machine running HEAD (still no problems since my comment #0), but
from console logs I can see the following (IPs anonymised):

vr0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST metric 0 mtu 1500
   
options=8284bRXCSUM,TXCSUM,VLAN_MTU,POLLING,WOL_UCAST,WOL_MAGIC,LINKSTATE
ether 00:00:24:cb:15:b8
inet6 fe80::200:24ff:fecb:15b8%vr0 prefixlen 64 scopeid 0x1
nd6 options=21PERFORMNUD,AUTO_LINKLOCAL
media: Ethernet autoselect (100baseTX full-duplex)
status: active
vr1: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST metric 0 mtu 1500
   
options=8284bRXCSUM,TXCSUM,VLAN_MTU,POLLING,WOL_UCAST,WOL_MAGIC,LINKSTATE
ether 00:00:24:cb:15:b9
inet 192.168.1.1 netmask 0xff00 broadcast 192.168.1.255
inet6 fe80::200:24ff:fecb:15b9%vr1 prefixlen 64 scopeid 0x2
inet6 1:1::1 prefixlen 64
inet 1.1.1.198 netmask 0xfff8 broadcast 1.1.1.199
nd6 options=21PERFORMNUD,AUTO_LINKLOCAL
media: Ethernet autoselect (100baseTX full-duplex)
status: active
vr2: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST metric 0 mtu 1500
   
options=8284bRXCSUM,TXCSUM,VLAN_MTU,POLLING,WOL_UCAST,WOL_MAGIC,LINKSTATE
ether 00:00:24:cb:15:ba
inet 192.168.2.1 netmask 0xff00 broadcast 192.168.2.255
inet6 fe80::200:24ff:fecb:15ba%vr2 prefixlen 64 scopeid 0x3
inet6 1:2::1 prefixlen 64
nd6 options=21PERFORMNUD,AUTO_LINKLOCAL
media: Ethernet autoselect (none)
status: no carrier
vr3: flags=8802BROADCAST,SIMPLEX,MULTICAST metric 0 mtu 1500
options=8280bRXCSUM,TXCSUM,VLAN_MTU,WOL_UCAST,WOL_MAGIC,LINKSTATE
ether 00:00:24:cb:15:bb
nd6 options=21PERFORMNUD,AUTO_LINKLOCAL
media: Ethernet autoselect
pflog0: flags=141UP,RUNNING,PROMISC metric 0 mtu 33200
nd6 options=9PERFORMNUD,IFDISABLED
lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST metric 0 mtu 16384
options=63RXCSUM,TXCSUM,RXCSUM_IPV6,TXCSUM_IPV6
inet6 ::1 prefixlen 128
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x8
inet 127.0.0.1 netmask 0xff00
nd6 options=21PERFORMNUD,AUTO_LINKLOCAL
gif0: flags=8051UP,POINTOPOINT,RUNNING,MULTICAST metric 0 mtu 1280
tunnel inet 1.1.1.198 -- 1.1.1.126
inet6 fe80::200:24ff:fecb:15b8%gif0 prefixlen 64 scopeid 0x9
inet6 1:73::2 -- 1:73::1 prefixlen 128
nd6 options=21PERFORMNUD,AUTO_LINKLOCAL
options=1ACCEPT_REV_ETHIP_VER
tun0: flags=8051UP,POINTOPOINT,RUNNING,MULTICAST metric 0 mtu 1492
options=8LINKSTATE
inet 1.1.1.198 -- 1.1.1.27 netmask 0x
nd6 options=21PERFORMNUD,AUTO_LINKLOCAL
Opened by PID 838

tun0 is a ppp managed link using PPPoE over vr0. gif0 is an IPv6 tunnel which
goes out over the tun0 connection. vr1 and vr2 are internal networking.

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