HPA/DOC detection, handle the case where native_max is null.
This commit is contained in:
parent
389f2b1e33
commit
08508476eb
1 changed files with 13 additions and 8 deletions
21
src/hidden.c
21
src/hidden.c
|
@ -31,14 +31,19 @@
|
||||||
|
|
||||||
int is_hpa_or_dco(const disk_t *disk)
|
int is_hpa_or_dco(const disk_t *disk)
|
||||||
{
|
{
|
||||||
if(disk->user_max>0 && (disk->user_max < disk->native_max+1 || disk->native_max < disk->dco))
|
int res=0;
|
||||||
|
if(disk->user_max > 0 && disk->user_max < disk->native_max+1)
|
||||||
{
|
{
|
||||||
if(disk->user_max < disk->native_max+1)
|
log_warning("%s: Host Protected Area (HPA) present.\n", disk->device);
|
||||||
log_warning("%s: Host Protected Area (HPA) present.\n", disk->device);
|
res=1;
|
||||||
if(disk->native_max < disk->dco)
|
|
||||||
log_warning("%s: Device Configuration Overlay (DCO) present.\n", disk->device);
|
|
||||||
log_flush();
|
|
||||||
return 1;
|
|
||||||
}
|
}
|
||||||
return 0;
|
if((disk->user_max> 0 && disk->native_max < disk->dco) ||
|
||||||
|
(disk->native_max == 0 && disk->user_max > 0 && disk->user_max < disk->dco))
|
||||||
|
{
|
||||||
|
log_warning("%s: Device Configuration Overlay (DCO) present.\n", disk->device);
|
||||||
|
res=1;
|
||||||
|
}
|
||||||
|
if(res>0)
|
||||||
|
log_flush();
|
||||||
|
return res;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue