Merge pull request #1304 from mmichal10/missing-semicolons

Add missing semicolons in configure scripts
This commit is contained in:
Michał Mielewczyk 2022-08-11 14:57:47 +02:00 committed by GitHub
commit 24c0335234
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 31 additions and 31 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -10,7 +10,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "struct bio *b;blk_rq_append_bio(NULL, &b)" "linux/blkdev.h"
if compile_module $cur_name "struct bio *b;blk_rq_append_bio(NULL, &b);" "linux/blkdev.h"
then
echo $cur_name 1 >> $config_file_path
else

View File

@ -9,7 +9,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "struct gendisk *disk = NULL; struct xarray xa; xa = disk->part_tbl" "linux/genhd.h"
if compile_module $cur_name "struct gendisk *disk = NULL; struct xarray xa; xa = disk->part_tbl;" "linux/genhd.h"
then
echo $cur_name "1" >> $config_file_path
elif compile_module $cur_name "struct block_device bd; bd = *disk_part_iter_next(NULL);" "linux/blk_types.h"

View File

@ -9,7 +9,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "int n; n = BIO_MAX_VECS" "linux/bio.h"
if compile_module $cur_name "int n; n = BIO_MAX_VECS;" "linux/bio.h"
then
echo $cur_name 1 >> $config_file_path
else

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -9,7 +9,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "struct bio b;&bio_iovec(&b)" "linux/bio.h"
if compile_module $cur_name "struct bio b;&bio_iovec(&b);" "linux/bio.h"
then
echo $cur_name "1" >> $config_file_path
else

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -9,7 +9,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "blk_status_t t" "linux/blk_types.h"
if compile_module $cur_name "blk_status_t t;" "linux/blk_types.h"
then
echo $cur_name "1" >> $config_file_path
else

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -9,7 +9,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "deamonize(\"some_name\", NULL)" "linux/sched.h"
if compile_module $cur_name "deamonize(\"some_name\", NULL);" "linux/sched.h"
then
echo $cur_name "1" >> $config_file_path
else

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -9,7 +9,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "struct queue_limits q;q.discard_zeroes_data" "linux/blkdev.h"
if compile_module $cur_name "struct queue_limits q;q.discard_zeroes_data;" "linux/blkdev.h"
then
echo $cur_name "1" >> $config_file_path
else

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -9,7 +9,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "errno_to_blk_status(0)" "linux/blkdev.h"
if compile_module $cur_name "errno_to_blk_status(0);" "linux/blkdev.h"
then
echo $cur_name "1" >> $config_file_path
else

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -9,7 +9,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "kallsyms_on_each_symbol(NULL, NULL)" "linux/fs.h"
if compile_module $cur_name "kallsyms_on_each_symbol(NULL, NULL);" "linux/fs.h"
then
echo $cur_name "1" >> $config_file_path
else

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -9,7 +9,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "blk_queue_make_request" "linux/blkdev.h"
if compile_module $cur_name "blk_queue_make_request;" "linux/blkdev.h"
then
echo $cur_name "1" >> $config_file_path
elif compile_module $cur_name "struct request_queue *q; q->make_request_fn;" "linux/blkdev.h"

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -12,12 +12,12 @@ check() {
output=0
if compile_module $cur_name "BLK_MQ_F_STACKING " "linux/blk-mq.h"
if compile_module $cur_name "BLK_MQ_F_STACKING ;" "linux/blk-mq.h"
then
output=1
fi
if compile_module $cur_name "BLK_MQ_F_BLOCKING " "linux/blk-mq.h"
if compile_module $cur_name "BLK_MQ_F_BLOCKING ;" "linux/blk-mq.h"
then
output=$((output+2))
fi

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -12,7 +12,7 @@ check() {
if compile_module $cur_name "vm_munmap(0, 0); MAP_PRIVATE;" "linux/mm.h"
then
echo $cur_name "1" >> $config_file_path
elif compile_module $cur_name "do_munmap(NULL, 0)" "linux/mm.h"
elif compile_module $cur_name "do_munmap(NULL, 0);" "linux/mm.h"
then
echo $cur_name "2" >> $config_file_path
elif compile_module $cur_name "vm_munmap(0, 0); MAP_PRIVATE;" "linux/mm.h"\

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -9,7 +9,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "struct request_queue q;q.limits.chunk_sectors" "linux/blkdev.h"
if compile_module $cur_name "struct request_queue q;q.limits.chunk_sectors;" "linux/blkdev.h"
then
echo $cur_name "1" >> $config_file_path
else

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -9,7 +9,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "blk_queue_flag_set(0, NULL)" "linux/blkdev.h"
if compile_module $cur_name "blk_queue_flag_set(0, NULL);" "linux/blkdev.h"
then
echo $cur_name "1" >> $config_file_path
else

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -9,7 +9,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "ktime_get_real_ts64(NULL)" "linux/ktime.h"
if compile_module $cur_name "ktime_get_real_ts64(NULL);" "linux/ktime.h"
then
echo $cur_name "1" >> $config_file_path
else

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright(c) 2012-2021 Intel Corporation
# Copyright(c) 2012-2022 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
@ -9,7 +9,7 @@
check() {
cur_name=$(basename $2)
config_file_path=$1
if compile_module $cur_name "struct bio b;b.bi_write_hint" "linux/bio.h"
if compile_module $cur_name "struct bio b;b.bi_write_hint;" "linux/bio.h"
then
echo $cur_name "1" >> $config_file_path
else