File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ int main(int argc, char **argv)
270
270
271
271
/* Write out the stripped VDSO data. */
272
272
fprintf (out_file ,
273
- "static unsigned char vdso_data [PAGE_ALIGN(%zu)] __page_aligned_data = {\n\t" ,
273
+ "static unsigned char vdso_image_data [PAGE_ALIGN(%zu)] __page_aligned_data = {\n\t" ,
274
274
vdso_size );
275
275
for (i = 0 ; i < vdso_size ; i ++ ) {
276
276
if (!(i % 10 ))
@@ -286,7 +286,7 @@ int main(int argc, char **argv)
286
286
287
287
fprintf (out_file , "struct mips_vdso_image vdso_image%s%s = {\n" ,
288
288
(vdso_name [0 ]) ? "_" : "" , vdso_name );
289
- fprintf (out_file , "\t.data = vdso_data ,\n" );
289
+ fprintf (out_file , "\t.data = vdso_image_data ,\n" );
290
290
fprintf (out_file , "\t.size = PAGE_ALIGN(%zu),\n" , vdso_size );
291
291
fprintf (out_file , "\t.mapping = {\n" );
292
292
fprintf (out_file , "\t\t.name = \"[vdso]\",\n" );
You can’t perform that action at this time.
0 commit comments