summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* add liulk's patch for mac os xHEADmasterRadek Podgorny2014-05-282-1/+9
|
* added some preliminary testing code (in python)Radek Podgorny2014-04-111-0/+73
|
* typo fixRadek Podgorny2014-03-211-1/+1
|
* return ENOTSUP for xattr calls for stats fileRadek Podgorny2014-03-201-0/+16
|
* add test for xattr of statsRadek Podgorny2014-03-201-1/+10
|
* forgot to include conf.h in optsRadek Podgorny2014-03-201-0/+1
|
* forgot to commit conf.hRadek Podgorny2014-03-201-0/+39
|
* formatting and getting to sync with bernd's repoRadek Podgorny2014-02-221-13/+7
|
* Fix cmake HAVE_XATTR redefinitionRadek Podgorny2014-02-222-5/+18
| | | | (from bernd's tree)
* detect xattr supportRadek Podgorny2014-02-221-1/+3
| | | | (from bernd's tree)
* make utimensat support more generalRadek Podgorny2014-02-221-1/+2
| | | | | | | Try to auto-detect utimensat support, which also allows to compile unionfs-fuse on older linux distros (e.g. centos5) again. (from bernd's tree)
* utimes fix for Mac OS XRadek Podgorny2014-02-222-1/+8
| | | | | | Mac OS X does not support utimensat. (from bernd's tree)
* statfs: Fix clang static analyzer errorRadek Podgorny2014-02-221-3/+11
| | | | | | | | If statvfs_local() or stat() returned errors devno[i] was not set, but later on used. We don't need to continue at all, but we can simply return an error at this point. (from bernd's tree)
* setfile: We never used the return valueRadek Podgorny2014-02-221-3/+2
| | | | | | Fix another compiler warning, which is correct. (from bernd's tree)
* update news fileRadek Podgorny2014-02-221-0/+3
|
* add likai liu's patch for apple supportRadek Podgorny2014-02-223-4/+50
|
* add thomas to creditsRadek Podgorny2012-10-181-0/+1
|
* Disable check for C++ compilerRadek Podgorny2012-10-181-1/+1
| | | | | | | | | | | | | | By default, CMake assumes that a project uses both the C and C++ languages, and unionfs-fuse's CMakeLists.txt doesn't explicit which languages it uses. Therefore CMake checks for both a C compiler and a C++ compiler, which prevents from building unionfs-fuse on platforms that don't have a C++ compiler. We adjust unionfs-fuse CMakeLists.txt to explicity state that we only use the C language, so that the C++ compiler check is no longer performed by Cmake. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* update help a littleRadek Podgorny2012-09-261-0/+1
|
* fix link bugRadek Podgorny2012-09-251-1/+1
| | | | https://bugs.gentoo.org/show_bug.cgi?id=435822
* resolve "implicit declaration of 'chroot'" warningRadek Podgorny2012-09-251-0/+3
|
* Added tag v0.26 for changeset f2f12f6dec1fRadek Podgorny2012-09-110-0/+0
|
* version bumpv0.26Radek Podgorny2012-09-112-2/+2
|
* mergeRadek Podgorny2012-09-111-9/+2
|\
| * Do not set the fsid, the fuse kernel module ignores it at all.Bernd Schubert2012-06-221-9/+2
| |
* | trivial fixes by B HoweRadek Podgorny2012-08-173-2/+3
|/
* rmdir: Add another debug message.Bernd Schubert2012-05-201-0/+2
|
* Fix RETURN() calls. The macros only takes integers.Bernd Schubert2012-05-202-6/+13
| | | | | Using complex expressions in RETURN() will lead to unexpected results.
* merge with BerndRadek Podgorny2012-02-0338-477/+1631
|\
| * Another debian changelog updateBernd Schubert2011-02-211-0/+8
| |
| * Update the debian/ build filesBernd Schubert2011-02-215-17/+52
| |
| * Update the NEWS fileBernd Schubert2011-02-201-0/+2
| |
| * xattr: Let CMake check if xattrs are really availableBernd Schubert2011-02-203-9/+17
| | | | | | | | Also renames the compiler option -DHAVE_SETXATTR into -DHAVE_XATTR
| * syslog: Eventually add support for syslogsBernd Schubert2011-02-2013-53/+374
| | | | | | | | | | | | | | | | | | syslog() calls might block IO, so we need a separate thread that does only syslogging independently of IO threads. IO threads only add their messages to that usyslog thread without any risk to block. Still a bit experimental, but seems to work fine.
| * fuse_big_writes: Allow big writes (and reads) if availableBernd Schubert2011-02-201-0/+10
| | | | | | | | Speed up IO by doing >4kiB transfers, if supported by libfuse
| * Remove dependency on libmBernd Schubert2010-07-043-5/+22
| | | | | | | | | | Introduce our own ceil implementation into the hash table functions, so that we don't need to link against libm anymore.
| * debian: Remove quilt dependency in debian buildBernd Schubert2010-07-042-7/+3
| | | | | | | | Dependency is already given by source format 3.0
| * Synchronize debian/changelog with other changelogs on my diskBernd Schubert2010-06-291-2/+26
| |
| * Update the NEWS fileBernd Schubert2010-06-171-1/+2
| |
| * Replace accidental RETURN((value)) by RETURN(value)Bernd Schubert2010-06-171-11/+11
| |
| * Mark filedescriptors as "fd = " in debug outputBernd Schubert2010-06-171-5/+5
| |
| * Further debugging: print return codesBernd Schubert2010-06-1610-208/+215
| |
| * Print path names on function tracing.Bernd Schubert2010-06-159-55/+58
| |
| * Improve a commentBernd Schubert2010-06-011-2/+1
| |
| * Update the NEWS fileBernd Schubert2010-06-011-0/+1
| |
| * And another fix for the link problem.Bernd Schubert2010-06-011-3/+12
| | | | | | | | | | This time it failed, if the the destdir already existed on a higher level branch.
| * Fix hard link issues if we have several rw branches. Debian Bug#509516.Bernd Schubert2010-06-013-4/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | COW functions always use the highest level rw branch, but if we have several rw branches and the file to link from is located on a lower rw branch, cow functions decided to use the highest rw branch to link the file to. However, if those branches are different filesystems, that is not allowed How to reproduce: ro/destdir rw_low/fromdir/testfile /tmp/rw_hi/ (/tmp is a different filesystem) union/ unionfs-fuse -d -o cow /tmp/rw_hi=RW:rw_low=RW:ro=RO union/ link union/fromdir/testfile union/destdir/testfile ==> link: cannot create link `union/destdir/testfile' to `union/fromdir/testfile': Invalid cross-device link This patch fixed that issue.
| * Slight optimization for HIDE_META_FILES and HIDE_METADIRBernd Schubert2010-06-011-2/+0
| |
| * Also hide fuse meta files. Note: -o hide_meta_dir is now deprecated in ↵Bernd Schubert2010-06-016-12/+31
| | | | | | | | | | | | favour of -o hide_meta_files Thanks go to Wolf Geldmacher <wolf@womaro.ch> in Ubuntu bug 587917 for reporting this issue.
| * Update the NEWS file for 0.25Bernd Schubert2010-06-011-0/+5
| |