mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
rocker: forbid to change world type
Port to world assignment should be permitted only by qemu user. Driver should not be able to do it, so forbid that possibility. Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
parent
9fbad2ca36
commit
0ab9cd9a4b
3 changed files with 13 additions and 1 deletions
|
@ -186,6 +186,11 @@ void fp_port_set_world(FpPort *port, World *world)
|
|||
port->world = world;
|
||||
}
|
||||
|
||||
bool fp_port_check_world(FpPort *port, World *world)
|
||||
{
|
||||
return port->world == world;
|
||||
}
|
||||
|
||||
bool fp_port_enabled(FpPort *port)
|
||||
{
|
||||
return port->enabled;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue