On 2011-03-18, [email protected] <[email protected]> wrote: > Hi, guys. > > I'm learning about PCI and started looking at the bge driver. > > I grepped on an error message that I found in the bge man page to find the bge > source file, but grep didn't find it in if_bge.c, but did find it in lge.c. > > Is the man page incorrect for bge, or have I missed something (cluesticks, > please!)?
bge's jumbo buffer allocator was removed, bge(4) uses MCLGETI instead now which means you don't need a big pre-allocated wedge of kernel memory to hold buffers for jumbo frames which you probably never use. so, the "no memory for jumbo buffer queue" can be removed from the manual.

