Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F109373271
D44029.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D44029.diff
View Options
diff --git a/usr.sbin/efibootmgr/efibootmgr.c b/usr.sbin/efibootmgr/efibootmgr.c
--- a/usr.sbin/efibootmgr/efibootmgr.c
+++ b/usr.sbin/efibootmgr/efibootmgr.c
@@ -561,7 +561,7 @@
make_next_boot_var_name(void)
{
struct entry *v;
- uint16_t *vals, next_free = 0;
+ uint16_t *vals;
char *name;
int cnt = 0;
int i;
@@ -579,21 +579,14 @@
vals[i++] = v->idx;
}
qsort(vals, cnt, sizeof(uint16_t), compare);
- /* if the hole is at the beginning, just return zero */
- if (vals[0] > 0) {
- next_free = 0;
- } else {
- /* now just run the list looking for the first hole */
- for (i = 0; i < cnt - 1 && next_free == 0; i++)
- if (vals[i] + 1 != vals[i + 1])
- next_free = vals[i] + 1;
- if (next_free == 0)
- next_free = vals[cnt - 1] + 1;
- /* In theory we could have used all 65k slots -- what to do? */
- }
+ /* Find the first hole (could be at start or end) */
+ for (i = 0; i < cnt; ++i)
+ if (vals[i] != i)
+ break;
free(vals);
+ /* In theory we could have used all 65k slots -- what to do? */
- asprintf(&name, "%s%04X", "Boot", next_free);
+ asprintf(&name, "%s%04X", "Boot", i);
if (name == NULL)
err(1, "asprintf");
return name;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Feb 5, 5:32 AM (21 h, 45 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16468058
Default Alt Text
D44029.diff (1 KB)
Attached To
Mode
D44029: efibootmgr: Simplify make_next_boot_var_name and fix cnt == 0 case
Attached
Detach File
Event Timeline
Log In to Comment