|
Packit |
6639f8 |
// Copyright(c) 2018-2019, Intel Corporation
|
|
Packit |
6639f8 |
//
|
|
Packit |
6639f8 |
// Redistribution and use in source and binary forms, with or without
|
|
Packit |
6639f8 |
// modification, are permitted provided that the following conditions are met:
|
|
Packit |
6639f8 |
//
|
|
Packit |
6639f8 |
// * Redistributions of source code must retain the above copyright notice,
|
|
Packit |
6639f8 |
// this list of conditions and the following disclaimer.
|
|
Packit |
6639f8 |
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
Packit |
6639f8 |
// this list of conditions and the following disclaimer in the documentation
|
|
Packit |
6639f8 |
// and/or other materials provided with the distribution.
|
|
Packit |
6639f8 |
// * Neither the name of Intel Corporation nor the names of its contributors
|
|
Packit |
6639f8 |
// may be used to endorse or promote products derived from this software
|
|
Packit |
6639f8 |
// without specific prior written permission.
|
|
Packit |
6639f8 |
//
|
|
Packit |
6639f8 |
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
Packit |
6639f8 |
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
Packit |
6639f8 |
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
Packit |
6639f8 |
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
Packit |
6639f8 |
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
Packit |
6639f8 |
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
Packit |
6639f8 |
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
Packit |
6639f8 |
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
Packit |
6639f8 |
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
Packit |
6639f8 |
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
Packit |
6639f8 |
// POSSIBILITY OF SUCH DAMAGE.
|
|
Packit |
6639f8 |
|
|
Packit |
6639f8 |
#ifdef HAVE_CONFIG_H
|
|
Packit |
6639f8 |
#include <config.h>
|
|
Packit |
6639f8 |
#endif // HAVE_CONFIG_H
|
|
Packit |
6639f8 |
|
|
Packit |
6639f8 |
#include "device_monitoring.h"
|
|
Packit |
6639f8 |
|
|
Packit |
6639f8 |
#ifdef LOG
|
|
Packit |
6639f8 |
#undef LOG
|
|
Packit |
6639f8 |
#endif
|
|
Packit |
6639f8 |
#define LOG(format, ...) \
|
|
Packit |
6639f8 |
log_printf("device_monitoring: " format, ##__VA_ARGS__)
|
|
Packit |
6639f8 |
|
|
Packit |
6639f8 |
bool mon_has_error_occurred(fpgad_monitored_device *d, void *err)
|
|
Packit |
6639f8 |
{
|
|
Packit |
6639f8 |
unsigned i;
|
|
Packit |
6639f8 |
for (i = 0 ; i < d->num_error_occurrences ; ++i) {
|
|
Packit |
6639f8 |
if (err == d->error_occurrences[i])
|
|
Packit |
6639f8 |
return true;
|
|
Packit |
6639f8 |
}
|
|
Packit |
6639f8 |
return false;
|
|
Packit |
6639f8 |
}
|
|
Packit |
6639f8 |
|
|
Packit |
6639f8 |
bool mon_add_device_error(fpgad_monitored_device *d, void *err)
|
|
Packit |
6639f8 |
{
|
|
Packit |
6639f8 |
if (d->num_error_occurrences <
|
|
Packit |
6639f8 |
(sizeof(d->error_occurrences) /
|
|
Packit |
6639f8 |
sizeof(d->error_occurrences[0]))) {
|
|
Packit |
6639f8 |
d->error_occurrences[d->num_error_occurrences++] = err;
|
|
Packit |
6639f8 |
return true;
|
|
Packit |
6639f8 |
}
|
|
Packit |
6639f8 |
LOG("exceeded max number of device errors!\n");
|
|
Packit |
6639f8 |
return false;
|
|
Packit |
6639f8 |
}
|
|
Packit |
6639f8 |
|
|
Packit |
6639f8 |
void mon_remove_device_error(fpgad_monitored_device *d, void *err)
|
|
Packit |
6639f8 |
{
|
|
Packit |
6639f8 |
unsigned i;
|
|
Packit |
6639f8 |
unsigned j;
|
|
Packit |
6639f8 |
unsigned removed = 0;
|
|
Packit |
6639f8 |
for (i = j = 0 ; i < d->num_error_occurrences ; ++i) {
|
|
Packit |
6639f8 |
if (d->error_occurrences[i] != err)
|
|
Packit |
6639f8 |
d->error_occurrences[j++] = d->error_occurrences[i];
|
|
Packit |
6639f8 |
else
|
|
Packit |
6639f8 |
++removed;
|
|
Packit |
6639f8 |
}
|
|
Packit |
6639f8 |
d->num_error_occurrences -= removed;
|
|
Packit |
6639f8 |
}
|