From: Charles Manning Date: Thu, 21 May 2015 05:27:01 +0000 (+1200) Subject: yaffs: Fix yaffs_readdir when dereferencing a symlink X-Git-Tag: aleph1-release~30 X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=commitdiff_plain;h=c15797a48b5f133c37e9399546165525eebddc1c;hp=c15797a48b5f133c37e9399546165525eebddc1c yaffs: Fix yaffs_readdir when dereferencing a symlink If the directory is a symlink then follow the symlink. eg yaffs_mount("/nand/"); yaffs_symlink("x", "/nand/sym"); yaffs_mkdir("/nand/x",0666); After that: yaffs_opendir("/nand/sym/") works, but opendir("/nand/sym") fails because the symlink itself is found. Fix by dereferencing the symlink in yaffs_opendir(). Thanks to Trent Lillehaugen for finding that. Signed-off-by: Charles Manning ---