Commit 88b13609 authored by Stephen Kitt's avatar Stephen Kitt Committed by Martin K. Petersen

scsi: aic7xxx: aic79xx: remove VLAs

In preparation to enabling -Wvla, remove VLAs and replace them with
fixed-length arrays instead.

The arrays fixed here, using the number of constant sections, aren't
really VLAs, but they appear so to the compiler. Replace the array sizes
with a pre-processor-level constant instead using ARRAY_SIZE.

This was prompted by https://lkml.org/lkml/2018/3/7/621Signed-off-by: default avatarStephen Kitt <steve@sk2.org>
Reviewed-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 2e8c3002
...@@ -9338,9 +9338,9 @@ ahd_dumpseq(struct ahd_softc* ahd) ...@@ -9338,9 +9338,9 @@ ahd_dumpseq(struct ahd_softc* ahd)
static void static void
ahd_loadseq(struct ahd_softc *ahd) ahd_loadseq(struct ahd_softc *ahd)
{ {
struct cs cs_table[num_critical_sections]; struct cs cs_table[NUM_CRITICAL_SECTIONS];
u_int begin_set[num_critical_sections]; u_int begin_set[NUM_CRITICAL_SECTIONS];
u_int end_set[num_critical_sections]; u_int end_set[NUM_CRITICAL_SECTIONS];
const struct patch *cur_patch; const struct patch *cur_patch;
u_int cs_count; u_int cs_count;
u_int cur_cs; u_int cur_cs;
...@@ -9456,7 +9456,7 @@ ahd_loadseq(struct ahd_softc *ahd) ...@@ -9456,7 +9456,7 @@ ahd_loadseq(struct ahd_softc *ahd)
* Move through the CS table until we find a CS * Move through the CS table until we find a CS
* that might apply to this instruction. * that might apply to this instruction.
*/ */
for (; cur_cs < num_critical_sections; cur_cs++) { for (; cur_cs < NUM_CRITICAL_SECTIONS; cur_cs++) {
if (critical_sections[cur_cs].end <= i) { if (critical_sections[cur_cs].end <= i) {
if (begin_set[cs_count] == TRUE if (begin_set[cs_count] == TRUE
&& end_set[cs_count] == FALSE) { && end_set[cs_count] == FALSE) {
......
...@@ -1186,5 +1186,4 @@ static const struct cs { ...@@ -1186,5 +1186,4 @@ static const struct cs {
{ 759, 763 } { 759, 763 }
}; };
static const int num_critical_sections = sizeof(critical_sections) #define NUM_CRITICAL_SECTIONS ARRAY_SIZE(critical_sections)
/ sizeof(*critical_sections);
...@@ -6848,9 +6848,9 @@ ahc_dumpseq(struct ahc_softc* ahc) ...@@ -6848,9 +6848,9 @@ ahc_dumpseq(struct ahc_softc* ahc)
static int static int
ahc_loadseq(struct ahc_softc *ahc) ahc_loadseq(struct ahc_softc *ahc)
{ {
struct cs cs_table[num_critical_sections]; struct cs cs_table[NUM_CRITICAL_SECTIONS];
u_int begin_set[num_critical_sections]; u_int begin_set[NUM_CRITICAL_SECTIONS];
u_int end_set[num_critical_sections]; u_int end_set[NUM_CRITICAL_SECTIONS];
const struct patch *cur_patch; const struct patch *cur_patch;
u_int cs_count; u_int cs_count;
u_int cur_cs; u_int cur_cs;
...@@ -6915,7 +6915,7 @@ ahc_loadseq(struct ahc_softc *ahc) ...@@ -6915,7 +6915,7 @@ ahc_loadseq(struct ahc_softc *ahc)
* Move through the CS table until we find a CS * Move through the CS table until we find a CS
* that might apply to this instruction. * that might apply to this instruction.
*/ */
for (; cur_cs < num_critical_sections; cur_cs++) { for (; cur_cs < NUM_CRITICAL_SECTIONS; cur_cs++) {
if (critical_sections[cur_cs].end <= i) { if (critical_sections[cur_cs].end <= i) {
if (begin_set[cs_count] == TRUE if (begin_set[cs_count] == TRUE
&& end_set[cs_count] == FALSE) { && end_set[cs_count] == FALSE) {
......
...@@ -1304,5 +1304,4 @@ static const struct cs { ...@@ -1304,5 +1304,4 @@ static const struct cs {
{ 875, 877 } { 875, 877 }
}; };
static const int num_critical_sections = sizeof(critical_sections) #define NUM_CRITICAL_SECTIONS ARRAY_SIZE(critical_sections)
/ sizeof(*critical_sections);
...@@ -451,8 +451,7 @@ output_code() ...@@ -451,8 +451,7 @@ output_code()
fprintf(ofile, "\n};\n\n"); fprintf(ofile, "\n};\n\n");
fprintf(ofile, fprintf(ofile,
"static const int num_critical_sections = sizeof(critical_sections)\n" "#define NUM_CRITICAL_SECTIONS ARRAY_SIZE(critical_sections)\n");
" / sizeof(*critical_sections);\n");
fprintf(stderr, "%s: %d instructions used\n", appname, instrcount); fprintf(stderr, "%s: %d instructions used\n", appname, instrcount);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment