summaryrefslogtreecommitdiff
path: root/nuttx/fs
Commit message (Collapse)AuthorAgeFilesLines
* Update some commentsGregory Nutt2015-04-131-6/+20
|
* FAT: Fix misthink when CONFIG_ENDIAN_BIG=y. From Lwazi DubeGregory Nutt2015-04-121-61/+82
|
* Update TODO list and some commentsGregory Nutt2015-03-161-1/+2
|
* Trivial update to FAT, comments, READMEGregory Nutt2015-03-151-5/+2
|
* Costmetic changes name while debugging a filename issueGregory Nutt2015-03-152-11/+16
|
* FAT cosmetic changesGregory Nutt2015-03-151-43/+53
|
* Add support for umount2(target, MNT_FORCE) in the FAT file system.Gregory Nutt2015-03-153-182/+266
|
* Remove an UNSED that is no longer necessaryGregory Nutt2015-03-141-1/+0
|
* Fix a ommission in the last changes to the unbind() method prototypeGregory Nutt2015-03-141-1/+2
|
* Fix a bug in the FAT unbind() logic. There were problems with the way ↵Gregory Nutt2015-03-141-2/+24
| | | | certain internal list handling was implemented. The end result is that newly opened or cloned file structures were never being added to the list of open files. So when the unmount() happens, it always looked like there were not open files and a crash could ensue.
* Pass the umount2() flags to every unbind() implementation. That is where ↵Gregory Nutt2015-03-149-35/+75
| | | | the the decision to umount or not will be made.
* Add umount2(). umount() is now a macro that just calls umount2() with flags ↵Gregory Nutt2015-03-144-10/+9
| | | | = 0.
* procfs: fs_procfsproc: Fix potential NULL pointer dereference of 'node'. ↵Gregory Nutt2015-03-121-3/+2
| | | | From Juha Niskanen
* FAT: fat_unbind() was accessing 'fs->fs_sem' after freeing the 'fs' struct. ↵Gregory Nutt2015-03-111-2/+4
| | | | From Juha Niskanen.
* Fix two uses of DEBUG_COLORATION vs STACK_COLORATION (from David Sidrane). ↵Gregory Nutt2015-03-051-1/+1
| | | | Also some corrected comments
* Costmetic updates comments and style; Add NFS dependency on IPv4Gregory Nutt2015-02-261-1/+1
|
* Fix NFS compile problem with CONFIG_NFS_STATISTICS=yGregory Nutt2015-02-251-1/+1
|
* Add some Kconfig dependencies to reduce possibility of bad configurations. ↵Gregory Nutt2015-02-251-1/+1
| | | | Suggested by OrbitalFox
* Fix places where the errno value was being overwritten by subsequent actions ↵Gregory Nutt2015-02-251-0/+17
| | | | so that the returned errno value was incorrect. From Max Neklyudov.
* fs/aio: Corrrect some backward tests in aio_read() and aio_write(): Socket ↵Gregory Nutt2015-02-243-4/+4
| | | | descriptors have higher numbers than file descriptors. In aio_contain(), Copy u.ptr (void *) when initializing aioc and not the case specific u.aioc_filep. From Michal Ulianko.
* Fix some time value changes; mostly changing greater than 1000000000 to ↵Gregory Nutt2015-02-201-1/+1
| | | | greater than or equal to 1000000000. From Juha Niskanen
* Fix a couple of typos in recent commit. Found by David SidraneGregory Nutt2015-02-171-1/+1
|
* mkfatfs: use DMA memory for mkfatfs when neededGregory Nutt2015-02-171-0/+9
| | | | | | | | this makes mkfatfs use fat_dma_alloc() when CONFIG_FAT_DMAMEMORY is set. This is needed to ensure mkfatfs operates with boards that use DMA for microSD From Andrew Tridgell via the PX4/NuttX repository
* Some files that now include sys/time.h should no longer include timer.hGregory Nutt2015-02-151-1/+0
|
* Suffer the consequences of moving struct timeval to its correct locationGregory Nutt2015-02-152-0/+2
|
* Update dates in all skeleton filesGregory Nutt2015-02-131-1/+1
|
* VFS: New block driver unlink support is dependent on mountpoint supportGregory Nutt2015-01-311-0/+2
|
* Add an unlink method to block driver interface. Same motivataion as for the ↵Gregory Nutt2015-01-311-8/+16
| | | | same modification to the character driver interface
* VFS: Add an unlink method to the character driver interface. This is ↵Gregory Nutt2015-01-311-0/+20
| | | | important because if the character driver inode is unlinked and there are no open references to the driver, then the driver resources will be stranded. On the unlink call, the driver has the opportunity (1) check if there an any open references, and (2) if not free the driver resources
* Remove CONFIG_DEBUG_STACK. Adding CONFIG_STACK_COLORATION makes this ↵Gregory Nutt2015-01-241-1/+1
| | | | configuration option pointless
* Networking: UDP and TCP MSS depends on the IP header size (as well as the ↵Gregory Nutt2015-01-161-2/+2
| | | | link layer header size) and cannot be represented with a single value.
* There were some changes which broke my NuttX-Build. With these two patches ↵Gregory Nutt2015-01-011-0/+1
| | | | it builds again. From Manuel Stühn
* Don't build pread()/pwrite() if file system support is disabledGregory Nutt2014-12-281-4/+0
|
* FS: Add a check for a NULL pathname.Gregory Nutt2014-12-131-1/+1
|
* SmartFS: Implements wear-leveling in the SmartFS. From Ken PettitGregory Nutt2014-12-096-92/+731
|
* Add procfs write support. From Ken PetitGregory Nutt2014-12-091-2/+34
|
* Fix a typo in a recent commitGregory Nutt2014-12-081-1/+1
|
* Fix compilation errors if CONFIG_DISABLE_MOUNTPOINT is selectedGregory Nutt2014-12-084-3/+23
|
* In message queue created return ENOSPC error if size exceeds the configured ↵Gregory Nutt2014-12-061-11/+2
| | | | size of pre-allocatd messages; Use ENOSPC vs ENOMEM per OpenGroup.org. From Pierre-Noel Bouteville
* Correct spelling: MOUNTPOINT not MOUNTPOUNT. Numerous places. Some are ↵Gregory Nutt2014-12-011-1/+1
| | | | problems. From Woohan Lee
* Updated commentsGregory Nutt2014-11-291-1/+1
|
* Add support for a variadic ioctl() function. The ioctl() interface is a ↵Gregory Nutt2014-11-291-1/+5
| | | | non-standard, Unix interface. NuttX has always used the older, three-parameter version. Most contemporary systems now, however, use a variadic form of the ioctl() function. Added an option to insert a shim layer to adapt the three-parameter ioctl() to use the variadic interface form. Internally, the ioctl handling is the same three-parameter logic. The only real complexity to the shim is in how the system calls must be handled.
* More fixes to problems noted by cppcheck. Some are kind of risky; some are ↵Gregory Nutt2014-11-251-1/+1
| | | | real bugs.
* More fixes to problems noted by cppcheck. Some are kind of risky; some are ↵Gregory Nutt2014-11-257-18/+28
| | | | real bugs.
* apps/examples/bridge: Add host-side test driverGregory Nutt2014-11-211-0/+2
|
* vfs/poll: add proper handling for sem_timedwait errnos. From Jussi KivilinnaGregory Nutt2014-11-211-0/+16
|
* Simplifed semaphore wait logic in poll()Gregory Nutt2014-11-191-10/+4
|
* poll() was not waking up from signals (for example mq_notify() events).Gregory Nutt2014-11-191-13/+26
| | | | Signed-off-by: Jussi Kivilinna <jussi.kivilinna@haltian.com>
* Network: All logic will now handle varialbe length link layer protocol ↵Gregory Nutt2014-11-151-3/+9
| | | | headers within incoming packets. This permits use of multiple network interfaces with differing data links. For example, ETHERNET + SLIP
* Let's raise the priority of NXFFS dumps to LOG_NOTICEGregory Nutt2014-11-121-16/+16
|