speculative_execution patch and jails

I upgrade my FreeBSD 11 to p8 (host) using this method:

https://www.freebsd.org/doc/handbook/makeworld.html

I run a jail in this server created before the p8.

If I understand it correctly the speculative_execution patch is related to "kernel" and not "world", so is it safe to not upgrade the jail?

If I want to upgrade the jail are these commands correct?

Code:
cd /usr/src
make installworld DESTDIR=/home/jail/php56
mergemaster -i -C -D /home/jail/php56
 
If I understand it correctly the speculative_execution patch is related to "kernel" and not "world", so is it safe to not upgrade the jail?
A jail uses the host's kernel and doesn't have a kernel of its own.
 
Back
Top