Added scsi_tgt-related source files.

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@2171 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2010-09-22 18:59:04 +00:00
parent 1f709fecfe
commit 780d8b439c
2 changed files with 33 additions and 10 deletions

View File

@@ -549,12 +549,25 @@ add_file "scst_local/README" "Documentation/scst/README.scst_local" \
{
( cd ibmvstgt && ./generate-in-tree-patches "${kernel_version}" )
if [ -e "ibmvstgt/in-tree-patches/${kernel_version}" ]; then
add_patch "ibmvstgt/in-tree-patches/${kernel_version}/libsrp.h.patch" \
"include/scsi/libsrp.h"
add_patch "ibmvstgt/in-tree-patches/${kernel_version}/libsrp.c.patch" \
"drivers/scsi/libsrp.c"
add_patch "ibmvstgt/in-tree-patches/${kernel_version}/ibmvstgt.c.patch" \
"drivers/scsi/ibmvscsi/ibmvstgt.c"
for f in \
drivers/scsi/Kconfig \
drivers/scsi/ibmvscsi/ibmvstgt.c \
drivers/scsi/libsrp.c \
drivers/scsi/scsi_sysfs.c \
drivers/scsi/scsi_tgt_if.c \
drivers/scsi/scsi_tgt_lib.c \
drivers/scsi/scsi_tgt_priv.h \
drivers/scsi/scsi_transport_fc.c \
drivers/scsi/scsi_transport_fc_internal.h \
drivers/scsi/scsi_transport_srp.c \
drivers/scsi/scsi_transport_srp_internal.h \
include/scsi/libsrp.h \
include/scsi/scsi_host.h \
include/scsi/scsi_tgt.h \
include/scsi/scsi_tgt_if.h
do
add_patch "ibmvstgt/in-tree-patches/${kernel_version}/$(basename $f).patch" $f
done
fi
} \
| process_patch "ibmvstgt.diff"

View File

@@ -382,17 +382,20 @@ function compile_kernel {
# For more information about endianness annotations, see also
# http://lwn.net/Articles/205624/.
function run_sparse {
local k="$1"
local kver="$(kernel_version $1)"
local plevel="$(patchlevel $1)"
local outputfile="${outputdir}/sparse-$1-output.txt"
local subdir="$2"
shift
shift
echo "Running sparse on the patched kernel ..."
(
cd "${outputdir}/linux-$1" \
echo "Running sparse on the patched kernel in ${subdir} $@ ..."
(
cd "${outputdir}/linux-$k" \
&& make -s prepare \
&& make -s scripts \
&& LC_ALL=C make -k C=2 CF=-D__CHECK_ENDIAN__ M="${subdir}"
&& LC_ALL=C make -k C=2 CF=-D__CHECK_ENDIAN__ M="${subdir}" "$@"
) &> "${outputfile}"
local errors=$(grep -c ' error:' "${outputfile}")
local warnings=$(grep -c ' warning:' "${outputfile}")
@@ -593,6 +596,13 @@ do
patch_and_configure_kernel $k
if [ "${run_sparse}" = "true" ]; then
run_sparse $k drivers/scst
mv ${outputdir}/sparse-$k-output.txt ${outputdir}/sparse-$k-scst-output.txt
if [ "$k" = "2.6.35" ]; then
run_sparse $k drivers/scsi libsrp.ko scsi_sysfs.ko \
scsi_transport_fc.ko scsi_transport_srp.ko
mv ${outputdir}/sparse-$k-output.txt \
${outputdir}/sparse-$k-scsi-output.txt
fi
fi
compile_kernel $k drivers/scst
if [ "${full_check}" = "true" ]; then