Browse Source

[block] Use intfs_shutdown() when shutting down multiple interfaces

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 7 years ago
parent
commit
9423a85f71
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      src/core/sanboot.c

+ 1
- 2
src/core/sanboot.c View File

171
 static void sandev_restart ( struct san_device *sandev, int rc ) {
171
 static void sandev_restart ( struct san_device *sandev, int rc ) {
172
 
172
 
173
 	/* Restart block device interface */
173
 	/* Restart block device interface */
174
-	intf_nullify ( &sandev->command ); /* avoid potential loops */
175
-	intf_restart ( &sandev->block, rc );
174
+	intfs_restart ( rc, &sandev->command, &sandev->block, NULL );
176
 
175
 
177
 	/* Close any outstanding command */
176
 	/* Close any outstanding command */
178
 	sandev_command_close ( sandev, rc );
177
 	sandev_command_close ( sandev, rc );

Loading…
Cancel
Save