summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-11-18 17:31:04 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-11-18 17:31:04 +0000
commit698c00fd5eafaab3ddb06203ab3bf71299bf96e9 (patch)
tree6dc184ad1b96078c398d62e0dbee5ce2ba3cd84e /nuttx/ChangeLog
parent0618b39e4c2bd27666efb9e6c41781182ca32d22 (diff)
downloadnuttx-698c00fd5eafaab3ddb06203ab3bf71299bf96e9.tar.gz
nuttx-698c00fd5eafaab3ddb06203ab3bf71299bf96e9.tar.bz2
nuttx-698c00fd5eafaab3ddb06203ab3bf71299bf96e9.zip
Fix error in mount() error handling
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2271 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index d60492160..6dc90caaa 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -964,4 +964,11 @@
NOTE: On initial check-in, mmcsd_sdio.c and stm32_sdio.c are merely
skeleton frameworks for the driver.
+ * fs/fs_mount.c -- Correct error handling logic. If the bind() method
+ fails, then a reserved node is left in the tree. This causes subsequent
+ attempts to mount at the location to fail (reporting that the node
+ already exists). This is a probably for block drivers for removable
+ media: The bind method could fail repeatedly until media is asserted.
+
+