search for: oap

Displaying 8 results from an estimated 8 matches for "oap".

Did you mean: map
2013 Sep 03
1
[PATCH v2] tftp-hpa: add error check for disk filled up
...if (putc(c, file) == EOF) { + return -1; + } skipit: prevchar = c; } diff --git a/tftpd/tftpd.c b/tftpd/tftpd.c index 1873e70..c2adbda 100644 --- a/tftpd/tftpd.c +++ b/tftpd/tftpd.c @@ -1681,7 +1681,11 @@ static void tftp_recvfile(const struct formats *pf, struct tftphdr *oap, int oac syslog(LOG_WARNING, "tftpd: write(ack): %m"); goto abort; } - write_behind(file, pf->f_convert); + if(write_behind(file, pf->f_convert) < 0) { + nak(ENOSPACE, NULL); + (void)fclose(file); +...
2017 Apr 03
2
NFS Client with quota
..._________________________________________ > CentOS mailing list > CentOS at centos.org > https://lists.centos.org/mailman/listinfo/centos ///////////////////////////////////////////////// ?????????? ???? ???? SI? SI3? ?? ?? <koji.morikawa at sdcj.co.jp> ?530-6008 ????????1??8?30? OAP??? 8? TEL?06-6355-5971 FAX?06-6355-5974 http://www.sdcj.co.jp/ /////////////////////////////////////////////////
2009 Jun 08
1
Absolutely last call for 3.82
I'm going to push out a Syslinux 3.82 later today unless someone yells... -hpa -- H. Peter Anvin, Intel Open Source Technology Center I work for Intel. I don't speak on their behalf.
2017 Apr 04
1
NFS Client with quota
...S at centos.org > >> https://lists.centos.org/mailman/listinfo/centos > > ///////////////////////////////////////////////// > > ?????????? ???? > > ???? SI? SI3? > > ?? ?? <koji.morikawa at sdcj.co.jp> > > > > ?530-6008 > > ????????1??8?30? OAP??? 8? > > TEL?06-6355-5971 FAX?06-6355-5974 > > http://www.sdcj.co.jp/ > > ///////////////////////////////////////////////// > > _______________________________________________ > > CentOS mailing list > > CentOS at centos.org > > https://lists.centos.org/m...
2017 Mar 29
3
NFS Client with quota
Hello. I am "koji". I have a question. Can I mount a NFS with quota? (Not Server side) I understand quota is set NFS server. But I must client side. (Is rquota only report?) Does anyone know a good solution? Best regard. koji
2013 Aug 22
2
[PATCH] tftp-hpa: add error check for disk filled up
...leno(file), buf, count); } /* When an error has occurred, it is possible that the two sides diff --git a/tftpd/tftpd.c b/tftpd/tftpd.c index 1873e70..c2adbda 100644 --- a/tftpd/tftpd.c +++ b/tftpd/tftpd.c @@ -1681,7 +1681,11 @@ static void tftp_recvfile(const struct formats *pf, struct tftphdr *oap, int oac syslog(LOG_WARNING, "tftpd: write(ack): %m"); goto abort; } - write_behind(file, pf->f_convert); + if(write_behind(file, pf->f_convert) < 0) { + nak(ENOSPACE, NULL); + (void)fclose(file); +...
2017 Apr 03
0
NFS Client with quota
...;> CentOS mailing list >> CentOS at centos.org >> https://lists.centos.org/mailman/listinfo/centos > ///////////////////////////////////////////////// > ?????????? ???? > ???? SI? SI3? > ?? ?? <koji.morikawa at sdcj.co.jp> > > ?530-6008 > ????????1??8?30? OAP??? 8? > TEL?06-6355-5971 FAX?06-6355-5974 > http://www.sdcj.co.jp/ > ///////////////////////////////////////////////// > _______________________________________________ > CentOS mailing list > CentOS at centos.org > https://lists.centos.org/mailman/listinfo/centos > -- =...
2010 Sep 01
1
tftpd resends option ack during transfer
Uploading a >32MB file from a recent curl to tftpd fails because when the block number rolls back to 0, tftpd transmits the option ack again, instead of transmitting an acknowledgment for the block received. You don't see this problem when using the bundled tftp client because it doesn't set any of the options when uploading a file. Attached is a patch that fixes this, tested against