diff options
| author | Bartlomiej Sieka <tur@semihalf.com> | 2008-10-01 15:26:28 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-10-18 21:54:00 +0200 | 
| commit | 49f3bdbba8071f56d950a9498b6cdb998b35340a (patch) | |
| tree | e4e3e05eef80c0493024431f905bccd5924cfa60 /net/nfs.c | |
| parent | c68a05feeb88de9fcf158e67ff6423c4cc988f88 (diff) | |
| download | olio-uboot-2014.01-49f3bdbba8071f56d950a9498b6cdb998b35340a.tar.xz olio-uboot-2014.01-49f3bdbba8071f56d950a9498b6cdb998b35340a.zip | |
net: express the first argument to NetSetTimeout() in milliseconds
Enforce millisecond semantics of the first argument to NetSetTimeout() --
the change is transparent for well-behaving boards (CFG_HZ == 1000 and
get_timer() countiing in milliseconds).
Rationale for this patch is to enable millisecond granularity for
network-related timeouts, which is needed for the upcoming automatic
software update feature.
Summary of changes:
- do not scale the first argument to NetSetTimeout() by CFG_HZ
- change timeout values used in the networking code to milliseconds
Signed-off-by: Rafal Czubak <rcz@semihalf.com>
Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'net/nfs.c')
| -rw-r--r-- | net/nfs.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| @@ -35,7 +35,7 @@  #define HASHES_PER_LINE 65	/* Number of "loading" hashes per line	*/  #define NFS_RETRY_COUNT 30 -#define NFS_TIMEOUT 2UL +#define NFS_TIMEOUT 2000UL  static int fs_mounted = 0;  static unsigned long rpc_id = 0; @@ -674,7 +674,7 @@ NfsHandler (uchar *pkt, unsigned dest, unsigned src, unsigned len)  	case STATE_READ_REQ:  		rlen = nfs_read_reply (pkt, len); -		NetSetTimeout (NFS_TIMEOUT * CFG_HZ, NfsTimeout); +		NetSetTimeout (NFS_TIMEOUT, NfsTimeout);  		if (rlen > 0) {  			nfs_offset += rlen;  			NfsSend (); @@ -763,7 +763,7 @@ NfsStart (void)  	printf ("\nLoad address: 0x%lx\n"  		"Loading: *\b", load_addr); -	NetSetTimeout (NFS_TIMEOUT * CFG_HZ, NfsTimeout); +	NetSetTimeout (NFS_TIMEOUT, NfsTimeout);  	NetSetHandler (NfsHandler);  	NfsTimeoutCount = 0; |