search for: nosapce

Displaying 4 results from an estimated 4 matches for "nosapce".

Did you mean: enospace
2013 Aug 22
2
[PATCH] tftp-hpa: add error check for disk filled up
From: "Roy.Li" <rongqing.li at windriver.com> Add error check when the write-buffer is finally flushed to the file, the caller can detect if the disk filled up (or had an i/o error) and return a NOSAPCE nak to the other side. Signed-off-by: Ming Liu <ming.liu at windriver.com> Signed-off-by: Roy.Li <rongqing.li at windriver.com> --- common/tftpsubs.c | 8 +++++--- tftpd/tftpd.c | 12 ++++++++++-- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/common/tftpsubs...
2013 Sep 03
1
[PATCH] tftp-hpa: add error check for disk filled up
...:00 PM, rongqing.li at windriver.com wrote: >> From: "Roy.Li" <rongqing.li at windriver.com> >> >> Add error check when the write-buffer is finally flushed to the file, >> the caller can detect if the disk filled up (or had an i/o error) and >> return a NOSAPCE nak to the other side. >> >> Signed-off-by: Ming Liu <ming.liu at windriver.com> >> Signed-off-by: Roy.Li <rongqing.li at windriver.com> > > Don't mix stdio and raw I/O this way. > > The right thing to do is either to use fflush() and ferror() to detect...
2013 Aug 28
0
[PATCH] tftp-hpa: add error check for disk filled up
On 08/21/2013 06:00 PM, rongqing.li at windriver.com wrote: > From: "Roy.Li" <rongqing.li at windriver.com> > > Add error check when the write-buffer is finally flushed to the file, > the caller can detect if the disk filled up (or had an i/o error) and > return a NOSAPCE nak to the other side. > > Signed-off-by: Ming Liu <ming.liu at windriver.com> > Signed-off-by: Roy.Li <rongqing.li at windriver.com> Don't mix stdio and raw I/O this way. The right thing to do is either to use fflush() and ferror() to detect an error condition, or consi...
2013 Sep 03
1
[PATCH v2] tftp-hpa: add error check for disk filled up
From: "Roy.Li" <rongqing.li at windriver.com> Add error check when write file, the caller can detect if the disk filled up (or had an i/o error) and return a NOSAPCE nak to the other side. Signed-off-by: Ming Liu <ming.liu at windriver.com> Signed-off-by: Roy.Li <rongqing.li at windriver.com> --- common/tftpsubs.c | 4 +++- tftpd/tftpd.c | 12 ++++++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/common/tftpsubs.c b...