···7878 * stack will need to know about I/O vectors or something similar.7979 */80808181-/*8282- * sysctl_[wr]mem_max are checked at init time to see if they are at8383- * least 256KB and increased to 256KB if they are not. This is done to8484- * avoid ending up with socket buffers smaller than the MTU size,8585- */8686-8781static int __devinit rr_init_one(struct pci_dev *pdev,8882 const struct pci_device_id *ent)8983{···554560555561 sram_size = rr_read_eeprom_word(rrpriv, (void *)8);556562 printk(" SRAM size 0x%06x\n", sram_size);557557-558558- if (sysctl_rmem_max < 262144){559559- printk(" Receive socket buffer limit too low (%i), "560560- "setting to 262144\n", sysctl_rmem_max);561561- sysctl_rmem_max = 262144;562562- }563563-564564- if (sysctl_wmem_max < 262144){565565- printk(" Transmit socket buffer limit too low (%i), "566566- "setting to 262144\n", sysctl_wmem_max);567567- sysctl_wmem_max = 262144;568568- }569563570564 return 0;571565}