| * (C) Masami Komiya <mkomiya@sonare.it> 2004 |
| * This program is free software; you can redistribute it and/or |
| * modify it under the terms of the GNU General Public License as |
| * published by the Free Software Foundation; either version 2, or (at |
| * your option) any later version. |
| #define PROG_PORTMAP 100000 |
| #define PROG_MOUNT 100005 |
| #define PORTMAP_GETPORT 3 |
| #define MOUNT_UMOUNTALL 4 |
| /* Block size used for NFS read accesses. A RPC reply packet (including all |
| * headers) must fit within a single Ethernet frame to avoid fragmentation. |
| * 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 |
| #define NFS_READ_SIZE 1024 /* biggest power of two that fits Ether frame */ |
| #define NFS_MAXLINKDEPTH 16 |
| extern void NfsStart(void); /* Begin NFS */ |
| /**********************************************************************/ |