summaryrefslogtreecommitdiff
path: root/nuttx/fs
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Fix prolblems with redefinitions of fdb macro. With the fix to the syslog ↵Gregory Nutt2014-11-121-27/+28
| | | | prototype, a LOG priority must now be the first paramter. Fixed by replacing all occurrences of fdbg with syslog(LOG_DEBUG, and eliminating the macro redefinitions. Noted by Sebastien Lorquet.
* Cosmetic. Fix some conditional logic in some conditioned out codeGregory Nutt2014-11-021-1/+1
|
* SYSLOG timestamp configuration option should not depend on CONFIG_SYSLOG and ↵Gregory Nutt2014-11-011-3/+3
| | | | the default value should be n
* Add optional timestamp to syslog output. From pn_bouteville@yahoo.frGregory Nutt2014-11-011-0/+6
|
* AIO: Several fixes for socket transfers, mostly from Victor Mayoral VilchesGregory Nutt2014-10-273-3/+4
|
* Fix a couple of problems introduced in the last commmitsGregory Nutt2014-10-111-1/+1
|
* AIO now also supports socket transfersGregory Nutt2014-10-115-53/+166
|
* fs/aio/aio.h needs to disable itself is CONFIG_FS_AIO is not definedGregory Nutt2014-10-091-0/+3
|
* Move syslog back to libc/syslog from fs/syslogGregory Nutt2014-10-099-665/+9
|
* Remove non-standard, conditional syslog_enable(), instead only the required, ↵Gregory Nutt2014-10-095-146/+3
| | | | standard setlogmask()
* Fix a naming problem (actally a cut'n'paste problem)Gregory Nutt2014-10-082-6/+6
|
* Passing va_list in syscall does not work. Temporarily moved syslog and ↵Gregory Nutt2014-10-084-3/+39
| | | | lowsyslog into kernel code and access via a system call. Need to revisit. Will probably need to move all of syslog back from fs/syslog to libc/syslog
* Implement setlogmask(); move some syslog logic from libc/syslog to fs/syslogGregory Nutt2014-10-0810-9/+765
|
* make standard syslog and vsyslog POSIX compliant (also modify non-standard ↵Gregory Nutt2014-10-081-3/+4
| | | | syslog functions for compatibility). This will break a lot of things until ALL usage of syslog is updated to use the modified interfaces
* Fix typos that cause compile error when file system debug is enabledGregory Nutt2014-10-073-4/+4
|
* AIO signal related fixes; extensino to AIO testGregory Nutt2014-10-071-4/+12
|
* Fix a compilation error in last commits that occure if ↵Gregory Nutt2014-10-071-0/+4
| | | | CONFIG_PRIORITY_INHERITANCE is not selected
* Update some commentsGregory Nutt2014-10-072-52/+12
|
* The Asynch I/O implementation now satisfies POSIX priority requirements; it ↵Gregory Nutt2014-10-076-16/+193
| | | | uses the new low priority worker thread interfaces to adjust the priority of the worker thread according to the priority of the client thread
* Eliminate a warningGregory Nutt2014-10-061-1/+1
|
* Fix some cornercase locking issues; make AIO lock re-entrantGregory Nutt2014-10-064-17/+61
|
* Add test for aio_cancel() and fix some bugs found by the testGregory Nutt2014-10-061-7/+22
|
* Fix some errors and spec compliance issues with aio_cancel()Gregory Nutt2014-10-061-44/+76
|
* Fix compile problems with debug onGregory Nutt2014-10-061-0/+1
|
* Basic fixes for a clean simulator build with last big fs changesGregory Nutt2014-10-064-7/+8
|
* Major structure of file system functions to better support asynchronous I/O. ↵Gregory Nutt2014-10-0624-287/+564
| | | | Respository should not be trusted until I have a chance to verify everything
* Modify FS initialization logic to handle AIO container initialization.Gregory Nutt2014-10-064-5/+106
|
* Modify logic to use AIO control block containerGregory Nutt2014-10-065-53/+116
|
* Add a AIO control container to increase the payload with OS internal stuff.Gregory Nutt2014-10-065-4/+548
|
* Fix some compilation issues introduced with last commitGregory Nutt2014-10-053-3/+3
|
* Rename CONFIG_LIBC_AIO to CONFIG_FS_AIO since it is now an OS propertyGregory Nutt2014-10-057-20/+35
|
* Move all file operations from libc/aio to fs/aio. These will need to be ↵Gregory Nutt2014-10-059-0/+1265
| | | | kernel routines in order to handler issues with using file descriptors on worker thread
* First pread/pwrite typo fixesGregory Nutt2014-10-042-4/+4
|
* Add pread() and pwrite()Gregory Nutt2014-10-044-3/+267
|
* Fix an error when compiled with debug enabledGregory Nutt2014-09-301-2/+0
|