arm: rmobile: Add supoprt for KMC KZM-A9-GT board
[platform/kernel/u-boot.git] / net / nfs.h
index 712afa0..a5a1b43 100644 (file)
--- a/net/nfs.h
+++ b/net/nfs.h
 
 /* Block size used for NFS read accesses.  A RPC reply packet (including  all
  * headers) must fit within a single Ethernet frame to avoid fragmentation.
- * Chosen to be a power of two, as most NFS servers are optimized for this.  */
-#define NFS_READ_SIZE   1024
+ * However, if CONFIG_IP_DEFRAG is set, the config file may want to use a
+ * bigger value. In any case, most NFS servers are optimized for a power of 2.
+ */
+#ifdef CONFIG_NFS_READ_SIZE
+#define NFS_READ_SIZE CONFIG_NFS_READ_SIZE
+#else
+#define NFS_READ_SIZE 1024 /* biggest power of two that fits Ether frame */
+#endif
 
 #define NFS_MAXLINKDEPTH 16
 
@@ -66,7 +72,7 @@ struct rpc_t {
                } reply;
        } u;
 };
-extern void    NfsStart (void);        /* Begin NFS */
+extern void NfsStart(void);    /* Begin NFS */
 
 
 /**********************************************************************/