A kernel was modified to keep stats on the function vm_page_grab_pages_unlocked: number calls, number of cycles spent, and number of pages returned.
Here are stats from running the sendfile17.sh stress test once, without and with this change in place.
Without:
```
vm.stats.grab_count: 96475 1.2148055807393976 count/call
vm.stats.grab_cycles: 755609782 9514.578699506397 cycles/call
vm.stats.grab_calls: 79416
```
With:
```
vm.stats.grab_count: 1026495 1.0169458782036676 count/call
vm.stats.grab_cycles: 4618535619 4575.571007241998 cycles/call
vm.stats.grab_calls: 1009390
```