Erez_Zadok [Thu, 31 May 2007 19:30:55 +0000 (15:30 -0400)]
cleanup: ensure proper comment on every "#endif"
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Thu, 31 May 2007 03:34:23 +0000 (23:34 -0400)]
Revert "Unionfs: Cleanup locking in new_dentry_private_data"
This reverts commit
ad2d6a5f5e0501ecf704bf2c748e9818ee8e019b.
Conflicts:
fs/unionfs/lookup.c
Erez_Zadok [Thu, 31 May 2007 00:14:07 +0000 (20:14 -0400)]
bugfix: ensure dentry/inode/mnt validity after a successful ioctl
We call unionfs_partial_lookup in our queryfile ioctl method, so we can find
all instances of a lower object to report back to a suer. This can violate
the fanout invariants (e.g., a regular file should have only one lower
object active at a time). So we have to re-establish the invariants on the
lower dentries, inodes, and mnts.
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Thu, 31 May 2007 00:09:07 +0000 (20:09 -0400)]
bugfix: release superblock lock at end of ioctl method
Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Wed, 30 May 2007 05:02:20 +0000 (01:02 -0400)]
bug fixes: revalidate dentries passed to all inode/super operations
Be sure to properly revalidate all dentry chains passed to all inode and
super_block operations. Remove the older BUG_ON test is_valid_dentry().
This should help improve cache-coherency.
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Wed, 30 May 2007 02:09:59 +0000 (22:09 -0400)]
code consistency: ensure that every #endif has a matching comment
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Tue, 29 May 2007 03:24:58 +0000 (23:24 -0400)]
invariants: don't complain if no lower dentry of a deleted dentry
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Mon, 28 May 2007 23:47:35 +0000 (19:47 -0400)]
invariants: don't complain about directories with some NULL lower objects
Directories can have NULL lower objects in between start/end, but NOT if at
the start/end range. We cannot verify that this dentry is a type=DIR,
because it may already be a negative dentry. But if dbstart is greater than
dbend, we know that this couldn't have been a regular file: it had to have
been a directory. In that case, don't complain about NULL lower objects in
in between start/end.
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Mon, 28 May 2007 23:45:45 +0000 (19:45 -0400)]
Revert "invariants: don't complain about directories with some NULL lower objects"
This reverts commit
9d8ee83d478be30faf351af7628066ec6658efb5.
Erez_Zadok [Mon, 28 May 2007 23:42:20 +0000 (19:42 -0400)]
invariants: don't complain about directories with some NULL lower objects
Directories can have NULL lower objects in between start/end, but NOT if at
the start/end range. We cannot verify that this dentry is a type=DIR,
because it may already be a negative dentry. But if dbstart is greater than
dbend, we know that this couldn't have been a regular file: it had to have
been a directory. In that case, don't complain about NULL lower objects in
in between start/end.
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Mon, 28 May 2007 23:39:44 +0000 (19:39 -0400)]
cleanup: rewrite unionfs_partial_lookup more cleanly and add comments
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Mon, 28 May 2007 23:38:14 +0000 (19:38 -0400)]
bug fix: prevent null mntget warning messages in unionfs_lookup_backend
Don't try to mntget a lower mnt at a point where the lower mnts don't yet
exist (the callers will have them later on). Instead, get the lower mnt of
the sb->s_root.
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Mon, 28 May 2007 23:36:02 +0000 (19:36 -0400)]
documentation: expand comments to unionfs_lookup_backend
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Mon, 28 May 2007 23:23:42 +0000 (19:23 -0400)]
cleanup: remove unnecessary call to inherit_mnt
Our unionfs_lookup doesn't need to call inherit_mnt: the lower mnts will be
correct here (but not if other methods such as unionfs_rename call our
lookup_backend helper function directly).
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Mon, 28 May 2007 23:21:21 +0000 (19:21 -0400)]
bug fix: don't warn if trying to mntput a "negative" union object
In unionfs_d_release, we may get negative dentries which don't have a lower
mnt. In that case, don't print a warning message from unionfs_mntput about
trying to put a NULL mnt.
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Mon, 28 May 2007 23:18:45 +0000 (19:18 -0400)]
bug fix: get lower mnt from root dentry instead of lower dentry
While copying-up a file, the union object hasn't been fully formed yet, so
we don't have all the lower dentries/mnts to use (the caller will have them
later on). Therefore, we should use the sb->s_root's lower mnt here. This
fixes a "NULL mnt" warning message that came from unionfs_mntget.
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Sat, 26 May 2007 02:36:13 +0000 (22:36 -0400)]
Unionfs: allow users to override Makefile options in fs/unionfs/local.mk
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Sat, 26 May 2007 02:01:03 +0000 (22:01 -0400)]
documentation: better comment in branch_id_to_idx
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Fri, 25 May 2007 21:01:00 +0000 (17:01 -0400)]
bug fix: catch bad use of dirs= options (extra ':' separators)
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Fri, 25 May 2007 20:20:36 +0000 (16:20 -0400)]
unionfs: merge find_new_branch_index and branch_id_to_idx into one function
Useful code cleanup and consolidation between the ODF code and non-ODF code.
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Fri, 25 May 2007 19:47:44 +0000 (15:47 -0400)]
unionfs: minor cleanup and better commenting in new_dentry_private_data
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Fri, 25 May 2007 19:45:30 +0000 (15:45 -0400)]
Unionfs: Cleanup locking in new_dentry_private_data
Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
Conflicts:
fs/unionfs/lookup.c
Erez_Zadok [Fri, 25 May 2007 19:37:38 +0000 (15:37 -0400)]
bugfix: prevent null-deref oops if lower f/s is NFS (mmap writes)
This is a workaround fora deficiency of the linux MM layer, which doesn't
allow clean coordination between upper and lower pages in stackable layers.
We prevent an oops, but the cost is that we're not able to implement
writepages cleanly, not can we call the lower file system's writepages.
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Thu, 24 May 2007 04:08:03 +0000 (00:08 -0400)]
cleanup: use krealloc instead of open-coding it with kmalloc/kfree/memcpy
Erez_Zadok [Thu, 24 May 2007 01:27:58 +0000 (21:27 -0400)]
bugfix: prevent a NULL ptr deref if branch is nfs and using mmap writes
By some strange condition, the VFS can pass our unionfs_writepage a
writeback_control structure which, if passed as is to the lower ->writepage
-- here nfs_writepage, triggers a NULL ptr deref in NFS. This fix works
around this issue, and results in a successfully written mmaped file.
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Thu, 24 May 2007 01:26:01 +0000 (21:26 -0400)]
bugfix: handle lower file systems that do not support writeable mappings
File systems such as jffs2 (tested in 2.6.22-rc22) do not have a
->writepage. Make sure unionfs detects that conditions and returns EINVAL
when a user tries to mmap such a file with VM_WRITE.
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez Zadok [Wed, 23 May 2007 03:53:25 +0000 (23:53 -0400)]
documentation: comment to ODF developers to address
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez Zadok [Wed, 23 May 2007 03:52:12 +0000 (23:52 -0400)]
bug fix: set lower inodes correctly after branch management succeeds
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez Zadok [Wed, 23 May 2007 03:50:44 +0000 (23:50 -0400)]
bug fix: prevent self deadlock with remount code in pivot_root scenarios
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez Zadok [Wed, 23 May 2007 03:49:35 +0000 (23:49 -0400)]
debugging: test for freed (0x5a) inodes
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez Zadok [Tue, 22 May 2007 22:04:14 +0000 (18:04 -0400)]
bugfix: statfs lower file system properly
Get the correct lower dentry to use to statfs the first branch (always), now
works with disk-based as well as network file systems. Also document the
code better.
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
Erez_Zadok [Sun, 20 May 2007 01:11:22 +0000 (21:11 -0400)]
Add Erez Zadok to maintainers list
Erez_Zadok [Sun, 20 May 2007 01:07:29 +0000 (21:07 -0400)]
add standard copyright comment to linux/union_fs.h
Erez_Zadok [Sun, 20 May 2007 00:44:25 +0000 (20:44 -0400)]
d_splice bugfix: update dentry in our lookup if needed.
Erez_Zadok [Sat, 19 May 2007 23:59:13 +0000 (19:59 -0400)]
mmap: file revalidation and fanout invariant validation
Added the newer checks to file revalidation and fanout invariants to the
newly merged mmap code. Also minor mmap related comments added.
Yiannis Pericleous [Sat, 19 May 2007 19:23:22 +0000 (15:23 -0400)]
mmap: sync_page bug, call sync_page on lower page, not unionfs page
Erez_Zadok [Sat, 19 May 2007 23:17:30 +0000 (19:17 -0400)]
mmap: also revalidate file passed to unionfs_release
Conflicts:
fs/unionfs/commonfops.c
Erez_Zadok [Sun, 6 May 2007 00:41:46 +0000 (20:41 -0400)]
mmap: update atime upon successful file reading (via mmap or otherwise)
Erez_Zadok [Sat, 5 May 2007 23:27:33 +0000 (19:27 -0400)]
mmap: proper locking to interoperate with branch-management code
Include proper read un/lock calls as in file.c. Make unionfs_do_readpage
static as no one else should call this helper function.
Erez_Zadok [Sat, 5 May 2007 23:15:28 +0000 (19:15 -0400)]
mmap: remove unnecessary unionfs_bmap method
Unionfs is not a block-based file system, so it should not define ->bmap.
Erez_Zadok [Sat, 5 May 2007 23:10:00 +0000 (19:10 -0400)]
mmap: trivial sendfile support
Erez_Zadok [Sat, 19 May 2007 23:10:42 +0000 (19:10 -0400)]
mmap: minor code and comment reformatting
Conflicts:
fs/unionfs/file.c
Yiannis Pericleous [Tue, 1 May 2007 23:11:53 +0000 (19:11 -0400)]
mmap: #if 0 unneeded code instead of commenting it out
Yiannis Pericleous [Tue, 1 May 2007 19:18:39 +0000 (15:18 -0400)]
mmap: read upper file instead of lower file
dont touch atimes on reads
Yiannis Pericleous [Sun, 29 Apr 2007 02:04:54 +0000 (22:04 -0400)]
mmap: coding style: reformated a line longer than 80 chars
Erez_Zadok [Sun, 29 Apr 2007 01:04:05 +0000 (21:04 -0400)]
mmap: remove defunct comments
Yiannis Pericleous [Fri, 27 Apr 2007 22:13:29 +0000 (18:13 -0400)]
mmap: file revalidation
Erez_Zadok [Sat, 19 May 2007 23:00:51 +0000 (19:00 -0400)]
mmap: applied main mmap patch
Resolved the following conflicts:
Conflicts:
fs/unionfs/Makefile
fs/unionfs/file.c
Erez_Zadok [Sat, 19 May 2007 22:22:53 +0000 (18:22 -0400)]
bugfix: fixed interpose to check if d_splice_alias returns a dentry
Also in unionfs_interpose, ensure that this new dentry's private data is
correct. unionfs_interpose now returns a dentry if d_splice_alias has
returned a dentry. (This is a reimplementation of the same fix from the ODF
code base.)
Erez_Zadok [Sat, 19 May 2007 21:14:27 +0000 (17:14 -0400)]
debug: remove unnecessarily verbose debugging printk's
Erez_Zadok [Sat, 19 May 2007 20:40:16 +0000 (16:40 -0400)]
cleanup: consistent printk messages
Erez Zadok [Fri, 18 May 2007 07:41:05 +0000 (03:41 -0400)]
cleanup: eliminate wrapper function create_parents
Eliminate simple wrapper function create_parents which trivially called
create_parents_named with one more arg derived from the caller. Instead,
remove the wrapper, rename create_parents_named to create_parents, and make
everyone call create_parents directly. This clarifies the code a bit more
and saves a bit on stack space.
Erez Zadok [Fri, 18 May 2007 07:27:02 +0000 (03:27 -0400)]
cleanup: eliminate wrapper function copyup_dentry
Eliminate simple wrapper function copyup_dentry which trivially called
copyup_named_dentry with 2 more args derived from the caller. Instead,
remove the wrapper, rename copyup_named_dentry to copyup_dentry, and make
everyone call copyup_dentry directly. This clarifies the code a bit more
and saves a bit on stack space.
Erez Zadok [Fri, 18 May 2007 07:07:37 +0000 (03:07 -0400)]
cleanup: rewrite do_delayed_copyup more cleanly and clearly
Erez Zadok [Fri, 18 May 2007 06:18:44 +0000 (02:18 -0400)]
debugging: small fix to Makefile to correct #define typo
Erez Zadok [Fri, 18 May 2007 05:56:08 +0000 (01:56 -0400)]
cleanup: remove unnecessary macro used in only one place
Remove the UNIONFS_TMPNAM_LEN macro and just use the actual length of the
string file name in question, which is more efficient (and correct).
Erez Zadok [Fri, 18 May 2007 05:53:12 +0000 (01:53 -0400)]
bug fix: don't revalidate dropped dentries
This fixes a harmless but annoying message that unionfs prints if a dropped
dentry is being revalidated, which could happen if you unlink open files.
Erez Zadok [Fri, 18 May 2007 05:45:18 +0000 (01:45 -0400)]
bug fix: retry lookup for different silly-renamed files
When we have to copyup an open-but-unlinked file, we have to give it a
temporary name, similar to NFS's silly-renamed files. So we generate
temporary file names until we find one that doesn't exist, and use it. The
code had a bug where if the silly-renamed file name already existed, Unionfs
would oops upon copyup to that temp name.
Erez Zadok [Fri, 18 May 2007 05:41:04 +0000 (01:41 -0400)]
Documentation: better comments for copyup-related code
Erez Zadok [Fri, 18 May 2007 05:39:26 +0000 (01:39 -0400)]
Verify and maintain fanout invariants.
This somewhat long patch calls various invariant-checking (debugging)
functions in all places where the fanout invariants should hold. The three
invariant-checking functions, __unionfs_check_{inode,dentry,file}, perform
exhaustive sanity checking on the fan-out of various Unionfs objects. We
check that no lower objects exist outside the start/end branch range; that
all objects within are non-NULL (with some allowed exceptions); that for
every lower file there's a lower dentry+inode; that the start/end ranges
match for all corresponding lower objects; that open files/symlinks have
only one lower objects, but directories can have several; and more.
The rest of this patch actually fixes many places where these invariants did
not hold, which could lead to bugs or corruptions under heavy loads,
multi-threaded workloads, dynamic branch-management, and mmap operations.
Most of the bugs related to actions involving copyups and whiteouts. With
these fixes, the entire Unionfs regression suite passes without a single
invariant violated.
Erez Zadok [Fri, 18 May 2007 05:31:14 +0000 (01:31 -0400)]
Post-copyup helper functions
Two functions which are very useful to execute common actions needed after a
copy-up had taken place.
Erez Zadok [Fri, 18 May 2007 05:28:00 +0000 (01:28 -0400)]
Introduce compile-time debugging support to Unionfs
Similar to other file systems, to turn on debugging, one is asked to change
the Makefile slightly. The vast majority of the debugging utility functions
are in debug.c. They are useful for developers and users to report to
developers. The main code has some very useful hooks left behind that are
non-intrusive and cleaner (i.e., no "ifdef DEBUG" clutter).
Erez_Zadok [Fri, 11 May 2007 05:55:19 +0000 (01:55 -0400)]
bugfixes: correctly decrement refcounts of mnt's upon branch management
The old logic was broken in one place, which another place tried to "fix"
incorrectly. Also added detailed comments to explain the new/correct logic.
Erez_Zadok [Fri, 11 May 2007 05:51:48 +0000 (01:51 -0400)]
bugfix in BUG_ON use: actually catch bad use of unionfs_mntput
Yiannis Pericleous [Sun, 29 Apr 2007 02:06:46 +0000 (22:06 -0400)]
cleanup: removed a trailing whitespace
Erez_Zadok [Fri, 4 May 2007 18:50:01 +0000 (14:50 -0400)]
bugfix: remove defunct unionfs_put_inode method
Removed old workaround code that was needed to get mmap working, is no
longer needed with recent kernels.
Erez_Zadok [Fri, 4 May 2007 18:44:02 +0000 (14:44 -0400)]
optimize branch overlapping test a bit
Erez_Zadok [Mon, 30 Apr 2007 21:30:48 +0000 (17:30 -0400)]
Documentation update regarding overlapping branches and new lookup code.
Added detailed comment and updated documentation (issues.txt) to explain why
overlapping branches are disallowed, better explain cache coherency issues,
and mention upcoming do_lookup_lookup changes.
Erez_Zadok [Mon, 30 Apr 2007 20:42:30 +0000 (16:42 -0400)]
branch management: disallow setting leftmost branch to readonly
Unionfs requires the leftmost branch to be writeable for copyup to work
properly and simply. If, through branch-management commands (add, delete,
or mode change), the leftmost branch will becomes readonly, then return an
error (and tell the user to use "remount,ro" if they want a readonly union).
Erez_Zadok [Sun, 29 Apr 2007 23:33:25 +0000 (19:33 -0400)]
fsstack: 4th case to do_path_lookup
Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
Erez_Zadok [Fri, 27 Apr 2007 16:35:44 +0000 (12:35 -0400)]
Revert "Unionfs: Check remount options for being NULL"
This reverts commit
49491b290f0f791a531316c6197437547985537b.
Erez_Zadok [Thu, 19 Apr 2007 22:40:36 +0000 (18:40 -0400)]
bugfix: don't leak resources when copyup fails partially
Erez_Zadok [Wed, 18 Apr 2007 06:08:14 +0000 (02:08 -0400)]
cleanup: call our unionfs_{unlock,lock}_dentry instead of mutex ops.
This is for consistency with the rest of the code, which helps us place
debugging code when un/locking our special "info" mutex in our dentries.
Erez Zadok [Sun, 15 Apr 2007 21:43:53 +0000 (17:43 -0400)]
cleanup: rename our "do_rename" to __unionfs_rename.
To avoid confusion with the VFS-named function do_rename, and to help ctags,
rename our utility (static) function "do_rename" to "__unionfs_rename".
Erez Zadok [Sun, 15 Apr 2007 21:37:40 +0000 (17:37 -0400)]
cleanup: rename prefix our version of double_lock_dentry with "unionfs_"
To avoid potential confusion with the VFS function of the same name (and
also confusion with ctags), rename our special version of double_lock_dentry
to unionfs_double_lock_dentry.
Erez_Zadok [Fri, 13 Apr 2007 22:33:41 +0000 (18:33 -0400)]
Cleanup: ensure space between every comma-delimited function argument list
Erez_Zadok [Wed, 28 Mar 2007 16:42:37 +0000 (12:42 -0400)]
cleanup: rewrite long while(1) loop more cleanly
Erez Zadok [Sun, 25 Mar 2007 05:37:15 +0000 (01:37 -0400)]
Move one function off of branchman.c and remove source file.
After branch-management support was added, branchman.c became obsolete: it
used to hold the old ioctl-based branch-management commands, but now we do
those commands via remount (in super.c). So move the only remaining small
query-file ioctl from branchman.c to commonfops.c, close to unionfs_ioctl;
and remove any leftover extern's which referred to old code in branchman.c
Erez Zadok [Sun, 25 Mar 2007 05:29:41 +0000 (01:29 -0400)]
cleanup: consistent pointer declaration spacing.
Change instances of "foo * var" to "foo *var" for consistency.
Erez Zadok [Sun, 25 Mar 2007 05:24:54 +0000 (01:24 -0400)]
Merge unionfs_write with __unionfs_write.
Merge the two functions because unionfs_write was a small function and the
only one which called the __unionfs_write. This saves on stack space and
clarifies code a bit.
Erez Zadok [Sun, 25 Mar 2007 05:12:48 +0000 (01:12 -0400)]
cleanup: fix one odd indentation and long line breakup.
Erez Zadok [Sun, 25 Mar 2007 04:27:12 +0000 (00:27 -0400)]
Commenting the code.
Audited entire code for documentation. Added comments at top of functions
where it felt necessary (i.e., function's name and size don't make it clear
what it may be doing precisely). Reformatted some long comments. Fixed a
few comment typos and spelling errors.
Erez Zadok [Sun, 25 Mar 2007 03:14:03 +0000 (23:14 -0400)]
cleanup: prefix external functions with 'extern' properly
Erez_Zadok [Sun, 25 Mar 2007 03:01:13 +0000 (23:01 -0400)]
cleanup: one more trailing whitespace removed.
Erez_Zadok [Sun, 25 Mar 2007 00:06:44 +0000 (20:06 -0400)]
cleanup: spell check all strings and comments
Erez_Zadok [Sat, 24 Mar 2007 23:56:56 +0000 (19:56 -0400)]
cleanup: use consistent style for multi-line comments
Erez_Zadok [Sat, 24 Mar 2007 23:41:58 +0000 (19:41 -0400)]
cleanup: keep all top-of-function automatic variables clustered together
Erez_Zadok [Sat, 24 Mar 2007 23:32:42 +0000 (19:32 -0400)]
coding-style: remove one more {braces} around one-statement code block
Erez_Zadok [Sat, 24 Mar 2007 23:31:28 +0000 (19:31 -0400)]
cleanup: remove unnecessary blank lines in short code blocks
Erez_Zadok [Sat, 24 Mar 2007 23:21:51 +0000 (19:21 -0400)]
cleanup: add missing copyright notices
Erez_Zadok [Sat, 24 Mar 2007 23:14:18 +0000 (19:14 -0400)]
coding-style: reformat lines longer than 80 chars (accounting for TABs)
Erez_Zadok [Sat, 24 Mar 2007 22:36:59 +0000 (18:36 -0400)]
cleanup: every printk should prefix with "unionfs: " consistently
Erez_Zadok [Sat, 24 Mar 2007 22:19:49 +0000 (18:19 -0400)]
coding-style: remove unnecessary {braces} around one-line code blocks
Erez_Zadok [Sat, 24 Mar 2007 22:11:10 +0000 (18:11 -0400)]
coding-style: no lines over 80 chars
Erez_Zadok [Sat, 24 Mar 2007 21:57:56 +0000 (17:57 -0400)]
coding-style: indent every line properly
Erez_Zadok [Sat, 24 Mar 2007 21:41:57 +0000 (17:41 -0400)]
cleanup: remove trailing spaces
Erez_Zadok [Sat, 24 Mar 2007 20:28:59 +0000 (16:28 -0400)]
Documentation: fix spelling error
Erez_Zadok [Sat, 24 Mar 2007 20:19:40 +0000 (16:19 -0400)]
Documentation: minor typo fixed in incgen remount option
Josef 'Jeff' Sipek [Sat, 19 May 2007 07:14:30 +0000 (03:14 -0400)]
Unionfs: SLAB_CTOR_CONSTRUCTOR has been removed from vanilla
Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
Pekka Enberg [Sun, 13 May 2007 16:55:44 +0000 (12:55 -0400)]
[PATCH] unionfs: fix slab abuses with krealloc
This changes unionfs to use krealloc() for reallocating memory so that we
don't need to play tricks with slab internals.
Cc: Josef Sipek <jsipek@fsl.cs.sunysb.edu>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>