diff mbox

[U-Boot,RFC,v3] net: nfs: make NFS_TIMEOUT configurable

Message ID 4FF3FDF1.2020509@kmckk.co.jp
State Accepted
Commit 48a3e999c86e7e6033133152b07a308def559d46
Delegated to: Joe Hershberger
Headers show

Commit Message

Tetsuyuki Kobayashi July 4, 2012, 8:25 a.m. UTC
NFS_TIMEOUT is constant value defined in net/nfs.c. But sometimes it needs to adjust.
This patch enables to override NFS_TIMEOUT by defining CONFIG_NFS_TIMEOUT in a board specific config file.

Signed-off-by: Tetsuyuki Kobayashi <koba@kmckk.co.jp>
---
Changes for v2:
   - remove a wrong #error line
Changes for v3:
   - add CONFIG_NFS_TIMEOUT after CONFIG_ARP_TIMEOUT in README file
   - align #ifndef - #else - #endif format as same as tftp.c

 README    |    7 +++++++
 net/nfs.c |    6 +++++-
 2 files changed, 12 insertions(+), 1 deletion(-)

Comments

Tetsuyuki Kobayashi July 12, 2012, 7:30 a.m. UTC | #1
Dear Joe Hershberger,

How is this patch's status?

(2012/07/04 17:25), Tetsuyuki Kobayashi wrote:
> NFS_TIMEOUT is constant value defined in net/nfs.c. But sometimes it needs to adjust.
> This patch enables to override NFS_TIMEOUT by defining CONFIG_NFS_TIMEOUT in a board specific config file.
>
> Signed-off-by: Tetsuyuki Kobayashi <koba@kmckk.co.jp>
> ---
> Changes for v2:
>     - remove a wrong #error line
> Changes for v3:
>     - add CONFIG_NFS_TIMEOUT after CONFIG_ARP_TIMEOUT in README file
>     - align #ifndef - #else - #endif format as same as tftp.c
>
>   README    |    7 +++++++
>   net/nfs.c |    6 +++++-
>   2 files changed, 12 insertions(+), 1 deletion(-)
>
> diff --git a/README b/README
> index 67dc444..9a18a5c 100644
> --- a/README
> +++ b/README
> @@ -2140,6 +2140,13 @@ The following options need to be configured:
>
>   		Timeout waiting for an ARP reply in milliseconds.
>
> +		CONFIG_NFS_TIMEOUT
> +
> +		Timeout in milliseconds used in NFS protocol.
> +		If you encounter "ERROR: Cannot umount" in nfs command,
> +		try longer timeout such as
> +		#define CONFIG_NFS_TIMEOUT 10000UL
> +
>   - Command Interpreter:
>   		CONFIG_AUTO_COMPLETE
>
> diff --git a/net/nfs.c b/net/nfs.c
> index 5b99763..7f2393f 100644
> --- a/net/nfs.c
> +++ b/net/nfs.c
> @@ -31,7 +31,11 @@
>
>   #define HASHES_PER_LINE 65	/* Number of "loading" hashes per line	*/
>   #define NFS_RETRY_COUNT 30
> -#define NFS_TIMEOUT 2000UL
> +#ifndef CONFIG_NFS_TIMEOUT
> +# define NFS_TIMEOUT 2000UL
> +#else
> +# define NFS_TIMEOUT CONFIG_NFS_TIMEOUT
> +#endif
>
>   static int fs_mounted;
>   static unsigned long rpc_id;
>
Joe Hershberger July 12, 2012, 4:16 p.m. UTC | #2
Hi Tetsuyuki Kobayashi,

On Thu, Jul 12, 2012 at 2:30 AM, Tetsuyuki Kobayashi <koba@kmckk.co.jp> wrote:
> Dear Joe Hershberger,
>
> How is this patch's status?

Someone marked it as RFC in patchwork, so I lost track of it.

I'll apply it to next.

Thanks,
-Joe
Tom Rini July 12, 2012, 4:30 p.m. UTC | #3
On Thu, Jul 12, 2012 at 11:16:00AM -0500, Joe Hershberger wrote:
> Hi Tetsuyuki Kobayashi,
> 
> On Thu, Jul 12, 2012 at 2:30 AM, Tetsuyuki Kobayashi <koba@kmckk.co.jp> wrote:
> > Dear Joe Hershberger,
> >
> > How is this patch's status?
> 
> Someone marked it as RFC in patchwork, so I lost track of it.

That would be me (went and took everything with RFC in the subject,
marked it as RFC).  Sorry for the inconvienece!
Joe Hershberger July 12, 2012, 4:40 p.m. UTC | #4
Hi Tom,

On Thu, Jul 12, 2012 at 11:30 AM, Tom Rini <trini@ti.com> wrote:
> On Thu, Jul 12, 2012 at 11:16:00AM -0500, Joe Hershberger wrote:
>> Hi Tetsuyuki Kobayashi,
>>
>> On Thu, Jul 12, 2012 at 2:30 AM, Tetsuyuki Kobayashi <koba@kmckk.co.jp> wrote:
>> > Dear Joe Hershberger,
>> >
>> > How is this patch's status?
>>
>> Someone marked it as RFC in patchwork, so I lost track of it.
>
> That would be me (went and took everything with RFC in the subject,
> marked it as RFC).  Sorry for the inconvienece!

No problem... the RFC should have been removed from the subject line
if Tetsuyuki Kobayashi expected it to be applied.

Thanks,
-Joe
Tetsuyuki Kobayashi July 12, 2012, 9:48 p.m. UTC | #5
Hi Joe, Tom,

(2012/07/13 1:40), Joe Hershberger wrote:
> Hi Tom,
>
> On Thu, Jul 12, 2012 at 11:30 AM, Tom Rini <trini@ti.com> wrote:
>> On Thu, Jul 12, 2012 at 11:16:00AM -0500, Joe Hershberger wrote:
>>> Hi Tetsuyuki Kobayashi,
>>>
>>> On Thu, Jul 12, 2012 at 2:30 AM, Tetsuyuki Kobayashi <koba@kmckk.co.jp> wrote:
>>>> Dear Joe Hershberger,
>>>>
>>>> How is this patch's status?
>>>
>>> Someone marked it as RFC in patchwork, so I lost track of it.
>>
>> That would be me (went and took everything with RFC in the subject,
>> marked it as RFC).  Sorry for the inconvienece!
>
> No problem... the RFC should have been removed from the subject line
> if Tetsuyuki Kobayashi expected it to be applied.

OK. I will do so in next time. Thank you.
diff mbox

Patch

diff --git a/README b/README
index 67dc444..9a18a5c 100644
--- a/README
+++ b/README
@@ -2140,6 +2140,13 @@  The following options need to be configured:
 
 		Timeout waiting for an ARP reply in milliseconds.
 
+		CONFIG_NFS_TIMEOUT
+
+		Timeout in milliseconds used in NFS protocol.
+		If you encounter "ERROR: Cannot umount" in nfs command,
+		try longer timeout such as
+		#define CONFIG_NFS_TIMEOUT 10000UL
+
 - Command Interpreter:
 		CONFIG_AUTO_COMPLETE
 
diff --git a/net/nfs.c b/net/nfs.c
index 5b99763..7f2393f 100644
--- a/net/nfs.c
+++ b/net/nfs.c
@@ -31,7 +31,11 @@ 
 
 #define HASHES_PER_LINE 65	/* Number of "loading" hashes per line	*/
 #define NFS_RETRY_COUNT 30
-#define NFS_TIMEOUT 2000UL
+#ifndef CONFIG_NFS_TIMEOUT
+# define NFS_TIMEOUT 2000UL
+#else
+# define NFS_TIMEOUT CONFIG_NFS_TIMEOUT
+#endif
 
 static int fs_mounted;
 static unsigned long rpc_id;