Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Feb 2019 18:46:31 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r344374 - stable/11/stand/efi/boot1
Message-ID:  <201902201846.x1KIkV65004485@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Wed Feb 20 18:46:31 2019
New Revision: 344374
URL: https://svnweb.freebsd.org/changeset/base/344374

Log:
  MFC r335773: Revert preference to be an int.
  
  While in base we use it as a boolean (of the wrong spelling), there's
  at least one out of tree user that needs it to be int since priorirty
  is a small int, not a 0/1. In deference to the time it's wasted me and
  my team, push this up into FreeBSD for whatever short life boot1 may
  have in the tree.

Modified:
  stable/11/stand/efi/boot1/boot_module.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/stand/efi/boot1/boot_module.h
==============================================================================
--- stable/11/stand/efi/boot1/boot_module.h	Wed Feb 20 18:44:09 2019	(r344373)
+++ stable/11/stand/efi/boot1/boot_module.h	Wed Feb 20 18:46:31 2019	(r344374)
@@ -51,7 +51,7 @@ typedef struct dev_info
 	EFI_HANDLE *devhandle;
 	void *devdata;
 	uint64_t partoff;
-	BOOLEAN preferred;
+	int preferred;
 	struct dev_info *next;
 } dev_info_t;
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902201846.x1KIkV65004485>