vnet: Fix a typo in a source code comment

- s/form/from/

MFC after:	3 days
This commit is contained in:
Zhenlei Huang 2023-04-17 18:24:35 +08:00
parent 1959e122d9
commit a7acce3491

View File

@ -245,7 +245,7 @@ vnet_alloc(void)
/*
* Allocate storage for virtualized global variables and copy in
* initial values form our 'master' copy.
* initial values from our 'master' copy.
*/
vnet->vnet_data_mem = malloc(VNET_SIZE, M_VNET_DATA, M_WAITOK);
memcpy(vnet->vnet_data_mem, (void *)VNET_START, VNET_BYTES);