4.7-RELEASE 使っています.
パッチが二つ出た時って,

# cd /usr/src
# patch < patch1
# make buildkernel && make installkernel && shutdown -r now
# cd /usr/src
# patch < patch2
# make buildkernel && make installkernel && shutdown -r now

とかせずに,

# cd /usr/src
# patch < patch1
# patch < patch2
# make buildkernel && make installkernel && shutdown -r now

としてコンパイルの手間省いても大丈夫ですか?