File ppc64-diag.varunused.patch of Package ppc64-diag
Index: ppc64-diag-2.6.4/diags/7031_D24_T24.c
===================================================================
--- ppc64-diag-2.6.4.orig/diags/7031_D24_T24.c
+++ ppc64-diag-2.6.4/diags/7031_D24_T24.c
@@ -69,7 +69,8 @@ get_enclosure_scsi_id(struct pearl_diag_
static int
print_drive_status(uint32_t status)
{
- int fail = 0, printed = 0, rc = OK;
+ __attribute__((unused)) int fail = 0;
+ int printed = 0, rc = OK;
if ((status & 0x0F000000) == 0x05000000) {
printf("(empty) ");
@@ -167,7 +168,8 @@ print_ps_fan_status(uint32_t status)
static int
print_repeater_status(uint32_t status)
{
- int printed = 0, fail = 0, rc = OK;
+ int printed = 0, rc = OK;
+ __attribute__((unused)) int fail = 0;
if ((status & 0x0F000000) == 0x01000000)
printf("ok ");
@@ -351,7 +353,8 @@ int
diag_7031_D24_T24(int fd, struct dev_vpd *vpd)
{
struct pearl_diag_page2 dp;
- int failure = 0, rc, encl_id;
+ int failure = 0, encl_id;
+ __attribute__((unused)) int rc;
int buf_len = sizeof(dp);
int ps1, ps2, fan1, fan2, fan3, rpt, vpd_card;
Index: ppc64-diag-2.6.4/rtas_errd/ela.c
===================================================================
--- ppc64-diag-2.6.4.orig/rtas_errd/ela.c
+++ ppc64-diag-2.6.4/rtas_errd/ela.c
@@ -1787,7 +1787,7 @@ process_v1_epow(struct event *event, int
int class;
int ext_epow;
int ext_epow_nofan;
- int fan_num;
+ __attribute__((unused)) int fan_num;
/*
* The following EPOW error logs found in CHRP, Ver. 1
Index: ppc64-diag-2.6.4/rtas_errd/epow.c
===================================================================
--- ppc64-diag-2.6.4.orig/rtas_errd/epow.c
+++ ppc64-diag-2.6.4/rtas_errd/epow.c
@@ -48,7 +48,7 @@ static int time_remaining = 0;
void
epow_timer_handler(int sig, siginfo_t siginfo, void *context)
{
- int rc, state;
+ int __attribute__((unused)) rc, state;
struct itimerval tv;
if (time_remaining <= 0) {
@@ -149,7 +149,7 @@ parse_epow(struct event *event)
struct rtas_epow_scn *epow;
struct itimerval tv;
char *event_type;
- int rc, state;
+ int __attribute__((unused)) rc, state;
/*
* Check the sensor state; this will be used to ensure
@@ -380,7 +380,7 @@ check_epow(struct event *event)
{
pid_t child;
char *childargs[2];
- int rc, current_status;
+ int __attribute__((unused)) rc, current_status;
/*
* Dissect the EPOW extended error information;
Index: ppc64-diag-2.6.4/rtas_errd/files.c
===================================================================
--- ppc64-diag-2.6.4.orig/rtas_errd/files.c
+++ ppc64-diag-2.6.4/rtas_errd/files.c
@@ -161,7 +161,7 @@ setup_rtas_event_scenario(void)
{
struct stat sbuf;
char *tmp;
- int fd, len;
+ int fd, __attribute__((unused)) len;
int i;
if (scenario_file == NULL)
Index: ppc64-diag-2.6.4/rtas_errd/guard.c
===================================================================
--- ppc64-diag-2.6.4.orig/rtas_errd/guard.c
+++ ppc64-diag-2.6.4/rtas_errd/guard.c
@@ -40,7 +40,7 @@ run_drmgr(enum resource_dealloc_type res
unsigned int value, int wait)
{
pid_t child;
- int status, rc;
+ int status, __attribute__((unused)) rc;
char capacity[6], quant_str[5];
char *drmgr_args[] = {DRMGR_PROGRAM_NOPATH, "-r", "-c", NULL,
NULL, NULL, NULL, NULL, NULL};