#!/bin/sh

nm --size-sort vmlinux \
| grep -iF ' t ' \
| uniq -c | grep -v '^ *1 ' | sort -rn
