#!/bin/sh

find /sys/kernel/slab -name 'cpu_partial' -print | \
     while read f; do echo 0 > $f; done
