[Bug 190489] New: Native ISCSI - UNIT_ATTENTION with KVM

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190489

Bug ID: 190489
   Summary: Native ISCSI - UNIT_ATTENTION with KVM
   Product: Base System
   Version: 10.0-RELEASE
  Hardware: Any
OS: Any
Status: Needs Triage
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: harun...@harunaga.ru

Problem with Native ISCIS for use with KVM hypervisor.
Reports KVM at startup:

vm: -drive
file=iscsi://192.168.0.200/iqn.2012-06.storage:target0/10,if=none,id=drive-virtio0,aio=native,cache=none:
iSCSI: Failed to connect to LUN : SENSE KEY:UNIT_ATTENTION(6)
ASCQ:(null)(0x2901)

Can run with the second or third attempt. After a successful run is no problem.
This problem is very serious obstacle, as a result of migration does not work
or autostart virtual machines (VM) after a reboot of the hypervisor.

Environment:
FreeBSD storage.oc.chics.ru 10.0-RELEASE-p3 FreeBSD 10.0-RELEASE-p3 #0: Tue May
13 18:31:10 UTC 2014
r...@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC  amd64

How-To-Repeat:
Add new LUN in /etc/ctl.conf, make 'service ctld reload'. Start KVM:

kvm -drive 'file=iscsi://IP/TARGET/LUN'

get error:
Failed to connect to LUN : SENSE KEY:UNIT_ATTENTION(6) ASCQ:(null)(0x2901)

-- 
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 190493] New: dtrace: failed to resolve cwd: Unknown variable name

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190493

Bug ID: 190493
   Summary: dtrace: failed to resolve cwd: Unknown variable name
   Product: Base System
   Version: 10.0-RELEASE
  Hardware: Any
OS: Any
Status: Needs Triage
  Severity: Affects Only Me
  Priority: ---
 Component: misc
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: xaion...@gmail.com

dtrace doesn't work as described on page [1].

[1] http://docs.oracle.com/cd/E18752_01/html/819-5488/gcfpz.html

Moreover official examples on /usr/share doesn't work as well:

[root@freebsd10 ~]# /usr/share/dtrace/toolkit/opensnoop -c 21 | tail -1
: in action list: failed to resolve cwd: Unknown variable name

It's required a way to find out absolute paths of syscalls like open. The
only way I see is to concatenate relative paths with cwd, but variable cwd
doesn't work in FreeBSD.

Environment:
root@freebsd10:~ # uname -a
FreeBSD freebsd10.imperium.mephi.ru 10.0-RELEASE FreeBSD 10.0-RELEASE #0
r260789: Thu Jan 16 22:34:59 UTC 2014
r...@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC  amd64

root@freebsd9:~ # uname -a
FreeBSD freebsd9 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26
22:50:31 UTC 2013 r...@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC 
amd64

How-To-Repeat:
/usr/share/dtrace/toolkit/opensnoop -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 175778] /usr/obj/usr/src/tmp/usr/lib/libc++.so: undefined reference to `std::bad_alloc::~bad_alloc()'

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=175778

David Chisnall thera...@freebsd.org changed:

   What|Removed |Added

 Status|In Discussion   |Issue Resolved
 CC||thera...@freebsd.org
 Resolution|--- |FIXED

--- Comment #1 from David Chisnall thera...@freebsd.org ---
I believe that this was an error in the version script that is was fixed some
time ago.

-- 
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 182170] strtofflags.c build failures

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=182170

David Chisnall thera...@freebsd.org changed:

   What|Removed |Added

 CC||thera...@freebsd.org
   Assignee|freebsd-bugs@FreeBSD.org|thera...@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 180413] [build] [patch] Compilation failure with _DONT_USE_CTYPE_INLINE_ defined

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=180413

David Chisnall thera...@freebsd.org changed:

   What|Removed |Added

 CC||thera...@freebsd.org

--- Comment #1 from David Chisnall thera...@freebsd.org ---
I am not sure what the bug is here.  We do not guarantee forward compatibility,
only backward compatibility.  Code compiled on 8.3 should run on 9.1, but not
the converse.

In particular, in 9.x we added a (POSIX2008-compilant) per-thread locale and
explicit locales.  For efficiency, various ctype.h functions are inlines.  When
compiled on 8.x, these will always refer to the global locale.  When compiled
with 9.x, they will refer to the thread-local locale if one is set or the
global locale if not.  

If you want to target 8.x, then you should use the headers from 8.x (ideally,
we'd add visibility attributes to all of the headers to allow you to target
older versions, but we have not done this for any other system headers and so
there should be no expectation that this will work in the general case).

-- 
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 164637] [libc] Problem with vsnprintf in libc.so when compiled with clang

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=164637

David Chisnall thera...@freebsd.org changed:

   What|Removed |Added

 Status|In Discussion   |Issue Resolved
 CC||thera...@freebsd.org
 Resolution|--- |As Intended

--- Comment #1 from David Chisnall thera...@freebsd.org ---
The string0 argument is not a valid va_list, so this test case appears to be
invalid.  Please reopen if you have a test case that does not rely on undefined
behaviour.

-- 
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 190496] New: editors/libreoffice python2.7/pthread.h:294:42: error: typedef redefinition with different types ('struct pthread_rwlock_st *' vs 'struct pthread_rwlock *')

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190496

Bug ID: 190496
   Summary: editors/libreoffice python2.7/pthread.h:294:42: error:
typedef redefinition with different types ('struct
pthread_rwlock_st *' vs 'struct pthread_rwlock *')
   Product: Base System
   Version: 11.0-CURRENT
  Hardware: Any
OS: Any
Status: Needs Triage
  Severity: Affects Only Me
  Priority: ---
 Component: misc
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: mikhail.rok...@gmail.com

#9474; #9474; [x] CUPS CUPS printing system support  
 #9474; #9474;  
   #9474; #9474; [ ] DEBUGBuild with debugging support   
#9474; #9474;  
   #9474; #9474; [x] GNOMEGNOME desktop environment support  
#9474; #9474;  
   #9474; #9474; [x] GTK2 GTK+ 2 GUI toolkit support 
#9474; #9474;  
   #9474; #9474; [x] GTK3 GTK+ 3 GUI toolkit support 
#9474; #9474;  
   #9474; #9474; [x] JAVA Add java support (XML Filters, macros) 
#9474; #9474;  
   #9474; #9474; [x] KDE4 KDE 4 desktop environment support  
#9474; #9474;  
   #9474; #9474; [x] MMEDIA   Enable multimedia backend for impress  
#9474; #9474;  
   #9474; #9474; [x] PGSQLBuild with PostgreSQL-SDBC driver  
#9474; #9474;  
   #9474; #9474; [ ] SDK  Build with SDK 
#9474; #9474;  
   #9474; #9474; [x] SYSTRAY  Enable systemtray quickstarter 
#9474; #9474;  
   #9474; #9474; [ ] TEST Run all regression tests   
#9474; #9474;  
   #9474; #9474; [ ] VERBOSE  Increase build verbosity   
#9474; #9474;  
   #9474; #9474; [ ] WEBDAV   Enable webdav protocol 
#9474; #9474;  




editors/libreoffice python2.7/pthread.h:294:42: error: typedef redefinition
with different types ('struct pthread_rwlock_st *' vs 'struct pthread_rwlock
*')

Environment:
FreeBSD win98 11.0-CURRENT FreeBSD 11.0-CURRENT #1 r266891: Sat May 31 03:44:29
MSK 2014 root@:/usr/obj/usr/src/sys/GENERIC  i386

How-To-Repeat:
compile 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 114082] [make.conf] [patch] default CFLAGS have a blank at the end

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=114082

Alexander Best arun...@freebsd.org changed:

   What|Removed |Added

   Assignee|arun...@freebsd.org |freebsd-bugs@FreeBSD.org

--- Comment #7 from Alexander Best arun...@freebsd.org ---
Reset assignee -- not working on these PRs atm.

-- 
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 152485] [patch] seek offset for /dev/null(4) and /dev/zero(4) not reported correctly

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=152485

Alexander Best arun...@freebsd.org changed:

   What|Removed |Added

   Assignee|arun...@freebsd.org |freebsd-bugs@FreeBSD.org

--- Comment #4 from Alexander Best arun...@freebsd.org ---
Reset assignee -- not working on these PRs atm.

-- 
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 177862] [ofed] [patch] Fix atomic bitstring operations in sys/ofed/include/linux/bitops.h

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=177862

gelraen...@gmail.com changed:

   What|Removed |Added

 Status|In Discussion   |Issue Resolved
 Resolution|--- |FIXED

--- Comment #1 from gelraen...@gmail.com ---
This was fixed in http://svnweb.freebsd.org/base?view=revisionrevision=254120

-- 
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 190526] New: Please create a wireless component

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190526

Bug ID: 190526
   Summary: Please create a wireless component
   Product: Base System
   Version: unspecified
  Hardware: Any
OS: Any
Status: Needs Triage
  Severity: Affects Only Me
  Priority: ---
 Component: misc
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: adr...@freebsd.org

Please create a wireless component in the bugzilla system.

That way we can file all the wireless driver/stack bugs over to that category.

What about a bluetooth category?

-- 
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 190526] Please create a wireless component

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190526

Adrian Chadd adr...@freebsd.org changed:

   What|Removed |Added

  Component|misc|Bug Tracker
   Assignee|freebsd-bugs@FreeBSD.org|bugmeis...@freebsd.org
Product|Base System |Bug Tracker

-- 
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 190528] New: multimedia/linux-realplayer falsely broken

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190528

Bug ID: 190528
   Summary: multimedia/linux-realplayer falsely broken
   Product: Base System
   Version: unspecified
  Hardware: Any
OS: Any
Status: Needs Triage
  Severity: Affects Only Me
  Priority: ---
 Component: misc
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: mikhail.rok...@gmail.com



Fix:
ftp://ftp.tw.freebsd.org/pub/ports/distfiles/:player \
ftp://ftp.tw.freebsd.org/distfiles/:player \

should be add to MASTER_SITES=-

-- 
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 190529] New: Kernel panic in KVM after recent Linux host upgrade

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190529

Bug ID: 190529
   Summary: Kernel panic in KVM after recent Linux host upgrade
   Product: Base System
   Version: unspecified
  Hardware: Any
OS: Any
Status: Needs Triage
  Severity: Affects Only Me
  Priority: ---
 Component: bin
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: and...@podzimek.org

After a regular weekly update of the Linux host, all FreeBSD KVM machines panic
on boot, despite the fact that

* the same FreeBSD KVM machines worked perfectly fine before one of the recent
host updates.
* all other KVM machines (OpenIndiana, 3 Linux distributions) still work fine
as usual.

The FreeBSD machines are installed on and boot from ZFS. (Not sure if that's
relevant to the problem -- all the ZFS modules get loaded as usual, the crash
occurs much later.)


Kernel panic message:

fault code  = supervisor write data, page not present
instruction pointer = 0x20:0x80cfb869
stack pointer   = 0x28:0x81a4a6a0
frame pointer   = 0x28:0x81a4a8e0
code segment= base 0x0, limit 0xf, type 0x1b
= DPL 0, pres 1, long 1, def32 0, gran 1
processor eflags= resume, IOPL = 0
current process = 0 (swapper)
trap number = 12
panic: page fault
cpuid = 0
KDB: stack backtrace:
#0 0x808e7e70 at kdb_backtrace+0x60
#1 0x808af955 at panic+0x155
#2 0x80c8e732 at trap_fatal+0x3a2
#3 0x80c8ea09 at trap_pfault+0x2c9
#4 0x80c8e196 at trap+0x5e6
#5 0x80c75432 at calltrap+0x8
#6 0x80cfa7e6 at vesa_mod_event+0x166
#7 0x8089b2bb at module_register_init+0xfb
#8 0x808612d8 at mi_startup+0x118
#9 0x802d3e0c at btext+0x2c
Uptime: 1s
Automatic reboot in 15 seconds - press a key on the console to abort


Configuration of the KVM machine:

!--
WARNING: THIS IS AN AUTO-GENERATED FILE. CHANGES TO IT ARE LIKELY TO BE
OVERWRITTEN AND LOST. Changes to this xml configuration should be made using:
  virsh edit maple
or other application using the libvirt API.
--

domain type='kvm'
  namemaple/name
  uuid0a266182-b840-ac74-af2f-73d6c18daf60/uuid
  descriptionFreeBSD/description
  memory unit='KiB'10485760/memory
  currentMemory unit='KiB'10485760/currentMemory
  vcpu placement='static'4/vcpu
  os
type arch='x86_64' machine='pc-i440fx-1.7'hvm/type
boot dev='hd'/
bootmenu enable='no'/
  /os
  features
acpi/
apic/
pae/
  /features
  cpu mode='custom' match='exact'
model fallback='allow'Westmere/model
vendorIntel/vendor
feature policy='require' name='pbe'/
feature policy='require' name='rdtscp'/
feature policy='require' name='est'/  
feature policy='require' name='vmx'/  
feature policy='require' name='ds'/   
feature policy='require' name='smx'/  
feature policy='require' name='ss'/   
feature policy='require' name='vme'/  
feature policy='require' name='dtes64'/   
feature policy='require' name='tm2'/  
feature policy='require' name='ht'/   
feature policy='require' name='dca'/  
feature policy='require' name='pcid'/ 
feature policy='require' name='tm'/   
feature policy='require' name='pdcm'/ 
feature policy='require' name='pdpe1gb'/  
feature policy='require' name='ds_cpl'/   
feature policy='require' name='pclmuldq'/ 
feature policy='require' name='xtpr'/ 
feature policy='require' name='acpi'/
feature policy='require' name='monitor'/
  /cpu
  clock offset='utc'/
  on_poweroffdestroy/on_poweroff
  on_rebootrestart/on_reboot
  on_crashrestart/on_crash
  devices
emulator/usr/bin/qemu-system-x86_64/emulator
disk type='file' device='disk'
  driver name='qemu' type='raw' cache='writeback'/
  source file='/var/lib/libvirt/images/maple.img'/
  target dev='vda' bus='virtio'/
  address type='pci' domain='0x' bus='0x00' slot='0x07'
function='0x0'/
/disk
disk type='block' device='cdrom'
  driver name='qemu' type='raw' cache='none'/
  target dev='hdc' bus='ide'/
  readonly/
  address type='drive' controller='0' bus='1' target='0' unit='0'/
/disk
controller type='usb' index='0'
  address type='pci' domain='0x' bus='0x00' slot='0x01'

[Bug 190530] New: zcblqsxe

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190530

Bug ID: 190530
   Summary: zcblqsxe
   Product: Base System
   Version: unspecified
  Hardware: Any
OS: Any
Status: Needs Triage
  Severity: Affects Only Me
  Priority: ---
 Component: bin
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: yadbjol...@snvefy.com

qrbpegcte, a href=http://www.mrcirafygo.com/;ckvplczhhu/a ,
[url=http://www.bofdbzepws.com/]rsxnwgflfd[/url], http://www.rmciguyywi.com/
ckvplczhhu

Environment:
zcblqsxe

How-To-Repeat:
zcblqsxe

Fix:
zcblqsxe

-- 
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 190528] multimedia/linux-realplayer falsely broken

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190528

Antoine Brodin anto...@freebsd.org changed:

   What|Removed |Added

  Component|misc|Individual Port(s)
Version|unspecified |Latest
   Assignee|freebsd-bugs@FreeBSD.org|freebsd-ports-bugs@FreeBSD.
   ||org
Product|Base System |Ports Tree

-- 
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 190530] zcblqsxe

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190530

Eitan Adler ead...@freebsd.org changed:

   What|Removed |Added

 CC||ead...@freebsd.org
  Component|bin |junk
   Assignee|freebsd-bugs@FreeBSD.org|nob...@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 190550] New: auzytayx

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190550

Bug ID: 190550
   Summary: auzytayx
   Product: Base System
   Version: unspecified
  Hardware: Any
OS: Any
Status: Needs Triage
  Severity: Affects Only Me
  Priority: ---
 Component: bin
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: ulrxvch...@abvwro.com

wlhhgef, a href=http://www.hxmaiupzhr.com/;olliqzyvyj/a ,
[url=http://www.zvfbidgqux.com/]mqygmyxiwv[/url], http://www.lagnnblsas.com/
olliqzyvyj

Environment:
auzytayx

How-To-Repeat:
auzytayx

Fix:
auzytayx

-- 
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 190550] auzytayx

2014-06-02 Thread no-reply-bugzilla-daemon
http://bugs.freebsd.org/bugzilla/show_bug.cgi?id=190550

Peter Wemm pe...@freebsd.org changed:

   What|Removed |Added

 Status|Needs Triage|Issue Resolved
  Component|bin |junk
 Resolution|--- |As Intended
   Assignee|freebsd-bugs@FreeBSD.org|gnats-ad...@freebsd.org

--- Comment #1 from Peter Wemm pe...@freebsd.org ---
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