[Bug 211028] [GEOM][Hyper-V] gpart can't detect the new free space after the disk capacity changes

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211028

--- Comment #5 from Dexuan Cui  ---
(In reply to Andrey V. Elsukov from comment #3)
Thank you Andrey for the detailed instructions!

g_resize_provider() returns at Line 671 and at this line, both 'size' and
'pp->mediasize' are the new disk capacity! This is pretty strange, because at
this time pp->mediasize is supposed to be the old disk capacity. I'm trying to
find out why this happens.

 661 void
 662 g_resize_provider(struct g_provider *pp, off_t size)
 663 {
 664 struct g_hh00 *hh;
 665
 666 G_VALID_PROVIDER(pp);
 667 if (pp->flags & G_PF_WITHER)
 668 return;
 669
 670 if (size == pp->mediasize)
 671 return;
 672
 673 hh = g_malloc(sizeof *hh, M_WAITOK | M_ZERO);
 674 hh->pp = pp;
 675 hh->size = size;
 676 g_post_event(g_resize_provider_event, hh, M_WAITOK, NULL);
 677 }

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


[Bug 211028] [GEOM][Hyper-V] gpart can't detect the new free space after the disk capacity changes

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211028

--- Comment #6 from Edward Tomasz Napierala  ---
It looks like the da(4) driver correctly noticed the updated capacity:

(da1:storvsc1:0:0:0): Capacity data has changed

So "camcontrol reprobe" shouldn't really do anything.

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


[Bug 211028] [GEOM][Hyper-V] gpart can't detect the new free space after the disk capacity changes

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211028

--- Comment #7 from Edward Tomasz Napierala  ---
Also - correct me if I'm wrong, but even if you don't do reprobe, you still see
the new size of da1 - 50G, so GEOM already "sees" the updated size, it's just
that g_part(4) doesn't update the "free" size.  Does that make sense?

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


[Bug 211028] [GEOM][Hyper-V] gpart can't detect the new free space after the disk capacity changes

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211028

--- Comment #8 from Dexuan Cui  ---
(In reply to Edward Tomasz Napierala from comment #7)
Hi Edword,
Yes, exactly.

After the disk capacity change, if I do "camcontrol reprobe da1", gpart can see
 both the capacity & free space are updated.

After the disk capacity change, if first I open /dev/da1 for reading (e.g. dd
if=/dev/da1 of=tmp bs=512 count=1), da driver notices "Capacity data has
changed", and gpart can see the new capacity, but the "free" space shown by
gpart is still the old. Next, "camcontrol reprobe da1" can't help and the
"free" space shown by gpart is still the old. Next, opening da1 for writing
(e.g. dd if=/dev/da1 of=/dev/da1 bs=512 count=0) can make gpart show the new
"free" space.

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


[Bug 211028] [GEOM][Hyper-V] gpart can't detect the new free space after the disk capacity changes

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211028

--- Comment #9 from Edward Tomasz Napierala  ---
Hm.  Okay.  The read dd works, because the da(4) driver gets notified about the
capacity change on the first read command sent to the disk; basically the disk
responds with Unit Attention indicating this.  The write dd works, because it
forces GEOM retaste.  So it still fits the theory that GEOM itself is fine, and
it's just g_part(4) not handling it properly.

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


[Bug 211028] [GEOM][Hyper-V] gpart can't detect the new free space after the disk capacity changes

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211028

--- Comment #10 from Andrey V. Elsukov  ---
(In reply to Edward Tomasz Napierala from comment #9)
> Hm.  Okay.  The read dd works, because the da(4) driver gets notified about
> the capacity change on the first read command sent to the disk; basically
> the disk responds with Unit Attention indicating this.  The write dd works,
> because it forces GEOM retaste.  So it still fits the theory that GEOM
> itself is fine, and it's just g_part(4) not handling it properly.

As I said, tracing via dtrace or geom's internal capability should show that
g_part receives resize event. In previous messages I didn't see this.

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


[Bug 211028] [GEOM][Hyper-V] gpart can't detect the new free space after the disk capacity changes

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211028

--- Comment #11 from Edward Tomasz Napierala  ---
Hm, you're right.

Dexuan - the g_resize_provider() you're seeing, is that after "camcontrol
reprobe", or after the first read?  Can you bump GEOM debugflags and show what
happens on the first read, when da(4) is supposed to notice the updated
capacity?

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


[Bug 211028] [GEOM][Hyper-V] gpart can't detect the new free space after the disk capacity changes

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211028

--- Comment #12 from Dexuan Cui  ---
(In reply to Edward Tomasz Napierala from comment #11)
Thank you both for the analysis!

The g_resize_provider() is after the first read, and before the "camcontrol
reprobe". I'm going to use try debugflags and dtrace.

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


[Bug 211028] [GEOM][Hyper-V] gpart can't detect the new free space after the disk capacity changes

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211028

--- Comment #13 from Dexuan Cui  ---
(In reply to Edward Tomasz Napierala from comment #11)
With kern.geom.debugflags=253 (log everything except G_T_BIO)  and
debug.bootverbose=1, after the disk capacity was changed from 180GB to 200GB, I
got the below when running "dd if=/dev/da1 of=tmp bs=512 count=1":

g_dev_open(da1, 1, 8192, 0xf80004433500)
g_access(0xf80003faba00(da1), 1, 0, 0)
open delta:[r1w0e0] old:[r0w0e0] provider:[r0w0e0] 0xf80003d19c00(da1)
g_disk_access(da1, 1, 0, 0)
(da1:storvsc1:0:0:0): storvsc scsi_status = 2
(da1:storvsc1:0:0:0): Capacity data has changed
g_post_event_x(0x80996f40, 0xf800043fd800, 1, 0)
(da1:storvsc1:0:0:0): storvsc skips the validation for short inquiry (6) [0 b2
0 4 1]
(da1:storvsc1:0:0:0): storvsc skips the validation for short inquiry (5) [0 b0
0 3c 0]
(da1:storvsc1:0:0:0): storvsc skips the validation for short inquiry (5) [0 b1
0 3c 0]
g_dev_close(da1, 131073, 8192, 0xf80004433500)
g_access(0xf80003faba00(da1), -1, 0, 0)
open delta:[r-1w0e0] old:[r1w0e0] provider:[r1w0e0] 0xf80003d19c00(da1)
g_disk_access(da1, -1, 0, 0)

Next, gpart can't show the new free space:
[root@decui-b11 ~/bsd.git/sys]# gpart show da1
=>   63  377487297  da1  MBR  (200G)
 63  377487297   - free -  (180G)

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


[Bug 211028] [GEOM][Hyper-V] gpart can't detect the new free space after the disk capacity changes

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211028

--- Comment #14 from Dexuan Cui  ---
(In reply to Dexuan Cui from comment #13)

When I got the kernel messages in comment 13, dtrace showed this:

[root@decui-b11 ~]# dtrace -n 'fbt::*disk_resize:entry
fbt::g_part_*resize:entry {stack(5);}'
dtrace: description 'fbt::*disk_resize:entry fbt::g_part_*resize:entry '
matched 7 probes
CPU IDFUNCTION:NAME
  0  36534disk_resize:entry
  0  13496  g_disk_resize:entry

and g_part_resize() was not called.

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


[Bug 211081] LSI MegaRAID SAS 9271-8i

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211081

Bug ID: 211081
   Summary: LSI MegaRAID SAS 9271-8i
   Product: Base System
   Version: 11.0-STABLE
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: serg...@mail.ru

Use the raid controller LSI MegaRAID SAS 9271-8i.

#uname -a
FreeBSD ... 10.3-STABLE FreeBSD 10.3-STABLE #0: Wed Jul 13 16:45:24 MSK 2016   
 ... amd64

# mfiutil show adapter
mfi0 Adapter:
Product Name: LSI MegaRAID SAS 9271-8i
   Serial Number: SV42934928
Firmware: 23.34.0-0005
 RAID Levels: JBOD, RAID0, RAID1, RAID5, RAID6, RAID10, RAID50
  Battery Backup: present
   NVRAM: 32K
  Onboard Memory: 1024M
  Minimum Stripe: 8K
  Maximum Stripe: 1M

After upgrading to 11.0-Stable, revision: 302669, raid controller became
invisible.

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


[Bug 211081] LSI MegaRAID SAS 9271-8i

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211081

Sergey Renkas  changed:

   What|Removed |Added

   Hardware|Any |amd64

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


[Bug 211081] LSI MegaRAID SAS 9271-8i not detected after upgrade to 11

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211081

Mark Linimon  changed:

   What|Removed |Added

   Keywords||regression
Summary|LSI MegaRAID SAS 9271-8i|LSI MegaRAID SAS 9271-8i
   ||not detected after upgrade
   ||to 11

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


[Bug 211037] [panic] softdep_deallocate_dependencies: got error 6 while accessing filesystem

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211037

Mark Linimon  changed:

   What|Removed |Added

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

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


[Bug 211031] [panic] in ng_uncallout when argument is NULL

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211031

Mark Linimon  changed:

   What|Removed |Added

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

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


[Bug 211027] r301295 removed "blank" line containing "# leapfile sources"

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211027

Mark Linimon  changed:

   What|Removed |Added

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

--- Comment #1 from Mark Linimon  ---
Over to committer of r301295.

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


[Bug 211013] Write error to UFS filesystem with softupdates panics machine

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211013

Mark Linimon  changed:

   What|Removed |Added

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

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


[Bug 211003] net.inet.tcp.delayed_ack=0 delaying local tcp requests

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211003

Mark Linimon  changed:

   What|Removed |Added

   Assignee|freebsd-bugs@FreeBSD.org|freebsd-...@freebsd.org
   Keywords||regression
Summary|net.inet.tcp.delayed_ack=0  |net.inet.tcp.delayed_ack=0
   |and local TCP traffic   |delaying local tcp requests

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


[Bug 211001] HP Proliant: BIOS problem with 3TB+ disks

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211001

Mark Linimon  changed:

   What|Removed |Added

   Keywords||patch

--- Comment #1 from Mark Linimon  ---
See wiki page for patch.

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


[Bug 211000] [Hyper-V] Online VHDX Resize doesn't work properly

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211000

Mark Linimon  changed:

   What|Removed |Added

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

--- Comment #7 from Mark Linimon  ---
sephe seems to be working on a fix.

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


[Bug 210996] I/O errors on NFS reads during high load on server

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210996

Mark Linimon  changed:

   What|Removed |Added

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

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


[Bug 210958] base clang: Assertion failed while trying to build www/firefox-esr

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210958

Mark Linimon  changed:

   What|Removed |Added

Summary|base clang: Assertion   |base clang: Assertion
   |failed  |failed while trying to
   ||build www/firefox-esr

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


[Bug 210943] Page fault in ip6_setpktopts when syncthing is started with pflog loaded

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210943

Mark Linimon  changed:

   What|Removed |Added

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

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


[Bug 210936] pkg-static: Unknown user: --- pkg

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210936

Mark Linimon  changed:

   What|Removed |Added

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

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


[Bug 210924] 10.3-STABLE - PF - possible regression in pf.conf set timeout interval

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210924

Mark Linimon  changed:

   What|Removed |Added

   Keywords||patch, regression
   Assignee|freebsd-bugs@FreeBSD.org|freebsd...@freebsd.org

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


[Bug 210892] whois(1): infinite loop

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210892

Mark Linimon  changed:

   What|Removed |Added

   Keywords||regression

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


[Bug 210865] bsdinstall: install faill with ZFSBOOT_DATASETS=da0

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210865

Mark Linimon  changed:

   What|Removed |Added

   Assignee|freebsd-bugs@FreeBSD.org|freebsd-sysinstall@FreeBSD.
   ||org
   Keywords||patch

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


[Bug 210860] [pf] [ip6] Incorrect TCP checksums after rdr

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210860

Mark Linimon  changed:

   What|Removed |Added

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

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


[Bug 211088] sys/mips/mips/tlb.c:356: pointless test ?

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211088

Bug ID: 211088
   Summary: sys/mips/mips/tlb.c:356: pointless test ?
   Product: Base System
   Version: CURRENT
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Some People
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: dcb...@hotmail.com

sys/mips/mips/tlb.c:356]: (style) Checking if unsigned variable 'cpu' is less
than zero.

Source code is

   if (cpu < 0 || cpu >= mp_ncpus) {

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


[Bug 210847] [PATCH] df / overflow when trying to display values while the capacity got full

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210847

Mark Linimon  changed:

   What|Removed |Added

   Keywords||patch

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


[Bug 210814] Installer can't install over existing ZFS

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210814

Mark Linimon  changed:

   What|Removed |Added

  Component|misc|bin
   Assignee|freebsd-bugs@FreeBSD.org|freebsd-sysinstall@FreeBSD.
   ||org

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


[Bug 210804] installerconfig - using ZFS create in custom script mounts the dataset in the wrong directory

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210804

Mark Linimon  changed:

   What|Removed |Added

  Component|misc|bin

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


[Bug 210965] install cdrom error on boot

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210965

Mark Linimon  changed:

   What|Removed |Added

 Status|New |Closed
 Resolution|--- |DUPLICATE

--- Comment #1 from Mark Linimon  ---


*** This bug has been marked as a duplicate of bug 210964 ***

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


[Bug 210964] unable to read install cdrom image

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210964

--- Comment #1 from Mark Linimon  ---
*** Bug 210965 has been marked as a duplicate of this bug. ***

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


[Bug 210966] os 11 beta 1 install error

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210966

Mark Linimon  changed:

   What|Removed |Added

 Status|New |Closed
  Component|Package Infrastructure  |Individual Port(s)
 Resolution|--- |DUPLICATE
   Assignee|port...@freebsd.org |freebsd-bugs@FreeBSD.org

--- Comment #1 from Mark Linimon  ---


*** This bug has been marked as a duplicate of bug 210964 ***

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


[Bug 210964] unable to read install cdrom image

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210964

--- Comment #2 from Mark Linimon  ---
*** Bug 210966 has been marked as a duplicate of this bug. ***

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


[Bug 210964] unable to read install cdrom image

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210964

--- Comment #3 from Mark Linimon  ---
*** Bug 210967 has been marked as a duplicate of this bug. ***

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


[Bug 195929] usr.bin/sed -- constify, remove line-length limits

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195929

Mark Linimon  changed:

   What|Removed |Added

   Keywords||patch

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


[Bug 209203] Suspend panics VESA driver

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209203

Mark Linimon  changed:

   What|Removed |Added

   Keywords||patch

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


[Bug 201650] (e)grep handling regexp wrong

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=201650

Mark Linimon  changed:

   What|Removed |Added

   Keywords||patch

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


[Bug 195929] usr.bin/sed -- constify, remove line-length limits

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195929

--- Comment #28 from Pedro F. Giffuni  ---
(In reply to Mikhail Teterin from comment #27)
1) Yes, the patch includes the EATSPACE.
2) The best reference to the testsuite is the wiki.
https://wiki.freebsd.org/TestSuite

For starters:
- install kyua.
- Add WITH_TEST=yes to /etc/src.conf
- cd /usr/src/usr.bin/sed; make ; make install, etc
- kyua test -k /usr/tests/usr.bin/sed/Kyuafile

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


[Bug 211046] usr/share/locale/kk_KZ.UTF-8/* created by usr/src/etc/mtree/BSD.usr.dist and listed in src/ObsoleteFiles.inc

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211046

Ngie Cooper  changed:

   What|Removed |Added

 CC||b...@freebsd.org,
   ||n...@freebsd.org
   Assignee|freebsd-bugs@FreeBSD.org|n...@freebsd.org
  Component|misc|conf
 Status|New |Open

--- Comment #1 from Ngie Cooper  ---
I'll handle this tonight.

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


[Bug 211081] LSI MegaRAID SAS 9271-8i not detected after upgrade to 11

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211081

Ngie Cooper  changed:

   What|Removed |Added

 CC||n...@freebsd.org,
   ||s...@freebsd.org

--- Comment #1 from Ngie Cooper  ---
Have you tried the mrsas driver?

I'm CCing one of the driver maintainers for more input. kadesai hasn't
registered
in Bugzilla yet (he maintains one of the other drivers).

pciconf -lv and /var/run/dmesg.boot output would help too.

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


[Bug 211062] sr-iov virtual function driver fails to attach

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211062

--- Comment #1 from Ultima  ---
Just got a little more information on this. The ppt's appear to be broken as
well. I have started bhyve on a linux guest, using passthru ppt,

#!/bin/sh
IMAGES="/home/user/bhyve_images"
MAP="/home/user/bhyve_map"
#grub-bhyve \
#   -m ${MAP}/antergos.map -r hd0 \
#   -M 2G vm0
bhyveload \
-S -m 20G -d ${IMAGES}/antergos-2016.06.18-x86_64.iso vm0
bhyve \
-c 16 -m 20G -w -H -S \
-s 0,hostbridge \
-s 3,ahci-cd,${IMAGES}/antergos-2016.06.18-x86_64.iso \
-s 5,ahci-hd,/dev/zvol/tank/bhyve/antergos \
-s 6,passthru,129/0/133 \
-l bootrom,${IMAGES}/BHYVE_UEFI_20160526.fd \
-s 29,fbuf,tcp=0.0.0.0:5900,w=1440,h=900 \
-s 30,xhci,tablet \
-s 31,lpc -l com1,stdio \
vm0

I'm still learning how to use bhyve, so this may not be an optimal vm startup.

bhyveload fails to start. But I use to to load the memory for bhyve to start.
Bhyve starts successfully.

Once in the vm, checked dmesg, and this is output for the vf driver trying to
attach.

ixgbevf: Intel(R) 10 Gigabite PCI express Virtual Function Network Driver -
version 2.12.1-k
ixgbevf: Copyright (c) 2009 - 2015 Intel Corporation.
ixgbevf :00:06:0 enabling device (0004) -> 0006)
...snip, unrelated...
ixgbevf :00:06.0: PF still in reset state. Is the PF interface up?
ixgbevf :00:06.0: Assigning random MAC address
ixgbevf :00:06.0: aa:f2:ab:a9:b1:f3
ixgbevf :00:06.0: MAC: 2
ixgbevf :00:06.0: Intel(R) X540 Virtual Function
IPv6: ADDRCONF(NETDEV_UP): eth0 link is not ready
...snip, unrelated...
ixgbevf: Unable to start - perhaps the PF driver isn't up yet
vboxguest: PCI device not found, probably running on physical hardware.
vboxguest: PCI device not found, probably running on physical hardware.
vboxguest: PCI device not found, probably running on physical hardware.

I'm not sure if the last 3 entries are related.

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


[Bug 210495] _secure_path: cannot stat /etc/login.conf: Not permitted in capability mode from sshd at r302026

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210495

Mark Linimon  changed:

   What|Removed |Added

   Keywords||patch

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


[Bug 204549] freebsd-update should fetch e.g. /etc/ntp.conf.default

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204549

--- Comment #4 from d...@horsfall.org ---
Was my reply of any use?

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


[Bug 204549] freebsd-update should fetch e.g. /etc/ntp.conf.default

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204549

--- Comment #5 from Colin Percival  ---
Sorry, just saw this PR now.  Short answer, freebsd-update does merging for
files in /etc/ but only when upgrading between releases; when I wrote it we
didn't expect to ever have security updates making changes to files in /etc/.

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


[Bug 211081] LSI MegaRAID SAS 9271-8i not detected after upgrade to 11

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211081

--- Comment #2 from Sergey Renkas  ---
Created attachment 172494
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=172494&action=edit
pciconf.log

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


[Bug 211081] LSI MegaRAID SAS 9271-8i not detected after upgrade to 11

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211081

--- Comment #3 from Ngie Cooper  ---
(In reply to Sergey Renkas from comment #2)

Is this from when you're booted into 10.3-STABLE ?

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


[Bug 211081] LSI MegaRAID SAS 9271-8i not detected after upgrade to 11

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211081

--- Comment #4 from Sergey Renkas  ---
(In reply to Ngie Cooper from comment #3)
Yes! In the 11th version of the mfid device not shown.

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


[Bug 211081] LSI MegaRAID SAS 9271-8i not detected after upgrade to 11

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211081

--- Comment #5 from Ngie Cooper  ---
(In reply to Sergey Renkas from comment #4)

Ok. pciconf -lv and /var/run/dmesg.boot are more valuable from 11.x than
10.3-STABLE, but having both of those items from 10.3-STABLE would be helpful
as well for comparing things.

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


[Bug 211081] LSI MegaRAID SAS 9271-8i not detected after upgrade to 11

2016-07-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211081

--- Comment #6 from Sergey Renkas  ---
(In reply to Ngie Cooper from comment #5)
It will take some time to run a live-cd 11 version.

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