qemu-gpiodev/libfuse.git
7 years agoReleased libfuse 3.0.2 fuse-3.0.2
Nikolaus Rath [Wed, 24 May 2017 20:56:11 +0000 (13:56 -0700)]
Released libfuse 3.0.2

7 years agoMake tests build on bsd
Brian Naylor [Wed, 24 May 2017 15:38:49 +0000 (11:38 -0400)]
Make tests build on bsd

7 years agomake buffer size match kernel max transfer size
Carlos Maiolino [Thu, 20 Apr 2017 12:53:01 +0000 (14:53 +0200)]
make buffer size match kernel max transfer size

Currently libfuse has a hardcoded buffer limit to 128kib, while fuse
kernel module has a limit up to 32 pages.

This patch changes buffer limit to match the current page size, instead
of assuming 4096 bytes pages, enabling architectures with bigger pages
to use larger buffers, improving performance.

Also, add a new macro (HEADER_SIZE) to specify the space needed to
accommodate the header, making it easier to understand why those extra
4096 bytes are needed

Signed-off-by: Carlos Maiolino <cmaiolino-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
7 years agoSet default options before parsing
Tej Chajed [Thu, 13 Apr 2017 21:23:33 +0000 (17:23 -0400)]
Set default options before parsing

7 years agoImproved documentation of fuse_context.private_data
Nikolaus Rath [Wed, 12 Apr 2017 16:33:22 +0000 (09:33 -0700)]
Improved documentation of fuse_context.private_data

In particular, don't call it "user_data" in one place and
"private_data" elsewhere.

Changing the name of the variable in the prototype should not affect
backwards compatibility.

Fixes: #155.
7 years agoReleased 3.0.1 fuse-3.0.1
Nikolaus Rath [Tue, 11 Apr 2017 00:28:41 +0000 (17:28 -0700)]
Released 3.0.1

7 years agoFix travis build script. Broken in e372d.
Nikolaus Rath [Tue, 11 Apr 2017 00:23:28 +0000 (17:23 -0700)]
Fix travis build script. Broken in e372d.

7 years agoAdded ChangeLog for commits c24cc to eb972.
Nikolaus Rath [Tue, 11 Apr 2017 00:11:30 +0000 (17:11 -0700)]
Added ChangeLog for commits c24cc to eb972.

7 years agoRemove 'tests' target in favor of calling py.test directly.
Nikolaus Rath [Tue, 11 Apr 2017 00:08:58 +0000 (17:08 -0700)]
Remove 'tests' target in favor of calling py.test directly.

Together with the previous commit, this fixes #156.

7 years agoBuild tests by default.
Nikolaus Rath [Mon, 10 Apr 2017 23:46:35 +0000 (16:46 -0700)]
Build tests by default.

7 years agoOnly build test/*.py if out of date.
Nikolaus Rath [Mon, 10 Apr 2017 23:39:01 +0000 (16:39 -0700)]
Only build test/*.py if out of date.

7 years agoActually test passthrough* examples
Nikolaus Rath [Wed, 5 Apr 2017 23:49:39 +0000 (16:49 -0700)]
Actually test passthrough* examples

Since os.path.join() interprets leading slashes, we were
actually never accessing the mountpoint and doing all the
tests in the source directory.

Fixes: #139
7 years agopassthrough: implemented create()
Nikolaus Rath [Fri, 7 Apr 2017 23:36:52 +0000 (16:36 -0700)]
passthrough: implemented create()

This allows calls like open(file, O_CREAT|O_RDONLY, 0200) which would
otherwise fail because we cannot open the file after mknod() has
created it with 0200 permissions.

7 years agoexample/passthrough: use fi->fh for read, write, fallocate
Nikolaus Rath [Fri, 7 Apr 2017 23:31:07 +0000 (16:31 -0700)]
example/passthrough: use fi->fh for read, write, fallocate

No reason not to use it. May even be a little faster and will
consume less resources :-).

7 years agopassthrough:truncate(): work on file descriptor when possible
Nikolaus Rath [Fri, 7 Apr 2017 23:27:59 +0000 (16:27 -0700)]
passthrough:truncate(): work on file descriptor when possible

This allows truncating an open file even if write permission
was removed after open() (which is the expected behavior).

7 years agoexample/passthrough: close open files in release()
Nikolaus Rath [Fri, 7 Apr 2017 23:27:33 +0000 (16:27 -0700)]
example/passthrough: close open files in release()

That way we can use the file descriptor for other operations.

7 years agopassthrough, passthrough_fh: disable attribute caching
Nikolaus Rath [Thu, 6 Apr 2017 18:47:06 +0000 (11:47 -0700)]
passthrough, passthrough_fh: disable attribute caching

Required for better hardlink handling, see comments in patch.

7 years agotest_examples(): test without debug messages first
Nikolaus Rath [Thu, 6 Apr 2017 17:15:19 +0000 (10:15 -0700)]
test_examples(): test without debug messages first

That way, we are not drowning in messages when a test would also fail
without debugging enabled.

7 years agotest_examples(): avoid false positives from fuse debug output
Nikolaus Rath [Thu, 6 Apr 2017 17:13:54 +0000 (10:13 -0700)]
test_examples(): avoid false positives from fuse debug output

7 years agopassthrough_ll: only test functions that are actually provided
Nikolaus Rath [Thu, 6 Apr 2017 05:52:54 +0000 (22:52 -0700)]
passthrough_ll: only test functions that are actually provided

This appeared to work because of an unrelated bug that caused us to
actually never access the mountpoint at all and do all tests on the
lower filesystem. This issue will be fixed in a separate commit.

7 years agoFix rst markup.
Nikolaus Rath [Thu, 6 Apr 2017 18:42:01 +0000 (11:42 -0700)]
Fix rst markup.

7 years agoDocument true meaning of the 'use_ino' option.
Nikolaus Rath [Thu, 6 Apr 2017 18:41:48 +0000 (11:41 -0700)]
Document true meaning of the 'use_ino' option.

7 years agoRemove checked_unlink()
Nikolaus Rath [Thu, 6 Apr 2017 05:51:32 +0000 (22:51 -0700)]
Remove checked_unlink()

There is no reason why so many tests require the file system
to support unlink() and/or rmdir().

7 years agoTurn tst_mknod() into tst_create()
Nikolaus Rath [Thu, 6 Apr 2017 05:50:25 +0000 (22:50 -0700)]
Turn tst_mknod() into tst_create()

Ensure that we are really creating a new file.
Don't attempt to write, we do that in tst_open_write().

7 years agoRenamed tst_write() to tst_open_write()
Nikolaus Rath [Thu, 6 Apr 2017 05:48:00 +0000 (22:48 -0700)]
Renamed tst_write() to tst_open_write()

We are actually testing both opening of an existing file
and writing to it.

7 years agoAdded tst_unlink()
Nikolaus Rath [Thu, 6 Apr 2017 05:45:31 +0000 (22:45 -0700)]
Added tst_unlink()

To check for unlink() support without requiring create()/mknod().

7 years agotst_mkdir(): factor out tst_rmdir()
Nikolaus Rath [Thu, 6 Apr 2017 05:35:37 +0000 (22:35 -0700)]
tst_mkdir(): factor out tst_rmdir()

This allows testing a filesystem that offers mkdir(), but no
rmdir() (and vice versa).

7 years agoRename tst_unlink() to tst_open_unlink()
Nikolaus Rath [Thu, 6 Apr 2017 05:32:45 +0000 (22:32 -0700)]
Rename tst_unlink() to tst_open_unlink()

This makes more sense, since we are specifically checking
unlinking of an open file.

7 years agotst_readdir(): don't require create/mkdir support
Nikolaus Rath [Thu, 6 Apr 2017 05:17:59 +0000 (22:17 -0700)]
tst_readdir(): don't require create/mkdir support

By creating the files in the lower filesystem, we
can test readdir() even for filesystems that don't implement
create() or mkdir().

7 years agopassthrough_ll: document that functionality is restricted
Nikolaus Rath [Wed, 5 Apr 2017 23:50:48 +0000 (16:50 -0700)]
passthrough_ll: document that functionality is restricted

8 years agohello.c: don't use constant instead of magic number
guraga [Tue, 28 Mar 2017 15:57:23 +0000 (22:57 +0700)]
hello.c: don't use constant instead of magic number

8 years agoDocument that -o auto_unmount implies -o nodev,nosuid
Nikolaus Rath [Thu, 16 Mar 2017 17:47:26 +0000 (10:47 -0700)]
Document that -o auto_unmount implies -o nodev,nosuid

See also issue #148.

8 years agomeson.build(): don't use absolute path for include_dir()
Nikolaus Rath [Wed, 15 Mar 2017 23:52:39 +0000 (16:52 -0700)]
meson.build(): don't use absolute path for include_dir()

No longer supported in Meson 0.39.

8 years agopassthrough_fh: declare support for . and .. lookups.
Nikolaus Rath [Wed, 15 Mar 2017 23:44:03 +0000 (16:44 -0700)]
passthrough_fh: declare support for . and .. lookups.

8 years agoopen(): fix documentation of O_TRUNC flag
Nikolaus Rath [Wed, 15 Mar 2017 23:44:35 +0000 (16:44 -0700)]
open(): fix documentation of O_TRUNC flag

The FUSE_CAP_ATOMIC_IO_TRUNC capability is enabled by default,
but we didn't update the open() documentation accordingly.

8 years agoDocument minimum required Meson version.
Nikolaus Rath [Wed, 15 Mar 2017 23:13:39 +0000 (16:13 -0700)]
Document minimum required Meson version.

Fixes #138.

8 years agoOptimize fuse_fs_read. (#145)
amosonn [Fri, 3 Mar 2017 20:44:59 +0000 (21:44 +0100)]
Optimize fuse_fs_read. (#145)

Redundant copy when only op.read is available removed.

8 years agoPut -Werror in mesonconf, not CFLAGS
Nikolaus Rath [Mon, 23 Jan 2017 20:07:09 +0000 (12:07 -0800)]
Put -Werror in mesonconf, not CFLAGS

Putting it in CFLAGS interferes with feature detection.

8 years agoPass _GNU_SOURCE as compiler argument
Nikolaus Rath [Mon, 23 Jan 2017 20:06:25 +0000 (12:06 -0800)]
Pass _GNU_SOURCE as compiler argument

Defining it in the file causes trouble because Meson sometimes
inserts includes before the first line.

8 years agoOnly use valgrind if requested explicitly + enable address sanitizer
Nikolaus Rath [Thu, 12 Jan 2017 22:26:06 +0000 (14:26 -0800)]
Only use valgrind if requested explicitly + enable address sanitizer

8 years agoSwitch Travis build to Meson+Ninja
Nikolaus Rath [Thu, 12 Jan 2017 03:16:25 +0000 (19:16 -0800)]
Switch Travis build to Meson+Ninja

8 years agoAdded experimental support for building with Meson+Ninja
Nikolaus Rath [Thu, 5 Jan 2017 17:37:00 +0000 (09:37 -0800)]
Added experimental support for building with Meson+Ninja

8 years agoReplaced evil pointer magic with offsetof()
Nikolaus Rath [Thu, 12 Jan 2017 23:17:54 +0000 (15:17 -0800)]
Replaced evil pointer magic with offsetof()

This triggered undefined behaviour warnings from UBSan.

8 years agoRephrased security information
Nikolaus Rath [Thu, 12 Jan 2017 18:10:34 +0000 (10:10 -0800)]
Rephrased security information

The permission caching bug has been present forever, is presumably
going to stay around for a while, and is of less concern if
allow_other is not used. Since allow_other is disabled by default, I
think we can safely make this warning less prominent and document the
problem when we describe allow_other.

Also, drop the travis build status. It's confusing when reading
README.md after extracting the tarball, and I am not sure who benefits
from the build status when it is shown on GitHub either.

8 years agoReturn with exitcode 0 if there are no errors.
Nikolaus Rath [Thu, 12 Jan 2017 04:41:48 +0000 (20:41 -0800)]
Return with exitcode 0 if there are no errors.

8 years agoSkip tests if not root and no setuid fusermount3.
Nikolaus Rath [Tue, 10 Jan 2017 22:34:42 +0000 (14:34 -0800)]
Skip tests if not root and no setuid fusermount3.

8 years agoDon't run whitespace cleanup
Nikolaus Rath [Tue, 3 Jan 2017 20:31:36 +0000 (12:31 -0800)]
Don't run whitespace cleanup

Since existing whitespace usage is not consistent, this causes
a lot of spurious whitespace changes.

8 years agoSet IGNORE_MTAB when running under NetBSD
Nikolaus Rath [Sat, 24 Dec 2016 02:47:01 +0000 (18:47 -0800)]
Set IGNORE_MTAB when running under NetBSD

Apparently, NetBSD does not have /etc/mtab. Setting IGNORE_MTAB
in this case makes the code a little nicer.

See also https://github.com/libfuse/libfuse/pull/123

8 years agoUse tabs in configure.ac
Nikolaus Rath [Sat, 24 Dec 2016 02:46:16 +0000 (18:46 -0800)]
Use tabs in configure.ac

8 years agoMemory leak fixed in file : mount_bsd.c
itsdeepak [Mon, 19 Dec 2016 09:26:40 +0000 (14:56 +0530)]
Memory leak fixed in file : mount_bsd.c

8 years agoAdded documentation and test case for null example
Nikolaus Rath [Sat, 24 Dec 2016 02:31:45 +0000 (18:31 -0800)]
Added documentation and test case for null example

8 years agoFixed use of uninitialized memory.
Nikolaus Rath [Sat, 24 Dec 2016 02:31:34 +0000 (18:31 -0800)]
Fixed use of uninitialized memory.

8 years agoRevert "Dropped example/null.c"
Csaba Henk [Fri, 16 Dec 2016 13:47:24 +0000 (14:47 +0100)]
Revert "Dropped example/null.c"

This reverts commit d5cdbb94a0650b0a462682cf0a84463ff1513900.

null works completely fine, just the mountpoint should
be a regular file -- so there is no need to dismiss it.

Also:
- fixing up compiler warnings
- checking if the mountpoint is a regular file

8 years agoAdding the markdown for travis CI build.
Arunav Sanyal [Sun, 11 Dec 2016 08:35:53 +0000 (00:35 -0800)]
Adding the markdown for travis CI build.

8 years agoReleased 3.0.0 fuse-3.0.0
Nikolaus Rath [Fri, 9 Dec 2016 17:33:01 +0000 (09:33 -0800)]
Released 3.0.0

8 years agoFix a grammatical error.
Jay Hankins [Sun, 4 Dec 2016 17:13:25 +0000 (12:13 -0500)]
Fix a grammatical error.

8 years agoReleased 3.0.0rc3 fuse-3.0.0rc3
Nikolaus Rath [Tue, 29 Nov 2016 16:35:03 +0000 (08:35 -0800)]
Released 3.0.0rc3

8 years agoImprove documentation of fuse_session_unmount
Nikolaus Rath [Wed, 23 Nov 2016 23:59:52 +0000 (15:59 -0800)]
Improve documentation of fuse_session_unmount

8 years agoReturn signal value if session loop is terminated by signal and improve documentation
Nikolaus Rath [Thu, 24 Nov 2016 00:00:45 +0000 (16:00 -0800)]
Return signal value if session loop is terminated by signal and improve documentation

8 years agoImprove documentation of `fuse_file_info.keep_cache`
Nikolaus Rath [Tue, 29 Nov 2016 15:59:03 +0000 (07:59 -0800)]
Improve documentation of `fuse_file_info.keep_cache`

8 years agoexamples/passthrough_ll.c: Include <limits.h> (for PATH_MAX macro).
Przemyslaw Pawelczyk [Mon, 28 Nov 2016 13:59:19 +0000 (14:59 +0100)]
examples/passthrough_ll.c: Include <limits.h> (for PATH_MAX macro).

Otherwise building w/o optimization (-O0) fails.

    passthrough_ll.c: In function 'lo_readlink':
    passthrough_ll.c:251:11: error: 'PATH_MAX' undeclared (first use in this function)
      char buf[PATH_MAX + 1];

(gcc v5.3.0 in Alpine Linux v3.4.6 x86_64 w/ musl-libc v1.1.14.)

8 years agoexamples/passthrough_ll.c: Close root fd before application ends.
Przemyslaw Pawelczyk [Mon, 28 Nov 2016 13:48:10 +0000 (14:48 +0100)]
examples/passthrough_ll.c: Close root fd before application ends.

If we want to do, what system would do anyway upon program termination,
then let's try to be a bit more scrupulous.

8 years agoexamples/passthrough_ll.c: Fix segfault when showing help or version.
Przemyslaw Pawelczyk [Mon, 28 Nov 2016 13:41:37 +0000 (14:41 +0100)]
examples/passthrough_ll.c: Fix segfault when showing help or version.

root lo_inode's next and prev were not set early enough, which led to
accessing addr 0x8 (or 0x4, depending on ptr size) when setting prev
variable in lo_free(lo.root.next), because lo.root.next was NULL.

8 years agoRename more things from fuse to fuse3
Przemysław Pawełczyk [Tue, 29 Nov 2016 05:33:14 +0000 (06:33 +0100)]
Rename more things from fuse to fuse3

8 years agoDocument that FUSE_CAP_POSIX_ACL turns on -o default_permissions
Nikolaus Rath [Wed, 23 Nov 2016 00:37:13 +0000 (16:37 -0800)]
Document that FUSE_CAP_POSIX_ACL turns on -o default_permissions

8 years agoMake handling of -oallow_root easier to understand
Nikolaus Rath [Wed, 23 Nov 2016 00:34:21 +0000 (16:34 -0800)]
Make handling of -oallow_root easier to understand

-oallow_root is handled in userspace, and requires passing -oallow_other
 to the kernel. This patch should make the code easier to understand and
 avoid the confusion that gave rise to issue #86.

8 years agoAdd support for FUSE_HANDLE_KILLPRIV
Nikolaus Rath [Tue, 22 Nov 2016 23:56:55 +0000 (15:56 -0800)]
Add support for FUSE_HANDLE_KILLPRIV

Fixes #116.

8 years agoAdd support for FUSE_POSIX_ACL
Nikolaus Rath [Tue, 22 Nov 2016 23:15:05 +0000 (15:15 -0800)]
Add support for FUSE_POSIX_ACL

Fixes #117.

8 years agoAdded support for FUSE_PARALLEL_DIROPS
Nikolaus Rath [Tue, 22 Nov 2016 23:05:52 +0000 (15:05 -0800)]
Added support for FUSE_PARALLEL_DIROPS

Enabled by default since we haven't released libfuse 3.0 yet :-).

Fixes #112.

8 years agoUpdated kernel API headers.
Nikolaus Rath [Tue, 22 Nov 2016 22:58:42 +0000 (14:58 -0800)]
Updated kernel API headers.

Taken from Linux kernel commit 27bcd37.

8 years agoDocument fuse_conn_info.max_background
Nikolaus Rath [Tue, 22 Nov 2016 22:48:08 +0000 (14:48 -0800)]
Document fuse_conn_info.max_background

Fixes #95.

8 years agoDistinguish between mount options and libfuse options
Nikolaus Rath [Thu, 17 Nov 2016 23:49:19 +0000 (15:49 -0800)]
Distinguish between mount options and libfuse options

8 years agoFixed manpage formatting.
Nikolaus Rath [Thu, 17 Nov 2016 23:49:05 +0000 (15:49 -0800)]
Fixed manpage formatting.

8 years agoEnable more capabilities by default, and document defaults.
Nikolaus Rath [Wed, 16 Nov 2016 21:04:47 +0000 (13:04 -0800)]
Enable more capabilities by default, and document defaults.

Fixes #112.

8 years agoUpdate ChangeLog to include recent documentation improvements
Nikolaus Rath [Wed, 16 Nov 2016 20:46:56 +0000 (12:46 -0800)]
Update ChangeLog to include recent documentation improvements

8 years agoAbort if fs requests capabilities not supported by kernel.
Nikolaus Rath [Wed, 16 Nov 2016 20:45:51 +0000 (12:45 -0800)]
Abort if fs requests capabilities not supported by kernel.

See also issue #114.

8 years agoFail more nicely on max_read mismatch
Nikolaus Rath [Wed, 16 Nov 2016 20:44:26 +0000 (12:44 -0800)]
Fail more nicely on max_read mismatch

Instead of abort()ing, close the session properly and return an
error code.

8 years agoFix typo in comment
Nikolaus Rath [Wed, 16 Nov 2016 20:42:35 +0000 (12:42 -0800)]
Fix typo in comment

8 years agoAdd support for more detailed error codes from main loop
Nikolaus Rath [Wed, 16 Nov 2016 20:41:41 +0000 (12:41 -0800)]
Add support for more detailed error codes from main loop

8 years agoFix typo in comment
Nikolaus Rath [Wed, 16 Nov 2016 20:22:54 +0000 (12:22 -0800)]
Fix typo in comment

8 years agoDocument special semantics of ENOSYS error code.
Nikolaus Rath [Wed, 16 Nov 2016 20:22:38 +0000 (12:22 -0800)]
Document special semantics of ENOSYS error code.

8 years agoDocument "congestion_threshold" parameter.
Nikolaus Rath [Wed, 16 Nov 2016 19:28:42 +0000 (11:28 -0800)]
Document "congestion_threshold" parameter.

Fixes #96.

Thanks to Maxim Patlasov <mpatlasov@virtuozzo.com> for help!

8 years agoMake max_background and congestion_threshold "officially undocumented"
Nikolaus Rath [Tue, 15 Nov 2016 03:47:32 +0000 (19:47 -0800)]
Make max_background and congestion_threshold "officially undocumented"

8 years agoImprove documentation of FUSE_CAP_AUTO_INVAL_DATA
Nikolaus Rath [Tue, 15 Nov 2016 03:29:59 +0000 (19:29 -0800)]
Improve documentation of FUSE_CAP_AUTO_INVAL_DATA

Fixes #84.

8 years agoImprove getattr() description
Nikolaus Rath [Tue, 15 Nov 2016 00:13:11 +0000 (16:13 -0800)]
Improve getattr() description

When writeback caching is enabled, the st_size value reported
by the filesystem may be ignored.

8 years agoImprove description of FUSE_CAP_NO_OPEN_SUPPORT flag.
Nikolaus Rath [Mon, 14 Nov 2016 19:33:33 +0000 (11:33 -0800)]
Improve description of FUSE_CAP_NO_OPEN_SUPPORT flag.

Fixes #107.

8 years agoAdded documentation for FUSE_CAP_FLOCK_LOCKS
Nikolaus Rath [Thu, 10 Nov 2016 22:51:11 +0000 (14:51 -0800)]
Added documentation for FUSE_CAP_FLOCK_LOCKS

Fixes #106.

8 years agoImprove documentation of fuse_conn_info.time_gran.
Nikolaus Rath [Thu, 10 Nov 2016 22:04:51 +0000 (14:04 -0800)]
Improve documentation of fuse_conn_info.time_gran.

Fixes #97.

8 years agoMake test for util-linux version more robust
Nikolaus Rath [Thu, 10 Nov 2016 21:11:57 +0000 (13:11 -0800)]
Make test for util-linux version more robust

The current version fails on Amazon Linux. This check should work
better.

Fixes #64.

8 years agoDon't expect EACCESS errors as root
Nikolaus Rath [Thu, 10 Nov 2016 21:09:05 +0000 (13:09 -0800)]
Don't expect EACCESS errors as root

Fixes #111.

8 years agoReleased 3.0.0-rc2 fuse-3.0.0rc2
Nikolaus Rath [Mon, 7 Nov 2016 06:00:30 +0000 (22:00 -0800)]
Released 3.0.0-rc2

8 years agoRemoved reference to developer-notes.rst (was removed earlier)
Nikolaus Rath [Mon, 7 Nov 2016 05:58:26 +0000 (21:58 -0800)]
Removed reference to developer-notes.rst (was removed earlier)

8 years agoFixed section names in documentation index
Nikolaus Rath [Mon, 7 Nov 2016 05:53:28 +0000 (21:53 -0800)]
Fixed section names in documentation index

8 years agoFix documentation: fuse_file_info may be NULL for open files
Nikolaus Rath [Mon, 7 Nov 2016 05:47:56 +0000 (21:47 -0800)]
Fix documentation: fuse_file_info may be NULL for open files

This turns issue #62 from a bug into an enhancement :-).

8 years agoRemoved reference to fgetattr and ftruncate (don't exist anymore)
Nikolaus Rath [Mon, 7 Nov 2016 05:44:30 +0000 (21:44 -0800)]
Removed reference to fgetattr and ftruncate (don't exist anymore)

8 years agoFixed typo in comment.
Nikolaus Rath [Mon, 7 Nov 2016 05:44:05 +0000 (21:44 -0800)]
Fixed typo in comment.

8 years agoDon't hardcode test file name.
Nikolaus Rath [Mon, 7 Nov 2016 05:00:57 +0000 (21:00 -0800)]
Don't hardcode test file name.

8 years agoAdded test for fchmod
Nikolaus Rath [Mon, 7 Nov 2016 04:59:55 +0000 (20:59 -0800)]
Added test for fchmod

At the moment this test fails (cf. issue #62). If that gets fixed in the
kernel, this test can be activated conditionally.

8 years agoMerge pull request #109 from divinity76/patch-1
Nikolaus Rath [Mon, 31 Oct 2016 17:20:43 +0000 (10:20 -0700)]
Merge pull request #109 from divinity76/patch-1

silence bogus eclipse linter warning

8 years agosilence bogus eclipse linter warning
divinity76 [Mon, 31 Oct 2016 13:39:20 +0000 (14:39 +0100)]
silence bogus eclipse linter warning

"No break at the end of case cuse.c     /example     line 235  Code Analysis Problem"