[Bug 192701] FOPEN_DIRECT_IO not honored by fuse module

2014-08-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192701

Harshavardhana har...@harshavardhana.net changed:

   What|Removed |Added

   Priority|--- |Normal
   Hardware|Any |amd64

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

2014-08-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192701

Harshavardhana har...@harshavardhana.net changed:

   What|Removed |Added

Summary|FOPEN_DIRECT_IO not honored |[fusefs] FOPEN_DIRECT_IO
   |by fuse module  |not honored by fuse module

-- 
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 192715] New: zfs diff does not report accurate file deletion differences

2014-08-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192715

Bug ID: 192715
   Summary: zfs diff does not report accurate file deletion
differences
   Product: Base System
   Version: 9.3-RELEASE
  Hardware: amd64
OS: Any
Status: Needs Triage
  Severity: Affects Some People
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: kgeo...@tcpsoft.com

'zfs diff' does not report accurate file deletion differences.  I noticed this
when I created a snapshot of a dataset, removed some files, and then performed
a diff.  It did not show all the files that were removed.  Here's a recipe to
reproduce:

[root@atlantis ~]# zfs create tank/test
[root@atlantis ~]# cd /tank/test
[root@atlantis /tank/test]# touch a
[root@atlantis /tank/test]# zfs snapshot tank/test@1
[root@atlantis /tank/test]# zfs snapshot tank/test@2
[root@atlantis /tank/test]# rm a
[root@atlantis /tank/test]# zfs diff tank/test@1
M   /tank/test/
-   /tank/test/a
[root@atlantis /tank/test]# zfs diff tank/test@2
M   /tank/test/
[root@atlantis /tank/test]#
[root@atlantis /tank/test]# uname -a

However, I'm not sure if this is the only case that triggers this bug.

I am running 9.3-RELEASE:

[root@atlantis /tank/test]# uname -a
FreeBSD atlantis 9.3-RELEASE FreeBSD 9.3-RELEASE #0 r268512: Thu Jul 10
23:44:39 UTC 2014 r...@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC  amd64

I'm apparently not the only one experiencing this.  A search on Illumos' bug
tracker let me to this issue:

https://www.illumos.org/issues/3043

which led to this issue in zfsonlinux:

https://github.com/zfsonlinux/zfs/issues/2081.

For what it's worth, my zpool was originally created as v28 on 9.0-RELEASE and
has been upgrated to v5000 with the following feature flags:

tank  feature@async_destroy  enabledlocal
tank  feature@empty_bpobjactive local
tank  feature@lz4_compress   enabledlocal
tank  feature@multi_vdev_crash_dump  enabledlocal
tank  feature@spacemap_histogram active local
tank  feature@enabled_txgactive local
tank  feature@hole_birth active local
tank  feature@extensible_dataset enabledlocal
tank  feature@bookmarks  enabledlocal
tank  feature@filesystem_limits  enabledlocal

-- 
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 192728] New: [build] lib/libc_nonshared: checkdpadd failure with WITH_SSP=1

2014-08-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192728

Bug ID: 192728
   Summary: [build] lib/libc_nonshared: checkdpadd failure with
WITH_SSP=1
   Product: Base System
   Version: 11.0-CURRENT
  Hardware: Any
OS: Any
Status: Needs Triage
  Severity: Affects Some People
  Priority: ---
 Component: conf
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: yaneurab...@gmail.com

Repro:

- Grab FreeBSD HEAD @ r269906
- Run the following command:

cd lib/libc
env SRCCONF=/dev/null WITH_SSP=1 make checkdpadd SUBDIR=

Expected result:

make should pass and not print out anything.

Actual result:

Prints out the following:

% env SRCCONF=/dev/null WITH_SSP=1 make checkdpadd SUBDIR=
/usr/src/lib/libc
DPADD - -lcompiler_rt
LDADD - -lcompiler_rt -lssp_nonshared

Proposed solution:

- LIBSSP_NONSHARED needs to be added to bsd.libnames.mk
- LIBSSP_NONSHARED needs to be added to DPADD for lib/libc/Makefile

-- 
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 192729] New: [build] lib/libcrypt/tests: checkdpadd failure

2014-08-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192729

Bug ID: 192729
   Summary: [build] lib/libcrypt/tests: checkdpadd failure
   Product: Base System
   Version: 11.0-CURRENT
  Hardware: Any
OS: Any
Status: Needs Triage
  Severity: Affects Some People
  Priority: ---
 Component: conf
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: yaneurab...@gmail.com

Repro:

- Grab FreeBSD HEAD @ r269906
- Run the following command:

cd lib/libcrypt/tests
env SRCCONF=/dev/null make checkdpadd

Expected result:

make should pass and not print out anything.

Actual result:

Prints out the following:

% env SRCCONF=/dev/null make checkdpadd
/usr/src/lib/libcrypt/tests
DPADD -
LDADD - -L/usr/obj/usr/src/lib/libcrypt -lcrypt

-- 
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 172873] [build] WITH_CTF=1 in /etc/src.conf makes make buildworld bomb out with /usr/src/share/mk/bsd.own.mk, line 477: WITH_CTF and WITHOUT_CTF can't both be set.

2014-08-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=172873

yaneurab...@gmail.com changed:

   What|Removed |Added

 CC||yaneurab...@gmail.com

--- Comment #4 from yaneurab...@gmail.com ---
This has been fixed on HEAD to allow both WITH_* and WITHOUT_* flags, but
hasn't been MFCed to anything earlier than 11-CURRENT because there are a large
number of build changes present in 11 that don't exist in prior versions.

Could you please try 11-CURRENT to see if this still repros for you?

-- 
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 192730] New: [build] make checkdpadd failures (discrepancy between .a and .so filenames) after r269648

2014-08-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192730

Bug ID: 192730
   Summary: [build] make checkdpadd failures (discrepancy between
.a and .so filenames) after r269648
   Product: Base System
   Version: 11.0-CURRENT
  Hardware: Any
OS: Any
Status: Needs Triage
  Severity: Affects Some People
  Priority: ---
 Component: conf
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: yaneurab...@gmail.com

The changes in r269648 broke make checkdpadd in a minor way -- now LDADD
includes libraries with .so instead of .a:

(cd lib/libpam/modules/pam_ssh/; env SRCCONF=/dev/null make checkdpadd)
/usr/src/lib/libpam/modules/pam_ssh
DPADD - /usr/obj/usr/src/secure/lib/libssh/libssh.a -lcrypto -lcrypt -lpam
LDADD - /usr/obj/usr/src/secure/lib/libssh/libssh.so -lcrypto -lcrypt -lpam

-- 
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 192730] [build] make checkdpadd failures with LD* variables being added to LDADD

2014-08-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192730

yaneurab...@gmail.com changed:

   What|Removed |Added

Summary|[build] make checkdpadd |[build] make checkdpadd
   |failures (discrepancy   |failures with LD* variables
   |between .a and .so  |being added to LDADD
   |filenames) after r269648|

-- 
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 192731] New: [patch] [build] typo in lib/libatf/libatf-c++/Makefile; LIBATFC should be LIBATF_C

2014-08-16 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192731

Bug ID: 192731
   Summary: [patch] [build] typo in
lib/libatf/libatf-c++/Makefile; LIBATFC should be
LIBATF_C
   Product: Base System
   Version: 11.0-CURRENT
  Hardware: Any
OS: Any
Status: Needs Triage
  Severity: Affects Only Me
  Priority: ---
 Component: conf
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: yaneurab...@gmail.com

Before the fix:

# (cd lib/atf/libatf-c++/; set -x; make -VDPADD; make -VLDADD)
+ make -VDPADD

+ make -VLDADD
-latf-c

After the fix:

# git diff lib/atf/libatf-c++/Makefile
diff --git a/lib/atf/libatf-c++/Makefile b/lib/atf/libatf-c++/Makefile
index 163f7fb..a7a8d91 100644
--- a/lib/atf/libatf-c++/Makefile
+++ b/lib/atf/libatf-c++/Makefile
@@ -33,7 +33,7 @@ PRIVATELIB=   true
 SHLIB_MAJOR=   1

 # libatf-c++ depends on the C version of the ATF library to build.
-DPADD= ${LIBATFC}
+DPADD= ${LIBATF_C}
 LDADD= -latf-c

 LDFLAGS+=  -L${.OBJDIR}/../libatf-c
# (cd lib/atf/libatf-c++/; set -x; make -VDPADD; make -VLDADD)
+ make -VDPADD
/usr/obj/usr/src/lib/atf/libatf-c/libatf-c.a
+ make -VLDADD
-latf-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