forked from openzfs/zfs
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Umer Saleem <[email protected]>
- Loading branch information
1 parent
887a59d
commit f2e05f0
Showing
15 changed files
with
1,041 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
usr/lib/python3/dist-packages/libzfsacl-*.egg-info | ||
usr/lib/python3/dist-packages/libzfsacl.cpython-*.so | ||
lib/x86_64-linux-gnu/libzfsacl.so.* | ||
lib/x86_64-linux-gnu/libsunacl.so.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
libsunacl_la_CFLAGS = $(AM_CFLAGS) $(LIBRARY_CFLAGS) | ||
|
||
lib_LTLIBRARIES += libsunacl.la | ||
CPPCHECKTARGETS += libsunacl.la | ||
|
||
libsunacl_la_CPPFLAGS = $(AM_CPPFLAGS) | ||
|
||
dist_libsunacl_la_SOURCES = \ | ||
%D%/libsunacl.c | ||
|
||
libsunacl_la_LIBADD = \ | ||
libzfsacl.la \ | ||
libzfs.la | ||
|
||
libsunacl_la_LDFLAGS = | ||
|
||
if !ASAN_ENABLED | ||
libsunacl_la_LDFLAGS += -Wl,-z,defs | ||
endif | ||
|
||
libsunacl_la_LDFLAGS += -version-info 1:0:0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
libzfsacl_la_CFLAGS = $(AM_CFLAGS) $(LIBRARY_CFLAGS) | ||
|
||
lib_LTLIBRARIES += libzfsacl.la | ||
CPPCHECKTARGETS += libzfsacl.la | ||
|
||
libzfsacl_la_CPPFLAGS = $(AM_CPPFLAGS) | ||
|
||
dist_libzfsacl_la_SOURCES = \ | ||
%D%/libzfsacl_impl_linux.c | ||
|
||
libzfsacl_la_LIBADD = \ | ||
libzfs.la | ||
|
||
libzfsacl_la_LDFLAGS = | ||
|
||
if !ASAN_ENABLED | ||
libzfsacl_la_LDFLAGS += -Wl,-z,defs | ||
endif | ||
|
||
libzfsacl_la_LDFLAGS += -version-info 1:0:0 |
2 changes: 1 addition & 1 deletion
2
lib/libzfsacl/libzfsacl_impl_freebsd.c → ...libzfsacl/zfsacl/libzfsacl_impl_freebsd.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "libzfsacl.h" | ||
#include "zfsacl.h" | ||
#include <sys/acl.h> | ||
|
||
#define BSDACE(zfsace) ((acl_entry_t)zfsace) | ||
|
Oops, something went wrong.