diff options
author | Alexandros C. Couloumbis <alex@ozo.com> | 2010-10-30 10:00:34 +0000 |
---|---|---|
committer | Alexandros C. Couloumbis <alex@ozo.com> | 2010-10-30 10:00:34 +0000 |
commit | 25a2eadad357a51f974fd45f2b08e64db912d3c4 (patch) | |
tree | 09ae4977f566eb3f297716dc2cf54d39db620c6c /target | |
parent | 434c8dbf3353a40e931d0db2e35fa2c8b4cbe576 (diff) | |
download | upstream-25a2eadad357a51f974fd45f2b08e64db912d3c4.tar.gz upstream-25a2eadad357a51f974fd45f2b08e64db912d3c4.tar.bz2 upstream-25a2eadad357a51f974fd45f2b08e64db912d3c4.zip |
linux/generic: fix "rm: can't remove 'xyz': Directory not empty" symbolic link and directory issues on RouterBoard family devices.
SVN-Revision: 23718
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/generic/patches-2.6.36/512-yaffs_symlink_bug.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/target/linux/generic/patches-2.6.36/512-yaffs_symlink_bug.patch b/target/linux/generic/patches-2.6.36/512-yaffs_symlink_bug.patch new file mode 100644 index 0000000000..dabf2871bf --- /dev/null +++ b/target/linux/generic/patches-2.6.36/512-yaffs_symlink_bug.patch @@ -0,0 +1,17 @@ +--- a/fs/yaffs2/yaffs_guts.c ++++ b/fs/yaffs2/yaffs_guts.c +@@ -1709,11 +1709,11 @@ static int yaffs_change_obj_name(yaffs_o + } + + /* TODO: Do we need this different handling for YAFFS2 and YAFFS1?? */ +- if (obj->my_dev->param.is_yaffs2) ++ // if (obj->my_dev->param.is_yaffs2) + unlinkOp = (new_dir == obj->my_dev->unlinked_dir); +- else ++ /* else + unlinkOp = (new_dir == obj->my_dev->unlinked_dir +- && obj->variant_type == YAFFS_OBJECT_TYPE_FILE); ++ && obj->variant_type == YAFFS_OBJECT_TYPE_FILE); */ + + deleteOp = (new_dir == obj->my_dev->del_dir); + |