You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The combination of kmalloc and memset can be replaced with
kzalloc, resulting in faster execution.
Reference results:
- kzalloc: 120 ns
- kmalloc: 350 ns, memset: 500 ns
0 commit comments