Mercurial > flash_v2
changeset 292:918b1f4e9403
CDL for SG list size used by all drivers.
| author | gthomas |
|---|---|
| date | Wed, 14 Aug 2002 13:20:13 +0000 |
| parents | c1c3d5198fe3 |
| children | 838adaba1b2a |
| files | packages/io/eth/current/ChangeLog packages/io/eth/current/cdl/eth_drivers.cdl |
| diffstat | 2 files changed, 16 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/io/eth/current/ChangeLog +++ b/packages/io/eth/current/ChangeLog @@ -1,3 +1,8 @@ +2002-08-14 Gary Thomas <gthomas@ecoscentric.com> + + * cdl/eth_drivers.cdl: CYGNUM_IO_ETH_DRIVERS_SG_LIST_SIZE + needs to be global (used by all drivers, not just NET). + 2002-08-13 Gary Thomas <gthomas@ecoscentric.com> * src/net/eth_drv.c (eth_drv_send): Print a better message
--- a/packages/io/eth/current/cdl/eth_drivers.cdl +++ b/packages/io/eth/current/cdl/eth_drivers.cdl @@ -86,6 +86,17 @@ cdl_package CYGPKG_IO_ETH_DRIVERS { } } + cdl_option CYGNUM_IO_ETH_DRIVERS_SG_LIST_SIZE { + display "Size of scatter-gather I/O lists" + flavor data + default_value 32 + description " + A scatter-gather list is used to pass requests to/from + the physical device driver. This list can typically be + small, as the data is normally already packed into reasonable + chunks." + } + cdl_component CYGPKG_IO_ETH_DRIVERS_NET { display "Support for standard eCos TCP/IP stack." flavor bool @@ -109,17 +120,6 @@ cdl_package CYGPKG_IO_ETH_DRIVERS { properties of the system even in extremis." } - cdl_option CYGNUM_IO_ETH_DRIVERS_SG_LIST_SIZE { - display "Size of scatter-gather I/O lists" - flavor data - default_value 32 - description " - A scatter-gather list is used to pass requests to/from - the physical device driver. This list can typically be - small, as the data is normally already packed into reasonable - chunks." - } - cdl_component CYGPKG_IO_ETH_DRIVERS_SIMULATED_FAILURES { display "Simulate network failures for testing" flavor bool
