Compare commits
14 Commits
v0.79.6-pl
...
v0.79.6-pl
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ab057244b4 | ||
|
|
275decd40e | ||
|
|
9264713614 | ||
|
|
d0fd46c97c | ||
|
|
451bdf9a7e | ||
|
|
58b558ea7e | ||
|
|
6444ff67c5 | ||
|
|
bd9777a531 | ||
|
|
464f2b8bfa | ||
|
|
af178e89bc | ||
|
|
8710519821 | ||
|
|
36fa2db965 | ||
|
|
442af06f7a | ||
|
|
d8773e5ee6 |
12
CHANGELOG
12
CHANGELOG
@@ -1,5 +1,17 @@
|
||||
# dvdisaster changelog -*-text-*-
|
||||
|
||||
0.79.6.patchlevel-9 27-06-2021 *UNOFFICIAL*
|
||||
- fix: using --strip in console without X server would segfault at program exit
|
||||
- enh: windows: hide useless background console
|
||||
- enh: linear read: log amount of correctly read sectors during a sesssion
|
||||
- enh: log window: use a bigger scrollback buffer
|
||||
- doc: regenerate codecs.pdf to get proper page numbers
|
||||
- chore: fix codec-specs Makefile
|
||||
|
||||
0.79.6.patchlevel-8 22-02-2021 *UNOFFICIAL*
|
||||
- enh: gui: medium-info: add an 'exhaustive search' when not enabled in options
|
||||
- enh: gui: prefs: add a visual cue of tooltips
|
||||
|
||||
0.79.6.patchlevel-7 30-01-2021 *UNOFFICIAL*
|
||||
- feat: add a new button to remove ECC data from an iso ("strip"), restoring an ISO to its previous non-augmented state (option: -z/--strip)
|
||||
- enh: try harder to find RS02/RS03 sigs in non-exhaustive mode (#19)
|
||||
|
||||
@@ -89,8 +89,12 @@ ${BUILDTMP}/build.o : src/build.c src/build.h
|
||||
@echo "Compiling:" src/build.o
|
||||
@$(CC) $(COPTS) -c src/build.c -o $@
|
||||
|
||||
${BUILDTMP}/closure.o : src/closure.c src/inlined-icons.h
|
||||
@echo "Compiling:" src/closure.c
|
||||
@$(CC) $(COPTS) -c src/closure.c -o $@
|
||||
|
||||
${BUILDTMP}/icon-factory.o : src/icon-factory.c src/inlined-icons.h
|
||||
@echo "Compiling:" src/icon-factory.o
|
||||
@echo "Compiling:" src/icon-factory.c
|
||||
@$(CC) $(COPTS) -c src/icon-factory.c -o $@
|
||||
|
||||
# Building the dvdisaster binary
|
||||
@@ -108,21 +112,28 @@ dvdisaster: $(ICONS) $(OFILES)
|
||||
else $(MAKE) --no-print-directory -C locale; \
|
||||
fi
|
||||
|
||||
src/inlined-icons.h: icons/read.png icons/create.png icons/scan.png icons/fix.png icons/verify.png icons/strip.png icons/open-ecc.png icons/open-img.png icons/cd.png icons/gtk-help.png icons/gtk-index.png icons/gtk-preferences.png icons/gtk-quit.png icons/gtk-stop.png
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_read icons/read.png >src/inlined-icons.h
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_create icons/create.png >>src/inlined-icons.h
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_scan icons/scan.png >>src/inlined-icons.h
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_fix icons/fix.png >>src/inlined-icons.h
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_verify icons/verify.png >>src/inlined-icons.h
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_strip icons/strip.png >>src/inlined-icons.h
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_open_ecc icons/open-ecc.png >>src/inlined-icons.h
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_open_img icons/open-img.png >>src/inlined-icons.h
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_cd icons/cd.png >>src/inlined-icons.h
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_gtk_help icons/gtk-help.png >>src/inlined-icons.h
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_gtk_index icons/gtk-index.png >>src/inlined-icons.h
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_gtk_preferences icons/gtk-preferences.png >>src/inlined-icons.h
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_gtk_quit icons/gtk-quit.png >>src/inlined-icons.h
|
||||
@gdk-pixbuf-csource --raw --name=dvdisaster_gtk_stop icons/gtk-stop.png >>src/inlined-icons.h
|
||||
# gdk-pixbuf-csource sometimes produces truncated output, so we have to ensure the output
|
||||
# is valid before appending it to inlined-icons.h:
|
||||
src/inlined-icons.h: icons/read.png icons/create.png icons/scan.png icons/fix.png icons/verify.png icons/strip.png icons/open-ecc.png icons/open-img.png icons/cd.png icons/gtk-help.png icons/gtk-index.png icons/gtk-preferences.png icons/gtk-quit.png icons/gtk-stop.png icons/tooltip.png icons/nothing.png
|
||||
@echo "Building:" src/inlined-icons.h
|
||||
@rm -f src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_read icons/read.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_create icons/create.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_scan icons/scan.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_fix icons/fix.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_verify icons/verify.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_strip icons/strip.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_open_ecc icons/open-ecc.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_open_img icons/open-img.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_cd icons/cd.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_gtk_help icons/gtk-help.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_gtk_index icons/gtk-index.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_gtk_preferences icons/gtk-preferences.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_gtk_quit icons/gtk-quit.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_gtk_stop icons/gtk-stop.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_tooltip icons/tooltip.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@while gdk-pixbuf-csource --raw --name=dvdisaster_nothing icons/nothing.png >src/.icons.tmp; do grep -q '"};' src/.icons.tmp && break; done; cat src/.icons.tmp >>src/inlined-icons.h
|
||||
@rm -f src/.icons.tmp
|
||||
|
||||
$(BUILDTMP)/help-dialogs.o: src/help-dialogs.c simple-md5sum
|
||||
@if test -e fingerprints.md5; \
|
||||
@@ -168,6 +179,21 @@ manualclean:
|
||||
@echo "Removing temporary user manual files... "
|
||||
@$(MAKE) --no-print-directory -C documentation/user-manual clean
|
||||
|
||||
manualarchclean:
|
||||
@echo "Removing generated user manual files... "
|
||||
@$(MAKE) --no-print-directory -C documentation/user-manual archclean
|
||||
|
||||
codecs:
|
||||
@echo "Producing codecs specification documentation... "
|
||||
@$(MAKE) --no-print-directory -C documentation/codec-specs
|
||||
|
||||
codecsclean:
|
||||
@echo "Removing temporary codecs specification documentation files... "
|
||||
@$(MAKE) --no-print-directory -C documentation/codec-specs clean
|
||||
|
||||
codecsarchclean:
|
||||
@echo "Removing generated codecs specification documentation files... "
|
||||
@$(MAKE) --no-print-directory -C documentation/codec-specs archclean
|
||||
|
||||
# Some usage info
|
||||
|
||||
@@ -180,6 +206,7 @@ help:
|
||||
@echo
|
||||
@echo "Documentation related:"
|
||||
@echo "manual - create the user manual (requires LaTeX)"
|
||||
@echo "codecs - create the codecs spec documentation (requires LaTeX)"
|
||||
@echo
|
||||
@echo "Locale related:"
|
||||
@echo "locale - update locale files"
|
||||
@@ -339,7 +366,7 @@ arch: archclean build.h
|
||||
INSTALL: documentation/install.template
|
||||
@sed "s/@@PKGNAME/$(PKGNAME)/" <documentation/install.template >INSTALL
|
||||
|
||||
srcdist: INSTALL distclean manual manualclean
|
||||
srcdist: INSTALL distclean manual manualclean codecsclean
|
||||
@cd .. ; tar -c -j -X $(PKGNAME)/NODIST -f $(TAR_PREFIX)/$(PKGNAME).tar.bz2 $(PKGNAME)
|
||||
@cd .. ; gpg --homedir .gnupg --default-key 758BCC23 --detach-sign --output $(TAR_PREFIX)/$(PKGNAME).tar.bz2.gpg --armor $(TAR_PREFIX)/$(PKGNAME).tar.bz2
|
||||
|
||||
|
||||
7
configure
vendored
7
configure
vendored
@@ -21,7 +21,7 @@ fi
|
||||
# Set the package name and version
|
||||
|
||||
PACKAGE dvdisaster 0.79.6
|
||||
DEFINE_INT PATCHLEVEL 7
|
||||
DEFINE_INT PATCHLEVEL 9
|
||||
DEFINE_STRING HAVE_UNSTABLE_RELEASE 1
|
||||
|
||||
# Check for some essential tools.
|
||||
@@ -54,6 +54,11 @@ fi
|
||||
|
||||
WITH_OPTION cli-only no "[yes | no]"
|
||||
|
||||
# Remove the useless CLI console under windows
|
||||
if [[ $(uname) =~ MINGW ]] && [ "$cfg_with_cli_only" != "yes" ]; then
|
||||
CFG_LDFLAGS="$CFG_LDFLAGS -mwindows"
|
||||
fi
|
||||
|
||||
# Look for required libraries
|
||||
|
||||
PRINT_MESSAGE "\nLooking for includes and libraries:"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
.PHONY : all codecs clean
|
||||
.PHONY : all clean
|
||||
|
||||
all: codecs
|
||||
all: codecs.pdf
|
||||
|
||||
clean:
|
||||
@rm -f *~ *.aux *.log *.bak *.out *.toc *.dvi *.ps
|
||||
@@ -8,7 +8,9 @@ clean:
|
||||
archclean: clean
|
||||
@rm -f *.pdf
|
||||
|
||||
codecs:
|
||||
# run latex twice to get the proper number of pages, fig numbers and index table
|
||||
codecs.pdf: *.tex *.fig *.eps
|
||||
latex codecs
|
||||
latex codecs
|
||||
dvips codecs.dvi
|
||||
ps2pdf codecs.ps
|
||||
|
||||
Binary file not shown.
BIN
icons/nothing.png
Normal file
BIN
icons/nothing.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 193 B |
BIN
icons/tooltip.png
Normal file
BIN
icons/tooltip.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 421 B |
672
locale/cs.po
672
locale/cs.po
File diff suppressed because it is too large
Load Diff
672
locale/de.po
672
locale/de.po
File diff suppressed because it is too large
Load Diff
672
locale/it.po
672
locale/it.po
File diff suppressed because it is too large
Load Diff
672
locale/pt_BR.po
672
locale/pt_BR.po
File diff suppressed because it is too large
Load Diff
672
locale/ru.po
672
locale/ru.po
File diff suppressed because it is too large
Load Diff
672
locale/sv.po
672
locale/sv.po
File diff suppressed because it is too large
Load Diff
@@ -30,16 +30,11 @@ fi
|
||||
|
||||
nbfailed=0
|
||||
|
||||
# Assemble sed expressions for removal of variable output contents
|
||||
|
||||
SED_REMOVE_ISO_DIR="([a-zA-Z]:/[a-zA-Z0-9/]+)?${ISODIR}/"
|
||||
|
||||
# For MSYS2
|
||||
|
||||
if [ -n "$ORIGINAL_TEMP" ]; then
|
||||
ISODIR="$ORIGINAL_TEMP"
|
||||
# /c/ => C:/
|
||||
SED_REMOVE_ISO_DIR="$(echo "$ISODIR" | cut -c2 | tr a-z A-Z):$(echo "$ISODIR" | cut -c3-)/"
|
||||
NON_EXISTENT_DEVICE=V:
|
||||
fi
|
||||
|
||||
@@ -196,7 +191,7 @@ function run_regtest()
|
||||
local testeccopt=""
|
||||
local image_md5=""
|
||||
local ecc_md5=""
|
||||
local pass="true"
|
||||
local pass="false"
|
||||
|
||||
local fail_on_bad=$(grep "FAIL_ON_BAD" $CONFIGFILE)
|
||||
fail_on_bad=$(echo $fail_on_bad | cut -d\ -f 2)
|
||||
@@ -214,67 +209,69 @@ function run_regtest()
|
||||
REFLOG=${DATABASE}/${CODEC_PREFIX}_${testsymbol}
|
||||
|
||||
if test "$gui_mode" == "false"; then
|
||||
rm -f $NEWLOG
|
||||
rm -f $NEWLOG
|
||||
|
||||
echo "LANG=en_EN.UTF-8 $NEWVER --regtest --no-progress -i${testiso} ${testeccopt} ${extra_args} ${testparms}" >>$LOGFILE
|
||||
LANG=en_EN.UTF-8 $NEWVER --regtest --no-progress -i${testiso} ${testeccopt} ${extra_args} ${testparms} 2>&1 | tail -n +3 >>$NEWLOG
|
||||
echo "LANG=en_EN.UTF-8 $NEWVER --regtest --no-progress -i${testiso} ${testeccopt} ${extra_args} ${testparms}" >>$LOGFILE
|
||||
LANG=en_EN.UTF-8 $NEWVER --regtest --no-progress -i${testiso} ${testeccopt} ${extra_args} ${testparms} 2>&1 | tail -n +3 >>$NEWLOG
|
||||
|
||||
if ! test -r $REFLOG; then
|
||||
echo -e "FAIL\n$REFLOG missing in log file database"
|
||||
return
|
||||
fi
|
||||
if ! test -r $REFLOG; then
|
||||
pass="false"
|
||||
if [ "$REGTEST_NO_UTF8" = 1 ]; then
|
||||
echo "BAD; '$REFLOG' is missing in log file database"
|
||||
else
|
||||
printf "%b\r%b\n" "BAD; '$REFLOG' is missing in log file database" "[\e[31m✘\e[0m]"
|
||||
fi
|
||||
else
|
||||
# ignore the memory tracker line when no memory leaks
|
||||
# have been found
|
||||
|
||||
# ignore the memory tracker line when no memory leaks
|
||||
# have been found
|
||||
|
||||
grep -va "dvdisaster: No memory leaks found." $NEWLOG >$TMPLOG
|
||||
mv $TMPLOG $NEWLOG
|
||||
|
||||
# ignore log lines specified by user
|
||||
|
||||
if test -n "$IGNORE_LOG_LINE"; then
|
||||
grep -Eva "$IGNORE_LOG_LINE" $NEWLOG >$TMPLOG
|
||||
mv $TMPLOG $NEWLOG
|
||||
fi
|
||||
grep -va "dvdisaster: No memory leaks found." $NEWLOG >$TMPLOG
|
||||
mv $TMPLOG $NEWLOG
|
||||
|
||||
filter=cat
|
||||
echo "$options" | grep -qw SORTED && filter=sort
|
||||
if [ "${CODEC_PREFIX}_${testsymbol}" = RS01_scan_no_device ] || \
|
||||
[ "${CODEC_PREFIX}_${testsymbol}" = RS01_read_no_device ] || \
|
||||
[ "${CODEC_PREFIX}_${testsymbol}" = RS01_adaptive_no_device ]; then
|
||||
# for Windows
|
||||
sed -i -re "s=device $NON_EXISTENT_DEVICE\.=/dev/sdz: No such file or directory=" $NEWLOG
|
||||
fi
|
||||
|
||||
if ! diff <(tail -n +3 $REFLOG | $filter) <(sed -re "s=${SED_REMOVE_ISO_DIR}==g" $NEWLOG | $filter) >${DIFFLOG}; then
|
||||
if [ "$REGTEST_NO_UTF8" = 1 ]; then
|
||||
echo "BAD; diffs found (<expected; >created):"
|
||||
else
|
||||
printf "%b\r%b\n" "BAD; diffs found (<expected; >created):" "[\e[31m✘\e[0m]"
|
||||
fi
|
||||
cat ${DIFFLOG}
|
||||
# ignore log lines specified by user
|
||||
|
||||
if test "$interactive_diff" == "yes"; then
|
||||
while true; do
|
||||
read -n 1 -p ">> Press 'a' to accept this diff; 'v' to vimdiff; any other key to fail this test:" -e answer
|
||||
if test "$answer" == "a"; then
|
||||
cp $REFLOG $LOGDIR
|
||||
head -n 2 $LOGDIR/${CODEC_PREFIX}_${testsymbol} >$REFLOG
|
||||
sed -re "s=${SED_REMOVE_ISO_DIR}==g" $NEWLOG >>$REFLOG
|
||||
pass="skip"
|
||||
elif test "$answer" == "v"; then
|
||||
vimdiff $REFLOG $NEWLOG
|
||||
if test -n "$IGNORE_LOG_LINE"; then
|
||||
grep -Eva "$IGNORE_LOG_LINE" $NEWLOG >$TMPLOG
|
||||
mv $TMPLOG $NEWLOG
|
||||
fi
|
||||
|
||||
continue
|
||||
else
|
||||
pass="false"
|
||||
fi
|
||||
break
|
||||
done
|
||||
else
|
||||
pass="false"
|
||||
fi
|
||||
fi
|
||||
filter=cat
|
||||
echo "$options" | grep -qw SORTED && filter=sort
|
||||
if [ "${CODEC_PREFIX}_${testsymbol}" = RS01_scan_no_device ] || \
|
||||
[ "${CODEC_PREFIX}_${testsymbol}" = RS01_read_no_device ] || \
|
||||
[ "${CODEC_PREFIX}_${testsymbol}" = RS01_adaptive_no_device ]; then
|
||||
# for Windows
|
||||
sed -i -re "s=device $NON_EXISTENT_DEVICE\.=/dev/sdz: No such file or directory=" $NEWLOG
|
||||
fi
|
||||
|
||||
if ! diff <(tail -n +3 $REFLOG | $filter) <(sed -re "s=[a-zA-Z:/]+/([a-z0-9_-]+\.(ecc|iso))=\1=g;s=$ISODIR/==g" $NEWLOG | $filter) >${DIFFLOG}; then
|
||||
if [ "$REGTEST_NO_UTF8" = 1 ]; then
|
||||
echo "BAD; diffs found (<expected; >created):"
|
||||
else
|
||||
printf "%b\r%b\n" "BAD; diffs found (<expected; >created):" "[\e[31m✘\e[0m]"
|
||||
fi
|
||||
cat ${DIFFLOG}
|
||||
|
||||
if test "$interactive_diff" == "yes"; then
|
||||
while true; do
|
||||
read -n 1 -p ">> Press 'a' to accept this diff; 'v' to vimdiff; any other key to fail this test:" -e answer
|
||||
if test "$answer" == "a"; then
|
||||
cp $REFLOG $LOGDIR
|
||||
head -n 2 $LOGDIR/${CODEC_PREFIX}_${testsymbol} >$REFLOG
|
||||
sed -re "s=[a-zA-Z:/]+/([a-z0-9_-]+\.(ecc|iso))=\1=g;s=$ISODIR/==g" $NEWLOG >>$REFLOG
|
||||
pass="skip"
|
||||
elif test "$answer" == "v"; then
|
||||
vimdiff $REFLOG $NEWLOG
|
||||
|
||||
continue
|
||||
fi
|
||||
break
|
||||
done
|
||||
fi
|
||||
else
|
||||
pass="true"
|
||||
fi
|
||||
fi
|
||||
else # gui mode
|
||||
replace_config last-image "$testiso"
|
||||
if test -n "${testecc}"; then
|
||||
@@ -293,8 +290,13 @@ function run_regtest()
|
||||
|
||||
unset extra_args
|
||||
|
||||
image_md5=$(head -n 1 $REFLOG)
|
||||
ecc_md5=$(head -n 2 $REFLOG | tail -n 1)
|
||||
if test -r "$REFLOG"; then
|
||||
image_md5=$(head -n 1 $REFLOG)
|
||||
ecc_md5=$(head -n 2 $REFLOG | tail -n 1)
|
||||
else
|
||||
image_md5=ignore
|
||||
ecc_md5=ignore
|
||||
fi
|
||||
|
||||
if test "${image_md5}" != "ignore"; then
|
||||
md5=$($MD5SUM ${testiso} | cut -d\ -f 1)
|
||||
|
||||
@@ -167,6 +167,334 @@ Reading CRC information from ecc data (RS02) ... RS02LayoutFromImage(): returnin
|
||||
done.
|
||||
Sector 30000, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 30000: Medium Error; Unrecovered read error. Skipping 15 sectors.
|
||||
Current sector: 30001. This session: NewSectorsReadOK=30000, ReadErrors=1
|
||||
Current sector: 30002. This session: NewSectorsReadOK=30000, ReadErrors=2
|
||||
Current sector: 30003. This session: NewSectorsReadOK=30000, ReadErrors=3
|
||||
Current sector: 30004. This session: NewSectorsReadOK=30000, ReadErrors=4
|
||||
Current sector: 30005. This session: NewSectorsReadOK=30000, ReadErrors=5
|
||||
Current sector: 30006. This session: NewSectorsReadOK=30000, ReadErrors=6
|
||||
Current sector: 30007. This session: NewSectorsReadOK=30000, ReadErrors=7
|
||||
Current sector: 30008. This session: NewSectorsReadOK=30000, ReadErrors=8
|
||||
Current sector: 30009. This session: NewSectorsReadOK=30000, ReadErrors=9
|
||||
Current sector: 30010. This session: NewSectorsReadOK=30000, ReadErrors=10
|
||||
Current sector: 30011. This session: NewSectorsReadOK=30000, ReadErrors=11
|
||||
Current sector: 30012. This session: NewSectorsReadOK=30000, ReadErrors=12
|
||||
Current sector: 30013. This session: NewSectorsReadOK=30000, ReadErrors=13
|
||||
Current sector: 30014. This session: NewSectorsReadOK=30000, ReadErrors=14
|
||||
Current sector: 30015. This session: NewSectorsReadOK=30000, ReadErrors=15
|
||||
Current sector: 30016. This session: NewSectorsReadOK=30000, ReadErrors=16
|
||||
Current sector: 30016. This session: NewSectorsReadOK=30000, ReadErrors=16
|
||||
Current sector: 30032. This session: NewSectorsReadOK=30016, ReadErrors=16
|
||||
Current sector: 30048. This session: NewSectorsReadOK=30032, ReadErrors=16
|
||||
Current sector: 30064. This session: NewSectorsReadOK=30048, ReadErrors=16
|
||||
Current sector: 30080. This session: NewSectorsReadOK=30064, ReadErrors=16
|
||||
Current sector: 30096. This session: NewSectorsReadOK=30080, ReadErrors=16
|
||||
Current sector: 30112. This session: NewSectorsReadOK=30096, ReadErrors=16
|
||||
Current sector: 30128. This session: NewSectorsReadOK=30112, ReadErrors=16
|
||||
Current sector: 30144. This session: NewSectorsReadOK=30128, ReadErrors=16
|
||||
Current sector: 30160. This session: NewSectorsReadOK=30144, ReadErrors=16
|
||||
Current sector: 30176. This session: NewSectorsReadOK=30160, ReadErrors=16
|
||||
Current sector: 30192. This session: NewSectorsReadOK=30176, ReadErrors=16
|
||||
Current sector: 30208. This session: NewSectorsReadOK=30192, ReadErrors=16
|
||||
Current sector: 30224. This session: NewSectorsReadOK=30208, ReadErrors=16
|
||||
Current sector: 30240. This session: NewSectorsReadOK=30224, ReadErrors=16
|
||||
Current sector: 30256. This session: NewSectorsReadOK=30240, ReadErrors=16
|
||||
Current sector: 30272. This session: NewSectorsReadOK=30256, ReadErrors=16
|
||||
Current sector: 30288. This session: NewSectorsReadOK=30272, ReadErrors=16
|
||||
Current sector: 30304. This session: NewSectorsReadOK=30288, ReadErrors=16
|
||||
Current sector: 30320. This session: NewSectorsReadOK=30304, ReadErrors=16
|
||||
Current sector: 30336. This session: NewSectorsReadOK=30320, ReadErrors=16
|
||||
Current sector: 30352. This session: NewSectorsReadOK=30336, ReadErrors=16
|
||||
Current sector: 30368. This session: NewSectorsReadOK=30352, ReadErrors=16
|
||||
Current sector: 30384. This session: NewSectorsReadOK=30368, ReadErrors=16
|
||||
Current sector: 30400. This session: NewSectorsReadOK=30384, ReadErrors=16
|
||||
Current sector: 30416. This session: NewSectorsReadOK=30400, ReadErrors=16
|
||||
Current sector: 30432. This session: NewSectorsReadOK=30416, ReadErrors=16
|
||||
Current sector: 30448. This session: NewSectorsReadOK=30432, ReadErrors=16
|
||||
Current sector: 30464. This session: NewSectorsReadOK=30448, ReadErrors=16
|
||||
Current sector: 30480. This session: NewSectorsReadOK=30464, ReadErrors=16
|
||||
Current sector: 30496. This session: NewSectorsReadOK=30480, ReadErrors=16
|
||||
Current sector: 30512. This session: NewSectorsReadOK=30496, ReadErrors=16
|
||||
Current sector: 30528. This session: NewSectorsReadOK=30512, ReadErrors=16
|
||||
Current sector: 30544. This session: NewSectorsReadOK=30528, ReadErrors=16
|
||||
Current sector: 30560. This session: NewSectorsReadOK=30544, ReadErrors=16
|
||||
Current sector: 30576. This session: NewSectorsReadOK=30560, ReadErrors=16
|
||||
Current sector: 30592. This session: NewSectorsReadOK=30576, ReadErrors=16
|
||||
Current sector: 30608. This session: NewSectorsReadOK=30592, ReadErrors=16
|
||||
Current sector: 30624. This session: NewSectorsReadOK=30608, ReadErrors=16
|
||||
Current sector: 30640. This session: NewSectorsReadOK=30624, ReadErrors=16
|
||||
Current sector: 30656. This session: NewSectorsReadOK=30640, ReadErrors=16
|
||||
Current sector: 30672. This session: NewSectorsReadOK=30656, ReadErrors=16
|
||||
Current sector: 30688. This session: NewSectorsReadOK=30672, ReadErrors=16
|
||||
Current sector: 30704. This session: NewSectorsReadOK=30688, ReadErrors=16
|
||||
Current sector: 30720. This session: NewSectorsReadOK=30704, ReadErrors=16
|
||||
Current sector: 30736. This session: NewSectorsReadOK=30720, ReadErrors=16
|
||||
Current sector: 30752. This session: NewSectorsReadOK=30736, ReadErrors=16
|
||||
Current sector: 30768. This session: NewSectorsReadOK=30752, ReadErrors=16
|
||||
Current sector: 30784. This session: NewSectorsReadOK=30768, ReadErrors=16
|
||||
Current sector: 30800. This session: NewSectorsReadOK=30784, ReadErrors=16
|
||||
Current sector: 30816. This session: NewSectorsReadOK=30800, ReadErrors=16
|
||||
Current sector: 30832. This session: NewSectorsReadOK=30816, ReadErrors=16
|
||||
Current sector: 30848. This session: NewSectorsReadOK=30832, ReadErrors=16
|
||||
Current sector: 30864. This session: NewSectorsReadOK=30848, ReadErrors=16
|
||||
Current sector: 30880. This session: NewSectorsReadOK=30864, ReadErrors=16
|
||||
Current sector: 30896. This session: NewSectorsReadOK=30880, ReadErrors=16
|
||||
Current sector: 30912. This session: NewSectorsReadOK=30896, ReadErrors=16
|
||||
Current sector: 30928. This session: NewSectorsReadOK=30912, ReadErrors=16
|
||||
Current sector: 30944. This session: NewSectorsReadOK=30928, ReadErrors=16
|
||||
Current sector: 30960. This session: NewSectorsReadOK=30944, ReadErrors=16
|
||||
Current sector: 30976. This session: NewSectorsReadOK=30960, ReadErrors=16
|
||||
Current sector: 30992. This session: NewSectorsReadOK=30976, ReadErrors=16
|
||||
Current sector: 31008. This session: NewSectorsReadOK=30992, ReadErrors=16
|
||||
Current sector: 31024. This session: NewSectorsReadOK=31008, ReadErrors=16
|
||||
Current sector: 31040. This session: NewSectorsReadOK=31024, ReadErrors=16
|
||||
Current sector: 31056. This session: NewSectorsReadOK=31040, ReadErrors=16
|
||||
Current sector: 31072. This session: NewSectorsReadOK=31056, ReadErrors=16
|
||||
Current sector: 31088. This session: NewSectorsReadOK=31072, ReadErrors=16
|
||||
Current sector: 31104. This session: NewSectorsReadOK=31088, ReadErrors=16
|
||||
Current sector: 31120. This session: NewSectorsReadOK=31104, ReadErrors=16
|
||||
Current sector: 31136. This session: NewSectorsReadOK=31120, ReadErrors=16
|
||||
Current sector: 31152. This session: NewSectorsReadOK=31136, ReadErrors=16
|
||||
Current sector: 31168. This session: NewSectorsReadOK=31152, ReadErrors=16
|
||||
Current sector: 31184. This session: NewSectorsReadOK=31168, ReadErrors=16
|
||||
Current sector: 31200. This session: NewSectorsReadOK=31184, ReadErrors=16
|
||||
Current sector: 31216. This session: NewSectorsReadOK=31200, ReadErrors=16
|
||||
Current sector: 31232. This session: NewSectorsReadOK=31216, ReadErrors=16
|
||||
Current sector: 31248. This session: NewSectorsReadOK=31232, ReadErrors=16
|
||||
Current sector: 31264. This session: NewSectorsReadOK=31248, ReadErrors=16
|
||||
Current sector: 31280. This session: NewSectorsReadOK=31264, ReadErrors=16
|
||||
Current sector: 31296. This session: NewSectorsReadOK=31280, ReadErrors=16
|
||||
Current sector: 31312. This session: NewSectorsReadOK=31296, ReadErrors=16
|
||||
Current sector: 31328. This session: NewSectorsReadOK=31312, ReadErrors=16
|
||||
Current sector: 31344. This session: NewSectorsReadOK=31328, ReadErrors=16
|
||||
Current sector: 31360. This session: NewSectorsReadOK=31344, ReadErrors=16
|
||||
Current sector: 31376. This session: NewSectorsReadOK=31360, ReadErrors=16
|
||||
Current sector: 31392. This session: NewSectorsReadOK=31376, ReadErrors=16
|
||||
Current sector: 31408. This session: NewSectorsReadOK=31392, ReadErrors=16
|
||||
Current sector: 31424. This session: NewSectorsReadOK=31408, ReadErrors=16
|
||||
Current sector: 31440. This session: NewSectorsReadOK=31424, ReadErrors=16
|
||||
Current sector: 31456. This session: NewSectorsReadOK=31440, ReadErrors=16
|
||||
Current sector: 31472. This session: NewSectorsReadOK=31456, ReadErrors=16
|
||||
Current sector: 31488. This session: NewSectorsReadOK=31472, ReadErrors=16
|
||||
Current sector: 31504. This session: NewSectorsReadOK=31488, ReadErrors=16
|
||||
Current sector: 31520. This session: NewSectorsReadOK=31504, ReadErrors=16
|
||||
Current sector: 31536. This session: NewSectorsReadOK=31520, ReadErrors=16
|
||||
Current sector: 31552. This session: NewSectorsReadOK=31536, ReadErrors=16
|
||||
Current sector: 31568. This session: NewSectorsReadOK=31552, ReadErrors=16
|
||||
Current sector: 31584. This session: NewSectorsReadOK=31568, ReadErrors=16
|
||||
Current sector: 31600. This session: NewSectorsReadOK=31584, ReadErrors=16
|
||||
Current sector: 31616. This session: NewSectorsReadOK=31600, ReadErrors=16
|
||||
Current sector: 31632. This session: NewSectorsReadOK=31616, ReadErrors=16
|
||||
Current sector: 31648. This session: NewSectorsReadOK=31632, ReadErrors=16
|
||||
Current sector: 31664. This session: NewSectorsReadOK=31648, ReadErrors=16
|
||||
Current sector: 31680. This session: NewSectorsReadOK=31664, ReadErrors=16
|
||||
Current sector: 31696. This session: NewSectorsReadOK=31680, ReadErrors=16
|
||||
Current sector: 31712. This session: NewSectorsReadOK=31696, ReadErrors=16
|
||||
Current sector: 31728. This session: NewSectorsReadOK=31712, ReadErrors=16
|
||||
Current sector: 31744. This session: NewSectorsReadOK=31728, ReadErrors=16
|
||||
Current sector: 31760. This session: NewSectorsReadOK=31744, ReadErrors=16
|
||||
Current sector: 31776. This session: NewSectorsReadOK=31760, ReadErrors=16
|
||||
Current sector: 31792. This session: NewSectorsReadOK=31776, ReadErrors=16
|
||||
Current sector: 31808. This session: NewSectorsReadOK=31792, ReadErrors=16
|
||||
Current sector: 31824. This session: NewSectorsReadOK=31808, ReadErrors=16
|
||||
Current sector: 31840. This session: NewSectorsReadOK=31824, ReadErrors=16
|
||||
Current sector: 31856. This session: NewSectorsReadOK=31840, ReadErrors=16
|
||||
Current sector: 31872. This session: NewSectorsReadOK=31856, ReadErrors=16
|
||||
Current sector: 31888. This session: NewSectorsReadOK=31872, ReadErrors=16
|
||||
Current sector: 31904. This session: NewSectorsReadOK=31888, ReadErrors=16
|
||||
Current sector: 31920. This session: NewSectorsReadOK=31904, ReadErrors=16
|
||||
Current sector: 31936. This session: NewSectorsReadOK=31920, ReadErrors=16
|
||||
Current sector: 31952. This session: NewSectorsReadOK=31936, ReadErrors=16
|
||||
Current sector: 31968. This session: NewSectorsReadOK=31952, ReadErrors=16
|
||||
Current sector: 31984. This session: NewSectorsReadOK=31968, ReadErrors=16
|
||||
Current sector: 32000. This session: NewSectorsReadOK=31984, ReadErrors=16
|
||||
Current sector: 32016. This session: NewSectorsReadOK=32000, ReadErrors=16
|
||||
Current sector: 32032. This session: NewSectorsReadOK=32016, ReadErrors=16
|
||||
Current sector: 32048. This session: NewSectorsReadOK=32032, ReadErrors=16
|
||||
Current sector: 32064. This session: NewSectorsReadOK=32048, ReadErrors=16
|
||||
Current sector: 32080. This session: NewSectorsReadOK=32064, ReadErrors=16
|
||||
Current sector: 32096. This session: NewSectorsReadOK=32080, ReadErrors=16
|
||||
Current sector: 32112. This session: NewSectorsReadOK=32096, ReadErrors=16
|
||||
Current sector: 32128. This session: NewSectorsReadOK=32112, ReadErrors=16
|
||||
Current sector: 32144. This session: NewSectorsReadOK=32128, ReadErrors=16
|
||||
Current sector: 32160. This session: NewSectorsReadOK=32144, ReadErrors=16
|
||||
Current sector: 32176. This session: NewSectorsReadOK=32160, ReadErrors=16
|
||||
Current sector: 32192. This session: NewSectorsReadOK=32176, ReadErrors=16
|
||||
Current sector: 32208. This session: NewSectorsReadOK=32192, ReadErrors=16
|
||||
Current sector: 32224. This session: NewSectorsReadOK=32208, ReadErrors=16
|
||||
Current sector: 32240. This session: NewSectorsReadOK=32224, ReadErrors=16
|
||||
Current sector: 32256. This session: NewSectorsReadOK=32240, ReadErrors=16
|
||||
Current sector: 32272. This session: NewSectorsReadOK=32256, ReadErrors=16
|
||||
Current sector: 32288. This session: NewSectorsReadOK=32272, ReadErrors=16
|
||||
Current sector: 32304. This session: NewSectorsReadOK=32288, ReadErrors=16
|
||||
Current sector: 32320. This session: NewSectorsReadOK=32304, ReadErrors=16
|
||||
Current sector: 32336. This session: NewSectorsReadOK=32320, ReadErrors=16
|
||||
Current sector: 32352. This session: NewSectorsReadOK=32336, ReadErrors=16
|
||||
Current sector: 32368. This session: NewSectorsReadOK=32352, ReadErrors=16
|
||||
Current sector: 32384. This session: NewSectorsReadOK=32368, ReadErrors=16
|
||||
Current sector: 32400. This session: NewSectorsReadOK=32384, ReadErrors=16
|
||||
Current sector: 32416. This session: NewSectorsReadOK=32400, ReadErrors=16
|
||||
Current sector: 32432. This session: NewSectorsReadOK=32416, ReadErrors=16
|
||||
Current sector: 32448. This session: NewSectorsReadOK=32432, ReadErrors=16
|
||||
Current sector: 32464. This session: NewSectorsReadOK=32448, ReadErrors=16
|
||||
Current sector: 32480. This session: NewSectorsReadOK=32464, ReadErrors=16
|
||||
Current sector: 32496. This session: NewSectorsReadOK=32480, ReadErrors=16
|
||||
Current sector: 32512. This session: NewSectorsReadOK=32496, ReadErrors=16
|
||||
Current sector: 32528. This session: NewSectorsReadOK=32512, ReadErrors=16
|
||||
Current sector: 32544. This session: NewSectorsReadOK=32528, ReadErrors=16
|
||||
Current sector: 32560. This session: NewSectorsReadOK=32544, ReadErrors=16
|
||||
Current sector: 32576. This session: NewSectorsReadOK=32560, ReadErrors=16
|
||||
Current sector: 32592. This session: NewSectorsReadOK=32576, ReadErrors=16
|
||||
Current sector: 32608. This session: NewSectorsReadOK=32592, ReadErrors=16
|
||||
Current sector: 32624. This session: NewSectorsReadOK=32608, ReadErrors=16
|
||||
Current sector: 32640. This session: NewSectorsReadOK=32624, ReadErrors=16
|
||||
Current sector: 32656. This session: NewSectorsReadOK=32640, ReadErrors=16
|
||||
Current sector: 32672. This session: NewSectorsReadOK=32656, ReadErrors=16
|
||||
Current sector: 32688. This session: NewSectorsReadOK=32672, ReadErrors=16
|
||||
Current sector: 32704. This session: NewSectorsReadOK=32688, ReadErrors=16
|
||||
Current sector: 32720. This session: NewSectorsReadOK=32704, ReadErrors=16
|
||||
Current sector: 32736. This session: NewSectorsReadOK=32720, ReadErrors=16
|
||||
Current sector: 32752. This session: NewSectorsReadOK=32736, ReadErrors=16
|
||||
Current sector: 32768. This session: NewSectorsReadOK=32752, ReadErrors=16
|
||||
Current sector: 32784. This session: NewSectorsReadOK=32768, ReadErrors=16
|
||||
Current sector: 32800. This session: NewSectorsReadOK=32784, ReadErrors=16
|
||||
Current sector: 32816. This session: NewSectorsReadOK=32800, ReadErrors=16
|
||||
Current sector: 32832. This session: NewSectorsReadOK=32816, ReadErrors=16
|
||||
Current sector: 32848. This session: NewSectorsReadOK=32832, ReadErrors=16
|
||||
Current sector: 32864. This session: NewSectorsReadOK=32848, ReadErrors=16
|
||||
Current sector: 32880. This session: NewSectorsReadOK=32864, ReadErrors=16
|
||||
Current sector: 32896. This session: NewSectorsReadOK=32880, ReadErrors=16
|
||||
Current sector: 32912. This session: NewSectorsReadOK=32896, ReadErrors=16
|
||||
Current sector: 32928. This session: NewSectorsReadOK=32912, ReadErrors=16
|
||||
Current sector: 32944. This session: NewSectorsReadOK=32928, ReadErrors=16
|
||||
Current sector: 32960. This session: NewSectorsReadOK=32944, ReadErrors=16
|
||||
Current sector: 32976. This session: NewSectorsReadOK=32960, ReadErrors=16
|
||||
Current sector: 32992. This session: NewSectorsReadOK=32976, ReadErrors=16
|
||||
Current sector: 33008. This session: NewSectorsReadOK=32992, ReadErrors=16
|
||||
Current sector: 33024. This session: NewSectorsReadOK=33008, ReadErrors=16
|
||||
Current sector: 33040. This session: NewSectorsReadOK=33024, ReadErrors=16
|
||||
Current sector: 33056. This session: NewSectorsReadOK=33040, ReadErrors=16
|
||||
Current sector: 33072. This session: NewSectorsReadOK=33056, ReadErrors=16
|
||||
Current sector: 33088. This session: NewSectorsReadOK=33072, ReadErrors=16
|
||||
Current sector: 33104. This session: NewSectorsReadOK=33088, ReadErrors=16
|
||||
Current sector: 33120. This session: NewSectorsReadOK=33104, ReadErrors=16
|
||||
Current sector: 33136. This session: NewSectorsReadOK=33120, ReadErrors=16
|
||||
Current sector: 33152. This session: NewSectorsReadOK=33136, ReadErrors=16
|
||||
Current sector: 33168. This session: NewSectorsReadOK=33152, ReadErrors=16
|
||||
Current sector: 33184. This session: NewSectorsReadOK=33168, ReadErrors=16
|
||||
Current sector: 33200. This session: NewSectorsReadOK=33184, ReadErrors=16
|
||||
Current sector: 33216. This session: NewSectorsReadOK=33200, ReadErrors=16
|
||||
Current sector: 33232. This session: NewSectorsReadOK=33216, ReadErrors=16
|
||||
Current sector: 33248. This session: NewSectorsReadOK=33232, ReadErrors=16
|
||||
Current sector: 33264. This session: NewSectorsReadOK=33248, ReadErrors=16
|
||||
Current sector: 33280. This session: NewSectorsReadOK=33264, ReadErrors=16
|
||||
Current sector: 33296. This session: NewSectorsReadOK=33280, ReadErrors=16
|
||||
Current sector: 33312. This session: NewSectorsReadOK=33296, ReadErrors=16
|
||||
Current sector: 33328. This session: NewSectorsReadOK=33312, ReadErrors=16
|
||||
Current sector: 33344. This session: NewSectorsReadOK=33328, ReadErrors=16
|
||||
Current sector: 33360. This session: NewSectorsReadOK=33344, ReadErrors=16
|
||||
Current sector: 33376. This session: NewSectorsReadOK=33360, ReadErrors=16
|
||||
Current sector: 33392. This session: NewSectorsReadOK=33376, ReadErrors=16
|
||||
Current sector: 33408. This session: NewSectorsReadOK=33392, ReadErrors=16
|
||||
Current sector: 33424. This session: NewSectorsReadOK=33408, ReadErrors=16
|
||||
Current sector: 33440. This session: NewSectorsReadOK=33424, ReadErrors=16
|
||||
Current sector: 33456. This session: NewSectorsReadOK=33440, ReadErrors=16
|
||||
Current sector: 33472. This session: NewSectorsReadOK=33456, ReadErrors=16
|
||||
Current sector: 33488. This session: NewSectorsReadOK=33472, ReadErrors=16
|
||||
Current sector: 33504. This session: NewSectorsReadOK=33488, ReadErrors=16
|
||||
Current sector: 33520. This session: NewSectorsReadOK=33504, ReadErrors=16
|
||||
Current sector: 33536. This session: NewSectorsReadOK=33520, ReadErrors=16
|
||||
Current sector: 33552. This session: NewSectorsReadOK=33536, ReadErrors=16
|
||||
Current sector: 33568. This session: NewSectorsReadOK=33552, ReadErrors=16
|
||||
Current sector: 33584. This session: NewSectorsReadOK=33568, ReadErrors=16
|
||||
Current sector: 33600. This session: NewSectorsReadOK=33584, ReadErrors=16
|
||||
Current sector: 33616. This session: NewSectorsReadOK=33600, ReadErrors=16
|
||||
Current sector: 33632. This session: NewSectorsReadOK=33616, ReadErrors=16
|
||||
Current sector: 33648. This session: NewSectorsReadOK=33632, ReadErrors=16
|
||||
Current sector: 33664. This session: NewSectorsReadOK=33648, ReadErrors=16
|
||||
Current sector: 33680. This session: NewSectorsReadOK=33664, ReadErrors=16
|
||||
Current sector: 33696. This session: NewSectorsReadOK=33680, ReadErrors=16
|
||||
Current sector: 33712. This session: NewSectorsReadOK=33696, ReadErrors=16
|
||||
Current sector: 33728. This session: NewSectorsReadOK=33712, ReadErrors=16
|
||||
Current sector: 33744. This session: NewSectorsReadOK=33728, ReadErrors=16
|
||||
Current sector: 33760. This session: NewSectorsReadOK=33744, ReadErrors=16
|
||||
Current sector: 33776. This session: NewSectorsReadOK=33760, ReadErrors=16
|
||||
Current sector: 33792. This session: NewSectorsReadOK=33776, ReadErrors=16
|
||||
Current sector: 33808. This session: NewSectorsReadOK=33792, ReadErrors=16
|
||||
Current sector: 33824. This session: NewSectorsReadOK=33808, ReadErrors=16
|
||||
Current sector: 33840. This session: NewSectorsReadOK=33824, ReadErrors=16
|
||||
Current sector: 33856. This session: NewSectorsReadOK=33840, ReadErrors=16
|
||||
Current sector: 33872. This session: NewSectorsReadOK=33856, ReadErrors=16
|
||||
Current sector: 33888. This session: NewSectorsReadOK=33872, ReadErrors=16
|
||||
Current sector: 33904. This session: NewSectorsReadOK=33888, ReadErrors=16
|
||||
Current sector: 33920. This session: NewSectorsReadOK=33904, ReadErrors=16
|
||||
Current sector: 33936. This session: NewSectorsReadOK=33920, ReadErrors=16
|
||||
Current sector: 33952. This session: NewSectorsReadOK=33936, ReadErrors=16
|
||||
Current sector: 33968. This session: NewSectorsReadOK=33952, ReadErrors=16
|
||||
Current sector: 33984. This session: NewSectorsReadOK=33968, ReadErrors=16
|
||||
Current sector: 34000. This session: NewSectorsReadOK=33984, ReadErrors=16
|
||||
Current sector: 34016. This session: NewSectorsReadOK=34000, ReadErrors=16
|
||||
Current sector: 34032. This session: NewSectorsReadOK=34016, ReadErrors=16
|
||||
Current sector: 34048. This session: NewSectorsReadOK=34032, ReadErrors=16
|
||||
Current sector: 34064. This session: NewSectorsReadOK=34048, ReadErrors=16
|
||||
Current sector: 34080. This session: NewSectorsReadOK=34064, ReadErrors=16
|
||||
Current sector: 34096. This session: NewSectorsReadOK=34080, ReadErrors=16
|
||||
Current sector: 34112. This session: NewSectorsReadOK=34096, ReadErrors=16
|
||||
Current sector: 34128. This session: NewSectorsReadOK=34112, ReadErrors=16
|
||||
Current sector: 34144. This session: NewSectorsReadOK=34128, ReadErrors=16
|
||||
Current sector: 34160. This session: NewSectorsReadOK=34144, ReadErrors=16
|
||||
Current sector: 34176. This session: NewSectorsReadOK=34160, ReadErrors=16
|
||||
Current sector: 34192. This session: NewSectorsReadOK=34176, ReadErrors=16
|
||||
Current sector: 34208. This session: NewSectorsReadOK=34192, ReadErrors=16
|
||||
Current sector: 34224. This session: NewSectorsReadOK=34208, ReadErrors=16
|
||||
Current sector: 34240. This session: NewSectorsReadOK=34224, ReadErrors=16
|
||||
Current sector: 34256. This session: NewSectorsReadOK=34240, ReadErrors=16
|
||||
Current sector: 34272. This session: NewSectorsReadOK=34256, ReadErrors=16
|
||||
Current sector: 34288. This session: NewSectorsReadOK=34272, ReadErrors=16
|
||||
Current sector: 34304. This session: NewSectorsReadOK=34288, ReadErrors=16
|
||||
Current sector: 34320. This session: NewSectorsReadOK=34304, ReadErrors=16
|
||||
Current sector: 34336. This session: NewSectorsReadOK=34320, ReadErrors=16
|
||||
Current sector: 34352. This session: NewSectorsReadOK=34336, ReadErrors=16
|
||||
Current sector: 34368. This session: NewSectorsReadOK=34352, ReadErrors=16
|
||||
Current sector: 34384. This session: NewSectorsReadOK=34368, ReadErrors=16
|
||||
Current sector: 34400. This session: NewSectorsReadOK=34384, ReadErrors=16
|
||||
Current sector: 34416. This session: NewSectorsReadOK=34400, ReadErrors=16
|
||||
Current sector: 34432. This session: NewSectorsReadOK=34416, ReadErrors=16
|
||||
Current sector: 34448. This session: NewSectorsReadOK=34432, ReadErrors=16
|
||||
Current sector: 34464. This session: NewSectorsReadOK=34448, ReadErrors=16
|
||||
Current sector: 34480. This session: NewSectorsReadOK=34464, ReadErrors=16
|
||||
Current sector: 34496. This session: NewSectorsReadOK=34480, ReadErrors=16
|
||||
Current sector: 34512. This session: NewSectorsReadOK=34496, ReadErrors=16
|
||||
Current sector: 34528. This session: NewSectorsReadOK=34512, ReadErrors=16
|
||||
Current sector: 34544. This session: NewSectorsReadOK=34528, ReadErrors=16
|
||||
Current sector: 34560. This session: NewSectorsReadOK=34544, ReadErrors=16
|
||||
Current sector: 34576. This session: NewSectorsReadOK=34560, ReadErrors=16
|
||||
Current sector: 34592. This session: NewSectorsReadOK=34576, ReadErrors=16
|
||||
Current sector: 34608. This session: NewSectorsReadOK=34592, ReadErrors=16
|
||||
Current sector: 34624. This session: NewSectorsReadOK=34608, ReadErrors=16
|
||||
Current sector: 34640. This session: NewSectorsReadOK=34624, ReadErrors=16
|
||||
Current sector: 34656. This session: NewSectorsReadOK=34640, ReadErrors=16
|
||||
Current sector: 34672. This session: NewSectorsReadOK=34656, ReadErrors=16
|
||||
Current sector: 34688. This session: NewSectorsReadOK=34672, ReadErrors=16
|
||||
Current sector: 34704. This session: NewSectorsReadOK=34688, ReadErrors=16
|
||||
Current sector: 34720. This session: NewSectorsReadOK=34704, ReadErrors=16
|
||||
Current sector: 34736. This session: NewSectorsReadOK=34720, ReadErrors=16
|
||||
Current sector: 34752. This session: NewSectorsReadOK=34736, ReadErrors=16
|
||||
Current sector: 34768. This session: NewSectorsReadOK=34752, ReadErrors=16
|
||||
Current sector: 34784. This session: NewSectorsReadOK=34768, ReadErrors=16
|
||||
Current sector: 34800. This session: NewSectorsReadOK=34784, ReadErrors=16
|
||||
Current sector: 34816. This session: NewSectorsReadOK=34800, ReadErrors=16
|
||||
Current sector: 34832. This session: NewSectorsReadOK=34816, ReadErrors=16
|
||||
Current sector: 34848. This session: NewSectorsReadOK=34832, ReadErrors=16
|
||||
Current sector: 34864. This session: NewSectorsReadOK=34848, ReadErrors=16
|
||||
Current sector: 34880. This session: NewSectorsReadOK=34864, ReadErrors=16
|
||||
Current sector: 34896. This session: NewSectorsReadOK=34880, ReadErrors=16
|
||||
Current sector: 34912. This session: NewSectorsReadOK=34896, ReadErrors=16
|
||||
Current sector: 34928. This session: NewSectorsReadOK=34912, ReadErrors=16
|
||||
Current sector: 34929. This session: NewSectorsReadOK=34913, ReadErrors=16
|
||||
Current sector: 34930. This session: NewSectorsReadOK=34914, ReadErrors=16
|
||||
Current sector: 34931. This session: NewSectorsReadOK=34915, ReadErrors=16
|
||||
Current sector: 34932. This session: NewSectorsReadOK=34916, ReadErrors=16
|
||||
|
||||
16 unreadable sectors.
|
||||
CrcBuf contents, image path none (medium):
|
||||
|
||||
@@ -116,34 +116,177 @@ Reading CRC information from ecc data (RS02) ... RS02LayoutFromImage(): returnin
|
||||
done.
|
||||
Sector 357520, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357520: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357521. This session: NewSectorsReadOK=357520, ReadErrors=1
|
||||
Current sector: 357522. This session: NewSectorsReadOK=357520, ReadErrors=2
|
||||
Current sector: 357523. This session: NewSectorsReadOK=357520, ReadErrors=3
|
||||
Current sector: 357524. This session: NewSectorsReadOK=357520, ReadErrors=4
|
||||
Current sector: 357525. This session: NewSectorsReadOK=357520, ReadErrors=5
|
||||
Current sector: 357526. This session: NewSectorsReadOK=357520, ReadErrors=6
|
||||
Current sector: 357527. This session: NewSectorsReadOK=357520, ReadErrors=7
|
||||
Current sector: 357528. This session: NewSectorsReadOK=357520, ReadErrors=8
|
||||
Current sector: 357529. This session: NewSectorsReadOK=357520, ReadErrors=9
|
||||
Current sector: 357530. This session: NewSectorsReadOK=357520, ReadErrors=10
|
||||
Current sector: 357531. This session: NewSectorsReadOK=357520, ReadErrors=11
|
||||
Current sector: 357532. This session: NewSectorsReadOK=357520, ReadErrors=12
|
||||
Current sector: 357533. This session: NewSectorsReadOK=357520, ReadErrors=13
|
||||
Current sector: 357534. This session: NewSectorsReadOK=357520, ReadErrors=14
|
||||
Current sector: 357535. This session: NewSectorsReadOK=357520, ReadErrors=15
|
||||
Current sector: 357536. This session: NewSectorsReadOK=357520, ReadErrors=16
|
||||
Current sector: 357536. This session: NewSectorsReadOK=357520, ReadErrors=16
|
||||
Sector 357536, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357536: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357537. This session: NewSectorsReadOK=357520, ReadErrors=17
|
||||
Current sector: 357538. This session: NewSectorsReadOK=357520, ReadErrors=18
|
||||
Current sector: 357539. This session: NewSectorsReadOK=357520, ReadErrors=19
|
||||
Current sector: 357540. This session: NewSectorsReadOK=357520, ReadErrors=20
|
||||
Current sector: 357541. This session: NewSectorsReadOK=357520, ReadErrors=21
|
||||
Current sector: 357542. This session: NewSectorsReadOK=357520, ReadErrors=22
|
||||
Current sector: 357543. This session: NewSectorsReadOK=357520, ReadErrors=23
|
||||
Current sector: 357544. This session: NewSectorsReadOK=357520, ReadErrors=24
|
||||
Current sector: 357545. This session: NewSectorsReadOK=357520, ReadErrors=25
|
||||
Current sector: 357546. This session: NewSectorsReadOK=357520, ReadErrors=26
|
||||
Current sector: 357547. This session: NewSectorsReadOK=357520, ReadErrors=27
|
||||
Current sector: 357548. This session: NewSectorsReadOK=357520, ReadErrors=28
|
||||
Current sector: 357549. This session: NewSectorsReadOK=357520, ReadErrors=29
|
||||
Current sector: 357550. This session: NewSectorsReadOK=357520, ReadErrors=30
|
||||
Current sector: 357551. This session: NewSectorsReadOK=357520, ReadErrors=31
|
||||
Current sector: 357552. This session: NewSectorsReadOK=357520, ReadErrors=32
|
||||
Current sector: 357552. This session: NewSectorsReadOK=357520, ReadErrors=32
|
||||
Sector 357552, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357552: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357553. This session: NewSectorsReadOK=357520, ReadErrors=33
|
||||
Current sector: 357554. This session: NewSectorsReadOK=357520, ReadErrors=34
|
||||
Current sector: 357555. This session: NewSectorsReadOK=357520, ReadErrors=35
|
||||
Current sector: 357556. This session: NewSectorsReadOK=357520, ReadErrors=36
|
||||
Current sector: 357557. This session: NewSectorsReadOK=357520, ReadErrors=37
|
||||
Current sector: 357558. This session: NewSectorsReadOK=357520, ReadErrors=38
|
||||
Current sector: 357559. This session: NewSectorsReadOK=357520, ReadErrors=39
|
||||
Current sector: 357560. This session: NewSectorsReadOK=357520, ReadErrors=40
|
||||
Current sector: 357561. This session: NewSectorsReadOK=357520, ReadErrors=41
|
||||
Current sector: 357562. This session: NewSectorsReadOK=357520, ReadErrors=42
|
||||
Current sector: 357563. This session: NewSectorsReadOK=357520, ReadErrors=43
|
||||
Current sector: 357564. This session: NewSectorsReadOK=357520, ReadErrors=44
|
||||
Current sector: 357565. This session: NewSectorsReadOK=357520, ReadErrors=45
|
||||
Current sector: 357566. This session: NewSectorsReadOK=357520, ReadErrors=46
|
||||
Current sector: 357567. This session: NewSectorsReadOK=357520, ReadErrors=47
|
||||
Current sector: 357568. This session: NewSectorsReadOK=357520, ReadErrors=48
|
||||
Current sector: 357568. This session: NewSectorsReadOK=357520, ReadErrors=48
|
||||
Sector 357568, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357568: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357569. This session: NewSectorsReadOK=357520, ReadErrors=49
|
||||
Current sector: 357570. This session: NewSectorsReadOK=357520, ReadErrors=50
|
||||
Current sector: 357571. This session: NewSectorsReadOK=357520, ReadErrors=51
|
||||
Current sector: 357572. This session: NewSectorsReadOK=357520, ReadErrors=52
|
||||
Current sector: 357573. This session: NewSectorsReadOK=357520, ReadErrors=53
|
||||
Current sector: 357574. This session: NewSectorsReadOK=357520, ReadErrors=54
|
||||
Current sector: 357575. This session: NewSectorsReadOK=357520, ReadErrors=55
|
||||
Current sector: 357576. This session: NewSectorsReadOK=357520, ReadErrors=56
|
||||
Current sector: 357577. This session: NewSectorsReadOK=357520, ReadErrors=57
|
||||
Current sector: 357578. This session: NewSectorsReadOK=357520, ReadErrors=58
|
||||
Current sector: 357579. This session: NewSectorsReadOK=357520, ReadErrors=59
|
||||
Current sector: 357580. This session: NewSectorsReadOK=357520, ReadErrors=60
|
||||
Current sector: 357581. This session: NewSectorsReadOK=357520, ReadErrors=61
|
||||
Current sector: 357582. This session: NewSectorsReadOK=357520, ReadErrors=62
|
||||
Current sector: 357583. This session: NewSectorsReadOK=357520, ReadErrors=63
|
||||
Current sector: 357584. This session: NewSectorsReadOK=357520, ReadErrors=64
|
||||
Current sector: 357584. This session: NewSectorsReadOK=357520, ReadErrors=64
|
||||
Sector 357584, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357584: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357585. This session: NewSectorsReadOK=357520, ReadErrors=65
|
||||
Current sector: 357586. This session: NewSectorsReadOK=357520, ReadErrors=66
|
||||
Current sector: 357587. This session: NewSectorsReadOK=357520, ReadErrors=67
|
||||
Current sector: 357588. This session: NewSectorsReadOK=357520, ReadErrors=68
|
||||
Current sector: 357589. This session: NewSectorsReadOK=357520, ReadErrors=69
|
||||
Current sector: 357590. This session: NewSectorsReadOK=357520, ReadErrors=70
|
||||
Current sector: 357591. This session: NewSectorsReadOK=357520, ReadErrors=71
|
||||
Current sector: 357592. This session: NewSectorsReadOK=357520, ReadErrors=72
|
||||
Current sector: 357593. This session: NewSectorsReadOK=357520, ReadErrors=73
|
||||
Current sector: 357594. This session: NewSectorsReadOK=357520, ReadErrors=74
|
||||
Current sector: 357595. This session: NewSectorsReadOK=357520, ReadErrors=75
|
||||
Current sector: 357596. This session: NewSectorsReadOK=357520, ReadErrors=76
|
||||
Current sector: 357597. This session: NewSectorsReadOK=357520, ReadErrors=77
|
||||
Current sector: 357598. This session: NewSectorsReadOK=357520, ReadErrors=78
|
||||
Current sector: 357599. This session: NewSectorsReadOK=357520, ReadErrors=79
|
||||
Current sector: 357600. This session: NewSectorsReadOK=357520, ReadErrors=80
|
||||
Current sector: 357600. This session: NewSectorsReadOK=357520, ReadErrors=80
|
||||
Sector 357600, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357600: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357601. This session: NewSectorsReadOK=357520, ReadErrors=81
|
||||
Current sector: 357602. This session: NewSectorsReadOK=357520, ReadErrors=82
|
||||
Current sector: 357603. This session: NewSectorsReadOK=357520, ReadErrors=83
|
||||
Current sector: 357604. This session: NewSectorsReadOK=357520, ReadErrors=84
|
||||
Current sector: 357605. This session: NewSectorsReadOK=357520, ReadErrors=85
|
||||
Current sector: 357606. This session: NewSectorsReadOK=357520, ReadErrors=86
|
||||
Current sector: 357607. This session: NewSectorsReadOK=357520, ReadErrors=87
|
||||
Current sector: 357608. This session: NewSectorsReadOK=357520, ReadErrors=88
|
||||
Current sector: 357609. This session: NewSectorsReadOK=357520, ReadErrors=89
|
||||
Current sector: 357610. This session: NewSectorsReadOK=357520, ReadErrors=90
|
||||
Current sector: 357611. This session: NewSectorsReadOK=357520, ReadErrors=91
|
||||
Current sector: 357612. This session: NewSectorsReadOK=357520, ReadErrors=92
|
||||
Current sector: 357613. This session: NewSectorsReadOK=357520, ReadErrors=93
|
||||
Current sector: 357614. This session: NewSectorsReadOK=357520, ReadErrors=94
|
||||
Current sector: 357615. This session: NewSectorsReadOK=357520, ReadErrors=95
|
||||
Current sector: 357616. This session: NewSectorsReadOK=357520, ReadErrors=96
|
||||
Current sector: 357616. This session: NewSectorsReadOK=357520, ReadErrors=96
|
||||
Sector 357616, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357616: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357617. This session: NewSectorsReadOK=357520, ReadErrors=97
|
||||
Current sector: 357618. This session: NewSectorsReadOK=357520, ReadErrors=98
|
||||
Current sector: 357619. This session: NewSectorsReadOK=357520, ReadErrors=99
|
||||
Current sector: 357620. This session: NewSectorsReadOK=357520, ReadErrors=100
|
||||
Current sector: 357621. This session: NewSectorsReadOK=357520, ReadErrors=101
|
||||
Current sector: 357622. This session: NewSectorsReadOK=357520, ReadErrors=102
|
||||
Current sector: 357623. This session: NewSectorsReadOK=357520, ReadErrors=103
|
||||
Current sector: 357624. This session: NewSectorsReadOK=357520, ReadErrors=104
|
||||
Current sector: 357625. This session: NewSectorsReadOK=357520, ReadErrors=105
|
||||
Current sector: 357626. This session: NewSectorsReadOK=357520, ReadErrors=106
|
||||
Current sector: 357627. This session: NewSectorsReadOK=357520, ReadErrors=107
|
||||
Current sector: 357628. This session: NewSectorsReadOK=357520, ReadErrors=108
|
||||
Current sector: 357629. This session: NewSectorsReadOK=357520, ReadErrors=109
|
||||
Current sector: 357630. This session: NewSectorsReadOK=357520, ReadErrors=110
|
||||
Current sector: 357631. This session: NewSectorsReadOK=357520, ReadErrors=111
|
||||
Current sector: 357632. This session: NewSectorsReadOK=357520, ReadErrors=112
|
||||
Current sector: 357632. This session: NewSectorsReadOK=357520, ReadErrors=112
|
||||
Sector 357632, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357632: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357633. This session: NewSectorsReadOK=357520, ReadErrors=113
|
||||
Current sector: 357634. This session: NewSectorsReadOK=357520, ReadErrors=114
|
||||
Current sector: 357635. This session: NewSectorsReadOK=357520, ReadErrors=115
|
||||
Current sector: 357636. This session: NewSectorsReadOK=357520, ReadErrors=116
|
||||
Current sector: 357637. This session: NewSectorsReadOK=357520, ReadErrors=117
|
||||
Current sector: 357638. This session: NewSectorsReadOK=357520, ReadErrors=118
|
||||
Current sector: 357639. This session: NewSectorsReadOK=357520, ReadErrors=119
|
||||
Current sector: 357640. This session: NewSectorsReadOK=357520, ReadErrors=120
|
||||
Current sector: 357641. This session: NewSectorsReadOK=357520, ReadErrors=121
|
||||
Current sector: 357642. This session: NewSectorsReadOK=357520, ReadErrors=122
|
||||
Current sector: 357643. This session: NewSectorsReadOK=357520, ReadErrors=123
|
||||
Current sector: 357644. This session: NewSectorsReadOK=357520, ReadErrors=124
|
||||
Current sector: 357645. This session: NewSectorsReadOK=357520, ReadErrors=125
|
||||
Current sector: 357646. This session: NewSectorsReadOK=357520, ReadErrors=126
|
||||
Current sector: 357647. This session: NewSectorsReadOK=357520, ReadErrors=127
|
||||
Current sector: 357648. This session: NewSectorsReadOK=357520, ReadErrors=128
|
||||
Current sector: 357648. This session: NewSectorsReadOK=357520, ReadErrors=128
|
||||
Sector 357648, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357648: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357649. This session: NewSectorsReadOK=357520, ReadErrors=129
|
||||
Sector 357649, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357649: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357650. This session: NewSectorsReadOK=357520, ReadErrors=130
|
||||
Sector 357650, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357650: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357651. This session: NewSectorsReadOK=357520, ReadErrors=131
|
||||
Sector 357651, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357651: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357652. This session: NewSectorsReadOK=357520, ReadErrors=132
|
||||
Sector 357652, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357652: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357653. This session: NewSectorsReadOK=357520, ReadErrors=133
|
||||
Sector 357653, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357653: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357654. This session: NewSectorsReadOK=357520, ReadErrors=134
|
||||
Sector 357654, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357654: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357655. This session: NewSectorsReadOK=357520, ReadErrors=135
|
||||
|
||||
135 unreadable sectors.
|
||||
CrcBuf contents, image path none (medium):
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -114,18 +114,73 @@ Reading CRC information from ecc data (RS02) ... RS02LayoutFromImage(): returnin
|
||||
done.
|
||||
Sector 34880, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34880: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 34881. This session: NewSectorsReadOK=34880, ReadErrors=1
|
||||
Current sector: 34882. This session: NewSectorsReadOK=34880, ReadErrors=2
|
||||
Current sector: 34883. This session: NewSectorsReadOK=34880, ReadErrors=3
|
||||
Current sector: 34884. This session: NewSectorsReadOK=34880, ReadErrors=4
|
||||
Current sector: 34885. This session: NewSectorsReadOK=34880, ReadErrors=5
|
||||
Current sector: 34886. This session: NewSectorsReadOK=34880, ReadErrors=6
|
||||
Current sector: 34887. This session: NewSectorsReadOK=34880, ReadErrors=7
|
||||
Current sector: 34888. This session: NewSectorsReadOK=34880, ReadErrors=8
|
||||
Current sector: 34889. This session: NewSectorsReadOK=34880, ReadErrors=9
|
||||
Current sector: 34890. This session: NewSectorsReadOK=34880, ReadErrors=10
|
||||
Current sector: 34891. This session: NewSectorsReadOK=34880, ReadErrors=11
|
||||
Current sector: 34892. This session: NewSectorsReadOK=34880, ReadErrors=12
|
||||
Current sector: 34893. This session: NewSectorsReadOK=34880, ReadErrors=13
|
||||
Current sector: 34894. This session: NewSectorsReadOK=34880, ReadErrors=14
|
||||
Current sector: 34895. This session: NewSectorsReadOK=34880, ReadErrors=15
|
||||
Current sector: 34896. This session: NewSectorsReadOK=34880, ReadErrors=16
|
||||
Current sector: 34896. This session: NewSectorsReadOK=34880, ReadErrors=16
|
||||
Sector 34896, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34896: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 34897. This session: NewSectorsReadOK=34880, ReadErrors=17
|
||||
Current sector: 34898. This session: NewSectorsReadOK=34880, ReadErrors=18
|
||||
Current sector: 34899. This session: NewSectorsReadOK=34880, ReadErrors=19
|
||||
Current sector: 34900. This session: NewSectorsReadOK=34880, ReadErrors=20
|
||||
Current sector: 34901. This session: NewSectorsReadOK=34880, ReadErrors=21
|
||||
Current sector: 34902. This session: NewSectorsReadOK=34880, ReadErrors=22
|
||||
Current sector: 34903. This session: NewSectorsReadOK=34880, ReadErrors=23
|
||||
Current sector: 34904. This session: NewSectorsReadOK=34880, ReadErrors=24
|
||||
Current sector: 34905. This session: NewSectorsReadOK=34880, ReadErrors=25
|
||||
Current sector: 34906. This session: NewSectorsReadOK=34880, ReadErrors=26
|
||||
Current sector: 34907. This session: NewSectorsReadOK=34880, ReadErrors=27
|
||||
Current sector: 34908. This session: NewSectorsReadOK=34880, ReadErrors=28
|
||||
Current sector: 34909. This session: NewSectorsReadOK=34880, ReadErrors=29
|
||||
Current sector: 34910. This session: NewSectorsReadOK=34880, ReadErrors=30
|
||||
Current sector: 34911. This session: NewSectorsReadOK=34880, ReadErrors=31
|
||||
Current sector: 34912. This session: NewSectorsReadOK=34880, ReadErrors=32
|
||||
Current sector: 34912. This session: NewSectorsReadOK=34880, ReadErrors=32
|
||||
Sector 34912, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34912: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 34913. This session: NewSectorsReadOK=34880, ReadErrors=33
|
||||
Current sector: 34914. This session: NewSectorsReadOK=34880, ReadErrors=34
|
||||
Current sector: 34915. This session: NewSectorsReadOK=34880, ReadErrors=35
|
||||
Current sector: 34916. This session: NewSectorsReadOK=34880, ReadErrors=36
|
||||
Current sector: 34917. This session: NewSectorsReadOK=34880, ReadErrors=37
|
||||
Current sector: 34918. This session: NewSectorsReadOK=34880, ReadErrors=38
|
||||
Current sector: 34919. This session: NewSectorsReadOK=34880, ReadErrors=39
|
||||
Current sector: 34920. This session: NewSectorsReadOK=34880, ReadErrors=40
|
||||
Current sector: 34921. This session: NewSectorsReadOK=34880, ReadErrors=41
|
||||
Current sector: 34922. This session: NewSectorsReadOK=34880, ReadErrors=42
|
||||
Current sector: 34923. This session: NewSectorsReadOK=34880, ReadErrors=43
|
||||
Current sector: 34924. This session: NewSectorsReadOK=34880, ReadErrors=44
|
||||
Current sector: 34925. This session: NewSectorsReadOK=34880, ReadErrors=45
|
||||
Current sector: 34926. This session: NewSectorsReadOK=34880, ReadErrors=46
|
||||
Current sector: 34927. This session: NewSectorsReadOK=34880, ReadErrors=47
|
||||
Current sector: 34928. This session: NewSectorsReadOK=34880, ReadErrors=48
|
||||
Current sector: 34928. This session: NewSectorsReadOK=34880, ReadErrors=48
|
||||
Sector 34928, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34928: Illegal Request; Logical block address out of range.
|
||||
Current sector: 34929. This session: NewSectorsReadOK=34880, ReadErrors=49
|
||||
Sector 34929, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34929: Illegal Request; Logical block address out of range.
|
||||
Current sector: 34930. This session: NewSectorsReadOK=34880, ReadErrors=50
|
||||
Sector 34930, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34930: Illegal Request; Logical block address out of range.
|
||||
Current sector: 34931. This session: NewSectorsReadOK=34880, ReadErrors=51
|
||||
Sector 34931, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34931: Illegal Request; Logical block address out of range.
|
||||
Current sector: 34932. This session: NewSectorsReadOK=34880, ReadErrors=52
|
||||
|
||||
52 unreadable sectors.
|
||||
CrcBuf contents, image path none (medium):
|
||||
|
||||
@@ -116,34 +116,177 @@ Reading CRC information from ecc data (RS02) ... RS02LayoutFromImage(): returnin
|
||||
done.
|
||||
Sector 357520, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357520: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357521. This session: NewSectorsReadOK=357520, ReadErrors=1
|
||||
Current sector: 357522. This session: NewSectorsReadOK=357520, ReadErrors=2
|
||||
Current sector: 357523. This session: NewSectorsReadOK=357520, ReadErrors=3
|
||||
Current sector: 357524. This session: NewSectorsReadOK=357520, ReadErrors=4
|
||||
Current sector: 357525. This session: NewSectorsReadOK=357520, ReadErrors=5
|
||||
Current sector: 357526. This session: NewSectorsReadOK=357520, ReadErrors=6
|
||||
Current sector: 357527. This session: NewSectorsReadOK=357520, ReadErrors=7
|
||||
Current sector: 357528. This session: NewSectorsReadOK=357520, ReadErrors=8
|
||||
Current sector: 357529. This session: NewSectorsReadOK=357520, ReadErrors=9
|
||||
Current sector: 357530. This session: NewSectorsReadOK=357520, ReadErrors=10
|
||||
Current sector: 357531. This session: NewSectorsReadOK=357520, ReadErrors=11
|
||||
Current sector: 357532. This session: NewSectorsReadOK=357520, ReadErrors=12
|
||||
Current sector: 357533. This session: NewSectorsReadOK=357520, ReadErrors=13
|
||||
Current sector: 357534. This session: NewSectorsReadOK=357520, ReadErrors=14
|
||||
Current sector: 357535. This session: NewSectorsReadOK=357520, ReadErrors=15
|
||||
Current sector: 357536. This session: NewSectorsReadOK=357520, ReadErrors=16
|
||||
Current sector: 357536. This session: NewSectorsReadOK=357520, ReadErrors=16
|
||||
Sector 357536, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357536: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357537. This session: NewSectorsReadOK=357520, ReadErrors=17
|
||||
Current sector: 357538. This session: NewSectorsReadOK=357520, ReadErrors=18
|
||||
Current sector: 357539. This session: NewSectorsReadOK=357520, ReadErrors=19
|
||||
Current sector: 357540. This session: NewSectorsReadOK=357520, ReadErrors=20
|
||||
Current sector: 357541. This session: NewSectorsReadOK=357520, ReadErrors=21
|
||||
Current sector: 357542. This session: NewSectorsReadOK=357520, ReadErrors=22
|
||||
Current sector: 357543. This session: NewSectorsReadOK=357520, ReadErrors=23
|
||||
Current sector: 357544. This session: NewSectorsReadOK=357520, ReadErrors=24
|
||||
Current sector: 357545. This session: NewSectorsReadOK=357520, ReadErrors=25
|
||||
Current sector: 357546. This session: NewSectorsReadOK=357520, ReadErrors=26
|
||||
Current sector: 357547. This session: NewSectorsReadOK=357520, ReadErrors=27
|
||||
Current sector: 357548. This session: NewSectorsReadOK=357520, ReadErrors=28
|
||||
Current sector: 357549. This session: NewSectorsReadOK=357520, ReadErrors=29
|
||||
Current sector: 357550. This session: NewSectorsReadOK=357520, ReadErrors=30
|
||||
Current sector: 357551. This session: NewSectorsReadOK=357520, ReadErrors=31
|
||||
Current sector: 357552. This session: NewSectorsReadOK=357520, ReadErrors=32
|
||||
Current sector: 357552. This session: NewSectorsReadOK=357520, ReadErrors=32
|
||||
Sector 357552, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357552: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357553. This session: NewSectorsReadOK=357520, ReadErrors=33
|
||||
Current sector: 357554. This session: NewSectorsReadOK=357520, ReadErrors=34
|
||||
Current sector: 357555. This session: NewSectorsReadOK=357520, ReadErrors=35
|
||||
Current sector: 357556. This session: NewSectorsReadOK=357520, ReadErrors=36
|
||||
Current sector: 357557. This session: NewSectorsReadOK=357520, ReadErrors=37
|
||||
Current sector: 357558. This session: NewSectorsReadOK=357520, ReadErrors=38
|
||||
Current sector: 357559. This session: NewSectorsReadOK=357520, ReadErrors=39
|
||||
Current sector: 357560. This session: NewSectorsReadOK=357520, ReadErrors=40
|
||||
Current sector: 357561. This session: NewSectorsReadOK=357520, ReadErrors=41
|
||||
Current sector: 357562. This session: NewSectorsReadOK=357520, ReadErrors=42
|
||||
Current sector: 357563. This session: NewSectorsReadOK=357520, ReadErrors=43
|
||||
Current sector: 357564. This session: NewSectorsReadOK=357520, ReadErrors=44
|
||||
Current sector: 357565. This session: NewSectorsReadOK=357520, ReadErrors=45
|
||||
Current sector: 357566. This session: NewSectorsReadOK=357520, ReadErrors=46
|
||||
Current sector: 357567. This session: NewSectorsReadOK=357520, ReadErrors=47
|
||||
Current sector: 357568. This session: NewSectorsReadOK=357520, ReadErrors=48
|
||||
Current sector: 357568. This session: NewSectorsReadOK=357520, ReadErrors=48
|
||||
Sector 357568, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357568: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357569. This session: NewSectorsReadOK=357520, ReadErrors=49
|
||||
Current sector: 357570. This session: NewSectorsReadOK=357520, ReadErrors=50
|
||||
Current sector: 357571. This session: NewSectorsReadOK=357520, ReadErrors=51
|
||||
Current sector: 357572. This session: NewSectorsReadOK=357520, ReadErrors=52
|
||||
Current sector: 357573. This session: NewSectorsReadOK=357520, ReadErrors=53
|
||||
Current sector: 357574. This session: NewSectorsReadOK=357520, ReadErrors=54
|
||||
Current sector: 357575. This session: NewSectorsReadOK=357520, ReadErrors=55
|
||||
Current sector: 357576. This session: NewSectorsReadOK=357520, ReadErrors=56
|
||||
Current sector: 357577. This session: NewSectorsReadOK=357520, ReadErrors=57
|
||||
Current sector: 357578. This session: NewSectorsReadOK=357520, ReadErrors=58
|
||||
Current sector: 357579. This session: NewSectorsReadOK=357520, ReadErrors=59
|
||||
Current sector: 357580. This session: NewSectorsReadOK=357520, ReadErrors=60
|
||||
Current sector: 357581. This session: NewSectorsReadOK=357520, ReadErrors=61
|
||||
Current sector: 357582. This session: NewSectorsReadOK=357520, ReadErrors=62
|
||||
Current sector: 357583. This session: NewSectorsReadOK=357520, ReadErrors=63
|
||||
Current sector: 357584. This session: NewSectorsReadOK=357520, ReadErrors=64
|
||||
Current sector: 357584. This session: NewSectorsReadOK=357520, ReadErrors=64
|
||||
Sector 357584, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357584: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357585. This session: NewSectorsReadOK=357520, ReadErrors=65
|
||||
Current sector: 357586. This session: NewSectorsReadOK=357520, ReadErrors=66
|
||||
Current sector: 357587. This session: NewSectorsReadOK=357520, ReadErrors=67
|
||||
Current sector: 357588. This session: NewSectorsReadOK=357520, ReadErrors=68
|
||||
Current sector: 357589. This session: NewSectorsReadOK=357520, ReadErrors=69
|
||||
Current sector: 357590. This session: NewSectorsReadOK=357520, ReadErrors=70
|
||||
Current sector: 357591. This session: NewSectorsReadOK=357520, ReadErrors=71
|
||||
Current sector: 357592. This session: NewSectorsReadOK=357520, ReadErrors=72
|
||||
Current sector: 357593. This session: NewSectorsReadOK=357520, ReadErrors=73
|
||||
Current sector: 357594. This session: NewSectorsReadOK=357520, ReadErrors=74
|
||||
Current sector: 357595. This session: NewSectorsReadOK=357520, ReadErrors=75
|
||||
Current sector: 357596. This session: NewSectorsReadOK=357520, ReadErrors=76
|
||||
Current sector: 357597. This session: NewSectorsReadOK=357520, ReadErrors=77
|
||||
Current sector: 357598. This session: NewSectorsReadOK=357520, ReadErrors=78
|
||||
Current sector: 357599. This session: NewSectorsReadOK=357520, ReadErrors=79
|
||||
Current sector: 357600. This session: NewSectorsReadOK=357520, ReadErrors=80
|
||||
Current sector: 357600. This session: NewSectorsReadOK=357520, ReadErrors=80
|
||||
Sector 357600, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357600: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357601. This session: NewSectorsReadOK=357520, ReadErrors=81
|
||||
Current sector: 357602. This session: NewSectorsReadOK=357520, ReadErrors=82
|
||||
Current sector: 357603. This session: NewSectorsReadOK=357520, ReadErrors=83
|
||||
Current sector: 357604. This session: NewSectorsReadOK=357520, ReadErrors=84
|
||||
Current sector: 357605. This session: NewSectorsReadOK=357520, ReadErrors=85
|
||||
Current sector: 357606. This session: NewSectorsReadOK=357520, ReadErrors=86
|
||||
Current sector: 357607. This session: NewSectorsReadOK=357520, ReadErrors=87
|
||||
Current sector: 357608. This session: NewSectorsReadOK=357520, ReadErrors=88
|
||||
Current sector: 357609. This session: NewSectorsReadOK=357520, ReadErrors=89
|
||||
Current sector: 357610. This session: NewSectorsReadOK=357520, ReadErrors=90
|
||||
Current sector: 357611. This session: NewSectorsReadOK=357520, ReadErrors=91
|
||||
Current sector: 357612. This session: NewSectorsReadOK=357520, ReadErrors=92
|
||||
Current sector: 357613. This session: NewSectorsReadOK=357520, ReadErrors=93
|
||||
Current sector: 357614. This session: NewSectorsReadOK=357520, ReadErrors=94
|
||||
Current sector: 357615. This session: NewSectorsReadOK=357520, ReadErrors=95
|
||||
Current sector: 357616. This session: NewSectorsReadOK=357520, ReadErrors=96
|
||||
Current sector: 357616. This session: NewSectorsReadOK=357520, ReadErrors=96
|
||||
Sector 357616, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357616: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357617. This session: NewSectorsReadOK=357520, ReadErrors=97
|
||||
Current sector: 357618. This session: NewSectorsReadOK=357520, ReadErrors=98
|
||||
Current sector: 357619. This session: NewSectorsReadOK=357520, ReadErrors=99
|
||||
Current sector: 357620. This session: NewSectorsReadOK=357520, ReadErrors=100
|
||||
Current sector: 357621. This session: NewSectorsReadOK=357520, ReadErrors=101
|
||||
Current sector: 357622. This session: NewSectorsReadOK=357520, ReadErrors=102
|
||||
Current sector: 357623. This session: NewSectorsReadOK=357520, ReadErrors=103
|
||||
Current sector: 357624. This session: NewSectorsReadOK=357520, ReadErrors=104
|
||||
Current sector: 357625. This session: NewSectorsReadOK=357520, ReadErrors=105
|
||||
Current sector: 357626. This session: NewSectorsReadOK=357520, ReadErrors=106
|
||||
Current sector: 357627. This session: NewSectorsReadOK=357520, ReadErrors=107
|
||||
Current sector: 357628. This session: NewSectorsReadOK=357520, ReadErrors=108
|
||||
Current sector: 357629. This session: NewSectorsReadOK=357520, ReadErrors=109
|
||||
Current sector: 357630. This session: NewSectorsReadOK=357520, ReadErrors=110
|
||||
Current sector: 357631. This session: NewSectorsReadOK=357520, ReadErrors=111
|
||||
Current sector: 357632. This session: NewSectorsReadOK=357520, ReadErrors=112
|
||||
Current sector: 357632. This session: NewSectorsReadOK=357520, ReadErrors=112
|
||||
Sector 357632, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357632: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 357633. This session: NewSectorsReadOK=357520, ReadErrors=113
|
||||
Current sector: 357634. This session: NewSectorsReadOK=357520, ReadErrors=114
|
||||
Current sector: 357635. This session: NewSectorsReadOK=357520, ReadErrors=115
|
||||
Current sector: 357636. This session: NewSectorsReadOK=357520, ReadErrors=116
|
||||
Current sector: 357637. This session: NewSectorsReadOK=357520, ReadErrors=117
|
||||
Current sector: 357638. This session: NewSectorsReadOK=357520, ReadErrors=118
|
||||
Current sector: 357639. This session: NewSectorsReadOK=357520, ReadErrors=119
|
||||
Current sector: 357640. This session: NewSectorsReadOK=357520, ReadErrors=120
|
||||
Current sector: 357641. This session: NewSectorsReadOK=357520, ReadErrors=121
|
||||
Current sector: 357642. This session: NewSectorsReadOK=357520, ReadErrors=122
|
||||
Current sector: 357643. This session: NewSectorsReadOK=357520, ReadErrors=123
|
||||
Current sector: 357644. This session: NewSectorsReadOK=357520, ReadErrors=124
|
||||
Current sector: 357645. This session: NewSectorsReadOK=357520, ReadErrors=125
|
||||
Current sector: 357646. This session: NewSectorsReadOK=357520, ReadErrors=126
|
||||
Current sector: 357647. This session: NewSectorsReadOK=357520, ReadErrors=127
|
||||
Current sector: 357648. This session: NewSectorsReadOK=357520, ReadErrors=128
|
||||
Current sector: 357648. This session: NewSectorsReadOK=357520, ReadErrors=128
|
||||
Sector 357648, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357648: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357649. This session: NewSectorsReadOK=357520, ReadErrors=129
|
||||
Sector 357649, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357649: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357650. This session: NewSectorsReadOK=357520, ReadErrors=130
|
||||
Sector 357650, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357650: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357651. This session: NewSectorsReadOK=357520, ReadErrors=131
|
||||
Sector 357651, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357651: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357652. This session: NewSectorsReadOK=357520, ReadErrors=132
|
||||
Sector 357652, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357652: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357653. This session: NewSectorsReadOK=357520, ReadErrors=133
|
||||
Sector 357653, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357653: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357654. This session: NewSectorsReadOK=357520, ReadErrors=134
|
||||
Sector 357654, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 357654: Illegal Request; Logical block address out of range.
|
||||
Current sector: 357655. This session: NewSectorsReadOK=357520, ReadErrors=135
|
||||
|
||||
135 unreadable sectors.
|
||||
CrcBuf contents, image path none (medium):
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -114,18 +114,73 @@ Reading CRC information from ecc data (RS02) ... RS02LayoutFromImage(): returnin
|
||||
done.
|
||||
Sector 34880, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34880: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 34881. This session: NewSectorsReadOK=34880, ReadErrors=1
|
||||
Current sector: 34882. This session: NewSectorsReadOK=34880, ReadErrors=2
|
||||
Current sector: 34883. This session: NewSectorsReadOK=34880, ReadErrors=3
|
||||
Current sector: 34884. This session: NewSectorsReadOK=34880, ReadErrors=4
|
||||
Current sector: 34885. This session: NewSectorsReadOK=34880, ReadErrors=5
|
||||
Current sector: 34886. This session: NewSectorsReadOK=34880, ReadErrors=6
|
||||
Current sector: 34887. This session: NewSectorsReadOK=34880, ReadErrors=7
|
||||
Current sector: 34888. This session: NewSectorsReadOK=34880, ReadErrors=8
|
||||
Current sector: 34889. This session: NewSectorsReadOK=34880, ReadErrors=9
|
||||
Current sector: 34890. This session: NewSectorsReadOK=34880, ReadErrors=10
|
||||
Current sector: 34891. This session: NewSectorsReadOK=34880, ReadErrors=11
|
||||
Current sector: 34892. This session: NewSectorsReadOK=34880, ReadErrors=12
|
||||
Current sector: 34893. This session: NewSectorsReadOK=34880, ReadErrors=13
|
||||
Current sector: 34894. This session: NewSectorsReadOK=34880, ReadErrors=14
|
||||
Current sector: 34895. This session: NewSectorsReadOK=34880, ReadErrors=15
|
||||
Current sector: 34896. This session: NewSectorsReadOK=34880, ReadErrors=16
|
||||
Current sector: 34896. This session: NewSectorsReadOK=34880, ReadErrors=16
|
||||
Sector 34896, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34896: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 34897. This session: NewSectorsReadOK=34880, ReadErrors=17
|
||||
Current sector: 34898. This session: NewSectorsReadOK=34880, ReadErrors=18
|
||||
Current sector: 34899. This session: NewSectorsReadOK=34880, ReadErrors=19
|
||||
Current sector: 34900. This session: NewSectorsReadOK=34880, ReadErrors=20
|
||||
Current sector: 34901. This session: NewSectorsReadOK=34880, ReadErrors=21
|
||||
Current sector: 34902. This session: NewSectorsReadOK=34880, ReadErrors=22
|
||||
Current sector: 34903. This session: NewSectorsReadOK=34880, ReadErrors=23
|
||||
Current sector: 34904. This session: NewSectorsReadOK=34880, ReadErrors=24
|
||||
Current sector: 34905. This session: NewSectorsReadOK=34880, ReadErrors=25
|
||||
Current sector: 34906. This session: NewSectorsReadOK=34880, ReadErrors=26
|
||||
Current sector: 34907. This session: NewSectorsReadOK=34880, ReadErrors=27
|
||||
Current sector: 34908. This session: NewSectorsReadOK=34880, ReadErrors=28
|
||||
Current sector: 34909. This session: NewSectorsReadOK=34880, ReadErrors=29
|
||||
Current sector: 34910. This session: NewSectorsReadOK=34880, ReadErrors=30
|
||||
Current sector: 34911. This session: NewSectorsReadOK=34880, ReadErrors=31
|
||||
Current sector: 34912. This session: NewSectorsReadOK=34880, ReadErrors=32
|
||||
Current sector: 34912. This session: NewSectorsReadOK=34880, ReadErrors=32
|
||||
Sector 34912, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34912: Illegal Request; Logical block address out of range. Skipping 15 sectors.
|
||||
Current sector: 34913. This session: NewSectorsReadOK=34880, ReadErrors=33
|
||||
Current sector: 34914. This session: NewSectorsReadOK=34880, ReadErrors=34
|
||||
Current sector: 34915. This session: NewSectorsReadOK=34880, ReadErrors=35
|
||||
Current sector: 34916. This session: NewSectorsReadOK=34880, ReadErrors=36
|
||||
Current sector: 34917. This session: NewSectorsReadOK=34880, ReadErrors=37
|
||||
Current sector: 34918. This session: NewSectorsReadOK=34880, ReadErrors=38
|
||||
Current sector: 34919. This session: NewSectorsReadOK=34880, ReadErrors=39
|
||||
Current sector: 34920. This session: NewSectorsReadOK=34880, ReadErrors=40
|
||||
Current sector: 34921. This session: NewSectorsReadOK=34880, ReadErrors=41
|
||||
Current sector: 34922. This session: NewSectorsReadOK=34880, ReadErrors=42
|
||||
Current sector: 34923. This session: NewSectorsReadOK=34880, ReadErrors=43
|
||||
Current sector: 34924. This session: NewSectorsReadOK=34880, ReadErrors=44
|
||||
Current sector: 34925. This session: NewSectorsReadOK=34880, ReadErrors=45
|
||||
Current sector: 34926. This session: NewSectorsReadOK=34880, ReadErrors=46
|
||||
Current sector: 34927. This session: NewSectorsReadOK=34880, ReadErrors=47
|
||||
Current sector: 34928. This session: NewSectorsReadOK=34880, ReadErrors=48
|
||||
Current sector: 34928. This session: NewSectorsReadOK=34880, ReadErrors=48
|
||||
Sector 34928, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34928: Illegal Request; Logical block address out of range.
|
||||
Current sector: 34929. This session: NewSectorsReadOK=34880, ReadErrors=49
|
||||
Sector 34929, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34929: Illegal Request; Logical block address out of range.
|
||||
Current sector: 34930. This session: NewSectorsReadOK=34880, ReadErrors=50
|
||||
Sector 34930, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34930: Illegal Request; Logical block address out of range.
|
||||
Current sector: 34931. This session: NewSectorsReadOK=34880, ReadErrors=51
|
||||
Sector 34931, try 1: Illegal Request; Logical block address out of range.
|
||||
Sector 34931: Illegal Request; Logical block address out of range.
|
||||
Current sector: 34932. This session: NewSectorsReadOK=34880, ReadErrors=52
|
||||
|
||||
52 unreadable sectors.
|
||||
CrcBuf contents, image path none (medium):
|
||||
|
||||
75
regtest/database/RS02_strip_ecc
Normal file
75
regtest/database/RS02_strip_ecc
Normal file
@@ -0,0 +1,75 @@
|
||||
cbadac3ca7b6e9bccfc889b7eaded254
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
ExamineUDF(File: rs02-tmp.iso)
|
||||
Examining the ISO file system...
|
||||
Sector 16:
|
||||
Volume descriptor type = 1
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> primary volume descriptor:
|
||||
System identifier : | |
|
||||
Volume identifier : |RANDOM IMAGE |
|
||||
Volume space size : 30000 sectors
|
||||
Volume set size : 1
|
||||
Volume sequence size : 1
|
||||
Logical block size : 2048
|
||||
Path table size : 10 bytes
|
||||
L-Path table location : 19
|
||||
Opt L-Path table location : 0
|
||||
M-Path table location : 20
|
||||
Opt M-Path table location : 0
|
||||
Volume creation date/time : 16-07-2006 10:35:46.23
|
||||
Volume modification d/t : 16-07-2006 10:35:46.23
|
||||
Volume expiration d/t : 16-07-2106 10:35:46.23
|
||||
Volume effective d/t : 16-07-2006 10:35:46.23
|
||||
File structure version : 1
|
||||
Sector 17:
|
||||
Volume descriptor type = 2
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> supplementary volume descriptor: *skipped*
|
||||
Sector 18:
|
||||
Volume descriptor type = 255
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> volume descriptor set terminator;
|
||||
end of ISO file system parsing.
|
||||
Examining the UDF file system...
|
||||
not yet implemented.
|
||||
|
||||
ExamineECC() started
|
||||
...trying RS01
|
||||
...trying RS02
|
||||
RS02Recognize: file rs02-tmp.iso
|
||||
try_sector: trying sector 30000
|
||||
try_sector: header at 30000: magic cookie found
|
||||
try_sector: CRC okay
|
||||
GetImageFingerprint(16): read & cached
|
||||
try_sector: fingerprint okay, header good
|
||||
Root sector search at +0 successful
|
||||
...augmented image found
|
||||
Expected size calculated from ecc header: 34932
|
||||
--> confirmed layout variant 1
|
||||
Calculated layout for RS02 image:
|
||||
data sectors = 30000
|
||||
crc sectors = 59
|
||||
protected sectors = 30061 (incl. 2 hdr sectors)
|
||||
reed solomon secs = 4795 (35 roots, 220 data)
|
||||
header repeats = 38 (using modulo 128)
|
||||
added sectors = 4932
|
||||
total image size = 34932
|
||||
medium capacity = n.a.
|
||||
|
||||
Interleaving layout:
|
||||
137 sectors per ecc layer
|
||||
first layer sector with CRC data 136 (sector# 30002)
|
||||
|
||||
GetImageFingerprint(16): cached
|
||||
Image is augmented (expected sectors = 34932)
|
||||
Truncating image to 30000 sectors.
|
||||
Image successfully truncated back to its original size.
|
||||
143
regtest/database/RS02_strip_ecc_not
Normal file
143
regtest/database/RS02_strip_ecc_not
Normal file
@@ -0,0 +1,143 @@
|
||||
cbadac3ca7b6e9bccfc889b7eaded254
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
ExamineUDF(File: rs02-tmp.iso)
|
||||
Examining the ISO file system...
|
||||
Sector 16:
|
||||
Volume descriptor type = 1
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> primary volume descriptor:
|
||||
System identifier : | |
|
||||
Volume identifier : |RANDOM IMAGE |
|
||||
Volume space size : 30000 sectors
|
||||
Volume set size : 1
|
||||
Volume sequence size : 1
|
||||
Logical block size : 2048
|
||||
Path table size : 10 bytes
|
||||
L-Path table location : 19
|
||||
Opt L-Path table location : 0
|
||||
M-Path table location : 20
|
||||
Opt M-Path table location : 0
|
||||
Volume creation date/time : 16-07-2006 10:35:46.23
|
||||
Volume modification d/t : 16-07-2006 10:35:46.23
|
||||
Volume expiration d/t : 16-07-2106 10:35:46.23
|
||||
Volume effective d/t : 16-07-2006 10:35:46.23
|
||||
File structure version : 1
|
||||
Sector 17:
|
||||
Volume descriptor type = 2
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> supplementary volume descriptor: *skipped*
|
||||
Sector 18:
|
||||
Volume descriptor type = 255
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> volume descriptor set terminator;
|
||||
end of ISO file system parsing.
|
||||
Examining the UDF file system...
|
||||
not yet implemented.
|
||||
|
||||
ExamineECC() started
|
||||
...trying RS01
|
||||
...trying RS02
|
||||
RS02Recognize: file rs02-tmp.iso
|
||||
try_sector: trying sector 30000
|
||||
try_sector: read error, trying next header
|
||||
try_sector: trying sector 29850
|
||||
try_sector: no cookie, skipping current modulo
|
||||
RS02Recognize: No EH, entering exhaustive search
|
||||
FindHeaderInMedium: Trying modulo 4611686018427387904
|
||||
FindHeaderInMedium: Trying modulo 2305843009213693952
|
||||
FindHeaderInMedium: Trying modulo 1152921504606846976
|
||||
FindHeaderInMedium: Trying modulo 576460752303423488
|
||||
FindHeaderInMedium: Trying modulo 288230376151711744
|
||||
FindHeaderInMedium: Trying modulo 144115188075855872
|
||||
FindHeaderInMedium: Trying modulo 72057594037927936
|
||||
FindHeaderInMedium: Trying modulo 36028797018963968
|
||||
FindHeaderInMedium: Trying modulo 18014398509481984
|
||||
FindHeaderInMedium: Trying modulo 9007199254740992
|
||||
FindHeaderInMedium: Trying modulo 4503599627370496
|
||||
FindHeaderInMedium: Trying modulo 2251799813685248
|
||||
FindHeaderInMedium: Trying modulo 1125899906842624
|
||||
FindHeaderInMedium: Trying modulo 562949953421312
|
||||
FindHeaderInMedium: Trying modulo 281474976710656
|
||||
FindHeaderInMedium: Trying modulo 140737488355328
|
||||
FindHeaderInMedium: Trying modulo 70368744177664
|
||||
FindHeaderInMedium: Trying modulo 35184372088832
|
||||
FindHeaderInMedium: Trying modulo 17592186044416
|
||||
FindHeaderInMedium: Trying modulo 8796093022208
|
||||
FindHeaderInMedium: Trying modulo 4398046511104
|
||||
FindHeaderInMedium: Trying modulo 2199023255552
|
||||
FindHeaderInMedium: Trying modulo 1099511627776
|
||||
FindHeaderInMedium: Trying modulo 549755813888
|
||||
FindHeaderInMedium: Trying modulo 274877906944
|
||||
FindHeaderInMedium: Trying modulo 137438953472
|
||||
FindHeaderInMedium: Trying modulo 68719476736
|
||||
FindHeaderInMedium: Trying modulo 34359738368
|
||||
FindHeaderInMedium: Trying modulo 17179869184
|
||||
FindHeaderInMedium: Trying modulo 8589934592
|
||||
FindHeaderInMedium: Trying modulo 4294967296
|
||||
FindHeaderInMedium: Trying modulo 2147483648
|
||||
FindHeaderInMedium: Trying modulo 1073741824
|
||||
FindHeaderInMedium: Trying modulo 536870912
|
||||
FindHeaderInMedium: Trying modulo 268435456
|
||||
FindHeaderInMedium: Trying modulo 134217728
|
||||
FindHeaderInMedium: Trying modulo 67108864
|
||||
FindHeaderInMedium: Trying modulo 33554432
|
||||
FindHeaderInMedium: Trying modulo 16777216
|
||||
FindHeaderInMedium: Trying modulo 8388608
|
||||
FindHeaderInMedium: Trying modulo 4194304
|
||||
FindHeaderInMedium: Trying modulo 2097152
|
||||
FindHeaderInMedium: Trying modulo 1048576
|
||||
FindHeaderInMedium: Trying modulo 524288
|
||||
FindHeaderInMedium: Trying modulo 262144
|
||||
FindHeaderInMedium: Trying modulo 131072
|
||||
FindHeaderInMedium: Trying modulo 65536
|
||||
FindHeaderInMedium: Trying modulo 32768
|
||||
FindHeaderInMedium: Trying modulo 16384
|
||||
try_sector: trying sector 16384
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 8192
|
||||
try_sector: trying sector 24576
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 4096
|
||||
try_sector: trying sector 28672
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 2048
|
||||
Sector 28672 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 1024
|
||||
try_sector: trying sector 29696
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 512
|
||||
Sector 29696 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 256
|
||||
try_sector: trying sector 29952
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 128
|
||||
Sector 29952 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 64
|
||||
Sector 29952 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 32
|
||||
try_sector: trying sector 29984
|
||||
try_sector: no cookie, skipping current modulo
|
||||
...trying RS03
|
||||
RS03RecognizeImage: file rs02-tmp.iso
|
||||
FindRS03HeaderInImage: file rs02-tmp.iso
|
||||
RS03RecognizeImage: No EH, entering exhaustive search
|
||||
.. trying layer size 1409
|
||||
Scanning layers for signatures.
|
||||
- layer slice 0
|
||||
** All layers tested -> no RS03 data found
|
||||
...no augmented image detected.
|
||||
GetImageFingerprint(16): read & cached
|
||||
|
||||
*
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
Image is not augmented (no dvdisaster signature found).
|
||||
|
||||
522
regtest/database/RS03i_read_bad_header_exhaustive.win
Normal file
522
regtest/database/RS03i_read_bad_header_exhaustive.win
Normal file
@@ -0,0 +1,522 @@
|
||||
ca01afa400e2244fc4797cae542888d1
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
# *** OpenImageFromDevice(sim-cd) ***
|
||||
# InquireDevice returned: Simulated CD drive 1.00
|
||||
|
||||
Device: sim-cd, Simulated CD drive 1.00
|
||||
# *** query_type(Simulated CD drive 1.00, 0) ***
|
||||
# *** get_configuration(Simulated CD drive 1.00) ***
|
||||
# 8 data len, 9 current
|
||||
-> profile 9: CD-R
|
||||
# trying READ DISC INFORMATION for size
|
||||
# size returned is 32
|
||||
# trying READ DISC INFORMATION for real info
|
||||
0000: 00 20 1e 00 00 00 00 00 00 00 00 00 00 00 00 00 . ...... ........
|
||||
0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ........ ........
|
||||
# status is 1e, disc type 0
|
||||
#CD: starting media probe
|
||||
#CD: querying size of READ TOC/PMA/ATIP (for TOC)
|
||||
#CD: size returned is 12
|
||||
#CD: querying real READ TOC/PMA/ATIP (for TOC)
|
||||
0000: 00 0a 00 00 00 14 00 00 00 00 00 00 ........ ....
|
||||
#CD: control is 0x14
|
||||
#CD: querying size of READ TOC/PMA/ATIP (for full TOC)
|
||||
# Warning: Realigning length from 26 to 24
|
||||
#CD: size returned is 24
|
||||
#CD: querying real READ TOC/PMA/ATIP (for full TOC)
|
||||
0000: 00 18 00 01 00 00 00 a0 00 00 00 00 00 00 00 00 ........ ........
|
||||
0010: 00 00 00 00 00 00 00 00 ........
|
||||
#CD: 1 sessions
|
||||
#CD: CD medium detected, type: CD-R mode 1
|
||||
# query_type() returned.
|
||||
# deciding reading strategy...
|
||||
Using READ CD.
|
||||
GetImageFingerprint(16): read & cached
|
||||
|
||||
ExamineUDF(Device: Simulated CD drive 1.00)
|
||||
Examining the ISO file system...
|
||||
Sector 16:
|
||||
Volume descriptor type = 1
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> primary volume descriptor:
|
||||
System identifier : | |
|
||||
Volume identifier : |RANDOM IMAGE |
|
||||
Volume space size : 21000 sectors
|
||||
Volume set size : 1
|
||||
Volume sequence size : 1
|
||||
Logical block size : 2048
|
||||
Path table size : 10 bytes
|
||||
L-Path table location : 19
|
||||
Opt L-Path table location : 0
|
||||
M-Path table location : 20
|
||||
Opt M-Path table location : 0
|
||||
Volume creation date/time : 16-07-2006 10:35:46.23
|
||||
Volume modification d/t : 16-07-2006 10:35:46.23
|
||||
Volume expiration d/t : 16-07-2106 10:35:46.23
|
||||
Volume effective d/t : 16-07-2006 10:35:46.23
|
||||
File structure version : 1
|
||||
Sector 17:
|
||||
Volume descriptor type = 2
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> supplementary volume descriptor: *skipped*
|
||||
Sector 18:
|
||||
Volume descriptor type = 255
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> volume descriptor set terminator;
|
||||
end of ISO file system parsing.
|
||||
Examining the UDF file system...
|
||||
not yet implemented.
|
||||
|
||||
# *** read_capacity(Simulated CD drive 1.00) ***
|
||||
-> 24989
|
||||
ExamineECC() started
|
||||
...trying RS01
|
||||
...trying RS02
|
||||
RS02Recognize: medium sim-cd
|
||||
try_sector: trying sector 21000
|
||||
try_sector: no cookie, skipping current modulo
|
||||
try_sector: trying sector 20850
|
||||
try_sector: no cookie, skipping current modulo
|
||||
RS02Recognize: quick RS02 search, attempting up to 3 sector reads max
|
||||
Medium rewriteable: FALSE
|
||||
FindHeaderInMedium: Trying modulo 4611686018427387904
|
||||
FindHeaderInMedium: Trying modulo 2305843009213693952
|
||||
FindHeaderInMedium: Trying modulo 1152921504606846976
|
||||
FindHeaderInMedium: Trying modulo 576460752303423488
|
||||
FindHeaderInMedium: Trying modulo 288230376151711744
|
||||
FindHeaderInMedium: Trying modulo 144115188075855872
|
||||
FindHeaderInMedium: Trying modulo 72057594037927936
|
||||
FindHeaderInMedium: Trying modulo 36028797018963968
|
||||
FindHeaderInMedium: Trying modulo 18014398509481984
|
||||
FindHeaderInMedium: Trying modulo 9007199254740992
|
||||
FindHeaderInMedium: Trying modulo 4503599627370496
|
||||
FindHeaderInMedium: Trying modulo 2251799813685248
|
||||
FindHeaderInMedium: Trying modulo 1125899906842624
|
||||
FindHeaderInMedium: Trying modulo 562949953421312
|
||||
FindHeaderInMedium: Trying modulo 281474976710656
|
||||
FindHeaderInMedium: Trying modulo 140737488355328
|
||||
FindHeaderInMedium: Trying modulo 70368744177664
|
||||
FindHeaderInMedium: Trying modulo 35184372088832
|
||||
FindHeaderInMedium: Trying modulo 17592186044416
|
||||
FindHeaderInMedium: Trying modulo 8796093022208
|
||||
FindHeaderInMedium: Trying modulo 4398046511104
|
||||
FindHeaderInMedium: Trying modulo 2199023255552
|
||||
FindHeaderInMedium: Trying modulo 1099511627776
|
||||
FindHeaderInMedium: Trying modulo 549755813888
|
||||
FindHeaderInMedium: Trying modulo 274877906944
|
||||
FindHeaderInMedium: Trying modulo 137438953472
|
||||
FindHeaderInMedium: Trying modulo 68719476736
|
||||
FindHeaderInMedium: Trying modulo 34359738368
|
||||
FindHeaderInMedium: Trying modulo 17179869184
|
||||
FindHeaderInMedium: Trying modulo 8589934592
|
||||
FindHeaderInMedium: Trying modulo 4294967296
|
||||
FindHeaderInMedium: Trying modulo 2147483648
|
||||
FindHeaderInMedium: Trying modulo 1073741824
|
||||
FindHeaderInMedium: Trying modulo 536870912
|
||||
FindHeaderInMedium: Trying modulo 268435456
|
||||
FindHeaderInMedium: Trying modulo 134217728
|
||||
FindHeaderInMedium: Trying modulo 67108864
|
||||
FindHeaderInMedium: Trying modulo 33554432
|
||||
FindHeaderInMedium: Trying modulo 16777216
|
||||
FindHeaderInMedium: Trying modulo 8388608
|
||||
FindHeaderInMedium: Trying modulo 4194304
|
||||
FindHeaderInMedium: Trying modulo 2097152
|
||||
FindHeaderInMedium: Trying modulo 1048576
|
||||
FindHeaderInMedium: Trying modulo 524288
|
||||
FindHeaderInMedium: Trying modulo 262144
|
||||
FindHeaderInMedium: Trying modulo 131072
|
||||
FindHeaderInMedium: Trying modulo 65536
|
||||
FindHeaderInMedium: Trying modulo 32768
|
||||
FindHeaderInMedium: Trying modulo 16384
|
||||
try_sector: trying sector 16384
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 8192
|
||||
try_sector: trying sector 24576
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 4096
|
||||
Sector 24576 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 2048
|
||||
Sector 24576 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 1024
|
||||
Sector 24576 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 512
|
||||
Sector 24576 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 256
|
||||
try_sector: trying sector 24832
|
||||
try_sector: no cookie, skipping current modulo
|
||||
...trying RS03
|
||||
RS03RecognizeImage: medium sim-cd
|
||||
FindRS03HeaderInImage: medium sim-cd
|
||||
RS03RecognizeImage: No EH, entering exhaustive search
|
||||
Warning: image size set to 25000 for debugging!
|
||||
.. trying layer size 98
|
||||
Scanning layers for signatures.
|
||||
- layer slice 0
|
||||
RS03: try number = 1, reading sector 8232
|
||||
RS03: try number = 2, reading sector 8330
|
||||
RS03: try number = 3, reading sector 8428
|
||||
RS03: try number = 4, reading sector 8526
|
||||
RS03: try number = 5, reading sector 8624
|
||||
RS03: try number = 6, reading sector 8722
|
||||
RS03: try number = 7, reading sector 8820
|
||||
RS03: try number = 8, reading sector 8918
|
||||
RS03: try number = 9, reading sector 9016
|
||||
RS03: try number = 10, reading sector 9114
|
||||
RS03: try number = 11, reading sector 9212
|
||||
RS03: try number = 12, reading sector 9310
|
||||
RS03: try number = 13, reading sector 9408
|
||||
RS03: try number = 14, reading sector 9506
|
||||
RS03: try number = 15, reading sector 9604
|
||||
RS03: try number = 16, reading sector 9702
|
||||
RS03: try number = 17, reading sector 9800
|
||||
RS03: try number = 18, reading sector 9898
|
||||
RS03: try number = 19, reading sector 9996
|
||||
RS03: try number = 20, reading sector 10094
|
||||
RS03: try number = 21, reading sector 10192
|
||||
RS03: try number = 22, reading sector 10290
|
||||
RS03: try number = 23, reading sector 10388
|
||||
RS03: try number = 24, reading sector 10486
|
||||
RS03: try number = 25, reading sector 10584
|
||||
RS03: try number = 26, reading sector 10682
|
||||
RS03: try number = 27, reading sector 10780
|
||||
RS03: try number = 28, reading sector 10878
|
||||
RS03: try number = 29, reading sector 10976
|
||||
RS03: try number = 30, reading sector 11074
|
||||
RS03: try number = 31, reading sector 11172
|
||||
RS03: try number = 32, reading sector 11270
|
||||
RS03: try number = 33, reading sector 11368
|
||||
RS03: try number = 34, reading sector 11466
|
||||
RS03: try number = 35, reading sector 11564
|
||||
RS03: try number = 36, reading sector 11662
|
||||
RS03: try number = 37, reading sector 11760
|
||||
RS03: try number = 38, reading sector 11858
|
||||
RS03: try number = 39, reading sector 11956
|
||||
RS03: try number = 40, reading sector 12054
|
||||
RS03: try number = 41, reading sector 12152
|
||||
RS03: try number = 42, reading sector 12250
|
||||
RS03: try number = 43, reading sector 12348
|
||||
RS03: try number = 44, reading sector 12446
|
||||
RS03: try number = 45, reading sector 12544
|
||||
RS03: try number = 46, reading sector 12642
|
||||
RS03: try number = 47, reading sector 12740
|
||||
RS03: try number = 48, reading sector 12838
|
||||
RS03: try number = 49, reading sector 12936
|
||||
RS03: try number = 50, reading sector 13034
|
||||
RS03: try number = 51, reading sector 13132
|
||||
RS03: try number = 52, reading sector 13230
|
||||
RS03: try number = 53, reading sector 13328
|
||||
RS03: try number = 54, reading sector 13426
|
||||
RS03: try number = 55, reading sector 13524
|
||||
RS03: try number = 56, reading sector 13622
|
||||
RS03: try number = 57, reading sector 13720
|
||||
RS03: try number = 58, reading sector 13818
|
||||
RS03: try number = 59, reading sector 13916
|
||||
RS03: try number = 60, reading sector 14014
|
||||
RS03: try number = 61, reading sector 14112
|
||||
RS03: try number = 62, reading sector 14210
|
||||
RS03: try number = 63, reading sector 14308
|
||||
RS03: try number = 64, reading sector 14406
|
||||
RS03: try number = 65, reading sector 14504
|
||||
RS03: try number = 66, reading sector 14602
|
||||
RS03: try number = 67, reading sector 14700
|
||||
RS03: try number = 68, reading sector 14798
|
||||
RS03: try number = 69, reading sector 14896
|
||||
RS03: try number = 70, reading sector 14994
|
||||
RS03: try number = 71, reading sector 15092
|
||||
RS03: try number = 72, reading sector 15190
|
||||
RS03: try number = 73, reading sector 15288
|
||||
RS03: try number = 74, reading sector 15386
|
||||
RS03: try number = 75, reading sector 15484
|
||||
RS03: try number = 76, reading sector 15582
|
||||
RS03: try number = 77, reading sector 15680
|
||||
RS03: try number = 78, reading sector 15778
|
||||
RS03: try number = 79, reading sector 15876
|
||||
RS03: try number = 80, reading sector 15974
|
||||
RS03: try number = 81, reading sector 16072
|
||||
RS03: try number = 82, reading sector 16170
|
||||
RS03: try number = 83, reading sector 16268
|
||||
RS03: try number = 84, reading sector 16366
|
||||
RS03: try number = 85, reading sector 16464
|
||||
RS03: try number = 86, reading sector 16562
|
||||
RS03: try number = 87, reading sector 16660
|
||||
RS03: try number = 88, reading sector 16758
|
||||
RS03: try number = 89, reading sector 16856
|
||||
RS03: try number = 90, reading sector 16954
|
||||
RS03: try number = 91, reading sector 17052
|
||||
RS03: try number = 92, reading sector 17150
|
||||
RS03: try number = 93, reading sector 17248
|
||||
RS03: try number = 94, reading sector 17346
|
||||
RS03: try number = 95, reading sector 17444
|
||||
RS03: try number = 96, reading sector 17542
|
||||
RS03: try number = 97, reading sector 17640
|
||||
RS03: try number = 98, reading sector 17738
|
||||
RS03: try number = 99, reading sector 17836
|
||||
RS03: try number = 100, reading sector 17934
|
||||
RS03: try number = 101, reading sector 18032
|
||||
RS03: try number = 102, reading sector 18130
|
||||
RS03: try number = 103, reading sector 18228
|
||||
RS03: try number = 104, reading sector 18326
|
||||
RS03: try number = 105, reading sector 18424
|
||||
RS03: try number = 106, reading sector 18522
|
||||
RS03: try number = 107, reading sector 18620
|
||||
RS03: try number = 108, reading sector 18718
|
||||
RS03: try number = 109, reading sector 18816
|
||||
RS03: try number = 110, reading sector 18914
|
||||
RS03: try number = 111, reading sector 19012
|
||||
RS03: try number = 112, reading sector 19110
|
||||
RS03: try number = 113, reading sector 19208
|
||||
RS03: try number = 114, reading sector 19306
|
||||
RS03: try number = 115, reading sector 19404
|
||||
RS03: try number = 116, reading sector 19502
|
||||
RS03: try number = 117, reading sector 19600
|
||||
RS03: try number = 118, reading sector 19698
|
||||
RS03: try number = 119, reading sector 19796
|
||||
RS03: try number = 120, reading sector 19894
|
||||
RS03: try number = 121, reading sector 19992
|
||||
RS03: try number = 122, reading sector 20090
|
||||
RS03: try number = 123, reading sector 20188
|
||||
RS03: try number = 124, reading sector 20286
|
||||
RS03: try number = 125, reading sector 20384
|
||||
RS03: try number = 126, reading sector 20482
|
||||
RS03: try number = 127, reading sector 20580
|
||||
RS03: try number = 128, reading sector 20678
|
||||
RS03: try number = 129, reading sector 20776
|
||||
RS03: try number = 130, reading sector 20874
|
||||
RS03: try number = 131, reading sector 20972
|
||||
RS03: try number = 132, reading sector 21070
|
||||
** Success: sector 21070, rediscovered format with 39 roots
|
||||
...augmented image found
|
||||
# Calling query_size()
|
||||
# *** query_size(Simulated CD drive 1.00) ***
|
||||
Medium size obtained from ECC header: 24990 sectors
|
||||
# returned: 24990 sectors
|
||||
Medium "Random Image": CD-R mode 1, 24990 sectors, Ecc, created 16-07-2006.
|
||||
|
||||
Creating new rs03i-tmp.iso image.
|
||||
Reading CRC information from ecc data (RS03) ... Calculated layout for RS03 image:
|
||||
data sectors = 21000
|
||||
data padding = 68
|
||||
layer size = 98
|
||||
total sectors = 24990
|
||||
medium capacity = 0
|
||||
header position = 21000
|
||||
first CRC sector = 21070
|
||||
first ECC sector = 21168
|
||||
ndata = 216
|
||||
nroots = 39 (18.1%)
|
||||
|
||||
done.
|
||||
* CRC error, sector: 21000
|
||||
Current sector: 22032. This session: NewSectorsReadOK=22032, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22048. This session: NewSectorsReadOK=22048, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22064. This session: NewSectorsReadOK=22064, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22080. This session: NewSectorsReadOK=22080, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22096. This session: NewSectorsReadOK=22096, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22112. This session: NewSectorsReadOK=22112, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22128. This session: NewSectorsReadOK=22128, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22144. This session: NewSectorsReadOK=22144, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22160. This session: NewSectorsReadOK=22160, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22176. This session: NewSectorsReadOK=22176, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22192. This session: NewSectorsReadOK=22192, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22208. This session: NewSectorsReadOK=22208, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22224. This session: NewSectorsReadOK=22224, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22240. This session: NewSectorsReadOK=22240, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22256. This session: NewSectorsReadOK=22256, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22272. This session: NewSectorsReadOK=22272, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22288. This session: NewSectorsReadOK=22288, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22304. This session: NewSectorsReadOK=22304, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22320. This session: NewSectorsReadOK=22320, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22336. This session: NewSectorsReadOK=22336, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22352. This session: NewSectorsReadOK=22352, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22368. This session: NewSectorsReadOK=22368, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22384. This session: NewSectorsReadOK=22384, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22400. This session: NewSectorsReadOK=22400, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22416. This session: NewSectorsReadOK=22416, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22432. This session: NewSectorsReadOK=22432, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22448. This session: NewSectorsReadOK=22448, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22464. This session: NewSectorsReadOK=22464, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22480. This session: NewSectorsReadOK=22480, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22496. This session: NewSectorsReadOK=22496, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22512. This session: NewSectorsReadOK=22512, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22528. This session: NewSectorsReadOK=22528, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22544. This session: NewSectorsReadOK=22544, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22560. This session: NewSectorsReadOK=22560, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22576. This session: NewSectorsReadOK=22576, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22592. This session: NewSectorsReadOK=22592, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22608. This session: NewSectorsReadOK=22608, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22624. This session: NewSectorsReadOK=22624, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22640. This session: NewSectorsReadOK=22640, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22656. This session: NewSectorsReadOK=22656, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22672. This session: NewSectorsReadOK=22672, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22688. This session: NewSectorsReadOK=22688, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22704. This session: NewSectorsReadOK=22704, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22720. This session: NewSectorsReadOK=22720, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22736. This session: NewSectorsReadOK=22736, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22752. This session: NewSectorsReadOK=22752, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22768. This session: NewSectorsReadOK=22768, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22784. This session: NewSectorsReadOK=22784, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22800. This session: NewSectorsReadOK=22800, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22816. This session: NewSectorsReadOK=22816, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22832. This session: NewSectorsReadOK=22832, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22848. This session: NewSectorsReadOK=22848, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22864. This session: NewSectorsReadOK=22864, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22880. This session: NewSectorsReadOK=22880, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22896. This session: NewSectorsReadOK=22896, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22912. This session: NewSectorsReadOK=22912, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22928. This session: NewSectorsReadOK=22928, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22944. This session: NewSectorsReadOK=22944, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22960. This session: NewSectorsReadOK=22960, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22976. This session: NewSectorsReadOK=22976, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 22992. This session: NewSectorsReadOK=22992, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23008. This session: NewSectorsReadOK=23008, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23024. This session: NewSectorsReadOK=23024, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23040. This session: NewSectorsReadOK=23040, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23056. This session: NewSectorsReadOK=23056, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23072. This session: NewSectorsReadOK=23072, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23088. This session: NewSectorsReadOK=23088, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23104. This session: NewSectorsReadOK=23104, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23120. This session: NewSectorsReadOK=23120, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23136. This session: NewSectorsReadOK=23136, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23152. This session: NewSectorsReadOK=23152, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23168. This session: NewSectorsReadOK=23168, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23184. This session: NewSectorsReadOK=23184, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23200. This session: NewSectorsReadOK=23200, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23216. This session: NewSectorsReadOK=23216, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23232. This session: NewSectorsReadOK=23232, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23248. This session: NewSectorsReadOK=23248, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23264. This session: NewSectorsReadOK=23264, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23280. This session: NewSectorsReadOK=23280, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23296. This session: NewSectorsReadOK=23296, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23312. This session: NewSectorsReadOK=23312, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23328. This session: NewSectorsReadOK=23328, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23344. This session: NewSectorsReadOK=23344, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23360. This session: NewSectorsReadOK=23360, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23376. This session: NewSectorsReadOK=23376, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23392. This session: NewSectorsReadOK=23392, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23408. This session: NewSectorsReadOK=23408, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23424. This session: NewSectorsReadOK=23424, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23440. This session: NewSectorsReadOK=23440, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23456. This session: NewSectorsReadOK=23456, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23472. This session: NewSectorsReadOK=23472, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23488. This session: NewSectorsReadOK=23488, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23504. This session: NewSectorsReadOK=23504, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23520. This session: NewSectorsReadOK=23520, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23536. This session: NewSectorsReadOK=23536, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23552. This session: NewSectorsReadOK=23552, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23568. This session: NewSectorsReadOK=23568, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23584. This session: NewSectorsReadOK=23584, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23600. This session: NewSectorsReadOK=23600, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23616. This session: NewSectorsReadOK=23616, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23632. This session: NewSectorsReadOK=23632, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23648. This session: NewSectorsReadOK=23648, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23664. This session: NewSectorsReadOK=23664, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23680. This session: NewSectorsReadOK=23680, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23696. This session: NewSectorsReadOK=23696, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23712. This session: NewSectorsReadOK=23712, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23728. This session: NewSectorsReadOK=23728, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23744. This session: NewSectorsReadOK=23744, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23760. This session: NewSectorsReadOK=23760, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23776. This session: NewSectorsReadOK=23776, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23792. This session: NewSectorsReadOK=23792, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23808. This session: NewSectorsReadOK=23808, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23824. This session: NewSectorsReadOK=23824, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23840. This session: NewSectorsReadOK=23840, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23856. This session: NewSectorsReadOK=23856, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23872. This session: NewSectorsReadOK=23872, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23888. This session: NewSectorsReadOK=23888, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23904. This session: NewSectorsReadOK=23904, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23920. This session: NewSectorsReadOK=23920, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23936. This session: NewSectorsReadOK=23936, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23952. This session: NewSectorsReadOK=23952, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23968. This session: NewSectorsReadOK=23968, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 23984. This session: NewSectorsReadOK=23984, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24000. This session: NewSectorsReadOK=24000, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24016. This session: NewSectorsReadOK=24016, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24032. This session: NewSectorsReadOK=24032, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24048. This session: NewSectorsReadOK=24048, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24064. This session: NewSectorsReadOK=24064, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24080. This session: NewSectorsReadOK=24080, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24096. This session: NewSectorsReadOK=24096, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24112. This session: NewSectorsReadOK=24112, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24128. This session: NewSectorsReadOK=24128, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24144. This session: NewSectorsReadOK=24144, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24160. This session: NewSectorsReadOK=24160, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24176. This session: NewSectorsReadOK=24176, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24192. This session: NewSectorsReadOK=24192, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24208. This session: NewSectorsReadOK=24208, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24224. This session: NewSectorsReadOK=24224, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24240. This session: NewSectorsReadOK=24240, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24256. This session: NewSectorsReadOK=24256, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24272. This session: NewSectorsReadOK=24272, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24288. This session: NewSectorsReadOK=24288, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24304. This session: NewSectorsReadOK=24304, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24320. This session: NewSectorsReadOK=24320, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24336. This session: NewSectorsReadOK=24336, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24352. This session: NewSectorsReadOK=24352, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24368. This session: NewSectorsReadOK=24368, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24384. This session: NewSectorsReadOK=24384, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24400. This session: NewSectorsReadOK=24400, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24416. This session: NewSectorsReadOK=24416, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24432. This session: NewSectorsReadOK=24432, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24448. This session: NewSectorsReadOK=24448, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24464. This session: NewSectorsReadOK=24464, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24480. This session: NewSectorsReadOK=24480, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24496. This session: NewSectorsReadOK=24496, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24512. This session: NewSectorsReadOK=24512, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24528. This session: NewSectorsReadOK=24528, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24544. This session: NewSectorsReadOK=24544, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24560. This session: NewSectorsReadOK=24560, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24576. This session: NewSectorsReadOK=24576, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24592. This session: NewSectorsReadOK=24592, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24608. This session: NewSectorsReadOK=24608, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24624. This session: NewSectorsReadOK=24624, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24640. This session: NewSectorsReadOK=24640, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24656. This session: NewSectorsReadOK=24656, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24672. This session: NewSectorsReadOK=24672, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24688. This session: NewSectorsReadOK=24688, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24704. This session: NewSectorsReadOK=24704, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24720. This session: NewSectorsReadOK=24720, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24736. This session: NewSectorsReadOK=24736, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24752. This session: NewSectorsReadOK=24752, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24768. This session: NewSectorsReadOK=24768, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24784. This session: NewSectorsReadOK=24784, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24800. This session: NewSectorsReadOK=24800, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24816. This session: NewSectorsReadOK=24816, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24832. This session: NewSectorsReadOK=24832, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24848. This session: NewSectorsReadOK=24848, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24864. This session: NewSectorsReadOK=24864, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24880. This session: NewSectorsReadOK=24880, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24896. This session: NewSectorsReadOK=24896, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24912. This session: NewSectorsReadOK=24912, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24928. This session: NewSectorsReadOK=24928, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24944. This session: NewSectorsReadOK=24944, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24960. This session: NewSectorsReadOK=24960, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24976. This session: NewSectorsReadOK=24976, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24977. This session: NewSectorsReadOK=24977, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24978. This session: NewSectorsReadOK=24978, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24979. This session: NewSectorsReadOK=24979, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24980. This session: NewSectorsReadOK=24980, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24981. This session: NewSectorsReadOK=24981, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24982. This session: NewSectorsReadOK=24982, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24983. This session: NewSectorsReadOK=24983, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24984. This session: NewSectorsReadOK=24984, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24985. This session: NewSectorsReadOK=24985, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24986. This session: NewSectorsReadOK=24986, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24987. This session: NewSectorsReadOK=24987, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24988. This session: NewSectorsReadOK=24988, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24989. This session: NewSectorsReadOK=24989, ReadErrors=0, CRCErrors=1
|
||||
Current sector: 24990. This session: NewSectorsReadOK=24990, ReadErrors=0, CRCErrors=1
|
||||
|
||||
1 CRC errors.
|
||||
CrcBuf contents, image path none (medium):
|
||||
crcSize: 24990, dataSectors: 21000, coveredSectors: 21070, allSectors: 24990
|
||||
md5State: invalid
|
||||
fp sector: 16; 15c0fd35a0cfa0f83b9ccbd8604c2592
|
||||
missing crcs: 0
|
||||
File diff suppressed because it is too large
Load Diff
@@ -351,6 +351,285 @@ nroots = 39 (18.1%)
|
||||
done.
|
||||
Sector 20992, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 20992: Medium Error; Unrecovered read error. Skipping 15 sectors.
|
||||
Current sector: 20993. This session: NewSectorsReadOK=20992, ReadErrors=1
|
||||
Current sector: 20994. This session: NewSectorsReadOK=20992, ReadErrors=2
|
||||
Current sector: 20995. This session: NewSectorsReadOK=20992, ReadErrors=3
|
||||
Current sector: 20996. This session: NewSectorsReadOK=20992, ReadErrors=4
|
||||
Current sector: 20997. This session: NewSectorsReadOK=20992, ReadErrors=5
|
||||
Current sector: 20998. This session: NewSectorsReadOK=20992, ReadErrors=6
|
||||
Current sector: 20999. This session: NewSectorsReadOK=20992, ReadErrors=7
|
||||
Current sector: 21000. This session: NewSectorsReadOK=20992, ReadErrors=8
|
||||
Current sector: 21001. This session: NewSectorsReadOK=20992, ReadErrors=9
|
||||
Current sector: 21002. This session: NewSectorsReadOK=20992, ReadErrors=10
|
||||
Current sector: 21003. This session: NewSectorsReadOK=20992, ReadErrors=11
|
||||
Current sector: 21004. This session: NewSectorsReadOK=20992, ReadErrors=12
|
||||
Current sector: 21005. This session: NewSectorsReadOK=20992, ReadErrors=13
|
||||
Current sector: 21006. This session: NewSectorsReadOK=20992, ReadErrors=14
|
||||
Current sector: 21007. This session: NewSectorsReadOK=20992, ReadErrors=15
|
||||
Current sector: 21008. This session: NewSectorsReadOK=20992, ReadErrors=16
|
||||
Current sector: 21008. This session: NewSectorsReadOK=20992, ReadErrors=16
|
||||
Current sector: 21024. This session: NewSectorsReadOK=21008, ReadErrors=16
|
||||
Current sector: 21040. This session: NewSectorsReadOK=21024, ReadErrors=16
|
||||
Current sector: 21056. This session: NewSectorsReadOK=21040, ReadErrors=16
|
||||
Current sector: 21072. This session: NewSectorsReadOK=21056, ReadErrors=16
|
||||
Current sector: 21088. This session: NewSectorsReadOK=21072, ReadErrors=16
|
||||
Current sector: 21104. This session: NewSectorsReadOK=21088, ReadErrors=16
|
||||
Current sector: 21120. This session: NewSectorsReadOK=21104, ReadErrors=16
|
||||
Current sector: 21136. This session: NewSectorsReadOK=21120, ReadErrors=16
|
||||
Current sector: 21152. This session: NewSectorsReadOK=21136, ReadErrors=16
|
||||
Current sector: 21168. This session: NewSectorsReadOK=21152, ReadErrors=16
|
||||
Current sector: 21184. This session: NewSectorsReadOK=21168, ReadErrors=16
|
||||
Current sector: 21200. This session: NewSectorsReadOK=21184, ReadErrors=16
|
||||
Current sector: 21216. This session: NewSectorsReadOK=21200, ReadErrors=16
|
||||
Current sector: 21232. This session: NewSectorsReadOK=21216, ReadErrors=16
|
||||
Current sector: 21248. This session: NewSectorsReadOK=21232, ReadErrors=16
|
||||
Current sector: 21264. This session: NewSectorsReadOK=21248, ReadErrors=16
|
||||
Current sector: 21280. This session: NewSectorsReadOK=21264, ReadErrors=16
|
||||
Current sector: 21296. This session: NewSectorsReadOK=21280, ReadErrors=16
|
||||
Current sector: 21312. This session: NewSectorsReadOK=21296, ReadErrors=16
|
||||
Current sector: 21328. This session: NewSectorsReadOK=21312, ReadErrors=16
|
||||
Current sector: 21344. This session: NewSectorsReadOK=21328, ReadErrors=16
|
||||
Current sector: 21360. This session: NewSectorsReadOK=21344, ReadErrors=16
|
||||
Current sector: 21376. This session: NewSectorsReadOK=21360, ReadErrors=16
|
||||
Current sector: 21392. This session: NewSectorsReadOK=21376, ReadErrors=16
|
||||
Current sector: 21408. This session: NewSectorsReadOK=21392, ReadErrors=16
|
||||
Current sector: 21424. This session: NewSectorsReadOK=21408, ReadErrors=16
|
||||
Current sector: 21440. This session: NewSectorsReadOK=21424, ReadErrors=16
|
||||
Current sector: 21456. This session: NewSectorsReadOK=21440, ReadErrors=16
|
||||
Current sector: 21472. This session: NewSectorsReadOK=21456, ReadErrors=16
|
||||
Current sector: 21488. This session: NewSectorsReadOK=21472, ReadErrors=16
|
||||
Current sector: 21504. This session: NewSectorsReadOK=21488, ReadErrors=16
|
||||
Current sector: 21520. This session: NewSectorsReadOK=21504, ReadErrors=16
|
||||
Current sector: 21536. This session: NewSectorsReadOK=21520, ReadErrors=16
|
||||
Current sector: 21552. This session: NewSectorsReadOK=21536, ReadErrors=16
|
||||
Current sector: 21568. This session: NewSectorsReadOK=21552, ReadErrors=16
|
||||
Current sector: 21584. This session: NewSectorsReadOK=21568, ReadErrors=16
|
||||
Current sector: 21600. This session: NewSectorsReadOK=21584, ReadErrors=16
|
||||
Current sector: 21616. This session: NewSectorsReadOK=21600, ReadErrors=16
|
||||
Current sector: 21632. This session: NewSectorsReadOK=21616, ReadErrors=16
|
||||
Current sector: 21648. This session: NewSectorsReadOK=21632, ReadErrors=16
|
||||
Current sector: 21664. This session: NewSectorsReadOK=21648, ReadErrors=16
|
||||
Current sector: 21680. This session: NewSectorsReadOK=21664, ReadErrors=16
|
||||
Current sector: 21696. This session: NewSectorsReadOK=21680, ReadErrors=16
|
||||
Current sector: 21712. This session: NewSectorsReadOK=21696, ReadErrors=16
|
||||
Current sector: 21728. This session: NewSectorsReadOK=21712, ReadErrors=16
|
||||
Current sector: 21744. This session: NewSectorsReadOK=21728, ReadErrors=16
|
||||
Current sector: 21760. This session: NewSectorsReadOK=21744, ReadErrors=16
|
||||
Current sector: 21776. This session: NewSectorsReadOK=21760, ReadErrors=16
|
||||
Current sector: 21792. This session: NewSectorsReadOK=21776, ReadErrors=16
|
||||
Current sector: 21808. This session: NewSectorsReadOK=21792, ReadErrors=16
|
||||
Current sector: 21824. This session: NewSectorsReadOK=21808, ReadErrors=16
|
||||
Current sector: 21840. This session: NewSectorsReadOK=21824, ReadErrors=16
|
||||
Current sector: 21856. This session: NewSectorsReadOK=21840, ReadErrors=16
|
||||
Current sector: 21872. This session: NewSectorsReadOK=21856, ReadErrors=16
|
||||
Current sector: 21888. This session: NewSectorsReadOK=21872, ReadErrors=16
|
||||
Current sector: 21904. This session: NewSectorsReadOK=21888, ReadErrors=16
|
||||
Current sector: 21920. This session: NewSectorsReadOK=21904, ReadErrors=16
|
||||
Current sector: 21936. This session: NewSectorsReadOK=21920, ReadErrors=16
|
||||
Current sector: 21952. This session: NewSectorsReadOK=21936, ReadErrors=16
|
||||
Current sector: 21968. This session: NewSectorsReadOK=21952, ReadErrors=16
|
||||
Current sector: 21984. This session: NewSectorsReadOK=21968, ReadErrors=16
|
||||
Current sector: 22000. This session: NewSectorsReadOK=21984, ReadErrors=16
|
||||
Current sector: 22016. This session: NewSectorsReadOK=22000, ReadErrors=16
|
||||
Current sector: 22032. This session: NewSectorsReadOK=22016, ReadErrors=16
|
||||
Current sector: 22048. This session: NewSectorsReadOK=22032, ReadErrors=16
|
||||
Current sector: 22064. This session: NewSectorsReadOK=22048, ReadErrors=16
|
||||
Current sector: 22080. This session: NewSectorsReadOK=22064, ReadErrors=16
|
||||
Current sector: 22096. This session: NewSectorsReadOK=22080, ReadErrors=16
|
||||
Current sector: 22112. This session: NewSectorsReadOK=22096, ReadErrors=16
|
||||
Current sector: 22128. This session: NewSectorsReadOK=22112, ReadErrors=16
|
||||
Current sector: 22144. This session: NewSectorsReadOK=22128, ReadErrors=16
|
||||
Current sector: 22160. This session: NewSectorsReadOK=22144, ReadErrors=16
|
||||
Current sector: 22176. This session: NewSectorsReadOK=22160, ReadErrors=16
|
||||
Current sector: 22192. This session: NewSectorsReadOK=22176, ReadErrors=16
|
||||
Current sector: 22208. This session: NewSectorsReadOK=22192, ReadErrors=16
|
||||
Current sector: 22224. This session: NewSectorsReadOK=22208, ReadErrors=16
|
||||
Current sector: 22240. This session: NewSectorsReadOK=22224, ReadErrors=16
|
||||
Current sector: 22256. This session: NewSectorsReadOK=22240, ReadErrors=16
|
||||
Current sector: 22272. This session: NewSectorsReadOK=22256, ReadErrors=16
|
||||
Current sector: 22288. This session: NewSectorsReadOK=22272, ReadErrors=16
|
||||
Current sector: 22304. This session: NewSectorsReadOK=22288, ReadErrors=16
|
||||
Current sector: 22320. This session: NewSectorsReadOK=22304, ReadErrors=16
|
||||
Current sector: 22336. This session: NewSectorsReadOK=22320, ReadErrors=16
|
||||
Current sector: 22352. This session: NewSectorsReadOK=22336, ReadErrors=16
|
||||
Current sector: 22368. This session: NewSectorsReadOK=22352, ReadErrors=16
|
||||
Current sector: 22384. This session: NewSectorsReadOK=22368, ReadErrors=16
|
||||
Current sector: 22400. This session: NewSectorsReadOK=22384, ReadErrors=16
|
||||
Current sector: 22416. This session: NewSectorsReadOK=22400, ReadErrors=16
|
||||
Current sector: 22432. This session: NewSectorsReadOK=22416, ReadErrors=16
|
||||
Current sector: 22448. This session: NewSectorsReadOK=22432, ReadErrors=16
|
||||
Current sector: 22464. This session: NewSectorsReadOK=22448, ReadErrors=16
|
||||
Current sector: 22480. This session: NewSectorsReadOK=22464, ReadErrors=16
|
||||
Current sector: 22496. This session: NewSectorsReadOK=22480, ReadErrors=16
|
||||
Current sector: 22512. This session: NewSectorsReadOK=22496, ReadErrors=16
|
||||
Current sector: 22528. This session: NewSectorsReadOK=22512, ReadErrors=16
|
||||
Current sector: 22544. This session: NewSectorsReadOK=22528, ReadErrors=16
|
||||
Current sector: 22560. This session: NewSectorsReadOK=22544, ReadErrors=16
|
||||
Current sector: 22576. This session: NewSectorsReadOK=22560, ReadErrors=16
|
||||
Current sector: 22592. This session: NewSectorsReadOK=22576, ReadErrors=16
|
||||
Current sector: 22608. This session: NewSectorsReadOK=22592, ReadErrors=16
|
||||
Current sector: 22624. This session: NewSectorsReadOK=22608, ReadErrors=16
|
||||
Current sector: 22640. This session: NewSectorsReadOK=22624, ReadErrors=16
|
||||
Current sector: 22656. This session: NewSectorsReadOK=22640, ReadErrors=16
|
||||
Current sector: 22672. This session: NewSectorsReadOK=22656, ReadErrors=16
|
||||
Current sector: 22688. This session: NewSectorsReadOK=22672, ReadErrors=16
|
||||
Current sector: 22704. This session: NewSectorsReadOK=22688, ReadErrors=16
|
||||
Current sector: 22720. This session: NewSectorsReadOK=22704, ReadErrors=16
|
||||
Current sector: 22736. This session: NewSectorsReadOK=22720, ReadErrors=16
|
||||
Current sector: 22752. This session: NewSectorsReadOK=22736, ReadErrors=16
|
||||
Current sector: 22768. This session: NewSectorsReadOK=22752, ReadErrors=16
|
||||
Current sector: 22784. This session: NewSectorsReadOK=22768, ReadErrors=16
|
||||
Current sector: 22800. This session: NewSectorsReadOK=22784, ReadErrors=16
|
||||
Current sector: 22816. This session: NewSectorsReadOK=22800, ReadErrors=16
|
||||
Current sector: 22832. This session: NewSectorsReadOK=22816, ReadErrors=16
|
||||
Current sector: 22848. This session: NewSectorsReadOK=22832, ReadErrors=16
|
||||
Current sector: 22864. This session: NewSectorsReadOK=22848, ReadErrors=16
|
||||
Current sector: 22880. This session: NewSectorsReadOK=22864, ReadErrors=16
|
||||
Current sector: 22896. This session: NewSectorsReadOK=22880, ReadErrors=16
|
||||
Current sector: 22912. This session: NewSectorsReadOK=22896, ReadErrors=16
|
||||
Current sector: 22928. This session: NewSectorsReadOK=22912, ReadErrors=16
|
||||
Current sector: 22944. This session: NewSectorsReadOK=22928, ReadErrors=16
|
||||
Current sector: 22960. This session: NewSectorsReadOK=22944, ReadErrors=16
|
||||
Current sector: 22976. This session: NewSectorsReadOK=22960, ReadErrors=16
|
||||
Current sector: 22992. This session: NewSectorsReadOK=22976, ReadErrors=16
|
||||
Current sector: 23008. This session: NewSectorsReadOK=22992, ReadErrors=16
|
||||
Current sector: 23024. This session: NewSectorsReadOK=23008, ReadErrors=16
|
||||
Current sector: 23040. This session: NewSectorsReadOK=23024, ReadErrors=16
|
||||
Current sector: 23056. This session: NewSectorsReadOK=23040, ReadErrors=16
|
||||
Current sector: 23072. This session: NewSectorsReadOK=23056, ReadErrors=16
|
||||
Current sector: 23088. This session: NewSectorsReadOK=23072, ReadErrors=16
|
||||
Current sector: 23104. This session: NewSectorsReadOK=23088, ReadErrors=16
|
||||
Current sector: 23120. This session: NewSectorsReadOK=23104, ReadErrors=16
|
||||
Current sector: 23136. This session: NewSectorsReadOK=23120, ReadErrors=16
|
||||
Current sector: 23152. This session: NewSectorsReadOK=23136, ReadErrors=16
|
||||
Current sector: 23168. This session: NewSectorsReadOK=23152, ReadErrors=16
|
||||
Current sector: 23184. This session: NewSectorsReadOK=23168, ReadErrors=16
|
||||
Current sector: 23200. This session: NewSectorsReadOK=23184, ReadErrors=16
|
||||
Current sector: 23216. This session: NewSectorsReadOK=23200, ReadErrors=16
|
||||
Current sector: 23232. This session: NewSectorsReadOK=23216, ReadErrors=16
|
||||
Current sector: 23248. This session: NewSectorsReadOK=23232, ReadErrors=16
|
||||
Current sector: 23264. This session: NewSectorsReadOK=23248, ReadErrors=16
|
||||
Current sector: 23280. This session: NewSectorsReadOK=23264, ReadErrors=16
|
||||
Current sector: 23296. This session: NewSectorsReadOK=23280, ReadErrors=16
|
||||
Current sector: 23312. This session: NewSectorsReadOK=23296, ReadErrors=16
|
||||
Current sector: 23328. This session: NewSectorsReadOK=23312, ReadErrors=16
|
||||
Current sector: 23344. This session: NewSectorsReadOK=23328, ReadErrors=16
|
||||
Current sector: 23360. This session: NewSectorsReadOK=23344, ReadErrors=16
|
||||
Current sector: 23376. This session: NewSectorsReadOK=23360, ReadErrors=16
|
||||
Current sector: 23392. This session: NewSectorsReadOK=23376, ReadErrors=16
|
||||
Current sector: 23408. This session: NewSectorsReadOK=23392, ReadErrors=16
|
||||
Current sector: 23424. This session: NewSectorsReadOK=23408, ReadErrors=16
|
||||
Current sector: 23440. This session: NewSectorsReadOK=23424, ReadErrors=16
|
||||
Current sector: 23456. This session: NewSectorsReadOK=23440, ReadErrors=16
|
||||
Current sector: 23472. This session: NewSectorsReadOK=23456, ReadErrors=16
|
||||
Current sector: 23488. This session: NewSectorsReadOK=23472, ReadErrors=16
|
||||
Current sector: 23504. This session: NewSectorsReadOK=23488, ReadErrors=16
|
||||
Current sector: 23520. This session: NewSectorsReadOK=23504, ReadErrors=16
|
||||
Current sector: 23536. This session: NewSectorsReadOK=23520, ReadErrors=16
|
||||
Current sector: 23552. This session: NewSectorsReadOK=23536, ReadErrors=16
|
||||
Current sector: 23568. This session: NewSectorsReadOK=23552, ReadErrors=16
|
||||
Current sector: 23584. This session: NewSectorsReadOK=23568, ReadErrors=16
|
||||
Current sector: 23600. This session: NewSectorsReadOK=23584, ReadErrors=16
|
||||
Current sector: 23616. This session: NewSectorsReadOK=23600, ReadErrors=16
|
||||
Current sector: 23632. This session: NewSectorsReadOK=23616, ReadErrors=16
|
||||
Current sector: 23648. This session: NewSectorsReadOK=23632, ReadErrors=16
|
||||
Current sector: 23664. This session: NewSectorsReadOK=23648, ReadErrors=16
|
||||
Current sector: 23680. This session: NewSectorsReadOK=23664, ReadErrors=16
|
||||
Current sector: 23696. This session: NewSectorsReadOK=23680, ReadErrors=16
|
||||
Current sector: 23712. This session: NewSectorsReadOK=23696, ReadErrors=16
|
||||
Current sector: 23728. This session: NewSectorsReadOK=23712, ReadErrors=16
|
||||
Current sector: 23744. This session: NewSectorsReadOK=23728, ReadErrors=16
|
||||
Current sector: 23760. This session: NewSectorsReadOK=23744, ReadErrors=16
|
||||
Current sector: 23776. This session: NewSectorsReadOK=23760, ReadErrors=16
|
||||
Current sector: 23792. This session: NewSectorsReadOK=23776, ReadErrors=16
|
||||
Current sector: 23808. This session: NewSectorsReadOK=23792, ReadErrors=16
|
||||
Current sector: 23824. This session: NewSectorsReadOK=23808, ReadErrors=16
|
||||
Current sector: 23840. This session: NewSectorsReadOK=23824, ReadErrors=16
|
||||
Current sector: 23856. This session: NewSectorsReadOK=23840, ReadErrors=16
|
||||
Current sector: 23872. This session: NewSectorsReadOK=23856, ReadErrors=16
|
||||
Current sector: 23888. This session: NewSectorsReadOK=23872, ReadErrors=16
|
||||
Current sector: 23904. This session: NewSectorsReadOK=23888, ReadErrors=16
|
||||
Current sector: 23920. This session: NewSectorsReadOK=23904, ReadErrors=16
|
||||
Current sector: 23936. This session: NewSectorsReadOK=23920, ReadErrors=16
|
||||
Current sector: 23952. This session: NewSectorsReadOK=23936, ReadErrors=16
|
||||
Current sector: 23968. This session: NewSectorsReadOK=23952, ReadErrors=16
|
||||
Current sector: 23984. This session: NewSectorsReadOK=23968, ReadErrors=16
|
||||
Current sector: 24000. This session: NewSectorsReadOK=23984, ReadErrors=16
|
||||
Current sector: 24016. This session: NewSectorsReadOK=24000, ReadErrors=16
|
||||
Current sector: 24032. This session: NewSectorsReadOK=24016, ReadErrors=16
|
||||
Current sector: 24048. This session: NewSectorsReadOK=24032, ReadErrors=16
|
||||
Current sector: 24064. This session: NewSectorsReadOK=24048, ReadErrors=16
|
||||
Current sector: 24080. This session: NewSectorsReadOK=24064, ReadErrors=16
|
||||
Current sector: 24096. This session: NewSectorsReadOK=24080, ReadErrors=16
|
||||
Current sector: 24112. This session: NewSectorsReadOK=24096, ReadErrors=16
|
||||
Current sector: 24128. This session: NewSectorsReadOK=24112, ReadErrors=16
|
||||
Current sector: 24144. This session: NewSectorsReadOK=24128, ReadErrors=16
|
||||
Current sector: 24160. This session: NewSectorsReadOK=24144, ReadErrors=16
|
||||
Current sector: 24176. This session: NewSectorsReadOK=24160, ReadErrors=16
|
||||
Current sector: 24192. This session: NewSectorsReadOK=24176, ReadErrors=16
|
||||
Current sector: 24208. This session: NewSectorsReadOK=24192, ReadErrors=16
|
||||
Current sector: 24224. This session: NewSectorsReadOK=24208, ReadErrors=16
|
||||
Current sector: 24240. This session: NewSectorsReadOK=24224, ReadErrors=16
|
||||
Current sector: 24256. This session: NewSectorsReadOK=24240, ReadErrors=16
|
||||
Current sector: 24272. This session: NewSectorsReadOK=24256, ReadErrors=16
|
||||
Current sector: 24288. This session: NewSectorsReadOK=24272, ReadErrors=16
|
||||
Current sector: 24304. This session: NewSectorsReadOK=24288, ReadErrors=16
|
||||
Current sector: 24320. This session: NewSectorsReadOK=24304, ReadErrors=16
|
||||
Current sector: 24336. This session: NewSectorsReadOK=24320, ReadErrors=16
|
||||
Current sector: 24352. This session: NewSectorsReadOK=24336, ReadErrors=16
|
||||
Current sector: 24368. This session: NewSectorsReadOK=24352, ReadErrors=16
|
||||
Current sector: 24384. This session: NewSectorsReadOK=24368, ReadErrors=16
|
||||
Current sector: 24400. This session: NewSectorsReadOK=24384, ReadErrors=16
|
||||
Current sector: 24416. This session: NewSectorsReadOK=24400, ReadErrors=16
|
||||
Current sector: 24432. This session: NewSectorsReadOK=24416, ReadErrors=16
|
||||
Current sector: 24448. This session: NewSectorsReadOK=24432, ReadErrors=16
|
||||
Current sector: 24464. This session: NewSectorsReadOK=24448, ReadErrors=16
|
||||
Current sector: 24480. This session: NewSectorsReadOK=24464, ReadErrors=16
|
||||
Current sector: 24496. This session: NewSectorsReadOK=24480, ReadErrors=16
|
||||
Current sector: 24512. This session: NewSectorsReadOK=24496, ReadErrors=16
|
||||
Current sector: 24528. This session: NewSectorsReadOK=24512, ReadErrors=16
|
||||
Current sector: 24544. This session: NewSectorsReadOK=24528, ReadErrors=16
|
||||
Current sector: 24560. This session: NewSectorsReadOK=24544, ReadErrors=16
|
||||
Current sector: 24576. This session: NewSectorsReadOK=24560, ReadErrors=16
|
||||
Current sector: 24592. This session: NewSectorsReadOK=24576, ReadErrors=16
|
||||
Current sector: 24608. This session: NewSectorsReadOK=24592, ReadErrors=16
|
||||
Current sector: 24624. This session: NewSectorsReadOK=24608, ReadErrors=16
|
||||
Current sector: 24640. This session: NewSectorsReadOK=24624, ReadErrors=16
|
||||
Current sector: 24656. This session: NewSectorsReadOK=24640, ReadErrors=16
|
||||
Current sector: 24672. This session: NewSectorsReadOK=24656, ReadErrors=16
|
||||
Current sector: 24688. This session: NewSectorsReadOK=24672, ReadErrors=16
|
||||
Current sector: 24704. This session: NewSectorsReadOK=24688, ReadErrors=16
|
||||
Current sector: 24720. This session: NewSectorsReadOK=24704, ReadErrors=16
|
||||
Current sector: 24736. This session: NewSectorsReadOK=24720, ReadErrors=16
|
||||
Current sector: 24752. This session: NewSectorsReadOK=24736, ReadErrors=16
|
||||
Current sector: 24768. This session: NewSectorsReadOK=24752, ReadErrors=16
|
||||
Current sector: 24784. This session: NewSectorsReadOK=24768, ReadErrors=16
|
||||
Current sector: 24800. This session: NewSectorsReadOK=24784, ReadErrors=16
|
||||
Current sector: 24816. This session: NewSectorsReadOK=24800, ReadErrors=16
|
||||
Current sector: 24832. This session: NewSectorsReadOK=24816, ReadErrors=16
|
||||
Current sector: 24848. This session: NewSectorsReadOK=24832, ReadErrors=16
|
||||
Current sector: 24864. This session: NewSectorsReadOK=24848, ReadErrors=16
|
||||
Current sector: 24880. This session: NewSectorsReadOK=24864, ReadErrors=16
|
||||
Current sector: 24896. This session: NewSectorsReadOK=24880, ReadErrors=16
|
||||
Current sector: 24912. This session: NewSectorsReadOK=24896, ReadErrors=16
|
||||
Current sector: 24928. This session: NewSectorsReadOK=24912, ReadErrors=16
|
||||
Current sector: 24944. This session: NewSectorsReadOK=24928, ReadErrors=16
|
||||
Current sector: 24960. This session: NewSectorsReadOK=24944, ReadErrors=16
|
||||
Current sector: 24976. This session: NewSectorsReadOK=24960, ReadErrors=16
|
||||
Current sector: 24977. This session: NewSectorsReadOK=24961, ReadErrors=16
|
||||
Current sector: 24978. This session: NewSectorsReadOK=24962, ReadErrors=16
|
||||
Current sector: 24979. This session: NewSectorsReadOK=24963, ReadErrors=16
|
||||
Current sector: 24980. This session: NewSectorsReadOK=24964, ReadErrors=16
|
||||
Current sector: 24981. This session: NewSectorsReadOK=24965, ReadErrors=16
|
||||
Current sector: 24982. This session: NewSectorsReadOK=24966, ReadErrors=16
|
||||
Current sector: 24983. This session: NewSectorsReadOK=24967, ReadErrors=16
|
||||
Current sector: 24984. This session: NewSectorsReadOK=24968, ReadErrors=16
|
||||
Current sector: 24985. This session: NewSectorsReadOK=24969, ReadErrors=16
|
||||
Current sector: 24986. This session: NewSectorsReadOK=24970, ReadErrors=16
|
||||
Current sector: 24987. This session: NewSectorsReadOK=24971, ReadErrors=16
|
||||
Current sector: 24988. This session: NewSectorsReadOK=24972, ReadErrors=16
|
||||
Current sector: 24989. This session: NewSectorsReadOK=24973, ReadErrors=16
|
||||
Current sector: 24990. This session: NewSectorsReadOK=24974, ReadErrors=16
|
||||
|
||||
16 unreadable sectors.
|
||||
CrcBuf contents, image path none (medium):
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -337,6 +337,829 @@ nroots = 8 ( 3.2%)
|
||||
done.
|
||||
Sector 346608, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 346608: Medium Error; Unrecovered read error. Skipping 15 sectors.
|
||||
Current sector: 346609. This session: NewSectorsReadOK=346608, ReadErrors=1
|
||||
Current sector: 346610. This session: NewSectorsReadOK=346608, ReadErrors=2
|
||||
Current sector: 346611. This session: NewSectorsReadOK=346608, ReadErrors=3
|
||||
Current sector: 346612. This session: NewSectorsReadOK=346608, ReadErrors=4
|
||||
Current sector: 346613. This session: NewSectorsReadOK=346608, ReadErrors=5
|
||||
Current sector: 346614. This session: NewSectorsReadOK=346608, ReadErrors=6
|
||||
Current sector: 346615. This session: NewSectorsReadOK=346608, ReadErrors=7
|
||||
Current sector: 346616. This session: NewSectorsReadOK=346608, ReadErrors=8
|
||||
Current sector: 346617. This session: NewSectorsReadOK=346608, ReadErrors=9
|
||||
Current sector: 346618. This session: NewSectorsReadOK=346608, ReadErrors=10
|
||||
Current sector: 346619. This session: NewSectorsReadOK=346608, ReadErrors=11
|
||||
Current sector: 346620. This session: NewSectorsReadOK=346608, ReadErrors=12
|
||||
Current sector: 346621. This session: NewSectorsReadOK=346608, ReadErrors=13
|
||||
Current sector: 346622. This session: NewSectorsReadOK=346608, ReadErrors=14
|
||||
Current sector: 346623. This session: NewSectorsReadOK=346608, ReadErrors=15
|
||||
Current sector: 346624. This session: NewSectorsReadOK=346608, ReadErrors=16
|
||||
Current sector: 346624. This session: NewSectorsReadOK=346608, ReadErrors=16
|
||||
Current sector: 346640. This session: NewSectorsReadOK=346624, ReadErrors=16
|
||||
Current sector: 346656. This session: NewSectorsReadOK=346640, ReadErrors=16
|
||||
Current sector: 346672. This session: NewSectorsReadOK=346656, ReadErrors=16
|
||||
Current sector: 346688. This session: NewSectorsReadOK=346672, ReadErrors=16
|
||||
Current sector: 346704. This session: NewSectorsReadOK=346688, ReadErrors=16
|
||||
Current sector: 346720. This session: NewSectorsReadOK=346704, ReadErrors=16
|
||||
Current sector: 346736. This session: NewSectorsReadOK=346720, ReadErrors=16
|
||||
Current sector: 346752. This session: NewSectorsReadOK=346736, ReadErrors=16
|
||||
Current sector: 346768. This session: NewSectorsReadOK=346752, ReadErrors=16
|
||||
Current sector: 346784. This session: NewSectorsReadOK=346768, ReadErrors=16
|
||||
Current sector: 346800. This session: NewSectorsReadOK=346784, ReadErrors=16
|
||||
Current sector: 346816. This session: NewSectorsReadOK=346800, ReadErrors=16
|
||||
Current sector: 346832. This session: NewSectorsReadOK=346816, ReadErrors=16
|
||||
Current sector: 346848. This session: NewSectorsReadOK=346832, ReadErrors=16
|
||||
Current sector: 346864. This session: NewSectorsReadOK=346848, ReadErrors=16
|
||||
Current sector: 346880. This session: NewSectorsReadOK=346864, ReadErrors=16
|
||||
Current sector: 346896. This session: NewSectorsReadOK=346880, ReadErrors=16
|
||||
Current sector: 346912. This session: NewSectorsReadOK=346896, ReadErrors=16
|
||||
Current sector: 346928. This session: NewSectorsReadOK=346912, ReadErrors=16
|
||||
Current sector: 346944. This session: NewSectorsReadOK=346928, ReadErrors=16
|
||||
Current sector: 346960. This session: NewSectorsReadOK=346944, ReadErrors=16
|
||||
Current sector: 346976. This session: NewSectorsReadOK=346960, ReadErrors=16
|
||||
Current sector: 346992. This session: NewSectorsReadOK=346976, ReadErrors=16
|
||||
Current sector: 347008. This session: NewSectorsReadOK=346992, ReadErrors=16
|
||||
Current sector: 347024. This session: NewSectorsReadOK=347008, ReadErrors=16
|
||||
Current sector: 347040. This session: NewSectorsReadOK=347024, ReadErrors=16
|
||||
Current sector: 347056. This session: NewSectorsReadOK=347040, ReadErrors=16
|
||||
Current sector: 347072. This session: NewSectorsReadOK=347056, ReadErrors=16
|
||||
Current sector: 347088. This session: NewSectorsReadOK=347072, ReadErrors=16
|
||||
Current sector: 347104. This session: NewSectorsReadOK=347088, ReadErrors=16
|
||||
Current sector: 347120. This session: NewSectorsReadOK=347104, ReadErrors=16
|
||||
Current sector: 347136. This session: NewSectorsReadOK=347120, ReadErrors=16
|
||||
Current sector: 347152. This session: NewSectorsReadOK=347136, ReadErrors=16
|
||||
Current sector: 347168. This session: NewSectorsReadOK=347152, ReadErrors=16
|
||||
Current sector: 347184. This session: NewSectorsReadOK=347168, ReadErrors=16
|
||||
Current sector: 347200. This session: NewSectorsReadOK=347184, ReadErrors=16
|
||||
Current sector: 347216. This session: NewSectorsReadOK=347200, ReadErrors=16
|
||||
Current sector: 347232. This session: NewSectorsReadOK=347216, ReadErrors=16
|
||||
Current sector: 347248. This session: NewSectorsReadOK=347232, ReadErrors=16
|
||||
Current sector: 347264. This session: NewSectorsReadOK=347248, ReadErrors=16
|
||||
Current sector: 347280. This session: NewSectorsReadOK=347264, ReadErrors=16
|
||||
Current sector: 347296. This session: NewSectorsReadOK=347280, ReadErrors=16
|
||||
Current sector: 347312. This session: NewSectorsReadOK=347296, ReadErrors=16
|
||||
Current sector: 347328. This session: NewSectorsReadOK=347312, ReadErrors=16
|
||||
Current sector: 347344. This session: NewSectorsReadOK=347328, ReadErrors=16
|
||||
Current sector: 347360. This session: NewSectorsReadOK=347344, ReadErrors=16
|
||||
Current sector: 347376. This session: NewSectorsReadOK=347360, ReadErrors=16
|
||||
Current sector: 347392. This session: NewSectorsReadOK=347376, ReadErrors=16
|
||||
Current sector: 347408. This session: NewSectorsReadOK=347392, ReadErrors=16
|
||||
Current sector: 347424. This session: NewSectorsReadOK=347408, ReadErrors=16
|
||||
Current sector: 347440. This session: NewSectorsReadOK=347424, ReadErrors=16
|
||||
Current sector: 347456. This session: NewSectorsReadOK=347440, ReadErrors=16
|
||||
Current sector: 347472. This session: NewSectorsReadOK=347456, ReadErrors=16
|
||||
Current sector: 347488. This session: NewSectorsReadOK=347472, ReadErrors=16
|
||||
Current sector: 347504. This session: NewSectorsReadOK=347488, ReadErrors=16
|
||||
Current sector: 347520. This session: NewSectorsReadOK=347504, ReadErrors=16
|
||||
Current sector: 347536. This session: NewSectorsReadOK=347520, ReadErrors=16
|
||||
Current sector: 347552. This session: NewSectorsReadOK=347536, ReadErrors=16
|
||||
Current sector: 347568. This session: NewSectorsReadOK=347552, ReadErrors=16
|
||||
Current sector: 347584. This session: NewSectorsReadOK=347568, ReadErrors=16
|
||||
Current sector: 347600. This session: NewSectorsReadOK=347584, ReadErrors=16
|
||||
Current sector: 347616. This session: NewSectorsReadOK=347600, ReadErrors=16
|
||||
Current sector: 347632. This session: NewSectorsReadOK=347616, ReadErrors=16
|
||||
Current sector: 347648. This session: NewSectorsReadOK=347632, ReadErrors=16
|
||||
Current sector: 347664. This session: NewSectorsReadOK=347648, ReadErrors=16
|
||||
Current sector: 347680. This session: NewSectorsReadOK=347664, ReadErrors=16
|
||||
Current sector: 347696. This session: NewSectorsReadOK=347680, ReadErrors=16
|
||||
Current sector: 347712. This session: NewSectorsReadOK=347696, ReadErrors=16
|
||||
Current sector: 347728. This session: NewSectorsReadOK=347712, ReadErrors=16
|
||||
Current sector: 347744. This session: NewSectorsReadOK=347728, ReadErrors=16
|
||||
Current sector: 347760. This session: NewSectorsReadOK=347744, ReadErrors=16
|
||||
Current sector: 347776. This session: NewSectorsReadOK=347760, ReadErrors=16
|
||||
Current sector: 347792. This session: NewSectorsReadOK=347776, ReadErrors=16
|
||||
Current sector: 347808. This session: NewSectorsReadOK=347792, ReadErrors=16
|
||||
Current sector: 347824. This session: NewSectorsReadOK=347808, ReadErrors=16
|
||||
Current sector: 347840. This session: NewSectorsReadOK=347824, ReadErrors=16
|
||||
Current sector: 347856. This session: NewSectorsReadOK=347840, ReadErrors=16
|
||||
Current sector: 347872. This session: NewSectorsReadOK=347856, ReadErrors=16
|
||||
Current sector: 347888. This session: NewSectorsReadOK=347872, ReadErrors=16
|
||||
Current sector: 347904. This session: NewSectorsReadOK=347888, ReadErrors=16
|
||||
Current sector: 347920. This session: NewSectorsReadOK=347904, ReadErrors=16
|
||||
Current sector: 347936. This session: NewSectorsReadOK=347920, ReadErrors=16
|
||||
Current sector: 347952. This session: NewSectorsReadOK=347936, ReadErrors=16
|
||||
Current sector: 347968. This session: NewSectorsReadOK=347952, ReadErrors=16
|
||||
Current sector: 347984. This session: NewSectorsReadOK=347968, ReadErrors=16
|
||||
Current sector: 348000. This session: NewSectorsReadOK=347984, ReadErrors=16
|
||||
Current sector: 348016. This session: NewSectorsReadOK=348000, ReadErrors=16
|
||||
Current sector: 348032. This session: NewSectorsReadOK=348016, ReadErrors=16
|
||||
Current sector: 348048. This session: NewSectorsReadOK=348032, ReadErrors=16
|
||||
Current sector: 348064. This session: NewSectorsReadOK=348048, ReadErrors=16
|
||||
Current sector: 348080. This session: NewSectorsReadOK=348064, ReadErrors=16
|
||||
Current sector: 348096. This session: NewSectorsReadOK=348080, ReadErrors=16
|
||||
Current sector: 348112. This session: NewSectorsReadOK=348096, ReadErrors=16
|
||||
Current sector: 348128. This session: NewSectorsReadOK=348112, ReadErrors=16
|
||||
Current sector: 348144. This session: NewSectorsReadOK=348128, ReadErrors=16
|
||||
Current sector: 348160. This session: NewSectorsReadOK=348144, ReadErrors=16
|
||||
Current sector: 348176. This session: NewSectorsReadOK=348160, ReadErrors=16
|
||||
Current sector: 348192. This session: NewSectorsReadOK=348176, ReadErrors=16
|
||||
Current sector: 348208. This session: NewSectorsReadOK=348192, ReadErrors=16
|
||||
Current sector: 348224. This session: NewSectorsReadOK=348208, ReadErrors=16
|
||||
Current sector: 348240. This session: NewSectorsReadOK=348224, ReadErrors=16
|
||||
Current sector: 348256. This session: NewSectorsReadOK=348240, ReadErrors=16
|
||||
Current sector: 348272. This session: NewSectorsReadOK=348256, ReadErrors=16
|
||||
Current sector: 348288. This session: NewSectorsReadOK=348272, ReadErrors=16
|
||||
Current sector: 348304. This session: NewSectorsReadOK=348288, ReadErrors=16
|
||||
Current sector: 348320. This session: NewSectorsReadOK=348304, ReadErrors=16
|
||||
Current sector: 348336. This session: NewSectorsReadOK=348320, ReadErrors=16
|
||||
Current sector: 348352. This session: NewSectorsReadOK=348336, ReadErrors=16
|
||||
Current sector: 348368. This session: NewSectorsReadOK=348352, ReadErrors=16
|
||||
Current sector: 348384. This session: NewSectorsReadOK=348368, ReadErrors=16
|
||||
Current sector: 348400. This session: NewSectorsReadOK=348384, ReadErrors=16
|
||||
Current sector: 348416. This session: NewSectorsReadOK=348400, ReadErrors=16
|
||||
Current sector: 348432. This session: NewSectorsReadOK=348416, ReadErrors=16
|
||||
Current sector: 348448. This session: NewSectorsReadOK=348432, ReadErrors=16
|
||||
Current sector: 348464. This session: NewSectorsReadOK=348448, ReadErrors=16
|
||||
Current sector: 348480. This session: NewSectorsReadOK=348464, ReadErrors=16
|
||||
Current sector: 348496. This session: NewSectorsReadOK=348480, ReadErrors=16
|
||||
Current sector: 348512. This session: NewSectorsReadOK=348496, ReadErrors=16
|
||||
Current sector: 348528. This session: NewSectorsReadOK=348512, ReadErrors=16
|
||||
Current sector: 348544. This session: NewSectorsReadOK=348528, ReadErrors=16
|
||||
Current sector: 348560. This session: NewSectorsReadOK=348544, ReadErrors=16
|
||||
Current sector: 348576. This session: NewSectorsReadOK=348560, ReadErrors=16
|
||||
Current sector: 348592. This session: NewSectorsReadOK=348576, ReadErrors=16
|
||||
Current sector: 348608. This session: NewSectorsReadOK=348592, ReadErrors=16
|
||||
Current sector: 348624. This session: NewSectorsReadOK=348608, ReadErrors=16
|
||||
Current sector: 348640. This session: NewSectorsReadOK=348624, ReadErrors=16
|
||||
Current sector: 348656. This session: NewSectorsReadOK=348640, ReadErrors=16
|
||||
Current sector: 348672. This session: NewSectorsReadOK=348656, ReadErrors=16
|
||||
Current sector: 348688. This session: NewSectorsReadOK=348672, ReadErrors=16
|
||||
Current sector: 348704. This session: NewSectorsReadOK=348688, ReadErrors=16
|
||||
Current sector: 348720. This session: NewSectorsReadOK=348704, ReadErrors=16
|
||||
Current sector: 348736. This session: NewSectorsReadOK=348720, ReadErrors=16
|
||||
Current sector: 348752. This session: NewSectorsReadOK=348736, ReadErrors=16
|
||||
Current sector: 348768. This session: NewSectorsReadOK=348752, ReadErrors=16
|
||||
Current sector: 348784. This session: NewSectorsReadOK=348768, ReadErrors=16
|
||||
Current sector: 348800. This session: NewSectorsReadOK=348784, ReadErrors=16
|
||||
Current sector: 348816. This session: NewSectorsReadOK=348800, ReadErrors=16
|
||||
Current sector: 348832. This session: NewSectorsReadOK=348816, ReadErrors=16
|
||||
Current sector: 348848. This session: NewSectorsReadOK=348832, ReadErrors=16
|
||||
Current sector: 348864. This session: NewSectorsReadOK=348848, ReadErrors=16
|
||||
Current sector: 348880. This session: NewSectorsReadOK=348864, ReadErrors=16
|
||||
Current sector: 348896. This session: NewSectorsReadOK=348880, ReadErrors=16
|
||||
Current sector: 348912. This session: NewSectorsReadOK=348896, ReadErrors=16
|
||||
Current sector: 348928. This session: NewSectorsReadOK=348912, ReadErrors=16
|
||||
Current sector: 348944. This session: NewSectorsReadOK=348928, ReadErrors=16
|
||||
Current sector: 348960. This session: NewSectorsReadOK=348944, ReadErrors=16
|
||||
Current sector: 348976. This session: NewSectorsReadOK=348960, ReadErrors=16
|
||||
Current sector: 348992. This session: NewSectorsReadOK=348976, ReadErrors=16
|
||||
Current sector: 349008. This session: NewSectorsReadOK=348992, ReadErrors=16
|
||||
Current sector: 349024. This session: NewSectorsReadOK=349008, ReadErrors=16
|
||||
Current sector: 349040. This session: NewSectorsReadOK=349024, ReadErrors=16
|
||||
Current sector: 349056. This session: NewSectorsReadOK=349040, ReadErrors=16
|
||||
Current sector: 349072. This session: NewSectorsReadOK=349056, ReadErrors=16
|
||||
Current sector: 349088. This session: NewSectorsReadOK=349072, ReadErrors=16
|
||||
Current sector: 349104. This session: NewSectorsReadOK=349088, ReadErrors=16
|
||||
Current sector: 349120. This session: NewSectorsReadOK=349104, ReadErrors=16
|
||||
Current sector: 349136. This session: NewSectorsReadOK=349120, ReadErrors=16
|
||||
Current sector: 349152. This session: NewSectorsReadOK=349136, ReadErrors=16
|
||||
Current sector: 349168. This session: NewSectorsReadOK=349152, ReadErrors=16
|
||||
Current sector: 349184. This session: NewSectorsReadOK=349168, ReadErrors=16
|
||||
Current sector: 349200. This session: NewSectorsReadOK=349184, ReadErrors=16
|
||||
Current sector: 349216. This session: NewSectorsReadOK=349200, ReadErrors=16
|
||||
Current sector: 349232. This session: NewSectorsReadOK=349216, ReadErrors=16
|
||||
Current sector: 349248. This session: NewSectorsReadOK=349232, ReadErrors=16
|
||||
Current sector: 349264. This session: NewSectorsReadOK=349248, ReadErrors=16
|
||||
Current sector: 349280. This session: NewSectorsReadOK=349264, ReadErrors=16
|
||||
Current sector: 349296. This session: NewSectorsReadOK=349280, ReadErrors=16
|
||||
Current sector: 349312. This session: NewSectorsReadOK=349296, ReadErrors=16
|
||||
Current sector: 349328. This session: NewSectorsReadOK=349312, ReadErrors=16
|
||||
Current sector: 349344. This session: NewSectorsReadOK=349328, ReadErrors=16
|
||||
Current sector: 349360. This session: NewSectorsReadOK=349344, ReadErrors=16
|
||||
Current sector: 349376. This session: NewSectorsReadOK=349360, ReadErrors=16
|
||||
Current sector: 349392. This session: NewSectorsReadOK=349376, ReadErrors=16
|
||||
Current sector: 349408. This session: NewSectorsReadOK=349392, ReadErrors=16
|
||||
Current sector: 349424. This session: NewSectorsReadOK=349408, ReadErrors=16
|
||||
Current sector: 349440. This session: NewSectorsReadOK=349424, ReadErrors=16
|
||||
Current sector: 349456. This session: NewSectorsReadOK=349440, ReadErrors=16
|
||||
Current sector: 349472. This session: NewSectorsReadOK=349456, ReadErrors=16
|
||||
Current sector: 349488. This session: NewSectorsReadOK=349472, ReadErrors=16
|
||||
Current sector: 349504. This session: NewSectorsReadOK=349488, ReadErrors=16
|
||||
Current sector: 349520. This session: NewSectorsReadOK=349504, ReadErrors=16
|
||||
Current sector: 349536. This session: NewSectorsReadOK=349520, ReadErrors=16
|
||||
Current sector: 349552. This session: NewSectorsReadOK=349536, ReadErrors=16
|
||||
Current sector: 349568. This session: NewSectorsReadOK=349552, ReadErrors=16
|
||||
Current sector: 349584. This session: NewSectorsReadOK=349568, ReadErrors=16
|
||||
Current sector: 349600. This session: NewSectorsReadOK=349584, ReadErrors=16
|
||||
Current sector: 349616. This session: NewSectorsReadOK=349600, ReadErrors=16
|
||||
Current sector: 349632. This session: NewSectorsReadOK=349616, ReadErrors=16
|
||||
Current sector: 349648. This session: NewSectorsReadOK=349632, ReadErrors=16
|
||||
Current sector: 349664. This session: NewSectorsReadOK=349648, ReadErrors=16
|
||||
Current sector: 349680. This session: NewSectorsReadOK=349664, ReadErrors=16
|
||||
Current sector: 349696. This session: NewSectorsReadOK=349680, ReadErrors=16
|
||||
Current sector: 349712. This session: NewSectorsReadOK=349696, ReadErrors=16
|
||||
Current sector: 349728. This session: NewSectorsReadOK=349712, ReadErrors=16
|
||||
Current sector: 349744. This session: NewSectorsReadOK=349728, ReadErrors=16
|
||||
Current sector: 349760. This session: NewSectorsReadOK=349744, ReadErrors=16
|
||||
Current sector: 349776. This session: NewSectorsReadOK=349760, ReadErrors=16
|
||||
Current sector: 349792. This session: NewSectorsReadOK=349776, ReadErrors=16
|
||||
Current sector: 349808. This session: NewSectorsReadOK=349792, ReadErrors=16
|
||||
Current sector: 349824. This session: NewSectorsReadOK=349808, ReadErrors=16
|
||||
Current sector: 349840. This session: NewSectorsReadOK=349824, ReadErrors=16
|
||||
Current sector: 349856. This session: NewSectorsReadOK=349840, ReadErrors=16
|
||||
Current sector: 349872. This session: NewSectorsReadOK=349856, ReadErrors=16
|
||||
Current sector: 349888. This session: NewSectorsReadOK=349872, ReadErrors=16
|
||||
Current sector: 349904. This session: NewSectorsReadOK=349888, ReadErrors=16
|
||||
Current sector: 349920. This session: NewSectorsReadOK=349904, ReadErrors=16
|
||||
Current sector: 349936. This session: NewSectorsReadOK=349920, ReadErrors=16
|
||||
Current sector: 349952. This session: NewSectorsReadOK=349936, ReadErrors=16
|
||||
Current sector: 349968. This session: NewSectorsReadOK=349952, ReadErrors=16
|
||||
Current sector: 349984. This session: NewSectorsReadOK=349968, ReadErrors=16
|
||||
Current sector: 350000. This session: NewSectorsReadOK=349984, ReadErrors=16
|
||||
Current sector: 350016. This session: NewSectorsReadOK=350000, ReadErrors=16
|
||||
Current sector: 350032. This session: NewSectorsReadOK=350016, ReadErrors=16
|
||||
Current sector: 350048. This session: NewSectorsReadOK=350032, ReadErrors=16
|
||||
Current sector: 350064. This session: NewSectorsReadOK=350048, ReadErrors=16
|
||||
Current sector: 350080. This session: NewSectorsReadOK=350064, ReadErrors=16
|
||||
Current sector: 350096. This session: NewSectorsReadOK=350080, ReadErrors=16
|
||||
Current sector: 350112. This session: NewSectorsReadOK=350096, ReadErrors=16
|
||||
Current sector: 350128. This session: NewSectorsReadOK=350112, ReadErrors=16
|
||||
Current sector: 350144. This session: NewSectorsReadOK=350128, ReadErrors=16
|
||||
Current sector: 350160. This session: NewSectorsReadOK=350144, ReadErrors=16
|
||||
Current sector: 350176. This session: NewSectorsReadOK=350160, ReadErrors=16
|
||||
Current sector: 350192. This session: NewSectorsReadOK=350176, ReadErrors=16
|
||||
Current sector: 350208. This session: NewSectorsReadOK=350192, ReadErrors=16
|
||||
Current sector: 350224. This session: NewSectorsReadOK=350208, ReadErrors=16
|
||||
Current sector: 350240. This session: NewSectorsReadOK=350224, ReadErrors=16
|
||||
Current sector: 350256. This session: NewSectorsReadOK=350240, ReadErrors=16
|
||||
Current sector: 350272. This session: NewSectorsReadOK=350256, ReadErrors=16
|
||||
Current sector: 350288. This session: NewSectorsReadOK=350272, ReadErrors=16
|
||||
Current sector: 350304. This session: NewSectorsReadOK=350288, ReadErrors=16
|
||||
Current sector: 350320. This session: NewSectorsReadOK=350304, ReadErrors=16
|
||||
Current sector: 350336. This session: NewSectorsReadOK=350320, ReadErrors=16
|
||||
Current sector: 350352. This session: NewSectorsReadOK=350336, ReadErrors=16
|
||||
Current sector: 350368. This session: NewSectorsReadOK=350352, ReadErrors=16
|
||||
Current sector: 350384. This session: NewSectorsReadOK=350368, ReadErrors=16
|
||||
Current sector: 350400. This session: NewSectorsReadOK=350384, ReadErrors=16
|
||||
Current sector: 350416. This session: NewSectorsReadOK=350400, ReadErrors=16
|
||||
Current sector: 350432. This session: NewSectorsReadOK=350416, ReadErrors=16
|
||||
Current sector: 350448. This session: NewSectorsReadOK=350432, ReadErrors=16
|
||||
Current sector: 350464. This session: NewSectorsReadOK=350448, ReadErrors=16
|
||||
Current sector: 350480. This session: NewSectorsReadOK=350464, ReadErrors=16
|
||||
Current sector: 350496. This session: NewSectorsReadOK=350480, ReadErrors=16
|
||||
Current sector: 350512. This session: NewSectorsReadOK=350496, ReadErrors=16
|
||||
Current sector: 350528. This session: NewSectorsReadOK=350512, ReadErrors=16
|
||||
Current sector: 350544. This session: NewSectorsReadOK=350528, ReadErrors=16
|
||||
Current sector: 350560. This session: NewSectorsReadOK=350544, ReadErrors=16
|
||||
Current sector: 350576. This session: NewSectorsReadOK=350560, ReadErrors=16
|
||||
Current sector: 350592. This session: NewSectorsReadOK=350576, ReadErrors=16
|
||||
Current sector: 350608. This session: NewSectorsReadOK=350592, ReadErrors=16
|
||||
Current sector: 350624. This session: NewSectorsReadOK=350608, ReadErrors=16
|
||||
Current sector: 350640. This session: NewSectorsReadOK=350624, ReadErrors=16
|
||||
Current sector: 350656. This session: NewSectorsReadOK=350640, ReadErrors=16
|
||||
Current sector: 350672. This session: NewSectorsReadOK=350656, ReadErrors=16
|
||||
Current sector: 350688. This session: NewSectorsReadOK=350672, ReadErrors=16
|
||||
Current sector: 350704. This session: NewSectorsReadOK=350688, ReadErrors=16
|
||||
Current sector: 350720. This session: NewSectorsReadOK=350704, ReadErrors=16
|
||||
Current sector: 350736. This session: NewSectorsReadOK=350720, ReadErrors=16
|
||||
Current sector: 350752. This session: NewSectorsReadOK=350736, ReadErrors=16
|
||||
Current sector: 350768. This session: NewSectorsReadOK=350752, ReadErrors=16
|
||||
Current sector: 350784. This session: NewSectorsReadOK=350768, ReadErrors=16
|
||||
Current sector: 350800. This session: NewSectorsReadOK=350784, ReadErrors=16
|
||||
Current sector: 350816. This session: NewSectorsReadOK=350800, ReadErrors=16
|
||||
Current sector: 350832. This session: NewSectorsReadOK=350816, ReadErrors=16
|
||||
Current sector: 350848. This session: NewSectorsReadOK=350832, ReadErrors=16
|
||||
Current sector: 350864. This session: NewSectorsReadOK=350848, ReadErrors=16
|
||||
Current sector: 350880. This session: NewSectorsReadOK=350864, ReadErrors=16
|
||||
Current sector: 350896. This session: NewSectorsReadOK=350880, ReadErrors=16
|
||||
Current sector: 350912. This session: NewSectorsReadOK=350896, ReadErrors=16
|
||||
Current sector: 350928. This session: NewSectorsReadOK=350912, ReadErrors=16
|
||||
Current sector: 350944. This session: NewSectorsReadOK=350928, ReadErrors=16
|
||||
Current sector: 350960. This session: NewSectorsReadOK=350944, ReadErrors=16
|
||||
Current sector: 350976. This session: NewSectorsReadOK=350960, ReadErrors=16
|
||||
Current sector: 350992. This session: NewSectorsReadOK=350976, ReadErrors=16
|
||||
Current sector: 351008. This session: NewSectorsReadOK=350992, ReadErrors=16
|
||||
Current sector: 351024. This session: NewSectorsReadOK=351008, ReadErrors=16
|
||||
Current sector: 351040. This session: NewSectorsReadOK=351024, ReadErrors=16
|
||||
Current sector: 351056. This session: NewSectorsReadOK=351040, ReadErrors=16
|
||||
Current sector: 351072. This session: NewSectorsReadOK=351056, ReadErrors=16
|
||||
Current sector: 351088. This session: NewSectorsReadOK=351072, ReadErrors=16
|
||||
Current sector: 351104. This session: NewSectorsReadOK=351088, ReadErrors=16
|
||||
Current sector: 351120. This session: NewSectorsReadOK=351104, ReadErrors=16
|
||||
Current sector: 351136. This session: NewSectorsReadOK=351120, ReadErrors=16
|
||||
Current sector: 351152. This session: NewSectorsReadOK=351136, ReadErrors=16
|
||||
Current sector: 351168. This session: NewSectorsReadOK=351152, ReadErrors=16
|
||||
Current sector: 351184. This session: NewSectorsReadOK=351168, ReadErrors=16
|
||||
Current sector: 351200. This session: NewSectorsReadOK=351184, ReadErrors=16
|
||||
Current sector: 351216. This session: NewSectorsReadOK=351200, ReadErrors=16
|
||||
Current sector: 351232. This session: NewSectorsReadOK=351216, ReadErrors=16
|
||||
Current sector: 351248. This session: NewSectorsReadOK=351232, ReadErrors=16
|
||||
Current sector: 351264. This session: NewSectorsReadOK=351248, ReadErrors=16
|
||||
Current sector: 351280. This session: NewSectorsReadOK=351264, ReadErrors=16
|
||||
Current sector: 351296. This session: NewSectorsReadOK=351280, ReadErrors=16
|
||||
Current sector: 351312. This session: NewSectorsReadOK=351296, ReadErrors=16
|
||||
Current sector: 351328. This session: NewSectorsReadOK=351312, ReadErrors=16
|
||||
Current sector: 351344. This session: NewSectorsReadOK=351328, ReadErrors=16
|
||||
Current sector: 351360. This session: NewSectorsReadOK=351344, ReadErrors=16
|
||||
Current sector: 351376. This session: NewSectorsReadOK=351360, ReadErrors=16
|
||||
Current sector: 351392. This session: NewSectorsReadOK=351376, ReadErrors=16
|
||||
Current sector: 351408. This session: NewSectorsReadOK=351392, ReadErrors=16
|
||||
Current sector: 351424. This session: NewSectorsReadOK=351408, ReadErrors=16
|
||||
Current sector: 351440. This session: NewSectorsReadOK=351424, ReadErrors=16
|
||||
Current sector: 351456. This session: NewSectorsReadOK=351440, ReadErrors=16
|
||||
Current sector: 351472. This session: NewSectorsReadOK=351456, ReadErrors=16
|
||||
Current sector: 351488. This session: NewSectorsReadOK=351472, ReadErrors=16
|
||||
Current sector: 351504. This session: NewSectorsReadOK=351488, ReadErrors=16
|
||||
Current sector: 351520. This session: NewSectorsReadOK=351504, ReadErrors=16
|
||||
Current sector: 351536. This session: NewSectorsReadOK=351520, ReadErrors=16
|
||||
Current sector: 351552. This session: NewSectorsReadOK=351536, ReadErrors=16
|
||||
Current sector: 351568. This session: NewSectorsReadOK=351552, ReadErrors=16
|
||||
Current sector: 351584. This session: NewSectorsReadOK=351568, ReadErrors=16
|
||||
Current sector: 351600. This session: NewSectorsReadOK=351584, ReadErrors=16
|
||||
Current sector: 351616. This session: NewSectorsReadOK=351600, ReadErrors=16
|
||||
Current sector: 351632. This session: NewSectorsReadOK=351616, ReadErrors=16
|
||||
Current sector: 351648. This session: NewSectorsReadOK=351632, ReadErrors=16
|
||||
Current sector: 351664. This session: NewSectorsReadOK=351648, ReadErrors=16
|
||||
Current sector: 351680. This session: NewSectorsReadOK=351664, ReadErrors=16
|
||||
Current sector: 351696. This session: NewSectorsReadOK=351680, ReadErrors=16
|
||||
Current sector: 351712. This session: NewSectorsReadOK=351696, ReadErrors=16
|
||||
Current sector: 351728. This session: NewSectorsReadOK=351712, ReadErrors=16
|
||||
Current sector: 351744. This session: NewSectorsReadOK=351728, ReadErrors=16
|
||||
Current sector: 351760. This session: NewSectorsReadOK=351744, ReadErrors=16
|
||||
Current sector: 351776. This session: NewSectorsReadOK=351760, ReadErrors=16
|
||||
Current sector: 351792. This session: NewSectorsReadOK=351776, ReadErrors=16
|
||||
Current sector: 351808. This session: NewSectorsReadOK=351792, ReadErrors=16
|
||||
Current sector: 351824. This session: NewSectorsReadOK=351808, ReadErrors=16
|
||||
Current sector: 351840. This session: NewSectorsReadOK=351824, ReadErrors=16
|
||||
Current sector: 351856. This session: NewSectorsReadOK=351840, ReadErrors=16
|
||||
Current sector: 351872. This session: NewSectorsReadOK=351856, ReadErrors=16
|
||||
Current sector: 351888. This session: NewSectorsReadOK=351872, ReadErrors=16
|
||||
Current sector: 351904. This session: NewSectorsReadOK=351888, ReadErrors=16
|
||||
Current sector: 351920. This session: NewSectorsReadOK=351904, ReadErrors=16
|
||||
Current sector: 351936. This session: NewSectorsReadOK=351920, ReadErrors=16
|
||||
Current sector: 351952. This session: NewSectorsReadOK=351936, ReadErrors=16
|
||||
Current sector: 351968. This session: NewSectorsReadOK=351952, ReadErrors=16
|
||||
Current sector: 351984. This session: NewSectorsReadOK=351968, ReadErrors=16
|
||||
Current sector: 352000. This session: NewSectorsReadOK=351984, ReadErrors=16
|
||||
Current sector: 352016. This session: NewSectorsReadOK=352000, ReadErrors=16
|
||||
Current sector: 352032. This session: NewSectorsReadOK=352016, ReadErrors=16
|
||||
Current sector: 352048. This session: NewSectorsReadOK=352032, ReadErrors=16
|
||||
Current sector: 352064. This session: NewSectorsReadOK=352048, ReadErrors=16
|
||||
Current sector: 352080. This session: NewSectorsReadOK=352064, ReadErrors=16
|
||||
Current sector: 352096. This session: NewSectorsReadOK=352080, ReadErrors=16
|
||||
Current sector: 352112. This session: NewSectorsReadOK=352096, ReadErrors=16
|
||||
Current sector: 352128. This session: NewSectorsReadOK=352112, ReadErrors=16
|
||||
Current sector: 352144. This session: NewSectorsReadOK=352128, ReadErrors=16
|
||||
Current sector: 352160. This session: NewSectorsReadOK=352144, ReadErrors=16
|
||||
Current sector: 352176. This session: NewSectorsReadOK=352160, ReadErrors=16
|
||||
Current sector: 352192. This session: NewSectorsReadOK=352176, ReadErrors=16
|
||||
Current sector: 352208. This session: NewSectorsReadOK=352192, ReadErrors=16
|
||||
Current sector: 352224. This session: NewSectorsReadOK=352208, ReadErrors=16
|
||||
Current sector: 352240. This session: NewSectorsReadOK=352224, ReadErrors=16
|
||||
Current sector: 352256. This session: NewSectorsReadOK=352240, ReadErrors=16
|
||||
Current sector: 352272. This session: NewSectorsReadOK=352256, ReadErrors=16
|
||||
Current sector: 352288. This session: NewSectorsReadOK=352272, ReadErrors=16
|
||||
Current sector: 352304. This session: NewSectorsReadOK=352288, ReadErrors=16
|
||||
Current sector: 352320. This session: NewSectorsReadOK=352304, ReadErrors=16
|
||||
Current sector: 352336. This session: NewSectorsReadOK=352320, ReadErrors=16
|
||||
Current sector: 352352. This session: NewSectorsReadOK=352336, ReadErrors=16
|
||||
Current sector: 352368. This session: NewSectorsReadOK=352352, ReadErrors=16
|
||||
Current sector: 352384. This session: NewSectorsReadOK=352368, ReadErrors=16
|
||||
Current sector: 352400. This session: NewSectorsReadOK=352384, ReadErrors=16
|
||||
Current sector: 352416. This session: NewSectorsReadOK=352400, ReadErrors=16
|
||||
Current sector: 352432. This session: NewSectorsReadOK=352416, ReadErrors=16
|
||||
Current sector: 352448. This session: NewSectorsReadOK=352432, ReadErrors=16
|
||||
Current sector: 352464. This session: NewSectorsReadOK=352448, ReadErrors=16
|
||||
Current sector: 352480. This session: NewSectorsReadOK=352464, ReadErrors=16
|
||||
Current sector: 352496. This session: NewSectorsReadOK=352480, ReadErrors=16
|
||||
Current sector: 352512. This session: NewSectorsReadOK=352496, ReadErrors=16
|
||||
Current sector: 352528. This session: NewSectorsReadOK=352512, ReadErrors=16
|
||||
Current sector: 352544. This session: NewSectorsReadOK=352528, ReadErrors=16
|
||||
Current sector: 352560. This session: NewSectorsReadOK=352544, ReadErrors=16
|
||||
Current sector: 352576. This session: NewSectorsReadOK=352560, ReadErrors=16
|
||||
Current sector: 352592. This session: NewSectorsReadOK=352576, ReadErrors=16
|
||||
Current sector: 352608. This session: NewSectorsReadOK=352592, ReadErrors=16
|
||||
Current sector: 352624. This session: NewSectorsReadOK=352608, ReadErrors=16
|
||||
Current sector: 352640. This session: NewSectorsReadOK=352624, ReadErrors=16
|
||||
Current sector: 352656. This session: NewSectorsReadOK=352640, ReadErrors=16
|
||||
Current sector: 352672. This session: NewSectorsReadOK=352656, ReadErrors=16
|
||||
Current sector: 352688. This session: NewSectorsReadOK=352672, ReadErrors=16
|
||||
Current sector: 352704. This session: NewSectorsReadOK=352688, ReadErrors=16
|
||||
Current sector: 352720. This session: NewSectorsReadOK=352704, ReadErrors=16
|
||||
Current sector: 352736. This session: NewSectorsReadOK=352720, ReadErrors=16
|
||||
Current sector: 352752. This session: NewSectorsReadOK=352736, ReadErrors=16
|
||||
Current sector: 352768. This session: NewSectorsReadOK=352752, ReadErrors=16
|
||||
Current sector: 352784. This session: NewSectorsReadOK=352768, ReadErrors=16
|
||||
Current sector: 352800. This session: NewSectorsReadOK=352784, ReadErrors=16
|
||||
Current sector: 352816. This session: NewSectorsReadOK=352800, ReadErrors=16
|
||||
Current sector: 352832. This session: NewSectorsReadOK=352816, ReadErrors=16
|
||||
Current sector: 352848. This session: NewSectorsReadOK=352832, ReadErrors=16
|
||||
Current sector: 352864. This session: NewSectorsReadOK=352848, ReadErrors=16
|
||||
Current sector: 352880. This session: NewSectorsReadOK=352864, ReadErrors=16
|
||||
Current sector: 352896. This session: NewSectorsReadOK=352880, ReadErrors=16
|
||||
Current sector: 352912. This session: NewSectorsReadOK=352896, ReadErrors=16
|
||||
Current sector: 352928. This session: NewSectorsReadOK=352912, ReadErrors=16
|
||||
Current sector: 352944. This session: NewSectorsReadOK=352928, ReadErrors=16
|
||||
Current sector: 352960. This session: NewSectorsReadOK=352944, ReadErrors=16
|
||||
Current sector: 352976. This session: NewSectorsReadOK=352960, ReadErrors=16
|
||||
Current sector: 352992. This session: NewSectorsReadOK=352976, ReadErrors=16
|
||||
Current sector: 353008. This session: NewSectorsReadOK=352992, ReadErrors=16
|
||||
Current sector: 353024. This session: NewSectorsReadOK=353008, ReadErrors=16
|
||||
Current sector: 353040. This session: NewSectorsReadOK=353024, ReadErrors=16
|
||||
Current sector: 353056. This session: NewSectorsReadOK=353040, ReadErrors=16
|
||||
Current sector: 353072. This session: NewSectorsReadOK=353056, ReadErrors=16
|
||||
Current sector: 353088. This session: NewSectorsReadOK=353072, ReadErrors=16
|
||||
Current sector: 353104. This session: NewSectorsReadOK=353088, ReadErrors=16
|
||||
Current sector: 353120. This session: NewSectorsReadOK=353104, ReadErrors=16
|
||||
Current sector: 353136. This session: NewSectorsReadOK=353120, ReadErrors=16
|
||||
Current sector: 353152. This session: NewSectorsReadOK=353136, ReadErrors=16
|
||||
Current sector: 353168. This session: NewSectorsReadOK=353152, ReadErrors=16
|
||||
Current sector: 353184. This session: NewSectorsReadOK=353168, ReadErrors=16
|
||||
Current sector: 353200. This session: NewSectorsReadOK=353184, ReadErrors=16
|
||||
Current sector: 353216. This session: NewSectorsReadOK=353200, ReadErrors=16
|
||||
Current sector: 353232. This session: NewSectorsReadOK=353216, ReadErrors=16
|
||||
Current sector: 353248. This session: NewSectorsReadOK=353232, ReadErrors=16
|
||||
Current sector: 353264. This session: NewSectorsReadOK=353248, ReadErrors=16
|
||||
Current sector: 353280. This session: NewSectorsReadOK=353264, ReadErrors=16
|
||||
Current sector: 353296. This session: NewSectorsReadOK=353280, ReadErrors=16
|
||||
Current sector: 353312. This session: NewSectorsReadOK=353296, ReadErrors=16
|
||||
Current sector: 353328. This session: NewSectorsReadOK=353312, ReadErrors=16
|
||||
Current sector: 353344. This session: NewSectorsReadOK=353328, ReadErrors=16
|
||||
Current sector: 353360. This session: NewSectorsReadOK=353344, ReadErrors=16
|
||||
Current sector: 353376. This session: NewSectorsReadOK=353360, ReadErrors=16
|
||||
Current sector: 353392. This session: NewSectorsReadOK=353376, ReadErrors=16
|
||||
Current sector: 353408. This session: NewSectorsReadOK=353392, ReadErrors=16
|
||||
Current sector: 353424. This session: NewSectorsReadOK=353408, ReadErrors=16
|
||||
Current sector: 353440. This session: NewSectorsReadOK=353424, ReadErrors=16
|
||||
Current sector: 353456. This session: NewSectorsReadOK=353440, ReadErrors=16
|
||||
Current sector: 353472. This session: NewSectorsReadOK=353456, ReadErrors=16
|
||||
Current sector: 353488. This session: NewSectorsReadOK=353472, ReadErrors=16
|
||||
Current sector: 353504. This session: NewSectorsReadOK=353488, ReadErrors=16
|
||||
Current sector: 353520. This session: NewSectorsReadOK=353504, ReadErrors=16
|
||||
Current sector: 353536. This session: NewSectorsReadOK=353520, ReadErrors=16
|
||||
Current sector: 353552. This session: NewSectorsReadOK=353536, ReadErrors=16
|
||||
Current sector: 353568. This session: NewSectorsReadOK=353552, ReadErrors=16
|
||||
Current sector: 353584. This session: NewSectorsReadOK=353568, ReadErrors=16
|
||||
Current sector: 353600. This session: NewSectorsReadOK=353584, ReadErrors=16
|
||||
Current sector: 353616. This session: NewSectorsReadOK=353600, ReadErrors=16
|
||||
Current sector: 353632. This session: NewSectorsReadOK=353616, ReadErrors=16
|
||||
Current sector: 353648. This session: NewSectorsReadOK=353632, ReadErrors=16
|
||||
Current sector: 353664. This session: NewSectorsReadOK=353648, ReadErrors=16
|
||||
Current sector: 353680. This session: NewSectorsReadOK=353664, ReadErrors=16
|
||||
Current sector: 353696. This session: NewSectorsReadOK=353680, ReadErrors=16
|
||||
Current sector: 353712. This session: NewSectorsReadOK=353696, ReadErrors=16
|
||||
Current sector: 353728. This session: NewSectorsReadOK=353712, ReadErrors=16
|
||||
Current sector: 353744. This session: NewSectorsReadOK=353728, ReadErrors=16
|
||||
Current sector: 353760. This session: NewSectorsReadOK=353744, ReadErrors=16
|
||||
Current sector: 353776. This session: NewSectorsReadOK=353760, ReadErrors=16
|
||||
Current sector: 353792. This session: NewSectorsReadOK=353776, ReadErrors=16
|
||||
Current sector: 353808. This session: NewSectorsReadOK=353792, ReadErrors=16
|
||||
Current sector: 353824. This session: NewSectorsReadOK=353808, ReadErrors=16
|
||||
Current sector: 353840. This session: NewSectorsReadOK=353824, ReadErrors=16
|
||||
Current sector: 353856. This session: NewSectorsReadOK=353840, ReadErrors=16
|
||||
Current sector: 353872. This session: NewSectorsReadOK=353856, ReadErrors=16
|
||||
Current sector: 353888. This session: NewSectorsReadOK=353872, ReadErrors=16
|
||||
Current sector: 353904. This session: NewSectorsReadOK=353888, ReadErrors=16
|
||||
Current sector: 353920. This session: NewSectorsReadOK=353904, ReadErrors=16
|
||||
Current sector: 353936. This session: NewSectorsReadOK=353920, ReadErrors=16
|
||||
Current sector: 353952. This session: NewSectorsReadOK=353936, ReadErrors=16
|
||||
Current sector: 353968. This session: NewSectorsReadOK=353952, ReadErrors=16
|
||||
Current sector: 353984. This session: NewSectorsReadOK=353968, ReadErrors=16
|
||||
Current sector: 354000. This session: NewSectorsReadOK=353984, ReadErrors=16
|
||||
Current sector: 354016. This session: NewSectorsReadOK=354000, ReadErrors=16
|
||||
Current sector: 354032. This session: NewSectorsReadOK=354016, ReadErrors=16
|
||||
Current sector: 354048. This session: NewSectorsReadOK=354032, ReadErrors=16
|
||||
Current sector: 354064. This session: NewSectorsReadOK=354048, ReadErrors=16
|
||||
Current sector: 354080. This session: NewSectorsReadOK=354064, ReadErrors=16
|
||||
Current sector: 354096. This session: NewSectorsReadOK=354080, ReadErrors=16
|
||||
Current sector: 354112. This session: NewSectorsReadOK=354096, ReadErrors=16
|
||||
Current sector: 354128. This session: NewSectorsReadOK=354112, ReadErrors=16
|
||||
Current sector: 354144. This session: NewSectorsReadOK=354128, ReadErrors=16
|
||||
Current sector: 354160. This session: NewSectorsReadOK=354144, ReadErrors=16
|
||||
Current sector: 354176. This session: NewSectorsReadOK=354160, ReadErrors=16
|
||||
Current sector: 354192. This session: NewSectorsReadOK=354176, ReadErrors=16
|
||||
Current sector: 354208. This session: NewSectorsReadOK=354192, ReadErrors=16
|
||||
Current sector: 354224. This session: NewSectorsReadOK=354208, ReadErrors=16
|
||||
Current sector: 354240. This session: NewSectorsReadOK=354224, ReadErrors=16
|
||||
Current sector: 354256. This session: NewSectorsReadOK=354240, ReadErrors=16
|
||||
Current sector: 354272. This session: NewSectorsReadOK=354256, ReadErrors=16
|
||||
Current sector: 354288. This session: NewSectorsReadOK=354272, ReadErrors=16
|
||||
Current sector: 354304. This session: NewSectorsReadOK=354288, ReadErrors=16
|
||||
Current sector: 354320. This session: NewSectorsReadOK=354304, ReadErrors=16
|
||||
Current sector: 354336. This session: NewSectorsReadOK=354320, ReadErrors=16
|
||||
Current sector: 354352. This session: NewSectorsReadOK=354336, ReadErrors=16
|
||||
Current sector: 354368. This session: NewSectorsReadOK=354352, ReadErrors=16
|
||||
Current sector: 354384. This session: NewSectorsReadOK=354368, ReadErrors=16
|
||||
Current sector: 354400. This session: NewSectorsReadOK=354384, ReadErrors=16
|
||||
Current sector: 354416. This session: NewSectorsReadOK=354400, ReadErrors=16
|
||||
Current sector: 354432. This session: NewSectorsReadOK=354416, ReadErrors=16
|
||||
Current sector: 354448. This session: NewSectorsReadOK=354432, ReadErrors=16
|
||||
Current sector: 354464. This session: NewSectorsReadOK=354448, ReadErrors=16
|
||||
Current sector: 354480. This session: NewSectorsReadOK=354464, ReadErrors=16
|
||||
Current sector: 354496. This session: NewSectorsReadOK=354480, ReadErrors=16
|
||||
Current sector: 354512. This session: NewSectorsReadOK=354496, ReadErrors=16
|
||||
Current sector: 354528. This session: NewSectorsReadOK=354512, ReadErrors=16
|
||||
Current sector: 354544. This session: NewSectorsReadOK=354528, ReadErrors=16
|
||||
Current sector: 354560. This session: NewSectorsReadOK=354544, ReadErrors=16
|
||||
Current sector: 354576. This session: NewSectorsReadOK=354560, ReadErrors=16
|
||||
Current sector: 354592. This session: NewSectorsReadOK=354576, ReadErrors=16
|
||||
Current sector: 354608. This session: NewSectorsReadOK=354592, ReadErrors=16
|
||||
Current sector: 354624. This session: NewSectorsReadOK=354608, ReadErrors=16
|
||||
Current sector: 354640. This session: NewSectorsReadOK=354624, ReadErrors=16
|
||||
Current sector: 354656. This session: NewSectorsReadOK=354640, ReadErrors=16
|
||||
Current sector: 354672. This session: NewSectorsReadOK=354656, ReadErrors=16
|
||||
Current sector: 354688. This session: NewSectorsReadOK=354672, ReadErrors=16
|
||||
Current sector: 354704. This session: NewSectorsReadOK=354688, ReadErrors=16
|
||||
Current sector: 354720. This session: NewSectorsReadOK=354704, ReadErrors=16
|
||||
Current sector: 354736. This session: NewSectorsReadOK=354720, ReadErrors=16
|
||||
Current sector: 354752. This session: NewSectorsReadOK=354736, ReadErrors=16
|
||||
Current sector: 354768. This session: NewSectorsReadOK=354752, ReadErrors=16
|
||||
Current sector: 354784. This session: NewSectorsReadOK=354768, ReadErrors=16
|
||||
Current sector: 354800. This session: NewSectorsReadOK=354784, ReadErrors=16
|
||||
Current sector: 354816. This session: NewSectorsReadOK=354800, ReadErrors=16
|
||||
Current sector: 354832. This session: NewSectorsReadOK=354816, ReadErrors=16
|
||||
Current sector: 354848. This session: NewSectorsReadOK=354832, ReadErrors=16
|
||||
Current sector: 354864. This session: NewSectorsReadOK=354848, ReadErrors=16
|
||||
Current sector: 354880. This session: NewSectorsReadOK=354864, ReadErrors=16
|
||||
Current sector: 354896. This session: NewSectorsReadOK=354880, ReadErrors=16
|
||||
Current sector: 354912. This session: NewSectorsReadOK=354896, ReadErrors=16
|
||||
Current sector: 354928. This session: NewSectorsReadOK=354912, ReadErrors=16
|
||||
Current sector: 354944. This session: NewSectorsReadOK=354928, ReadErrors=16
|
||||
Current sector: 354960. This session: NewSectorsReadOK=354944, ReadErrors=16
|
||||
Current sector: 354976. This session: NewSectorsReadOK=354960, ReadErrors=16
|
||||
Current sector: 354992. This session: NewSectorsReadOK=354976, ReadErrors=16
|
||||
Current sector: 355008. This session: NewSectorsReadOK=354992, ReadErrors=16
|
||||
Current sector: 355024. This session: NewSectorsReadOK=355008, ReadErrors=16
|
||||
Current sector: 355040. This session: NewSectorsReadOK=355024, ReadErrors=16
|
||||
Current sector: 355056. This session: NewSectorsReadOK=355040, ReadErrors=16
|
||||
Current sector: 355072. This session: NewSectorsReadOK=355056, ReadErrors=16
|
||||
Current sector: 355088. This session: NewSectorsReadOK=355072, ReadErrors=16
|
||||
Current sector: 355104. This session: NewSectorsReadOK=355088, ReadErrors=16
|
||||
Current sector: 355120. This session: NewSectorsReadOK=355104, ReadErrors=16
|
||||
Current sector: 355136. This session: NewSectorsReadOK=355120, ReadErrors=16
|
||||
Current sector: 355152. This session: NewSectorsReadOK=355136, ReadErrors=16
|
||||
Current sector: 355168. This session: NewSectorsReadOK=355152, ReadErrors=16
|
||||
Current sector: 355184. This session: NewSectorsReadOK=355168, ReadErrors=16
|
||||
Current sector: 355200. This session: NewSectorsReadOK=355184, ReadErrors=16
|
||||
Current sector: 355216. This session: NewSectorsReadOK=355200, ReadErrors=16
|
||||
Current sector: 355232. This session: NewSectorsReadOK=355216, ReadErrors=16
|
||||
Current sector: 355248. This session: NewSectorsReadOK=355232, ReadErrors=16
|
||||
Current sector: 355264. This session: NewSectorsReadOK=355248, ReadErrors=16
|
||||
Current sector: 355280. This session: NewSectorsReadOK=355264, ReadErrors=16
|
||||
Current sector: 355296. This session: NewSectorsReadOK=355280, ReadErrors=16
|
||||
Current sector: 355312. This session: NewSectorsReadOK=355296, ReadErrors=16
|
||||
Current sector: 355328. This session: NewSectorsReadOK=355312, ReadErrors=16
|
||||
Current sector: 355344. This session: NewSectorsReadOK=355328, ReadErrors=16
|
||||
Current sector: 355360. This session: NewSectorsReadOK=355344, ReadErrors=16
|
||||
Current sector: 355376. This session: NewSectorsReadOK=355360, ReadErrors=16
|
||||
Current sector: 355392. This session: NewSectorsReadOK=355376, ReadErrors=16
|
||||
Current sector: 355408. This session: NewSectorsReadOK=355392, ReadErrors=16
|
||||
Current sector: 355424. This session: NewSectorsReadOK=355408, ReadErrors=16
|
||||
Current sector: 355440. This session: NewSectorsReadOK=355424, ReadErrors=16
|
||||
Current sector: 355456. This session: NewSectorsReadOK=355440, ReadErrors=16
|
||||
Current sector: 355472. This session: NewSectorsReadOK=355456, ReadErrors=16
|
||||
Current sector: 355488. This session: NewSectorsReadOK=355472, ReadErrors=16
|
||||
Current sector: 355504. This session: NewSectorsReadOK=355488, ReadErrors=16
|
||||
Current sector: 355520. This session: NewSectorsReadOK=355504, ReadErrors=16
|
||||
Current sector: 355536. This session: NewSectorsReadOK=355520, ReadErrors=16
|
||||
Current sector: 355552. This session: NewSectorsReadOK=355536, ReadErrors=16
|
||||
Current sector: 355568. This session: NewSectorsReadOK=355552, ReadErrors=16
|
||||
Current sector: 355584. This session: NewSectorsReadOK=355568, ReadErrors=16
|
||||
Current sector: 355600. This session: NewSectorsReadOK=355584, ReadErrors=16
|
||||
Current sector: 355616. This session: NewSectorsReadOK=355600, ReadErrors=16
|
||||
Current sector: 355632. This session: NewSectorsReadOK=355616, ReadErrors=16
|
||||
Current sector: 355648. This session: NewSectorsReadOK=355632, ReadErrors=16
|
||||
Current sector: 355664. This session: NewSectorsReadOK=355648, ReadErrors=16
|
||||
Current sector: 355680. This session: NewSectorsReadOK=355664, ReadErrors=16
|
||||
Current sector: 355696. This session: NewSectorsReadOK=355680, ReadErrors=16
|
||||
Current sector: 355712. This session: NewSectorsReadOK=355696, ReadErrors=16
|
||||
Current sector: 355728. This session: NewSectorsReadOK=355712, ReadErrors=16
|
||||
Current sector: 355744. This session: NewSectorsReadOK=355728, ReadErrors=16
|
||||
Current sector: 355760. This session: NewSectorsReadOK=355744, ReadErrors=16
|
||||
Current sector: 355776. This session: NewSectorsReadOK=355760, ReadErrors=16
|
||||
Current sector: 355792. This session: NewSectorsReadOK=355776, ReadErrors=16
|
||||
Current sector: 355808. This session: NewSectorsReadOK=355792, ReadErrors=16
|
||||
Current sector: 355824. This session: NewSectorsReadOK=355808, ReadErrors=16
|
||||
Current sector: 355840. This session: NewSectorsReadOK=355824, ReadErrors=16
|
||||
Current sector: 355856. This session: NewSectorsReadOK=355840, ReadErrors=16
|
||||
Current sector: 355872. This session: NewSectorsReadOK=355856, ReadErrors=16
|
||||
Current sector: 355888. This session: NewSectorsReadOK=355872, ReadErrors=16
|
||||
Current sector: 355904. This session: NewSectorsReadOK=355888, ReadErrors=16
|
||||
Current sector: 355920. This session: NewSectorsReadOK=355904, ReadErrors=16
|
||||
Current sector: 355936. This session: NewSectorsReadOK=355920, ReadErrors=16
|
||||
Current sector: 355952. This session: NewSectorsReadOK=355936, ReadErrors=16
|
||||
Current sector: 355968. This session: NewSectorsReadOK=355952, ReadErrors=16
|
||||
Current sector: 355984. This session: NewSectorsReadOK=355968, ReadErrors=16
|
||||
Current sector: 356000. This session: NewSectorsReadOK=355984, ReadErrors=16
|
||||
Current sector: 356016. This session: NewSectorsReadOK=356000, ReadErrors=16
|
||||
Current sector: 356032. This session: NewSectorsReadOK=356016, ReadErrors=16
|
||||
Current sector: 356048. This session: NewSectorsReadOK=356032, ReadErrors=16
|
||||
Current sector: 356064. This session: NewSectorsReadOK=356048, ReadErrors=16
|
||||
Current sector: 356080. This session: NewSectorsReadOK=356064, ReadErrors=16
|
||||
Current sector: 356096. This session: NewSectorsReadOK=356080, ReadErrors=16
|
||||
Current sector: 356112. This session: NewSectorsReadOK=356096, ReadErrors=16
|
||||
Current sector: 356128. This session: NewSectorsReadOK=356112, ReadErrors=16
|
||||
Current sector: 356144. This session: NewSectorsReadOK=356128, ReadErrors=16
|
||||
Current sector: 356160. This session: NewSectorsReadOK=356144, ReadErrors=16
|
||||
Current sector: 356176. This session: NewSectorsReadOK=356160, ReadErrors=16
|
||||
Current sector: 356192. This session: NewSectorsReadOK=356176, ReadErrors=16
|
||||
Current sector: 356208. This session: NewSectorsReadOK=356192, ReadErrors=16
|
||||
Current sector: 356224. This session: NewSectorsReadOK=356208, ReadErrors=16
|
||||
Current sector: 356240. This session: NewSectorsReadOK=356224, ReadErrors=16
|
||||
Current sector: 356256. This session: NewSectorsReadOK=356240, ReadErrors=16
|
||||
Current sector: 356272. This session: NewSectorsReadOK=356256, ReadErrors=16
|
||||
Current sector: 356288. This session: NewSectorsReadOK=356272, ReadErrors=16
|
||||
Current sector: 356304. This session: NewSectorsReadOK=356288, ReadErrors=16
|
||||
Current sector: 356320. This session: NewSectorsReadOK=356304, ReadErrors=16
|
||||
Current sector: 356336. This session: NewSectorsReadOK=356320, ReadErrors=16
|
||||
Current sector: 356352. This session: NewSectorsReadOK=356336, ReadErrors=16
|
||||
Current sector: 356368. This session: NewSectorsReadOK=356352, ReadErrors=16
|
||||
Current sector: 356384. This session: NewSectorsReadOK=356368, ReadErrors=16
|
||||
Current sector: 356400. This session: NewSectorsReadOK=356384, ReadErrors=16
|
||||
Current sector: 356416. This session: NewSectorsReadOK=356400, ReadErrors=16
|
||||
Current sector: 356432. This session: NewSectorsReadOK=356416, ReadErrors=16
|
||||
Current sector: 356448. This session: NewSectorsReadOK=356432, ReadErrors=16
|
||||
Current sector: 356464. This session: NewSectorsReadOK=356448, ReadErrors=16
|
||||
Current sector: 356480. This session: NewSectorsReadOK=356464, ReadErrors=16
|
||||
Current sector: 356496. This session: NewSectorsReadOK=356480, ReadErrors=16
|
||||
Current sector: 356512. This session: NewSectorsReadOK=356496, ReadErrors=16
|
||||
Current sector: 356528. This session: NewSectorsReadOK=356512, ReadErrors=16
|
||||
Current sector: 356544. This session: NewSectorsReadOK=356528, ReadErrors=16
|
||||
Current sector: 356560. This session: NewSectorsReadOK=356544, ReadErrors=16
|
||||
Current sector: 356576. This session: NewSectorsReadOK=356560, ReadErrors=16
|
||||
Current sector: 356592. This session: NewSectorsReadOK=356576, ReadErrors=16
|
||||
Current sector: 356608. This session: NewSectorsReadOK=356592, ReadErrors=16
|
||||
Current sector: 356624. This session: NewSectorsReadOK=356608, ReadErrors=16
|
||||
Current sector: 356640. This session: NewSectorsReadOK=356624, ReadErrors=16
|
||||
Current sector: 356656. This session: NewSectorsReadOK=356640, ReadErrors=16
|
||||
Current sector: 356672. This session: NewSectorsReadOK=356656, ReadErrors=16
|
||||
Current sector: 356688. This session: NewSectorsReadOK=356672, ReadErrors=16
|
||||
Current sector: 356704. This session: NewSectorsReadOK=356688, ReadErrors=16
|
||||
Current sector: 356720. This session: NewSectorsReadOK=356704, ReadErrors=16
|
||||
Current sector: 356736. This session: NewSectorsReadOK=356720, ReadErrors=16
|
||||
Current sector: 356752. This session: NewSectorsReadOK=356736, ReadErrors=16
|
||||
Current sector: 356768. This session: NewSectorsReadOK=356752, ReadErrors=16
|
||||
Current sector: 356784. This session: NewSectorsReadOK=356768, ReadErrors=16
|
||||
Current sector: 356800. This session: NewSectorsReadOK=356784, ReadErrors=16
|
||||
Current sector: 356816. This session: NewSectorsReadOK=356800, ReadErrors=16
|
||||
Current sector: 356832. This session: NewSectorsReadOK=356816, ReadErrors=16
|
||||
Current sector: 356848. This session: NewSectorsReadOK=356832, ReadErrors=16
|
||||
Current sector: 356864. This session: NewSectorsReadOK=356848, ReadErrors=16
|
||||
Current sector: 356880. This session: NewSectorsReadOK=356864, ReadErrors=16
|
||||
Current sector: 356896. This session: NewSectorsReadOK=356880, ReadErrors=16
|
||||
Current sector: 356912. This session: NewSectorsReadOK=356896, ReadErrors=16
|
||||
Current sector: 356928. This session: NewSectorsReadOK=356912, ReadErrors=16
|
||||
Current sector: 356944. This session: NewSectorsReadOK=356928, ReadErrors=16
|
||||
Current sector: 356960. This session: NewSectorsReadOK=356944, ReadErrors=16
|
||||
Current sector: 356976. This session: NewSectorsReadOK=356960, ReadErrors=16
|
||||
Current sector: 356992. This session: NewSectorsReadOK=356976, ReadErrors=16
|
||||
Current sector: 357008. This session: NewSectorsReadOK=356992, ReadErrors=16
|
||||
Current sector: 357024. This session: NewSectorsReadOK=357008, ReadErrors=16
|
||||
Current sector: 357040. This session: NewSectorsReadOK=357024, ReadErrors=16
|
||||
Current sector: 357056. This session: NewSectorsReadOK=357040, ReadErrors=16
|
||||
Current sector: 357072. This session: NewSectorsReadOK=357056, ReadErrors=16
|
||||
Current sector: 357088. This session: NewSectorsReadOK=357072, ReadErrors=16
|
||||
Current sector: 357104. This session: NewSectorsReadOK=357088, ReadErrors=16
|
||||
Current sector: 357120. This session: NewSectorsReadOK=357104, ReadErrors=16
|
||||
Current sector: 357136. This session: NewSectorsReadOK=357120, ReadErrors=16
|
||||
Current sector: 357152. This session: NewSectorsReadOK=357136, ReadErrors=16
|
||||
Current sector: 357168. This session: NewSectorsReadOK=357152, ReadErrors=16
|
||||
Current sector: 357184. This session: NewSectorsReadOK=357168, ReadErrors=16
|
||||
Current sector: 357200. This session: NewSectorsReadOK=357184, ReadErrors=16
|
||||
Current sector: 357216. This session: NewSectorsReadOK=357200, ReadErrors=16
|
||||
Current sector: 357232. This session: NewSectorsReadOK=357216, ReadErrors=16
|
||||
Current sector: 357248. This session: NewSectorsReadOK=357232, ReadErrors=16
|
||||
Current sector: 357264. This session: NewSectorsReadOK=357248, ReadErrors=16
|
||||
Current sector: 357280. This session: NewSectorsReadOK=357264, ReadErrors=16
|
||||
Current sector: 357296. This session: NewSectorsReadOK=357280, ReadErrors=16
|
||||
Current sector: 357312. This session: NewSectorsReadOK=357296, ReadErrors=16
|
||||
Current sector: 357328. This session: NewSectorsReadOK=357312, ReadErrors=16
|
||||
Current sector: 357344. This session: NewSectorsReadOK=357328, ReadErrors=16
|
||||
Current sector: 357360. This session: NewSectorsReadOK=357344, ReadErrors=16
|
||||
Current sector: 357376. This session: NewSectorsReadOK=357360, ReadErrors=16
|
||||
Current sector: 357392. This session: NewSectorsReadOK=357376, ReadErrors=16
|
||||
Current sector: 357408. This session: NewSectorsReadOK=357392, ReadErrors=16
|
||||
Current sector: 357424. This session: NewSectorsReadOK=357408, ReadErrors=16
|
||||
Current sector: 357440. This session: NewSectorsReadOK=357424, ReadErrors=16
|
||||
Current sector: 357456. This session: NewSectorsReadOK=357440, ReadErrors=16
|
||||
Current sector: 357472. This session: NewSectorsReadOK=357456, ReadErrors=16
|
||||
Current sector: 357488. This session: NewSectorsReadOK=357472, ReadErrors=16
|
||||
Current sector: 357504. This session: NewSectorsReadOK=357488, ReadErrors=16
|
||||
Current sector: 357520. This session: NewSectorsReadOK=357504, ReadErrors=16
|
||||
Current sector: 357536. This session: NewSectorsReadOK=357520, ReadErrors=16
|
||||
Current sector: 357552. This session: NewSectorsReadOK=357536, ReadErrors=16
|
||||
Current sector: 357568. This session: NewSectorsReadOK=357552, ReadErrors=16
|
||||
Current sector: 357584. This session: NewSectorsReadOK=357568, ReadErrors=16
|
||||
Current sector: 357600. This session: NewSectorsReadOK=357584, ReadErrors=16
|
||||
Current sector: 357616. This session: NewSectorsReadOK=357600, ReadErrors=16
|
||||
Current sector: 357632. This session: NewSectorsReadOK=357616, ReadErrors=16
|
||||
Current sector: 357648. This session: NewSectorsReadOK=357632, ReadErrors=16
|
||||
Current sector: 357664. This session: NewSectorsReadOK=357648, ReadErrors=16
|
||||
Current sector: 357680. This session: NewSectorsReadOK=357664, ReadErrors=16
|
||||
Current sector: 357696. This session: NewSectorsReadOK=357680, ReadErrors=16
|
||||
Current sector: 357712. This session: NewSectorsReadOK=357696, ReadErrors=16
|
||||
Current sector: 357728. This session: NewSectorsReadOK=357712, ReadErrors=16
|
||||
Current sector: 357744. This session: NewSectorsReadOK=357728, ReadErrors=16
|
||||
Current sector: 357760. This session: NewSectorsReadOK=357744, ReadErrors=16
|
||||
Current sector: 357776. This session: NewSectorsReadOK=357760, ReadErrors=16
|
||||
Current sector: 357792. This session: NewSectorsReadOK=357776, ReadErrors=16
|
||||
Current sector: 357808. This session: NewSectorsReadOK=357792, ReadErrors=16
|
||||
Current sector: 357824. This session: NewSectorsReadOK=357808, ReadErrors=16
|
||||
Current sector: 357840. This session: NewSectorsReadOK=357824, ReadErrors=16
|
||||
Current sector: 357856. This session: NewSectorsReadOK=357840, ReadErrors=16
|
||||
Current sector: 357872. This session: NewSectorsReadOK=357856, ReadErrors=16
|
||||
Current sector: 357888. This session: NewSectorsReadOK=357872, ReadErrors=16
|
||||
Current sector: 357904. This session: NewSectorsReadOK=357888, ReadErrors=16
|
||||
Current sector: 357920. This session: NewSectorsReadOK=357904, ReadErrors=16
|
||||
Current sector: 357936. This session: NewSectorsReadOK=357920, ReadErrors=16
|
||||
Current sector: 357952. This session: NewSectorsReadOK=357936, ReadErrors=16
|
||||
Current sector: 357968. This session: NewSectorsReadOK=357952, ReadErrors=16
|
||||
Current sector: 357984. This session: NewSectorsReadOK=357968, ReadErrors=16
|
||||
Current sector: 358000. This session: NewSectorsReadOK=357984, ReadErrors=16
|
||||
Current sector: 358016. This session: NewSectorsReadOK=358000, ReadErrors=16
|
||||
Current sector: 358032. This session: NewSectorsReadOK=358016, ReadErrors=16
|
||||
Current sector: 358048. This session: NewSectorsReadOK=358032, ReadErrors=16
|
||||
Current sector: 358064. This session: NewSectorsReadOK=358048, ReadErrors=16
|
||||
Current sector: 358080. This session: NewSectorsReadOK=358064, ReadErrors=16
|
||||
Current sector: 358096. This session: NewSectorsReadOK=358080, ReadErrors=16
|
||||
Current sector: 358112. This session: NewSectorsReadOK=358096, ReadErrors=16
|
||||
Current sector: 358128. This session: NewSectorsReadOK=358112, ReadErrors=16
|
||||
Current sector: 358144. This session: NewSectorsReadOK=358128, ReadErrors=16
|
||||
Current sector: 358160. This session: NewSectorsReadOK=358144, ReadErrors=16
|
||||
Current sector: 358176. This session: NewSectorsReadOK=358160, ReadErrors=16
|
||||
Current sector: 358192. This session: NewSectorsReadOK=358176, ReadErrors=16
|
||||
Current sector: 358208. This session: NewSectorsReadOK=358192, ReadErrors=16
|
||||
Current sector: 358224. This session: NewSectorsReadOK=358208, ReadErrors=16
|
||||
Current sector: 358240. This session: NewSectorsReadOK=358224, ReadErrors=16
|
||||
Current sector: 358256. This session: NewSectorsReadOK=358240, ReadErrors=16
|
||||
Current sector: 358272. This session: NewSectorsReadOK=358256, ReadErrors=16
|
||||
Current sector: 358288. This session: NewSectorsReadOK=358272, ReadErrors=16
|
||||
Current sector: 358304. This session: NewSectorsReadOK=358288, ReadErrors=16
|
||||
Current sector: 358320. This session: NewSectorsReadOK=358304, ReadErrors=16
|
||||
Current sector: 358336. This session: NewSectorsReadOK=358320, ReadErrors=16
|
||||
Current sector: 358352. This session: NewSectorsReadOK=358336, ReadErrors=16
|
||||
Current sector: 358368. This session: NewSectorsReadOK=358352, ReadErrors=16
|
||||
Current sector: 358384. This session: NewSectorsReadOK=358368, ReadErrors=16
|
||||
Current sector: 358400. This session: NewSectorsReadOK=358384, ReadErrors=16
|
||||
Current sector: 358416. This session: NewSectorsReadOK=358400, ReadErrors=16
|
||||
Current sector: 358432. This session: NewSectorsReadOK=358416, ReadErrors=16
|
||||
Current sector: 358448. This session: NewSectorsReadOK=358432, ReadErrors=16
|
||||
Current sector: 358464. This session: NewSectorsReadOK=358448, ReadErrors=16
|
||||
Current sector: 358480. This session: NewSectorsReadOK=358464, ReadErrors=16
|
||||
Current sector: 358496. This session: NewSectorsReadOK=358480, ReadErrors=16
|
||||
Current sector: 358512. This session: NewSectorsReadOK=358496, ReadErrors=16
|
||||
Current sector: 358528. This session: NewSectorsReadOK=358512, ReadErrors=16
|
||||
Current sector: 358544. This session: NewSectorsReadOK=358528, ReadErrors=16
|
||||
Current sector: 358560. This session: NewSectorsReadOK=358544, ReadErrors=16
|
||||
Current sector: 358576. This session: NewSectorsReadOK=358560, ReadErrors=16
|
||||
Current sector: 358592. This session: NewSectorsReadOK=358576, ReadErrors=16
|
||||
Current sector: 358608. This session: NewSectorsReadOK=358592, ReadErrors=16
|
||||
Current sector: 358624. This session: NewSectorsReadOK=358608, ReadErrors=16
|
||||
Current sector: 358640. This session: NewSectorsReadOK=358624, ReadErrors=16
|
||||
Current sector: 358656. This session: NewSectorsReadOK=358640, ReadErrors=16
|
||||
Current sector: 358672. This session: NewSectorsReadOK=358656, ReadErrors=16
|
||||
Current sector: 358688. This session: NewSectorsReadOK=358672, ReadErrors=16
|
||||
Current sector: 358704. This session: NewSectorsReadOK=358688, ReadErrors=16
|
||||
Current sector: 358720. This session: NewSectorsReadOK=358704, ReadErrors=16
|
||||
Current sector: 358736. This session: NewSectorsReadOK=358720, ReadErrors=16
|
||||
Current sector: 358752. This session: NewSectorsReadOK=358736, ReadErrors=16
|
||||
Current sector: 358768. This session: NewSectorsReadOK=358752, ReadErrors=16
|
||||
Current sector: 358784. This session: NewSectorsReadOK=358768, ReadErrors=16
|
||||
Current sector: 358800. This session: NewSectorsReadOK=358784, ReadErrors=16
|
||||
Current sector: 358816. This session: NewSectorsReadOK=358800, ReadErrors=16
|
||||
Current sector: 358832. This session: NewSectorsReadOK=358816, ReadErrors=16
|
||||
Current sector: 358848. This session: NewSectorsReadOK=358832, ReadErrors=16
|
||||
Current sector: 358864. This session: NewSectorsReadOK=358848, ReadErrors=16
|
||||
Current sector: 358880. This session: NewSectorsReadOK=358864, ReadErrors=16
|
||||
Current sector: 358896. This session: NewSectorsReadOK=358880, ReadErrors=16
|
||||
Current sector: 358912. This session: NewSectorsReadOK=358896, ReadErrors=16
|
||||
Current sector: 358928. This session: NewSectorsReadOK=358912, ReadErrors=16
|
||||
Current sector: 358944. This session: NewSectorsReadOK=358928, ReadErrors=16
|
||||
Current sector: 358960. This session: NewSectorsReadOK=358944, ReadErrors=16
|
||||
Current sector: 358976. This session: NewSectorsReadOK=358960, ReadErrors=16
|
||||
Current sector: 358992. This session: NewSectorsReadOK=358976, ReadErrors=16
|
||||
Current sector: 359008. This session: NewSectorsReadOK=358992, ReadErrors=16
|
||||
Current sector: 359024. This session: NewSectorsReadOK=359008, ReadErrors=16
|
||||
Current sector: 359040. This session: NewSectorsReadOK=359024, ReadErrors=16
|
||||
Current sector: 359056. This session: NewSectorsReadOK=359040, ReadErrors=16
|
||||
Current sector: 359072. This session: NewSectorsReadOK=359056, ReadErrors=16
|
||||
Current sector: 359088. This session: NewSectorsReadOK=359072, ReadErrors=16
|
||||
Current sector: 359104. This session: NewSectorsReadOK=359088, ReadErrors=16
|
||||
Current sector: 359120. This session: NewSectorsReadOK=359104, ReadErrors=16
|
||||
Current sector: 359136. This session: NewSectorsReadOK=359120, ReadErrors=16
|
||||
Current sector: 359152. This session: NewSectorsReadOK=359136, ReadErrors=16
|
||||
Current sector: 359168. This session: NewSectorsReadOK=359152, ReadErrors=16
|
||||
Current sector: 359184. This session: NewSectorsReadOK=359168, ReadErrors=16
|
||||
Current sector: 359200. This session: NewSectorsReadOK=359184, ReadErrors=16
|
||||
Current sector: 359216. This session: NewSectorsReadOK=359200, ReadErrors=16
|
||||
Current sector: 359232. This session: NewSectorsReadOK=359216, ReadErrors=16
|
||||
Current sector: 359248. This session: NewSectorsReadOK=359232, ReadErrors=16
|
||||
Current sector: 359264. This session: NewSectorsReadOK=359248, ReadErrors=16
|
||||
Current sector: 359280. This session: NewSectorsReadOK=359264, ReadErrors=16
|
||||
Current sector: 359281. This session: NewSectorsReadOK=359265, ReadErrors=16
|
||||
Current sector: 359282. This session: NewSectorsReadOK=359266, ReadErrors=16
|
||||
Current sector: 359283. This session: NewSectorsReadOK=359267, ReadErrors=16
|
||||
Current sector: 359284. This session: NewSectorsReadOK=359268, ReadErrors=16
|
||||
Current sector: 359285. This session: NewSectorsReadOK=359269, ReadErrors=16
|
||||
Current sector: 359286. This session: NewSectorsReadOK=359270, ReadErrors=16
|
||||
Current sector: 359287. This session: NewSectorsReadOK=359271, ReadErrors=16
|
||||
Current sector: 359288. This session: NewSectorsReadOK=359272, ReadErrors=16
|
||||
Current sector: 359289. This session: NewSectorsReadOK=359273, ReadErrors=16
|
||||
Current sector: 359290. This session: NewSectorsReadOK=359274, ReadErrors=16
|
||||
Current sector: 359291. This session: NewSectorsReadOK=359275, ReadErrors=16
|
||||
Current sector: 359292. This session: NewSectorsReadOK=359276, ReadErrors=16
|
||||
Current sector: 359293. This session: NewSectorsReadOK=359277, ReadErrors=16
|
||||
Current sector: 359294. This session: NewSectorsReadOK=359278, ReadErrors=16
|
||||
Current sector: 359295. This session: NewSectorsReadOK=359279, ReadErrors=16
|
||||
|
||||
16 unreadable sectors.
|
||||
CrcBuf contents, image path none (medium):
|
||||
|
||||
@@ -359,6 +359,829 @@ nroots = 8 ( 3.2%)
|
||||
done.
|
||||
Sector 346608, try 1: Medium Error; Unrecovered read error.
|
||||
Sector 346608: Medium Error; Unrecovered read error. Skipping 15 sectors.
|
||||
Current sector: 346609. This session: NewSectorsReadOK=346608, ReadErrors=1
|
||||
Current sector: 346610. This session: NewSectorsReadOK=346608, ReadErrors=2
|
||||
Current sector: 346611. This session: NewSectorsReadOK=346608, ReadErrors=3
|
||||
Current sector: 346612. This session: NewSectorsReadOK=346608, ReadErrors=4
|
||||
Current sector: 346613. This session: NewSectorsReadOK=346608, ReadErrors=5
|
||||
Current sector: 346614. This session: NewSectorsReadOK=346608, ReadErrors=6
|
||||
Current sector: 346615. This session: NewSectorsReadOK=346608, ReadErrors=7
|
||||
Current sector: 346616. This session: NewSectorsReadOK=346608, ReadErrors=8
|
||||
Current sector: 346617. This session: NewSectorsReadOK=346608, ReadErrors=9
|
||||
Current sector: 346618. This session: NewSectorsReadOK=346608, ReadErrors=10
|
||||
Current sector: 346619. This session: NewSectorsReadOK=346608, ReadErrors=11
|
||||
Current sector: 346620. This session: NewSectorsReadOK=346608, ReadErrors=12
|
||||
Current sector: 346621. This session: NewSectorsReadOK=346608, ReadErrors=13
|
||||
Current sector: 346622. This session: NewSectorsReadOK=346608, ReadErrors=14
|
||||
Current sector: 346623. This session: NewSectorsReadOK=346608, ReadErrors=15
|
||||
Current sector: 346624. This session: NewSectorsReadOK=346608, ReadErrors=16
|
||||
Current sector: 346624. This session: NewSectorsReadOK=346608, ReadErrors=16
|
||||
Current sector: 346640. This session: NewSectorsReadOK=346624, ReadErrors=16
|
||||
Current sector: 346656. This session: NewSectorsReadOK=346640, ReadErrors=16
|
||||
Current sector: 346672. This session: NewSectorsReadOK=346656, ReadErrors=16
|
||||
Current sector: 346688. This session: NewSectorsReadOK=346672, ReadErrors=16
|
||||
Current sector: 346704. This session: NewSectorsReadOK=346688, ReadErrors=16
|
||||
Current sector: 346720. This session: NewSectorsReadOK=346704, ReadErrors=16
|
||||
Current sector: 346736. This session: NewSectorsReadOK=346720, ReadErrors=16
|
||||
Current sector: 346752. This session: NewSectorsReadOK=346736, ReadErrors=16
|
||||
Current sector: 346768. This session: NewSectorsReadOK=346752, ReadErrors=16
|
||||
Current sector: 346784. This session: NewSectorsReadOK=346768, ReadErrors=16
|
||||
Current sector: 346800. This session: NewSectorsReadOK=346784, ReadErrors=16
|
||||
Current sector: 346816. This session: NewSectorsReadOK=346800, ReadErrors=16
|
||||
Current sector: 346832. This session: NewSectorsReadOK=346816, ReadErrors=16
|
||||
Current sector: 346848. This session: NewSectorsReadOK=346832, ReadErrors=16
|
||||
Current sector: 346864. This session: NewSectorsReadOK=346848, ReadErrors=16
|
||||
Current sector: 346880. This session: NewSectorsReadOK=346864, ReadErrors=16
|
||||
Current sector: 346896. This session: NewSectorsReadOK=346880, ReadErrors=16
|
||||
Current sector: 346912. This session: NewSectorsReadOK=346896, ReadErrors=16
|
||||
Current sector: 346928. This session: NewSectorsReadOK=346912, ReadErrors=16
|
||||
Current sector: 346944. This session: NewSectorsReadOK=346928, ReadErrors=16
|
||||
Current sector: 346960. This session: NewSectorsReadOK=346944, ReadErrors=16
|
||||
Current sector: 346976. This session: NewSectorsReadOK=346960, ReadErrors=16
|
||||
Current sector: 346992. This session: NewSectorsReadOK=346976, ReadErrors=16
|
||||
Current sector: 347008. This session: NewSectorsReadOK=346992, ReadErrors=16
|
||||
Current sector: 347024. This session: NewSectorsReadOK=347008, ReadErrors=16
|
||||
Current sector: 347040. This session: NewSectorsReadOK=347024, ReadErrors=16
|
||||
Current sector: 347056. This session: NewSectorsReadOK=347040, ReadErrors=16
|
||||
Current sector: 347072. This session: NewSectorsReadOK=347056, ReadErrors=16
|
||||
Current sector: 347088. This session: NewSectorsReadOK=347072, ReadErrors=16
|
||||
Current sector: 347104. This session: NewSectorsReadOK=347088, ReadErrors=16
|
||||
Current sector: 347120. This session: NewSectorsReadOK=347104, ReadErrors=16
|
||||
Current sector: 347136. This session: NewSectorsReadOK=347120, ReadErrors=16
|
||||
Current sector: 347152. This session: NewSectorsReadOK=347136, ReadErrors=16
|
||||
Current sector: 347168. This session: NewSectorsReadOK=347152, ReadErrors=16
|
||||
Current sector: 347184. This session: NewSectorsReadOK=347168, ReadErrors=16
|
||||
Current sector: 347200. This session: NewSectorsReadOK=347184, ReadErrors=16
|
||||
Current sector: 347216. This session: NewSectorsReadOK=347200, ReadErrors=16
|
||||
Current sector: 347232. This session: NewSectorsReadOK=347216, ReadErrors=16
|
||||
Current sector: 347248. This session: NewSectorsReadOK=347232, ReadErrors=16
|
||||
Current sector: 347264. This session: NewSectorsReadOK=347248, ReadErrors=16
|
||||
Current sector: 347280. This session: NewSectorsReadOK=347264, ReadErrors=16
|
||||
Current sector: 347296. This session: NewSectorsReadOK=347280, ReadErrors=16
|
||||
Current sector: 347312. This session: NewSectorsReadOK=347296, ReadErrors=16
|
||||
Current sector: 347328. This session: NewSectorsReadOK=347312, ReadErrors=16
|
||||
Current sector: 347344. This session: NewSectorsReadOK=347328, ReadErrors=16
|
||||
Current sector: 347360. This session: NewSectorsReadOK=347344, ReadErrors=16
|
||||
Current sector: 347376. This session: NewSectorsReadOK=347360, ReadErrors=16
|
||||
Current sector: 347392. This session: NewSectorsReadOK=347376, ReadErrors=16
|
||||
Current sector: 347408. This session: NewSectorsReadOK=347392, ReadErrors=16
|
||||
Current sector: 347424. This session: NewSectorsReadOK=347408, ReadErrors=16
|
||||
Current sector: 347440. This session: NewSectorsReadOK=347424, ReadErrors=16
|
||||
Current sector: 347456. This session: NewSectorsReadOK=347440, ReadErrors=16
|
||||
Current sector: 347472. This session: NewSectorsReadOK=347456, ReadErrors=16
|
||||
Current sector: 347488. This session: NewSectorsReadOK=347472, ReadErrors=16
|
||||
Current sector: 347504. This session: NewSectorsReadOK=347488, ReadErrors=16
|
||||
Current sector: 347520. This session: NewSectorsReadOK=347504, ReadErrors=16
|
||||
Current sector: 347536. This session: NewSectorsReadOK=347520, ReadErrors=16
|
||||
Current sector: 347552. This session: NewSectorsReadOK=347536, ReadErrors=16
|
||||
Current sector: 347568. This session: NewSectorsReadOK=347552, ReadErrors=16
|
||||
Current sector: 347584. This session: NewSectorsReadOK=347568, ReadErrors=16
|
||||
Current sector: 347600. This session: NewSectorsReadOK=347584, ReadErrors=16
|
||||
Current sector: 347616. This session: NewSectorsReadOK=347600, ReadErrors=16
|
||||
Current sector: 347632. This session: NewSectorsReadOK=347616, ReadErrors=16
|
||||
Current sector: 347648. This session: NewSectorsReadOK=347632, ReadErrors=16
|
||||
Current sector: 347664. This session: NewSectorsReadOK=347648, ReadErrors=16
|
||||
Current sector: 347680. This session: NewSectorsReadOK=347664, ReadErrors=16
|
||||
Current sector: 347696. This session: NewSectorsReadOK=347680, ReadErrors=16
|
||||
Current sector: 347712. This session: NewSectorsReadOK=347696, ReadErrors=16
|
||||
Current sector: 347728. This session: NewSectorsReadOK=347712, ReadErrors=16
|
||||
Current sector: 347744. This session: NewSectorsReadOK=347728, ReadErrors=16
|
||||
Current sector: 347760. This session: NewSectorsReadOK=347744, ReadErrors=16
|
||||
Current sector: 347776. This session: NewSectorsReadOK=347760, ReadErrors=16
|
||||
Current sector: 347792. This session: NewSectorsReadOK=347776, ReadErrors=16
|
||||
Current sector: 347808. This session: NewSectorsReadOK=347792, ReadErrors=16
|
||||
Current sector: 347824. This session: NewSectorsReadOK=347808, ReadErrors=16
|
||||
Current sector: 347840. This session: NewSectorsReadOK=347824, ReadErrors=16
|
||||
Current sector: 347856. This session: NewSectorsReadOK=347840, ReadErrors=16
|
||||
Current sector: 347872. This session: NewSectorsReadOK=347856, ReadErrors=16
|
||||
Current sector: 347888. This session: NewSectorsReadOK=347872, ReadErrors=16
|
||||
Current sector: 347904. This session: NewSectorsReadOK=347888, ReadErrors=16
|
||||
Current sector: 347920. This session: NewSectorsReadOK=347904, ReadErrors=16
|
||||
Current sector: 347936. This session: NewSectorsReadOK=347920, ReadErrors=16
|
||||
Current sector: 347952. This session: NewSectorsReadOK=347936, ReadErrors=16
|
||||
Current sector: 347968. This session: NewSectorsReadOK=347952, ReadErrors=16
|
||||
Current sector: 347984. This session: NewSectorsReadOK=347968, ReadErrors=16
|
||||
Current sector: 348000. This session: NewSectorsReadOK=347984, ReadErrors=16
|
||||
Current sector: 348016. This session: NewSectorsReadOK=348000, ReadErrors=16
|
||||
Current sector: 348032. This session: NewSectorsReadOK=348016, ReadErrors=16
|
||||
Current sector: 348048. This session: NewSectorsReadOK=348032, ReadErrors=16
|
||||
Current sector: 348064. This session: NewSectorsReadOK=348048, ReadErrors=16
|
||||
Current sector: 348080. This session: NewSectorsReadOK=348064, ReadErrors=16
|
||||
Current sector: 348096. This session: NewSectorsReadOK=348080, ReadErrors=16
|
||||
Current sector: 348112. This session: NewSectorsReadOK=348096, ReadErrors=16
|
||||
Current sector: 348128. This session: NewSectorsReadOK=348112, ReadErrors=16
|
||||
Current sector: 348144. This session: NewSectorsReadOK=348128, ReadErrors=16
|
||||
Current sector: 348160. This session: NewSectorsReadOK=348144, ReadErrors=16
|
||||
Current sector: 348176. This session: NewSectorsReadOK=348160, ReadErrors=16
|
||||
Current sector: 348192. This session: NewSectorsReadOK=348176, ReadErrors=16
|
||||
Current sector: 348208. This session: NewSectorsReadOK=348192, ReadErrors=16
|
||||
Current sector: 348224. This session: NewSectorsReadOK=348208, ReadErrors=16
|
||||
Current sector: 348240. This session: NewSectorsReadOK=348224, ReadErrors=16
|
||||
Current sector: 348256. This session: NewSectorsReadOK=348240, ReadErrors=16
|
||||
Current sector: 348272. This session: NewSectorsReadOK=348256, ReadErrors=16
|
||||
Current sector: 348288. This session: NewSectorsReadOK=348272, ReadErrors=16
|
||||
Current sector: 348304. This session: NewSectorsReadOK=348288, ReadErrors=16
|
||||
Current sector: 348320. This session: NewSectorsReadOK=348304, ReadErrors=16
|
||||
Current sector: 348336. This session: NewSectorsReadOK=348320, ReadErrors=16
|
||||
Current sector: 348352. This session: NewSectorsReadOK=348336, ReadErrors=16
|
||||
Current sector: 348368. This session: NewSectorsReadOK=348352, ReadErrors=16
|
||||
Current sector: 348384. This session: NewSectorsReadOK=348368, ReadErrors=16
|
||||
Current sector: 348400. This session: NewSectorsReadOK=348384, ReadErrors=16
|
||||
Current sector: 348416. This session: NewSectorsReadOK=348400, ReadErrors=16
|
||||
Current sector: 348432. This session: NewSectorsReadOK=348416, ReadErrors=16
|
||||
Current sector: 348448. This session: NewSectorsReadOK=348432, ReadErrors=16
|
||||
Current sector: 348464. This session: NewSectorsReadOK=348448, ReadErrors=16
|
||||
Current sector: 348480. This session: NewSectorsReadOK=348464, ReadErrors=16
|
||||
Current sector: 348496. This session: NewSectorsReadOK=348480, ReadErrors=16
|
||||
Current sector: 348512. This session: NewSectorsReadOK=348496, ReadErrors=16
|
||||
Current sector: 348528. This session: NewSectorsReadOK=348512, ReadErrors=16
|
||||
Current sector: 348544. This session: NewSectorsReadOK=348528, ReadErrors=16
|
||||
Current sector: 348560. This session: NewSectorsReadOK=348544, ReadErrors=16
|
||||
Current sector: 348576. This session: NewSectorsReadOK=348560, ReadErrors=16
|
||||
Current sector: 348592. This session: NewSectorsReadOK=348576, ReadErrors=16
|
||||
Current sector: 348608. This session: NewSectorsReadOK=348592, ReadErrors=16
|
||||
Current sector: 348624. This session: NewSectorsReadOK=348608, ReadErrors=16
|
||||
Current sector: 348640. This session: NewSectorsReadOK=348624, ReadErrors=16
|
||||
Current sector: 348656. This session: NewSectorsReadOK=348640, ReadErrors=16
|
||||
Current sector: 348672. This session: NewSectorsReadOK=348656, ReadErrors=16
|
||||
Current sector: 348688. This session: NewSectorsReadOK=348672, ReadErrors=16
|
||||
Current sector: 348704. This session: NewSectorsReadOK=348688, ReadErrors=16
|
||||
Current sector: 348720. This session: NewSectorsReadOK=348704, ReadErrors=16
|
||||
Current sector: 348736. This session: NewSectorsReadOK=348720, ReadErrors=16
|
||||
Current sector: 348752. This session: NewSectorsReadOK=348736, ReadErrors=16
|
||||
Current sector: 348768. This session: NewSectorsReadOK=348752, ReadErrors=16
|
||||
Current sector: 348784. This session: NewSectorsReadOK=348768, ReadErrors=16
|
||||
Current sector: 348800. This session: NewSectorsReadOK=348784, ReadErrors=16
|
||||
Current sector: 348816. This session: NewSectorsReadOK=348800, ReadErrors=16
|
||||
Current sector: 348832. This session: NewSectorsReadOK=348816, ReadErrors=16
|
||||
Current sector: 348848. This session: NewSectorsReadOK=348832, ReadErrors=16
|
||||
Current sector: 348864. This session: NewSectorsReadOK=348848, ReadErrors=16
|
||||
Current sector: 348880. This session: NewSectorsReadOK=348864, ReadErrors=16
|
||||
Current sector: 348896. This session: NewSectorsReadOK=348880, ReadErrors=16
|
||||
Current sector: 348912. This session: NewSectorsReadOK=348896, ReadErrors=16
|
||||
Current sector: 348928. This session: NewSectorsReadOK=348912, ReadErrors=16
|
||||
Current sector: 348944. This session: NewSectorsReadOK=348928, ReadErrors=16
|
||||
Current sector: 348960. This session: NewSectorsReadOK=348944, ReadErrors=16
|
||||
Current sector: 348976. This session: NewSectorsReadOK=348960, ReadErrors=16
|
||||
Current sector: 348992. This session: NewSectorsReadOK=348976, ReadErrors=16
|
||||
Current sector: 349008. This session: NewSectorsReadOK=348992, ReadErrors=16
|
||||
Current sector: 349024. This session: NewSectorsReadOK=349008, ReadErrors=16
|
||||
Current sector: 349040. This session: NewSectorsReadOK=349024, ReadErrors=16
|
||||
Current sector: 349056. This session: NewSectorsReadOK=349040, ReadErrors=16
|
||||
Current sector: 349072. This session: NewSectorsReadOK=349056, ReadErrors=16
|
||||
Current sector: 349088. This session: NewSectorsReadOK=349072, ReadErrors=16
|
||||
Current sector: 349104. This session: NewSectorsReadOK=349088, ReadErrors=16
|
||||
Current sector: 349120. This session: NewSectorsReadOK=349104, ReadErrors=16
|
||||
Current sector: 349136. This session: NewSectorsReadOK=349120, ReadErrors=16
|
||||
Current sector: 349152. This session: NewSectorsReadOK=349136, ReadErrors=16
|
||||
Current sector: 349168. This session: NewSectorsReadOK=349152, ReadErrors=16
|
||||
Current sector: 349184. This session: NewSectorsReadOK=349168, ReadErrors=16
|
||||
Current sector: 349200. This session: NewSectorsReadOK=349184, ReadErrors=16
|
||||
Current sector: 349216. This session: NewSectorsReadOK=349200, ReadErrors=16
|
||||
Current sector: 349232. This session: NewSectorsReadOK=349216, ReadErrors=16
|
||||
Current sector: 349248. This session: NewSectorsReadOK=349232, ReadErrors=16
|
||||
Current sector: 349264. This session: NewSectorsReadOK=349248, ReadErrors=16
|
||||
Current sector: 349280. This session: NewSectorsReadOK=349264, ReadErrors=16
|
||||
Current sector: 349296. This session: NewSectorsReadOK=349280, ReadErrors=16
|
||||
Current sector: 349312. This session: NewSectorsReadOK=349296, ReadErrors=16
|
||||
Current sector: 349328. This session: NewSectorsReadOK=349312, ReadErrors=16
|
||||
Current sector: 349344. This session: NewSectorsReadOK=349328, ReadErrors=16
|
||||
Current sector: 349360. This session: NewSectorsReadOK=349344, ReadErrors=16
|
||||
Current sector: 349376. This session: NewSectorsReadOK=349360, ReadErrors=16
|
||||
Current sector: 349392. This session: NewSectorsReadOK=349376, ReadErrors=16
|
||||
Current sector: 349408. This session: NewSectorsReadOK=349392, ReadErrors=16
|
||||
Current sector: 349424. This session: NewSectorsReadOK=349408, ReadErrors=16
|
||||
Current sector: 349440. This session: NewSectorsReadOK=349424, ReadErrors=16
|
||||
Current sector: 349456. This session: NewSectorsReadOK=349440, ReadErrors=16
|
||||
Current sector: 349472. This session: NewSectorsReadOK=349456, ReadErrors=16
|
||||
Current sector: 349488. This session: NewSectorsReadOK=349472, ReadErrors=16
|
||||
Current sector: 349504. This session: NewSectorsReadOK=349488, ReadErrors=16
|
||||
Current sector: 349520. This session: NewSectorsReadOK=349504, ReadErrors=16
|
||||
Current sector: 349536. This session: NewSectorsReadOK=349520, ReadErrors=16
|
||||
Current sector: 349552. This session: NewSectorsReadOK=349536, ReadErrors=16
|
||||
Current sector: 349568. This session: NewSectorsReadOK=349552, ReadErrors=16
|
||||
Current sector: 349584. This session: NewSectorsReadOK=349568, ReadErrors=16
|
||||
Current sector: 349600. This session: NewSectorsReadOK=349584, ReadErrors=16
|
||||
Current sector: 349616. This session: NewSectorsReadOK=349600, ReadErrors=16
|
||||
Current sector: 349632. This session: NewSectorsReadOK=349616, ReadErrors=16
|
||||
Current sector: 349648. This session: NewSectorsReadOK=349632, ReadErrors=16
|
||||
Current sector: 349664. This session: NewSectorsReadOK=349648, ReadErrors=16
|
||||
Current sector: 349680. This session: NewSectorsReadOK=349664, ReadErrors=16
|
||||
Current sector: 349696. This session: NewSectorsReadOK=349680, ReadErrors=16
|
||||
Current sector: 349712. This session: NewSectorsReadOK=349696, ReadErrors=16
|
||||
Current sector: 349728. This session: NewSectorsReadOK=349712, ReadErrors=16
|
||||
Current sector: 349744. This session: NewSectorsReadOK=349728, ReadErrors=16
|
||||
Current sector: 349760. This session: NewSectorsReadOK=349744, ReadErrors=16
|
||||
Current sector: 349776. This session: NewSectorsReadOK=349760, ReadErrors=16
|
||||
Current sector: 349792. This session: NewSectorsReadOK=349776, ReadErrors=16
|
||||
Current sector: 349808. This session: NewSectorsReadOK=349792, ReadErrors=16
|
||||
Current sector: 349824. This session: NewSectorsReadOK=349808, ReadErrors=16
|
||||
Current sector: 349840. This session: NewSectorsReadOK=349824, ReadErrors=16
|
||||
Current sector: 349856. This session: NewSectorsReadOK=349840, ReadErrors=16
|
||||
Current sector: 349872. This session: NewSectorsReadOK=349856, ReadErrors=16
|
||||
Current sector: 349888. This session: NewSectorsReadOK=349872, ReadErrors=16
|
||||
Current sector: 349904. This session: NewSectorsReadOK=349888, ReadErrors=16
|
||||
Current sector: 349920. This session: NewSectorsReadOK=349904, ReadErrors=16
|
||||
Current sector: 349936. This session: NewSectorsReadOK=349920, ReadErrors=16
|
||||
Current sector: 349952. This session: NewSectorsReadOK=349936, ReadErrors=16
|
||||
Current sector: 349968. This session: NewSectorsReadOK=349952, ReadErrors=16
|
||||
Current sector: 349984. This session: NewSectorsReadOK=349968, ReadErrors=16
|
||||
Current sector: 350000. This session: NewSectorsReadOK=349984, ReadErrors=16
|
||||
Current sector: 350016. This session: NewSectorsReadOK=350000, ReadErrors=16
|
||||
Current sector: 350032. This session: NewSectorsReadOK=350016, ReadErrors=16
|
||||
Current sector: 350048. This session: NewSectorsReadOK=350032, ReadErrors=16
|
||||
Current sector: 350064. This session: NewSectorsReadOK=350048, ReadErrors=16
|
||||
Current sector: 350080. This session: NewSectorsReadOK=350064, ReadErrors=16
|
||||
Current sector: 350096. This session: NewSectorsReadOK=350080, ReadErrors=16
|
||||
Current sector: 350112. This session: NewSectorsReadOK=350096, ReadErrors=16
|
||||
Current sector: 350128. This session: NewSectorsReadOK=350112, ReadErrors=16
|
||||
Current sector: 350144. This session: NewSectorsReadOK=350128, ReadErrors=16
|
||||
Current sector: 350160. This session: NewSectorsReadOK=350144, ReadErrors=16
|
||||
Current sector: 350176. This session: NewSectorsReadOK=350160, ReadErrors=16
|
||||
Current sector: 350192. This session: NewSectorsReadOK=350176, ReadErrors=16
|
||||
Current sector: 350208. This session: NewSectorsReadOK=350192, ReadErrors=16
|
||||
Current sector: 350224. This session: NewSectorsReadOK=350208, ReadErrors=16
|
||||
Current sector: 350240. This session: NewSectorsReadOK=350224, ReadErrors=16
|
||||
Current sector: 350256. This session: NewSectorsReadOK=350240, ReadErrors=16
|
||||
Current sector: 350272. This session: NewSectorsReadOK=350256, ReadErrors=16
|
||||
Current sector: 350288. This session: NewSectorsReadOK=350272, ReadErrors=16
|
||||
Current sector: 350304. This session: NewSectorsReadOK=350288, ReadErrors=16
|
||||
Current sector: 350320. This session: NewSectorsReadOK=350304, ReadErrors=16
|
||||
Current sector: 350336. This session: NewSectorsReadOK=350320, ReadErrors=16
|
||||
Current sector: 350352. This session: NewSectorsReadOK=350336, ReadErrors=16
|
||||
Current sector: 350368. This session: NewSectorsReadOK=350352, ReadErrors=16
|
||||
Current sector: 350384. This session: NewSectorsReadOK=350368, ReadErrors=16
|
||||
Current sector: 350400. This session: NewSectorsReadOK=350384, ReadErrors=16
|
||||
Current sector: 350416. This session: NewSectorsReadOK=350400, ReadErrors=16
|
||||
Current sector: 350432. This session: NewSectorsReadOK=350416, ReadErrors=16
|
||||
Current sector: 350448. This session: NewSectorsReadOK=350432, ReadErrors=16
|
||||
Current sector: 350464. This session: NewSectorsReadOK=350448, ReadErrors=16
|
||||
Current sector: 350480. This session: NewSectorsReadOK=350464, ReadErrors=16
|
||||
Current sector: 350496. This session: NewSectorsReadOK=350480, ReadErrors=16
|
||||
Current sector: 350512. This session: NewSectorsReadOK=350496, ReadErrors=16
|
||||
Current sector: 350528. This session: NewSectorsReadOK=350512, ReadErrors=16
|
||||
Current sector: 350544. This session: NewSectorsReadOK=350528, ReadErrors=16
|
||||
Current sector: 350560. This session: NewSectorsReadOK=350544, ReadErrors=16
|
||||
Current sector: 350576. This session: NewSectorsReadOK=350560, ReadErrors=16
|
||||
Current sector: 350592. This session: NewSectorsReadOK=350576, ReadErrors=16
|
||||
Current sector: 350608. This session: NewSectorsReadOK=350592, ReadErrors=16
|
||||
Current sector: 350624. This session: NewSectorsReadOK=350608, ReadErrors=16
|
||||
Current sector: 350640. This session: NewSectorsReadOK=350624, ReadErrors=16
|
||||
Current sector: 350656. This session: NewSectorsReadOK=350640, ReadErrors=16
|
||||
Current sector: 350672. This session: NewSectorsReadOK=350656, ReadErrors=16
|
||||
Current sector: 350688. This session: NewSectorsReadOK=350672, ReadErrors=16
|
||||
Current sector: 350704. This session: NewSectorsReadOK=350688, ReadErrors=16
|
||||
Current sector: 350720. This session: NewSectorsReadOK=350704, ReadErrors=16
|
||||
Current sector: 350736. This session: NewSectorsReadOK=350720, ReadErrors=16
|
||||
Current sector: 350752. This session: NewSectorsReadOK=350736, ReadErrors=16
|
||||
Current sector: 350768. This session: NewSectorsReadOK=350752, ReadErrors=16
|
||||
Current sector: 350784. This session: NewSectorsReadOK=350768, ReadErrors=16
|
||||
Current sector: 350800. This session: NewSectorsReadOK=350784, ReadErrors=16
|
||||
Current sector: 350816. This session: NewSectorsReadOK=350800, ReadErrors=16
|
||||
Current sector: 350832. This session: NewSectorsReadOK=350816, ReadErrors=16
|
||||
Current sector: 350848. This session: NewSectorsReadOK=350832, ReadErrors=16
|
||||
Current sector: 350864. This session: NewSectorsReadOK=350848, ReadErrors=16
|
||||
Current sector: 350880. This session: NewSectorsReadOK=350864, ReadErrors=16
|
||||
Current sector: 350896. This session: NewSectorsReadOK=350880, ReadErrors=16
|
||||
Current sector: 350912. This session: NewSectorsReadOK=350896, ReadErrors=16
|
||||
Current sector: 350928. This session: NewSectorsReadOK=350912, ReadErrors=16
|
||||
Current sector: 350944. This session: NewSectorsReadOK=350928, ReadErrors=16
|
||||
Current sector: 350960. This session: NewSectorsReadOK=350944, ReadErrors=16
|
||||
Current sector: 350976. This session: NewSectorsReadOK=350960, ReadErrors=16
|
||||
Current sector: 350992. This session: NewSectorsReadOK=350976, ReadErrors=16
|
||||
Current sector: 351008. This session: NewSectorsReadOK=350992, ReadErrors=16
|
||||
Current sector: 351024. This session: NewSectorsReadOK=351008, ReadErrors=16
|
||||
Current sector: 351040. This session: NewSectorsReadOK=351024, ReadErrors=16
|
||||
Current sector: 351056. This session: NewSectorsReadOK=351040, ReadErrors=16
|
||||
Current sector: 351072. This session: NewSectorsReadOK=351056, ReadErrors=16
|
||||
Current sector: 351088. This session: NewSectorsReadOK=351072, ReadErrors=16
|
||||
Current sector: 351104. This session: NewSectorsReadOK=351088, ReadErrors=16
|
||||
Current sector: 351120. This session: NewSectorsReadOK=351104, ReadErrors=16
|
||||
Current sector: 351136. This session: NewSectorsReadOK=351120, ReadErrors=16
|
||||
Current sector: 351152. This session: NewSectorsReadOK=351136, ReadErrors=16
|
||||
Current sector: 351168. This session: NewSectorsReadOK=351152, ReadErrors=16
|
||||
Current sector: 351184. This session: NewSectorsReadOK=351168, ReadErrors=16
|
||||
Current sector: 351200. This session: NewSectorsReadOK=351184, ReadErrors=16
|
||||
Current sector: 351216. This session: NewSectorsReadOK=351200, ReadErrors=16
|
||||
Current sector: 351232. This session: NewSectorsReadOK=351216, ReadErrors=16
|
||||
Current sector: 351248. This session: NewSectorsReadOK=351232, ReadErrors=16
|
||||
Current sector: 351264. This session: NewSectorsReadOK=351248, ReadErrors=16
|
||||
Current sector: 351280. This session: NewSectorsReadOK=351264, ReadErrors=16
|
||||
Current sector: 351296. This session: NewSectorsReadOK=351280, ReadErrors=16
|
||||
Current sector: 351312. This session: NewSectorsReadOK=351296, ReadErrors=16
|
||||
Current sector: 351328. This session: NewSectorsReadOK=351312, ReadErrors=16
|
||||
Current sector: 351344. This session: NewSectorsReadOK=351328, ReadErrors=16
|
||||
Current sector: 351360. This session: NewSectorsReadOK=351344, ReadErrors=16
|
||||
Current sector: 351376. This session: NewSectorsReadOK=351360, ReadErrors=16
|
||||
Current sector: 351392. This session: NewSectorsReadOK=351376, ReadErrors=16
|
||||
Current sector: 351408. This session: NewSectorsReadOK=351392, ReadErrors=16
|
||||
Current sector: 351424. This session: NewSectorsReadOK=351408, ReadErrors=16
|
||||
Current sector: 351440. This session: NewSectorsReadOK=351424, ReadErrors=16
|
||||
Current sector: 351456. This session: NewSectorsReadOK=351440, ReadErrors=16
|
||||
Current sector: 351472. This session: NewSectorsReadOK=351456, ReadErrors=16
|
||||
Current sector: 351488. This session: NewSectorsReadOK=351472, ReadErrors=16
|
||||
Current sector: 351504. This session: NewSectorsReadOK=351488, ReadErrors=16
|
||||
Current sector: 351520. This session: NewSectorsReadOK=351504, ReadErrors=16
|
||||
Current sector: 351536. This session: NewSectorsReadOK=351520, ReadErrors=16
|
||||
Current sector: 351552. This session: NewSectorsReadOK=351536, ReadErrors=16
|
||||
Current sector: 351568. This session: NewSectorsReadOK=351552, ReadErrors=16
|
||||
Current sector: 351584. This session: NewSectorsReadOK=351568, ReadErrors=16
|
||||
Current sector: 351600. This session: NewSectorsReadOK=351584, ReadErrors=16
|
||||
Current sector: 351616. This session: NewSectorsReadOK=351600, ReadErrors=16
|
||||
Current sector: 351632. This session: NewSectorsReadOK=351616, ReadErrors=16
|
||||
Current sector: 351648. This session: NewSectorsReadOK=351632, ReadErrors=16
|
||||
Current sector: 351664. This session: NewSectorsReadOK=351648, ReadErrors=16
|
||||
Current sector: 351680. This session: NewSectorsReadOK=351664, ReadErrors=16
|
||||
Current sector: 351696. This session: NewSectorsReadOK=351680, ReadErrors=16
|
||||
Current sector: 351712. This session: NewSectorsReadOK=351696, ReadErrors=16
|
||||
Current sector: 351728. This session: NewSectorsReadOK=351712, ReadErrors=16
|
||||
Current sector: 351744. This session: NewSectorsReadOK=351728, ReadErrors=16
|
||||
Current sector: 351760. This session: NewSectorsReadOK=351744, ReadErrors=16
|
||||
Current sector: 351776. This session: NewSectorsReadOK=351760, ReadErrors=16
|
||||
Current sector: 351792. This session: NewSectorsReadOK=351776, ReadErrors=16
|
||||
Current sector: 351808. This session: NewSectorsReadOK=351792, ReadErrors=16
|
||||
Current sector: 351824. This session: NewSectorsReadOK=351808, ReadErrors=16
|
||||
Current sector: 351840. This session: NewSectorsReadOK=351824, ReadErrors=16
|
||||
Current sector: 351856. This session: NewSectorsReadOK=351840, ReadErrors=16
|
||||
Current sector: 351872. This session: NewSectorsReadOK=351856, ReadErrors=16
|
||||
Current sector: 351888. This session: NewSectorsReadOK=351872, ReadErrors=16
|
||||
Current sector: 351904. This session: NewSectorsReadOK=351888, ReadErrors=16
|
||||
Current sector: 351920. This session: NewSectorsReadOK=351904, ReadErrors=16
|
||||
Current sector: 351936. This session: NewSectorsReadOK=351920, ReadErrors=16
|
||||
Current sector: 351952. This session: NewSectorsReadOK=351936, ReadErrors=16
|
||||
Current sector: 351968. This session: NewSectorsReadOK=351952, ReadErrors=16
|
||||
Current sector: 351984. This session: NewSectorsReadOK=351968, ReadErrors=16
|
||||
Current sector: 352000. This session: NewSectorsReadOK=351984, ReadErrors=16
|
||||
Current sector: 352016. This session: NewSectorsReadOK=352000, ReadErrors=16
|
||||
Current sector: 352032. This session: NewSectorsReadOK=352016, ReadErrors=16
|
||||
Current sector: 352048. This session: NewSectorsReadOK=352032, ReadErrors=16
|
||||
Current sector: 352064. This session: NewSectorsReadOK=352048, ReadErrors=16
|
||||
Current sector: 352080. This session: NewSectorsReadOK=352064, ReadErrors=16
|
||||
Current sector: 352096. This session: NewSectorsReadOK=352080, ReadErrors=16
|
||||
Current sector: 352112. This session: NewSectorsReadOK=352096, ReadErrors=16
|
||||
Current sector: 352128. This session: NewSectorsReadOK=352112, ReadErrors=16
|
||||
Current sector: 352144. This session: NewSectorsReadOK=352128, ReadErrors=16
|
||||
Current sector: 352160. This session: NewSectorsReadOK=352144, ReadErrors=16
|
||||
Current sector: 352176. This session: NewSectorsReadOK=352160, ReadErrors=16
|
||||
Current sector: 352192. This session: NewSectorsReadOK=352176, ReadErrors=16
|
||||
Current sector: 352208. This session: NewSectorsReadOK=352192, ReadErrors=16
|
||||
Current sector: 352224. This session: NewSectorsReadOK=352208, ReadErrors=16
|
||||
Current sector: 352240. This session: NewSectorsReadOK=352224, ReadErrors=16
|
||||
Current sector: 352256. This session: NewSectorsReadOK=352240, ReadErrors=16
|
||||
Current sector: 352272. This session: NewSectorsReadOK=352256, ReadErrors=16
|
||||
Current sector: 352288. This session: NewSectorsReadOK=352272, ReadErrors=16
|
||||
Current sector: 352304. This session: NewSectorsReadOK=352288, ReadErrors=16
|
||||
Current sector: 352320. This session: NewSectorsReadOK=352304, ReadErrors=16
|
||||
Current sector: 352336. This session: NewSectorsReadOK=352320, ReadErrors=16
|
||||
Current sector: 352352. This session: NewSectorsReadOK=352336, ReadErrors=16
|
||||
Current sector: 352368. This session: NewSectorsReadOK=352352, ReadErrors=16
|
||||
Current sector: 352384. This session: NewSectorsReadOK=352368, ReadErrors=16
|
||||
Current sector: 352400. This session: NewSectorsReadOK=352384, ReadErrors=16
|
||||
Current sector: 352416. This session: NewSectorsReadOK=352400, ReadErrors=16
|
||||
Current sector: 352432. This session: NewSectorsReadOK=352416, ReadErrors=16
|
||||
Current sector: 352448. This session: NewSectorsReadOK=352432, ReadErrors=16
|
||||
Current sector: 352464. This session: NewSectorsReadOK=352448, ReadErrors=16
|
||||
Current sector: 352480. This session: NewSectorsReadOK=352464, ReadErrors=16
|
||||
Current sector: 352496. This session: NewSectorsReadOK=352480, ReadErrors=16
|
||||
Current sector: 352512. This session: NewSectorsReadOK=352496, ReadErrors=16
|
||||
Current sector: 352528. This session: NewSectorsReadOK=352512, ReadErrors=16
|
||||
Current sector: 352544. This session: NewSectorsReadOK=352528, ReadErrors=16
|
||||
Current sector: 352560. This session: NewSectorsReadOK=352544, ReadErrors=16
|
||||
Current sector: 352576. This session: NewSectorsReadOK=352560, ReadErrors=16
|
||||
Current sector: 352592. This session: NewSectorsReadOK=352576, ReadErrors=16
|
||||
Current sector: 352608. This session: NewSectorsReadOK=352592, ReadErrors=16
|
||||
Current sector: 352624. This session: NewSectorsReadOK=352608, ReadErrors=16
|
||||
Current sector: 352640. This session: NewSectorsReadOK=352624, ReadErrors=16
|
||||
Current sector: 352656. This session: NewSectorsReadOK=352640, ReadErrors=16
|
||||
Current sector: 352672. This session: NewSectorsReadOK=352656, ReadErrors=16
|
||||
Current sector: 352688. This session: NewSectorsReadOK=352672, ReadErrors=16
|
||||
Current sector: 352704. This session: NewSectorsReadOK=352688, ReadErrors=16
|
||||
Current sector: 352720. This session: NewSectorsReadOK=352704, ReadErrors=16
|
||||
Current sector: 352736. This session: NewSectorsReadOK=352720, ReadErrors=16
|
||||
Current sector: 352752. This session: NewSectorsReadOK=352736, ReadErrors=16
|
||||
Current sector: 352768. This session: NewSectorsReadOK=352752, ReadErrors=16
|
||||
Current sector: 352784. This session: NewSectorsReadOK=352768, ReadErrors=16
|
||||
Current sector: 352800. This session: NewSectorsReadOK=352784, ReadErrors=16
|
||||
Current sector: 352816. This session: NewSectorsReadOK=352800, ReadErrors=16
|
||||
Current sector: 352832. This session: NewSectorsReadOK=352816, ReadErrors=16
|
||||
Current sector: 352848. This session: NewSectorsReadOK=352832, ReadErrors=16
|
||||
Current sector: 352864. This session: NewSectorsReadOK=352848, ReadErrors=16
|
||||
Current sector: 352880. This session: NewSectorsReadOK=352864, ReadErrors=16
|
||||
Current sector: 352896. This session: NewSectorsReadOK=352880, ReadErrors=16
|
||||
Current sector: 352912. This session: NewSectorsReadOK=352896, ReadErrors=16
|
||||
Current sector: 352928. This session: NewSectorsReadOK=352912, ReadErrors=16
|
||||
Current sector: 352944. This session: NewSectorsReadOK=352928, ReadErrors=16
|
||||
Current sector: 352960. This session: NewSectorsReadOK=352944, ReadErrors=16
|
||||
Current sector: 352976. This session: NewSectorsReadOK=352960, ReadErrors=16
|
||||
Current sector: 352992. This session: NewSectorsReadOK=352976, ReadErrors=16
|
||||
Current sector: 353008. This session: NewSectorsReadOK=352992, ReadErrors=16
|
||||
Current sector: 353024. This session: NewSectorsReadOK=353008, ReadErrors=16
|
||||
Current sector: 353040. This session: NewSectorsReadOK=353024, ReadErrors=16
|
||||
Current sector: 353056. This session: NewSectorsReadOK=353040, ReadErrors=16
|
||||
Current sector: 353072. This session: NewSectorsReadOK=353056, ReadErrors=16
|
||||
Current sector: 353088. This session: NewSectorsReadOK=353072, ReadErrors=16
|
||||
Current sector: 353104. This session: NewSectorsReadOK=353088, ReadErrors=16
|
||||
Current sector: 353120. This session: NewSectorsReadOK=353104, ReadErrors=16
|
||||
Current sector: 353136. This session: NewSectorsReadOK=353120, ReadErrors=16
|
||||
Current sector: 353152. This session: NewSectorsReadOK=353136, ReadErrors=16
|
||||
Current sector: 353168. This session: NewSectorsReadOK=353152, ReadErrors=16
|
||||
Current sector: 353184. This session: NewSectorsReadOK=353168, ReadErrors=16
|
||||
Current sector: 353200. This session: NewSectorsReadOK=353184, ReadErrors=16
|
||||
Current sector: 353216. This session: NewSectorsReadOK=353200, ReadErrors=16
|
||||
Current sector: 353232. This session: NewSectorsReadOK=353216, ReadErrors=16
|
||||
Current sector: 353248. This session: NewSectorsReadOK=353232, ReadErrors=16
|
||||
Current sector: 353264. This session: NewSectorsReadOK=353248, ReadErrors=16
|
||||
Current sector: 353280. This session: NewSectorsReadOK=353264, ReadErrors=16
|
||||
Current sector: 353296. This session: NewSectorsReadOK=353280, ReadErrors=16
|
||||
Current sector: 353312. This session: NewSectorsReadOK=353296, ReadErrors=16
|
||||
Current sector: 353328. This session: NewSectorsReadOK=353312, ReadErrors=16
|
||||
Current sector: 353344. This session: NewSectorsReadOK=353328, ReadErrors=16
|
||||
Current sector: 353360. This session: NewSectorsReadOK=353344, ReadErrors=16
|
||||
Current sector: 353376. This session: NewSectorsReadOK=353360, ReadErrors=16
|
||||
Current sector: 353392. This session: NewSectorsReadOK=353376, ReadErrors=16
|
||||
Current sector: 353408. This session: NewSectorsReadOK=353392, ReadErrors=16
|
||||
Current sector: 353424. This session: NewSectorsReadOK=353408, ReadErrors=16
|
||||
Current sector: 353440. This session: NewSectorsReadOK=353424, ReadErrors=16
|
||||
Current sector: 353456. This session: NewSectorsReadOK=353440, ReadErrors=16
|
||||
Current sector: 353472. This session: NewSectorsReadOK=353456, ReadErrors=16
|
||||
Current sector: 353488. This session: NewSectorsReadOK=353472, ReadErrors=16
|
||||
Current sector: 353504. This session: NewSectorsReadOK=353488, ReadErrors=16
|
||||
Current sector: 353520. This session: NewSectorsReadOK=353504, ReadErrors=16
|
||||
Current sector: 353536. This session: NewSectorsReadOK=353520, ReadErrors=16
|
||||
Current sector: 353552. This session: NewSectorsReadOK=353536, ReadErrors=16
|
||||
Current sector: 353568. This session: NewSectorsReadOK=353552, ReadErrors=16
|
||||
Current sector: 353584. This session: NewSectorsReadOK=353568, ReadErrors=16
|
||||
Current sector: 353600. This session: NewSectorsReadOK=353584, ReadErrors=16
|
||||
Current sector: 353616. This session: NewSectorsReadOK=353600, ReadErrors=16
|
||||
Current sector: 353632. This session: NewSectorsReadOK=353616, ReadErrors=16
|
||||
Current sector: 353648. This session: NewSectorsReadOK=353632, ReadErrors=16
|
||||
Current sector: 353664. This session: NewSectorsReadOK=353648, ReadErrors=16
|
||||
Current sector: 353680. This session: NewSectorsReadOK=353664, ReadErrors=16
|
||||
Current sector: 353696. This session: NewSectorsReadOK=353680, ReadErrors=16
|
||||
Current sector: 353712. This session: NewSectorsReadOK=353696, ReadErrors=16
|
||||
Current sector: 353728. This session: NewSectorsReadOK=353712, ReadErrors=16
|
||||
Current sector: 353744. This session: NewSectorsReadOK=353728, ReadErrors=16
|
||||
Current sector: 353760. This session: NewSectorsReadOK=353744, ReadErrors=16
|
||||
Current sector: 353776. This session: NewSectorsReadOK=353760, ReadErrors=16
|
||||
Current sector: 353792. This session: NewSectorsReadOK=353776, ReadErrors=16
|
||||
Current sector: 353808. This session: NewSectorsReadOK=353792, ReadErrors=16
|
||||
Current sector: 353824. This session: NewSectorsReadOK=353808, ReadErrors=16
|
||||
Current sector: 353840. This session: NewSectorsReadOK=353824, ReadErrors=16
|
||||
Current sector: 353856. This session: NewSectorsReadOK=353840, ReadErrors=16
|
||||
Current sector: 353872. This session: NewSectorsReadOK=353856, ReadErrors=16
|
||||
Current sector: 353888. This session: NewSectorsReadOK=353872, ReadErrors=16
|
||||
Current sector: 353904. This session: NewSectorsReadOK=353888, ReadErrors=16
|
||||
Current sector: 353920. This session: NewSectorsReadOK=353904, ReadErrors=16
|
||||
Current sector: 353936. This session: NewSectorsReadOK=353920, ReadErrors=16
|
||||
Current sector: 353952. This session: NewSectorsReadOK=353936, ReadErrors=16
|
||||
Current sector: 353968. This session: NewSectorsReadOK=353952, ReadErrors=16
|
||||
Current sector: 353984. This session: NewSectorsReadOK=353968, ReadErrors=16
|
||||
Current sector: 354000. This session: NewSectorsReadOK=353984, ReadErrors=16
|
||||
Current sector: 354016. This session: NewSectorsReadOK=354000, ReadErrors=16
|
||||
Current sector: 354032. This session: NewSectorsReadOK=354016, ReadErrors=16
|
||||
Current sector: 354048. This session: NewSectorsReadOK=354032, ReadErrors=16
|
||||
Current sector: 354064. This session: NewSectorsReadOK=354048, ReadErrors=16
|
||||
Current sector: 354080. This session: NewSectorsReadOK=354064, ReadErrors=16
|
||||
Current sector: 354096. This session: NewSectorsReadOK=354080, ReadErrors=16
|
||||
Current sector: 354112. This session: NewSectorsReadOK=354096, ReadErrors=16
|
||||
Current sector: 354128. This session: NewSectorsReadOK=354112, ReadErrors=16
|
||||
Current sector: 354144. This session: NewSectorsReadOK=354128, ReadErrors=16
|
||||
Current sector: 354160. This session: NewSectorsReadOK=354144, ReadErrors=16
|
||||
Current sector: 354176. This session: NewSectorsReadOK=354160, ReadErrors=16
|
||||
Current sector: 354192. This session: NewSectorsReadOK=354176, ReadErrors=16
|
||||
Current sector: 354208. This session: NewSectorsReadOK=354192, ReadErrors=16
|
||||
Current sector: 354224. This session: NewSectorsReadOK=354208, ReadErrors=16
|
||||
Current sector: 354240. This session: NewSectorsReadOK=354224, ReadErrors=16
|
||||
Current sector: 354256. This session: NewSectorsReadOK=354240, ReadErrors=16
|
||||
Current sector: 354272. This session: NewSectorsReadOK=354256, ReadErrors=16
|
||||
Current sector: 354288. This session: NewSectorsReadOK=354272, ReadErrors=16
|
||||
Current sector: 354304. This session: NewSectorsReadOK=354288, ReadErrors=16
|
||||
Current sector: 354320. This session: NewSectorsReadOK=354304, ReadErrors=16
|
||||
Current sector: 354336. This session: NewSectorsReadOK=354320, ReadErrors=16
|
||||
Current sector: 354352. This session: NewSectorsReadOK=354336, ReadErrors=16
|
||||
Current sector: 354368. This session: NewSectorsReadOK=354352, ReadErrors=16
|
||||
Current sector: 354384. This session: NewSectorsReadOK=354368, ReadErrors=16
|
||||
Current sector: 354400. This session: NewSectorsReadOK=354384, ReadErrors=16
|
||||
Current sector: 354416. This session: NewSectorsReadOK=354400, ReadErrors=16
|
||||
Current sector: 354432. This session: NewSectorsReadOK=354416, ReadErrors=16
|
||||
Current sector: 354448. This session: NewSectorsReadOK=354432, ReadErrors=16
|
||||
Current sector: 354464. This session: NewSectorsReadOK=354448, ReadErrors=16
|
||||
Current sector: 354480. This session: NewSectorsReadOK=354464, ReadErrors=16
|
||||
Current sector: 354496. This session: NewSectorsReadOK=354480, ReadErrors=16
|
||||
Current sector: 354512. This session: NewSectorsReadOK=354496, ReadErrors=16
|
||||
Current sector: 354528. This session: NewSectorsReadOK=354512, ReadErrors=16
|
||||
Current sector: 354544. This session: NewSectorsReadOK=354528, ReadErrors=16
|
||||
Current sector: 354560. This session: NewSectorsReadOK=354544, ReadErrors=16
|
||||
Current sector: 354576. This session: NewSectorsReadOK=354560, ReadErrors=16
|
||||
Current sector: 354592. This session: NewSectorsReadOK=354576, ReadErrors=16
|
||||
Current sector: 354608. This session: NewSectorsReadOK=354592, ReadErrors=16
|
||||
Current sector: 354624. This session: NewSectorsReadOK=354608, ReadErrors=16
|
||||
Current sector: 354640. This session: NewSectorsReadOK=354624, ReadErrors=16
|
||||
Current sector: 354656. This session: NewSectorsReadOK=354640, ReadErrors=16
|
||||
Current sector: 354672. This session: NewSectorsReadOK=354656, ReadErrors=16
|
||||
Current sector: 354688. This session: NewSectorsReadOK=354672, ReadErrors=16
|
||||
Current sector: 354704. This session: NewSectorsReadOK=354688, ReadErrors=16
|
||||
Current sector: 354720. This session: NewSectorsReadOK=354704, ReadErrors=16
|
||||
Current sector: 354736. This session: NewSectorsReadOK=354720, ReadErrors=16
|
||||
Current sector: 354752. This session: NewSectorsReadOK=354736, ReadErrors=16
|
||||
Current sector: 354768. This session: NewSectorsReadOK=354752, ReadErrors=16
|
||||
Current sector: 354784. This session: NewSectorsReadOK=354768, ReadErrors=16
|
||||
Current sector: 354800. This session: NewSectorsReadOK=354784, ReadErrors=16
|
||||
Current sector: 354816. This session: NewSectorsReadOK=354800, ReadErrors=16
|
||||
Current sector: 354832. This session: NewSectorsReadOK=354816, ReadErrors=16
|
||||
Current sector: 354848. This session: NewSectorsReadOK=354832, ReadErrors=16
|
||||
Current sector: 354864. This session: NewSectorsReadOK=354848, ReadErrors=16
|
||||
Current sector: 354880. This session: NewSectorsReadOK=354864, ReadErrors=16
|
||||
Current sector: 354896. This session: NewSectorsReadOK=354880, ReadErrors=16
|
||||
Current sector: 354912. This session: NewSectorsReadOK=354896, ReadErrors=16
|
||||
Current sector: 354928. This session: NewSectorsReadOK=354912, ReadErrors=16
|
||||
Current sector: 354944. This session: NewSectorsReadOK=354928, ReadErrors=16
|
||||
Current sector: 354960. This session: NewSectorsReadOK=354944, ReadErrors=16
|
||||
Current sector: 354976. This session: NewSectorsReadOK=354960, ReadErrors=16
|
||||
Current sector: 354992. This session: NewSectorsReadOK=354976, ReadErrors=16
|
||||
Current sector: 355008. This session: NewSectorsReadOK=354992, ReadErrors=16
|
||||
Current sector: 355024. This session: NewSectorsReadOK=355008, ReadErrors=16
|
||||
Current sector: 355040. This session: NewSectorsReadOK=355024, ReadErrors=16
|
||||
Current sector: 355056. This session: NewSectorsReadOK=355040, ReadErrors=16
|
||||
Current sector: 355072. This session: NewSectorsReadOK=355056, ReadErrors=16
|
||||
Current sector: 355088. This session: NewSectorsReadOK=355072, ReadErrors=16
|
||||
Current sector: 355104. This session: NewSectorsReadOK=355088, ReadErrors=16
|
||||
Current sector: 355120. This session: NewSectorsReadOK=355104, ReadErrors=16
|
||||
Current sector: 355136. This session: NewSectorsReadOK=355120, ReadErrors=16
|
||||
Current sector: 355152. This session: NewSectorsReadOK=355136, ReadErrors=16
|
||||
Current sector: 355168. This session: NewSectorsReadOK=355152, ReadErrors=16
|
||||
Current sector: 355184. This session: NewSectorsReadOK=355168, ReadErrors=16
|
||||
Current sector: 355200. This session: NewSectorsReadOK=355184, ReadErrors=16
|
||||
Current sector: 355216. This session: NewSectorsReadOK=355200, ReadErrors=16
|
||||
Current sector: 355232. This session: NewSectorsReadOK=355216, ReadErrors=16
|
||||
Current sector: 355248. This session: NewSectorsReadOK=355232, ReadErrors=16
|
||||
Current sector: 355264. This session: NewSectorsReadOK=355248, ReadErrors=16
|
||||
Current sector: 355280. This session: NewSectorsReadOK=355264, ReadErrors=16
|
||||
Current sector: 355296. This session: NewSectorsReadOK=355280, ReadErrors=16
|
||||
Current sector: 355312. This session: NewSectorsReadOK=355296, ReadErrors=16
|
||||
Current sector: 355328. This session: NewSectorsReadOK=355312, ReadErrors=16
|
||||
Current sector: 355344. This session: NewSectorsReadOK=355328, ReadErrors=16
|
||||
Current sector: 355360. This session: NewSectorsReadOK=355344, ReadErrors=16
|
||||
Current sector: 355376. This session: NewSectorsReadOK=355360, ReadErrors=16
|
||||
Current sector: 355392. This session: NewSectorsReadOK=355376, ReadErrors=16
|
||||
Current sector: 355408. This session: NewSectorsReadOK=355392, ReadErrors=16
|
||||
Current sector: 355424. This session: NewSectorsReadOK=355408, ReadErrors=16
|
||||
Current sector: 355440. This session: NewSectorsReadOK=355424, ReadErrors=16
|
||||
Current sector: 355456. This session: NewSectorsReadOK=355440, ReadErrors=16
|
||||
Current sector: 355472. This session: NewSectorsReadOK=355456, ReadErrors=16
|
||||
Current sector: 355488. This session: NewSectorsReadOK=355472, ReadErrors=16
|
||||
Current sector: 355504. This session: NewSectorsReadOK=355488, ReadErrors=16
|
||||
Current sector: 355520. This session: NewSectorsReadOK=355504, ReadErrors=16
|
||||
Current sector: 355536. This session: NewSectorsReadOK=355520, ReadErrors=16
|
||||
Current sector: 355552. This session: NewSectorsReadOK=355536, ReadErrors=16
|
||||
Current sector: 355568. This session: NewSectorsReadOK=355552, ReadErrors=16
|
||||
Current sector: 355584. This session: NewSectorsReadOK=355568, ReadErrors=16
|
||||
Current sector: 355600. This session: NewSectorsReadOK=355584, ReadErrors=16
|
||||
Current sector: 355616. This session: NewSectorsReadOK=355600, ReadErrors=16
|
||||
Current sector: 355632. This session: NewSectorsReadOK=355616, ReadErrors=16
|
||||
Current sector: 355648. This session: NewSectorsReadOK=355632, ReadErrors=16
|
||||
Current sector: 355664. This session: NewSectorsReadOK=355648, ReadErrors=16
|
||||
Current sector: 355680. This session: NewSectorsReadOK=355664, ReadErrors=16
|
||||
Current sector: 355696. This session: NewSectorsReadOK=355680, ReadErrors=16
|
||||
Current sector: 355712. This session: NewSectorsReadOK=355696, ReadErrors=16
|
||||
Current sector: 355728. This session: NewSectorsReadOK=355712, ReadErrors=16
|
||||
Current sector: 355744. This session: NewSectorsReadOK=355728, ReadErrors=16
|
||||
Current sector: 355760. This session: NewSectorsReadOK=355744, ReadErrors=16
|
||||
Current sector: 355776. This session: NewSectorsReadOK=355760, ReadErrors=16
|
||||
Current sector: 355792. This session: NewSectorsReadOK=355776, ReadErrors=16
|
||||
Current sector: 355808. This session: NewSectorsReadOK=355792, ReadErrors=16
|
||||
Current sector: 355824. This session: NewSectorsReadOK=355808, ReadErrors=16
|
||||
Current sector: 355840. This session: NewSectorsReadOK=355824, ReadErrors=16
|
||||
Current sector: 355856. This session: NewSectorsReadOK=355840, ReadErrors=16
|
||||
Current sector: 355872. This session: NewSectorsReadOK=355856, ReadErrors=16
|
||||
Current sector: 355888. This session: NewSectorsReadOK=355872, ReadErrors=16
|
||||
Current sector: 355904. This session: NewSectorsReadOK=355888, ReadErrors=16
|
||||
Current sector: 355920. This session: NewSectorsReadOK=355904, ReadErrors=16
|
||||
Current sector: 355936. This session: NewSectorsReadOK=355920, ReadErrors=16
|
||||
Current sector: 355952. This session: NewSectorsReadOK=355936, ReadErrors=16
|
||||
Current sector: 355968. This session: NewSectorsReadOK=355952, ReadErrors=16
|
||||
Current sector: 355984. This session: NewSectorsReadOK=355968, ReadErrors=16
|
||||
Current sector: 356000. This session: NewSectorsReadOK=355984, ReadErrors=16
|
||||
Current sector: 356016. This session: NewSectorsReadOK=356000, ReadErrors=16
|
||||
Current sector: 356032. This session: NewSectorsReadOK=356016, ReadErrors=16
|
||||
Current sector: 356048. This session: NewSectorsReadOK=356032, ReadErrors=16
|
||||
Current sector: 356064. This session: NewSectorsReadOK=356048, ReadErrors=16
|
||||
Current sector: 356080. This session: NewSectorsReadOK=356064, ReadErrors=16
|
||||
Current sector: 356096. This session: NewSectorsReadOK=356080, ReadErrors=16
|
||||
Current sector: 356112. This session: NewSectorsReadOK=356096, ReadErrors=16
|
||||
Current sector: 356128. This session: NewSectorsReadOK=356112, ReadErrors=16
|
||||
Current sector: 356144. This session: NewSectorsReadOK=356128, ReadErrors=16
|
||||
Current sector: 356160. This session: NewSectorsReadOK=356144, ReadErrors=16
|
||||
Current sector: 356176. This session: NewSectorsReadOK=356160, ReadErrors=16
|
||||
Current sector: 356192. This session: NewSectorsReadOK=356176, ReadErrors=16
|
||||
Current sector: 356208. This session: NewSectorsReadOK=356192, ReadErrors=16
|
||||
Current sector: 356224. This session: NewSectorsReadOK=356208, ReadErrors=16
|
||||
Current sector: 356240. This session: NewSectorsReadOK=356224, ReadErrors=16
|
||||
Current sector: 356256. This session: NewSectorsReadOK=356240, ReadErrors=16
|
||||
Current sector: 356272. This session: NewSectorsReadOK=356256, ReadErrors=16
|
||||
Current sector: 356288. This session: NewSectorsReadOK=356272, ReadErrors=16
|
||||
Current sector: 356304. This session: NewSectorsReadOK=356288, ReadErrors=16
|
||||
Current sector: 356320. This session: NewSectorsReadOK=356304, ReadErrors=16
|
||||
Current sector: 356336. This session: NewSectorsReadOK=356320, ReadErrors=16
|
||||
Current sector: 356352. This session: NewSectorsReadOK=356336, ReadErrors=16
|
||||
Current sector: 356368. This session: NewSectorsReadOK=356352, ReadErrors=16
|
||||
Current sector: 356384. This session: NewSectorsReadOK=356368, ReadErrors=16
|
||||
Current sector: 356400. This session: NewSectorsReadOK=356384, ReadErrors=16
|
||||
Current sector: 356416. This session: NewSectorsReadOK=356400, ReadErrors=16
|
||||
Current sector: 356432. This session: NewSectorsReadOK=356416, ReadErrors=16
|
||||
Current sector: 356448. This session: NewSectorsReadOK=356432, ReadErrors=16
|
||||
Current sector: 356464. This session: NewSectorsReadOK=356448, ReadErrors=16
|
||||
Current sector: 356480. This session: NewSectorsReadOK=356464, ReadErrors=16
|
||||
Current sector: 356496. This session: NewSectorsReadOK=356480, ReadErrors=16
|
||||
Current sector: 356512. This session: NewSectorsReadOK=356496, ReadErrors=16
|
||||
Current sector: 356528. This session: NewSectorsReadOK=356512, ReadErrors=16
|
||||
Current sector: 356544. This session: NewSectorsReadOK=356528, ReadErrors=16
|
||||
Current sector: 356560. This session: NewSectorsReadOK=356544, ReadErrors=16
|
||||
Current sector: 356576. This session: NewSectorsReadOK=356560, ReadErrors=16
|
||||
Current sector: 356592. This session: NewSectorsReadOK=356576, ReadErrors=16
|
||||
Current sector: 356608. This session: NewSectorsReadOK=356592, ReadErrors=16
|
||||
Current sector: 356624. This session: NewSectorsReadOK=356608, ReadErrors=16
|
||||
Current sector: 356640. This session: NewSectorsReadOK=356624, ReadErrors=16
|
||||
Current sector: 356656. This session: NewSectorsReadOK=356640, ReadErrors=16
|
||||
Current sector: 356672. This session: NewSectorsReadOK=356656, ReadErrors=16
|
||||
Current sector: 356688. This session: NewSectorsReadOK=356672, ReadErrors=16
|
||||
Current sector: 356704. This session: NewSectorsReadOK=356688, ReadErrors=16
|
||||
Current sector: 356720. This session: NewSectorsReadOK=356704, ReadErrors=16
|
||||
Current sector: 356736. This session: NewSectorsReadOK=356720, ReadErrors=16
|
||||
Current sector: 356752. This session: NewSectorsReadOK=356736, ReadErrors=16
|
||||
Current sector: 356768. This session: NewSectorsReadOK=356752, ReadErrors=16
|
||||
Current sector: 356784. This session: NewSectorsReadOK=356768, ReadErrors=16
|
||||
Current sector: 356800. This session: NewSectorsReadOK=356784, ReadErrors=16
|
||||
Current sector: 356816. This session: NewSectorsReadOK=356800, ReadErrors=16
|
||||
Current sector: 356832. This session: NewSectorsReadOK=356816, ReadErrors=16
|
||||
Current sector: 356848. This session: NewSectorsReadOK=356832, ReadErrors=16
|
||||
Current sector: 356864. This session: NewSectorsReadOK=356848, ReadErrors=16
|
||||
Current sector: 356880. This session: NewSectorsReadOK=356864, ReadErrors=16
|
||||
Current sector: 356896. This session: NewSectorsReadOK=356880, ReadErrors=16
|
||||
Current sector: 356912. This session: NewSectorsReadOK=356896, ReadErrors=16
|
||||
Current sector: 356928. This session: NewSectorsReadOK=356912, ReadErrors=16
|
||||
Current sector: 356944. This session: NewSectorsReadOK=356928, ReadErrors=16
|
||||
Current sector: 356960. This session: NewSectorsReadOK=356944, ReadErrors=16
|
||||
Current sector: 356976. This session: NewSectorsReadOK=356960, ReadErrors=16
|
||||
Current sector: 356992. This session: NewSectorsReadOK=356976, ReadErrors=16
|
||||
Current sector: 357008. This session: NewSectorsReadOK=356992, ReadErrors=16
|
||||
Current sector: 357024. This session: NewSectorsReadOK=357008, ReadErrors=16
|
||||
Current sector: 357040. This session: NewSectorsReadOK=357024, ReadErrors=16
|
||||
Current sector: 357056. This session: NewSectorsReadOK=357040, ReadErrors=16
|
||||
Current sector: 357072. This session: NewSectorsReadOK=357056, ReadErrors=16
|
||||
Current sector: 357088. This session: NewSectorsReadOK=357072, ReadErrors=16
|
||||
Current sector: 357104. This session: NewSectorsReadOK=357088, ReadErrors=16
|
||||
Current sector: 357120. This session: NewSectorsReadOK=357104, ReadErrors=16
|
||||
Current sector: 357136. This session: NewSectorsReadOK=357120, ReadErrors=16
|
||||
Current sector: 357152. This session: NewSectorsReadOK=357136, ReadErrors=16
|
||||
Current sector: 357168. This session: NewSectorsReadOK=357152, ReadErrors=16
|
||||
Current sector: 357184. This session: NewSectorsReadOK=357168, ReadErrors=16
|
||||
Current sector: 357200. This session: NewSectorsReadOK=357184, ReadErrors=16
|
||||
Current sector: 357216. This session: NewSectorsReadOK=357200, ReadErrors=16
|
||||
Current sector: 357232. This session: NewSectorsReadOK=357216, ReadErrors=16
|
||||
Current sector: 357248. This session: NewSectorsReadOK=357232, ReadErrors=16
|
||||
Current sector: 357264. This session: NewSectorsReadOK=357248, ReadErrors=16
|
||||
Current sector: 357280. This session: NewSectorsReadOK=357264, ReadErrors=16
|
||||
Current sector: 357296. This session: NewSectorsReadOK=357280, ReadErrors=16
|
||||
Current sector: 357312. This session: NewSectorsReadOK=357296, ReadErrors=16
|
||||
Current sector: 357328. This session: NewSectorsReadOK=357312, ReadErrors=16
|
||||
Current sector: 357344. This session: NewSectorsReadOK=357328, ReadErrors=16
|
||||
Current sector: 357360. This session: NewSectorsReadOK=357344, ReadErrors=16
|
||||
Current sector: 357376. This session: NewSectorsReadOK=357360, ReadErrors=16
|
||||
Current sector: 357392. This session: NewSectorsReadOK=357376, ReadErrors=16
|
||||
Current sector: 357408. This session: NewSectorsReadOK=357392, ReadErrors=16
|
||||
Current sector: 357424. This session: NewSectorsReadOK=357408, ReadErrors=16
|
||||
Current sector: 357440. This session: NewSectorsReadOK=357424, ReadErrors=16
|
||||
Current sector: 357456. This session: NewSectorsReadOK=357440, ReadErrors=16
|
||||
Current sector: 357472. This session: NewSectorsReadOK=357456, ReadErrors=16
|
||||
Current sector: 357488. This session: NewSectorsReadOK=357472, ReadErrors=16
|
||||
Current sector: 357504. This session: NewSectorsReadOK=357488, ReadErrors=16
|
||||
Current sector: 357520. This session: NewSectorsReadOK=357504, ReadErrors=16
|
||||
Current sector: 357536. This session: NewSectorsReadOK=357520, ReadErrors=16
|
||||
Current sector: 357552. This session: NewSectorsReadOK=357536, ReadErrors=16
|
||||
Current sector: 357568. This session: NewSectorsReadOK=357552, ReadErrors=16
|
||||
Current sector: 357584. This session: NewSectorsReadOK=357568, ReadErrors=16
|
||||
Current sector: 357600. This session: NewSectorsReadOK=357584, ReadErrors=16
|
||||
Current sector: 357616. This session: NewSectorsReadOK=357600, ReadErrors=16
|
||||
Current sector: 357632. This session: NewSectorsReadOK=357616, ReadErrors=16
|
||||
Current sector: 357648. This session: NewSectorsReadOK=357632, ReadErrors=16
|
||||
Current sector: 357664. This session: NewSectorsReadOK=357648, ReadErrors=16
|
||||
Current sector: 357680. This session: NewSectorsReadOK=357664, ReadErrors=16
|
||||
Current sector: 357696. This session: NewSectorsReadOK=357680, ReadErrors=16
|
||||
Current sector: 357712. This session: NewSectorsReadOK=357696, ReadErrors=16
|
||||
Current sector: 357728. This session: NewSectorsReadOK=357712, ReadErrors=16
|
||||
Current sector: 357744. This session: NewSectorsReadOK=357728, ReadErrors=16
|
||||
Current sector: 357760. This session: NewSectorsReadOK=357744, ReadErrors=16
|
||||
Current sector: 357776. This session: NewSectorsReadOK=357760, ReadErrors=16
|
||||
Current sector: 357792. This session: NewSectorsReadOK=357776, ReadErrors=16
|
||||
Current sector: 357808. This session: NewSectorsReadOK=357792, ReadErrors=16
|
||||
Current sector: 357824. This session: NewSectorsReadOK=357808, ReadErrors=16
|
||||
Current sector: 357840. This session: NewSectorsReadOK=357824, ReadErrors=16
|
||||
Current sector: 357856. This session: NewSectorsReadOK=357840, ReadErrors=16
|
||||
Current sector: 357872. This session: NewSectorsReadOK=357856, ReadErrors=16
|
||||
Current sector: 357888. This session: NewSectorsReadOK=357872, ReadErrors=16
|
||||
Current sector: 357904. This session: NewSectorsReadOK=357888, ReadErrors=16
|
||||
Current sector: 357920. This session: NewSectorsReadOK=357904, ReadErrors=16
|
||||
Current sector: 357936. This session: NewSectorsReadOK=357920, ReadErrors=16
|
||||
Current sector: 357952. This session: NewSectorsReadOK=357936, ReadErrors=16
|
||||
Current sector: 357968. This session: NewSectorsReadOK=357952, ReadErrors=16
|
||||
Current sector: 357984. This session: NewSectorsReadOK=357968, ReadErrors=16
|
||||
Current sector: 358000. This session: NewSectorsReadOK=357984, ReadErrors=16
|
||||
Current sector: 358016. This session: NewSectorsReadOK=358000, ReadErrors=16
|
||||
Current sector: 358032. This session: NewSectorsReadOK=358016, ReadErrors=16
|
||||
Current sector: 358048. This session: NewSectorsReadOK=358032, ReadErrors=16
|
||||
Current sector: 358064. This session: NewSectorsReadOK=358048, ReadErrors=16
|
||||
Current sector: 358080. This session: NewSectorsReadOK=358064, ReadErrors=16
|
||||
Current sector: 358096. This session: NewSectorsReadOK=358080, ReadErrors=16
|
||||
Current sector: 358112. This session: NewSectorsReadOK=358096, ReadErrors=16
|
||||
Current sector: 358128. This session: NewSectorsReadOK=358112, ReadErrors=16
|
||||
Current sector: 358144. This session: NewSectorsReadOK=358128, ReadErrors=16
|
||||
Current sector: 358160. This session: NewSectorsReadOK=358144, ReadErrors=16
|
||||
Current sector: 358176. This session: NewSectorsReadOK=358160, ReadErrors=16
|
||||
Current sector: 358192. This session: NewSectorsReadOK=358176, ReadErrors=16
|
||||
Current sector: 358208. This session: NewSectorsReadOK=358192, ReadErrors=16
|
||||
Current sector: 358224. This session: NewSectorsReadOK=358208, ReadErrors=16
|
||||
Current sector: 358240. This session: NewSectorsReadOK=358224, ReadErrors=16
|
||||
Current sector: 358256. This session: NewSectorsReadOK=358240, ReadErrors=16
|
||||
Current sector: 358272. This session: NewSectorsReadOK=358256, ReadErrors=16
|
||||
Current sector: 358288. This session: NewSectorsReadOK=358272, ReadErrors=16
|
||||
Current sector: 358304. This session: NewSectorsReadOK=358288, ReadErrors=16
|
||||
Current sector: 358320. This session: NewSectorsReadOK=358304, ReadErrors=16
|
||||
Current sector: 358336. This session: NewSectorsReadOK=358320, ReadErrors=16
|
||||
Current sector: 358352. This session: NewSectorsReadOK=358336, ReadErrors=16
|
||||
Current sector: 358368. This session: NewSectorsReadOK=358352, ReadErrors=16
|
||||
Current sector: 358384. This session: NewSectorsReadOK=358368, ReadErrors=16
|
||||
Current sector: 358400. This session: NewSectorsReadOK=358384, ReadErrors=16
|
||||
Current sector: 358416. This session: NewSectorsReadOK=358400, ReadErrors=16
|
||||
Current sector: 358432. This session: NewSectorsReadOK=358416, ReadErrors=16
|
||||
Current sector: 358448. This session: NewSectorsReadOK=358432, ReadErrors=16
|
||||
Current sector: 358464. This session: NewSectorsReadOK=358448, ReadErrors=16
|
||||
Current sector: 358480. This session: NewSectorsReadOK=358464, ReadErrors=16
|
||||
Current sector: 358496. This session: NewSectorsReadOK=358480, ReadErrors=16
|
||||
Current sector: 358512. This session: NewSectorsReadOK=358496, ReadErrors=16
|
||||
Current sector: 358528. This session: NewSectorsReadOK=358512, ReadErrors=16
|
||||
Current sector: 358544. This session: NewSectorsReadOK=358528, ReadErrors=16
|
||||
Current sector: 358560. This session: NewSectorsReadOK=358544, ReadErrors=16
|
||||
Current sector: 358576. This session: NewSectorsReadOK=358560, ReadErrors=16
|
||||
Current sector: 358592. This session: NewSectorsReadOK=358576, ReadErrors=16
|
||||
Current sector: 358608. This session: NewSectorsReadOK=358592, ReadErrors=16
|
||||
Current sector: 358624. This session: NewSectorsReadOK=358608, ReadErrors=16
|
||||
Current sector: 358640. This session: NewSectorsReadOK=358624, ReadErrors=16
|
||||
Current sector: 358656. This session: NewSectorsReadOK=358640, ReadErrors=16
|
||||
Current sector: 358672. This session: NewSectorsReadOK=358656, ReadErrors=16
|
||||
Current sector: 358688. This session: NewSectorsReadOK=358672, ReadErrors=16
|
||||
Current sector: 358704. This session: NewSectorsReadOK=358688, ReadErrors=16
|
||||
Current sector: 358720. This session: NewSectorsReadOK=358704, ReadErrors=16
|
||||
Current sector: 358736. This session: NewSectorsReadOK=358720, ReadErrors=16
|
||||
Current sector: 358752. This session: NewSectorsReadOK=358736, ReadErrors=16
|
||||
Current sector: 358768. This session: NewSectorsReadOK=358752, ReadErrors=16
|
||||
Current sector: 358784. This session: NewSectorsReadOK=358768, ReadErrors=16
|
||||
Current sector: 358800. This session: NewSectorsReadOK=358784, ReadErrors=16
|
||||
Current sector: 358816. This session: NewSectorsReadOK=358800, ReadErrors=16
|
||||
Current sector: 358832. This session: NewSectorsReadOK=358816, ReadErrors=16
|
||||
Current sector: 358848. This session: NewSectorsReadOK=358832, ReadErrors=16
|
||||
Current sector: 358864. This session: NewSectorsReadOK=358848, ReadErrors=16
|
||||
Current sector: 358880. This session: NewSectorsReadOK=358864, ReadErrors=16
|
||||
Current sector: 358896. This session: NewSectorsReadOK=358880, ReadErrors=16
|
||||
Current sector: 358912. This session: NewSectorsReadOK=358896, ReadErrors=16
|
||||
Current sector: 358928. This session: NewSectorsReadOK=358912, ReadErrors=16
|
||||
Current sector: 358944. This session: NewSectorsReadOK=358928, ReadErrors=16
|
||||
Current sector: 358960. This session: NewSectorsReadOK=358944, ReadErrors=16
|
||||
Current sector: 358976. This session: NewSectorsReadOK=358960, ReadErrors=16
|
||||
Current sector: 358992. This session: NewSectorsReadOK=358976, ReadErrors=16
|
||||
Current sector: 359008. This session: NewSectorsReadOK=358992, ReadErrors=16
|
||||
Current sector: 359024. This session: NewSectorsReadOK=359008, ReadErrors=16
|
||||
Current sector: 359040. This session: NewSectorsReadOK=359024, ReadErrors=16
|
||||
Current sector: 359056. This session: NewSectorsReadOK=359040, ReadErrors=16
|
||||
Current sector: 359072. This session: NewSectorsReadOK=359056, ReadErrors=16
|
||||
Current sector: 359088. This session: NewSectorsReadOK=359072, ReadErrors=16
|
||||
Current sector: 359104. This session: NewSectorsReadOK=359088, ReadErrors=16
|
||||
Current sector: 359120. This session: NewSectorsReadOK=359104, ReadErrors=16
|
||||
Current sector: 359136. This session: NewSectorsReadOK=359120, ReadErrors=16
|
||||
Current sector: 359152. This session: NewSectorsReadOK=359136, ReadErrors=16
|
||||
Current sector: 359168. This session: NewSectorsReadOK=359152, ReadErrors=16
|
||||
Current sector: 359184. This session: NewSectorsReadOK=359168, ReadErrors=16
|
||||
Current sector: 359200. This session: NewSectorsReadOK=359184, ReadErrors=16
|
||||
Current sector: 359216. This session: NewSectorsReadOK=359200, ReadErrors=16
|
||||
Current sector: 359232. This session: NewSectorsReadOK=359216, ReadErrors=16
|
||||
Current sector: 359248. This session: NewSectorsReadOK=359232, ReadErrors=16
|
||||
Current sector: 359264. This session: NewSectorsReadOK=359248, ReadErrors=16
|
||||
Current sector: 359280. This session: NewSectorsReadOK=359264, ReadErrors=16
|
||||
Current sector: 359281. This session: NewSectorsReadOK=359265, ReadErrors=16
|
||||
Current sector: 359282. This session: NewSectorsReadOK=359266, ReadErrors=16
|
||||
Current sector: 359283. This session: NewSectorsReadOK=359267, ReadErrors=16
|
||||
Current sector: 359284. This session: NewSectorsReadOK=359268, ReadErrors=16
|
||||
Current sector: 359285. This session: NewSectorsReadOK=359269, ReadErrors=16
|
||||
Current sector: 359286. This session: NewSectorsReadOK=359270, ReadErrors=16
|
||||
Current sector: 359287. This session: NewSectorsReadOK=359271, ReadErrors=16
|
||||
Current sector: 359288. This session: NewSectorsReadOK=359272, ReadErrors=16
|
||||
Current sector: 359289. This session: NewSectorsReadOK=359273, ReadErrors=16
|
||||
Current sector: 359290. This session: NewSectorsReadOK=359274, ReadErrors=16
|
||||
Current sector: 359291. This session: NewSectorsReadOK=359275, ReadErrors=16
|
||||
Current sector: 359292. This session: NewSectorsReadOK=359276, ReadErrors=16
|
||||
Current sector: 359293. This session: NewSectorsReadOK=359277, ReadErrors=16
|
||||
Current sector: 359294. This session: NewSectorsReadOK=359278, ReadErrors=16
|
||||
Current sector: 359295. This session: NewSectorsReadOK=359279, ReadErrors=16
|
||||
|
||||
16 unreadable sectors.
|
||||
CrcBuf contents, image path none (medium):
|
||||
|
||||
134
regtest/database/RS03i_strip_ecc
Normal file
134
regtest/database/RS03i_strip_ecc
Normal file
@@ -0,0 +1,134 @@
|
||||
9503f278d4550a9507a317664481adf8
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
ExamineUDF(File: rs03i-tmp.iso)
|
||||
Examining the ISO file system...
|
||||
Sector 16:
|
||||
Volume descriptor type = 1
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> primary volume descriptor:
|
||||
System identifier : | |
|
||||
Volume identifier : |RANDOM IMAGE |
|
||||
Volume space size : 21000 sectors
|
||||
Volume set size : 1
|
||||
Volume sequence size : 1
|
||||
Logical block size : 2048
|
||||
Path table size : 10 bytes
|
||||
L-Path table location : 19
|
||||
Opt L-Path table location : 0
|
||||
M-Path table location : 20
|
||||
Opt M-Path table location : 0
|
||||
Volume creation date/time : 16-07-2006 10:35:46.23
|
||||
Volume modification d/t : 16-07-2006 10:35:46.23
|
||||
Volume expiration d/t : 16-07-2106 10:35:46.23
|
||||
Volume effective d/t : 16-07-2006 10:35:46.23
|
||||
File structure version : 1
|
||||
Sector 17:
|
||||
Volume descriptor type = 2
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> supplementary volume descriptor: *skipped*
|
||||
Sector 18:
|
||||
Volume descriptor type = 255
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> volume descriptor set terminator;
|
||||
end of ISO file system parsing.
|
||||
Examining the UDF file system...
|
||||
not yet implemented.
|
||||
|
||||
ExamineECC() started
|
||||
...trying RS01
|
||||
...trying RS02
|
||||
RS02Recognize: file rs03i-tmp.iso
|
||||
try_sector: trying sector 21000
|
||||
try_sector: no cookie, skipping current modulo
|
||||
try_sector: trying sector 20850
|
||||
try_sector: no cookie, skipping current modulo
|
||||
RS02Recognize: No EH, entering exhaustive search
|
||||
FindHeaderInMedium: Trying modulo 4611686018427387904
|
||||
FindHeaderInMedium: Trying modulo 2305843009213693952
|
||||
FindHeaderInMedium: Trying modulo 1152921504606846976
|
||||
FindHeaderInMedium: Trying modulo 576460752303423488
|
||||
FindHeaderInMedium: Trying modulo 288230376151711744
|
||||
FindHeaderInMedium: Trying modulo 144115188075855872
|
||||
FindHeaderInMedium: Trying modulo 72057594037927936
|
||||
FindHeaderInMedium: Trying modulo 36028797018963968
|
||||
FindHeaderInMedium: Trying modulo 18014398509481984
|
||||
FindHeaderInMedium: Trying modulo 9007199254740992
|
||||
FindHeaderInMedium: Trying modulo 4503599627370496
|
||||
FindHeaderInMedium: Trying modulo 2251799813685248
|
||||
FindHeaderInMedium: Trying modulo 1125899906842624
|
||||
FindHeaderInMedium: Trying modulo 562949953421312
|
||||
FindHeaderInMedium: Trying modulo 281474976710656
|
||||
FindHeaderInMedium: Trying modulo 140737488355328
|
||||
FindHeaderInMedium: Trying modulo 70368744177664
|
||||
FindHeaderInMedium: Trying modulo 35184372088832
|
||||
FindHeaderInMedium: Trying modulo 17592186044416
|
||||
FindHeaderInMedium: Trying modulo 8796093022208
|
||||
FindHeaderInMedium: Trying modulo 4398046511104
|
||||
FindHeaderInMedium: Trying modulo 2199023255552
|
||||
FindHeaderInMedium: Trying modulo 1099511627776
|
||||
FindHeaderInMedium: Trying modulo 549755813888
|
||||
FindHeaderInMedium: Trying modulo 274877906944
|
||||
FindHeaderInMedium: Trying modulo 137438953472
|
||||
FindHeaderInMedium: Trying modulo 68719476736
|
||||
FindHeaderInMedium: Trying modulo 34359738368
|
||||
FindHeaderInMedium: Trying modulo 17179869184
|
||||
FindHeaderInMedium: Trying modulo 8589934592
|
||||
FindHeaderInMedium: Trying modulo 4294967296
|
||||
FindHeaderInMedium: Trying modulo 2147483648
|
||||
FindHeaderInMedium: Trying modulo 1073741824
|
||||
FindHeaderInMedium: Trying modulo 536870912
|
||||
FindHeaderInMedium: Trying modulo 268435456
|
||||
FindHeaderInMedium: Trying modulo 134217728
|
||||
FindHeaderInMedium: Trying modulo 67108864
|
||||
FindHeaderInMedium: Trying modulo 33554432
|
||||
FindHeaderInMedium: Trying modulo 16777216
|
||||
FindHeaderInMedium: Trying modulo 8388608
|
||||
FindHeaderInMedium: Trying modulo 4194304
|
||||
FindHeaderInMedium: Trying modulo 2097152
|
||||
FindHeaderInMedium: Trying modulo 1048576
|
||||
FindHeaderInMedium: Trying modulo 524288
|
||||
FindHeaderInMedium: Trying modulo 262144
|
||||
FindHeaderInMedium: Trying modulo 131072
|
||||
FindHeaderInMedium: Trying modulo 65536
|
||||
FindHeaderInMedium: Trying modulo 32768
|
||||
FindHeaderInMedium: Trying modulo 16384
|
||||
try_sector: trying sector 16384
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 8192
|
||||
try_sector: trying sector 24576
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 4096
|
||||
Sector 24576 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 2048
|
||||
Sector 24576 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 1024
|
||||
Sector 24576 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 512
|
||||
Sector 24576 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 256
|
||||
try_sector: trying sector 24832
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 128
|
||||
try_sector: trying sector 24960
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 64
|
||||
Sector 24960 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 32
|
||||
Sector 24960 cached; skipping modulo
|
||||
...trying RS03
|
||||
RS03RecognizeImage: file rs03i-tmp.iso
|
||||
FindRS03HeaderInImage: file rs03i-tmp.iso
|
||||
FindRS03HeaderInImage(): Header found at pos +0
|
||||
...augmented image found
|
||||
GetImageFingerprint(16): read & cached
|
||||
Image is augmented (expected sectors = 24990)
|
||||
Truncating image to 21000 sectors.
|
||||
Image successfully truncated back to its original size.
|
||||
140
regtest/database/RS03i_strip_ecc_not
Normal file
140
regtest/database/RS03i_strip_ecc_not
Normal file
@@ -0,0 +1,140 @@
|
||||
9503f278d4550a9507a317664481adf8
|
||||
ignore
|
||||
This software comes with ABSOLUTELY NO WARRANTY. This
|
||||
is free software and you are welcome to redistribute it
|
||||
under the conditions of the GNU GENERAL PUBLIC LICENSE.
|
||||
See the file "COPYING" for further information.
|
||||
|
||||
ExamineUDF(File: rs03i-tmp.iso)
|
||||
Examining the ISO file system...
|
||||
Sector 16:
|
||||
Volume descriptor type = 1
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> primary volume descriptor:
|
||||
System identifier : | |
|
||||
Volume identifier : |RANDOM IMAGE |
|
||||
Volume space size : 21000 sectors
|
||||
Volume set size : 1
|
||||
Volume sequence size : 1
|
||||
Logical block size : 2048
|
||||
Path table size : 10 bytes
|
||||
L-Path table location : 19
|
||||
Opt L-Path table location : 0
|
||||
M-Path table location : 20
|
||||
Opt M-Path table location : 0
|
||||
Volume creation date/time : 16-07-2006 10:35:46.23
|
||||
Volume modification d/t : 16-07-2006 10:35:46.23
|
||||
Volume expiration d/t : 16-07-2106 10:35:46.23
|
||||
Volume effective d/t : 16-07-2006 10:35:46.23
|
||||
File structure version : 1
|
||||
Sector 17:
|
||||
Volume descriptor type = 2
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> supplementary volume descriptor: *skipped*
|
||||
Sector 18:
|
||||
Volume descriptor type = 255
|
||||
Volume descriptor version = 1
|
||||
Standard identifier = CD001
|
||||
-> volume descriptor set terminator;
|
||||
end of ISO file system parsing.
|
||||
Examining the UDF file system...
|
||||
not yet implemented.
|
||||
|
||||
ExamineECC() started
|
||||
...trying RS01
|
||||
...trying RS02
|
||||
RS02Recognize: file rs03i-tmp.iso
|
||||
try_sector: trying sector 21000
|
||||
try_sector: read error, trying next header
|
||||
try_sector: trying sector 20850
|
||||
try_sector: no cookie, skipping current modulo
|
||||
RS02Recognize: No EH, entering exhaustive search
|
||||
FindHeaderInMedium: Trying modulo 4611686018427387904
|
||||
FindHeaderInMedium: Trying modulo 2305843009213693952
|
||||
FindHeaderInMedium: Trying modulo 1152921504606846976
|
||||
FindHeaderInMedium: Trying modulo 576460752303423488
|
||||
FindHeaderInMedium: Trying modulo 288230376151711744
|
||||
FindHeaderInMedium: Trying modulo 144115188075855872
|
||||
FindHeaderInMedium: Trying modulo 72057594037927936
|
||||
FindHeaderInMedium: Trying modulo 36028797018963968
|
||||
FindHeaderInMedium: Trying modulo 18014398509481984
|
||||
FindHeaderInMedium: Trying modulo 9007199254740992
|
||||
FindHeaderInMedium: Trying modulo 4503599627370496
|
||||
FindHeaderInMedium: Trying modulo 2251799813685248
|
||||
FindHeaderInMedium: Trying modulo 1125899906842624
|
||||
FindHeaderInMedium: Trying modulo 562949953421312
|
||||
FindHeaderInMedium: Trying modulo 281474976710656
|
||||
FindHeaderInMedium: Trying modulo 140737488355328
|
||||
FindHeaderInMedium: Trying modulo 70368744177664
|
||||
FindHeaderInMedium: Trying modulo 35184372088832
|
||||
FindHeaderInMedium: Trying modulo 17592186044416
|
||||
FindHeaderInMedium: Trying modulo 8796093022208
|
||||
FindHeaderInMedium: Trying modulo 4398046511104
|
||||
FindHeaderInMedium: Trying modulo 2199023255552
|
||||
FindHeaderInMedium: Trying modulo 1099511627776
|
||||
FindHeaderInMedium: Trying modulo 549755813888
|
||||
FindHeaderInMedium: Trying modulo 274877906944
|
||||
FindHeaderInMedium: Trying modulo 137438953472
|
||||
FindHeaderInMedium: Trying modulo 68719476736
|
||||
FindHeaderInMedium: Trying modulo 34359738368
|
||||
FindHeaderInMedium: Trying modulo 17179869184
|
||||
FindHeaderInMedium: Trying modulo 8589934592
|
||||
FindHeaderInMedium: Trying modulo 4294967296
|
||||
FindHeaderInMedium: Trying modulo 2147483648
|
||||
FindHeaderInMedium: Trying modulo 1073741824
|
||||
FindHeaderInMedium: Trying modulo 536870912
|
||||
FindHeaderInMedium: Trying modulo 268435456
|
||||
FindHeaderInMedium: Trying modulo 134217728
|
||||
FindHeaderInMedium: Trying modulo 67108864
|
||||
FindHeaderInMedium: Trying modulo 33554432
|
||||
FindHeaderInMedium: Trying modulo 16777216
|
||||
FindHeaderInMedium: Trying modulo 8388608
|
||||
FindHeaderInMedium: Trying modulo 4194304
|
||||
FindHeaderInMedium: Trying modulo 2097152
|
||||
FindHeaderInMedium: Trying modulo 1048576
|
||||
FindHeaderInMedium: Trying modulo 524288
|
||||
FindHeaderInMedium: Trying modulo 262144
|
||||
FindHeaderInMedium: Trying modulo 131072
|
||||
FindHeaderInMedium: Trying modulo 65536
|
||||
FindHeaderInMedium: Trying modulo 32768
|
||||
FindHeaderInMedium: Trying modulo 16384
|
||||
try_sector: trying sector 16384
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 8192
|
||||
Sector 16384 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 4096
|
||||
try_sector: trying sector 20480
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 2048
|
||||
Sector 20480 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 1024
|
||||
Sector 20480 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 512
|
||||
try_sector: trying sector 20992
|
||||
try_sector: no cookie, skipping current modulo
|
||||
FindHeaderInMedium: Trying modulo 256
|
||||
Sector 20992 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 128
|
||||
Sector 20992 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 64
|
||||
Sector 20992 cached; skipping modulo
|
||||
FindHeaderInMedium: Trying modulo 32
|
||||
Sector 20992 cached; skipping modulo
|
||||
...trying RS03
|
||||
RS03RecognizeImage: file rs03i-tmp.iso
|
||||
FindRS03HeaderInImage: file rs03i-tmp.iso
|
||||
RS03RecognizeImage: No EH, entering exhaustive search
|
||||
.. trying layer size 1409
|
||||
Scanning layers for signatures.
|
||||
- layer slice 0
|
||||
** All layers tested -> no RS03 data found
|
||||
...no augmented image detected.
|
||||
GetImageFingerprint(16): read & cached
|
||||
|
||||
*
|
||||
* dvdisaster - can not continue:
|
||||
*
|
||||
Image is not augmented (no dvdisaster signature found).
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
*/
|
||||
|
||||
#include "dvdisaster.h"
|
||||
#include "inlined-icons.h"
|
||||
|
||||
#if 0
|
||||
#define Verbose g_printf
|
||||
@@ -588,6 +589,9 @@ void InitClosure()
|
||||
Closure->darkSector = g_malloc0(sizeof(GdkColor));
|
||||
|
||||
DefaultColors();
|
||||
|
||||
Closure->tooltipOn = gdk_pixbuf_new_from_inline(-1, dvdisaster_tooltip, FALSE, NULL);
|
||||
Closure->tooltipOff = gdk_pixbuf_new_from_inline(-1, dvdisaster_nothing, FALSE, NULL);
|
||||
#endif
|
||||
|
||||
memset(Closure->bs, '\b', 255);
|
||||
|
||||
@@ -331,6 +331,8 @@ typedef struct _GlobalClosure
|
||||
GtkWindow *window; /* main window */
|
||||
GtkTooltips *tooltips; /* our global tooltips structure */
|
||||
GdkPixbuf *windowIcon; /* main window icon */
|
||||
GdkPixbuf *tooltipOn; /* pixbuf of the tooltip icon */
|
||||
GdkPixbuf *tooltipOff; /* pixbuf of a fully transparent icon */
|
||||
|
||||
GtkWidget *fileMenuImage; /* Select image entry */
|
||||
GtkWidget *fileMenuEcc; /* Select Parity File entry */
|
||||
@@ -810,6 +812,7 @@ typedef struct _LabelWithOnlineHelp
|
||||
GtkWidget *linkBox;
|
||||
GtkWidget *linkLabel;
|
||||
GtkWidget *vbox;
|
||||
GtkWidget *tooltip;
|
||||
GPtrArray *lastSizes; /* for breaking expose loops between the help windows */
|
||||
|
||||
char *windowTitle;
|
||||
|
||||
@@ -83,11 +83,13 @@ static gint help_cb(GtkWidget *widget, GdkEvent *event, gpointer data)
|
||||
case GDK_ENTER_NOTIFY:
|
||||
gtk_label_set_markup(GTK_LABEL(lab), lwoh->highlitText);
|
||||
lwoh->inside = TRUE;
|
||||
gtk_image_set_from_pixbuf(GTK_IMAGE(lwoh->tooltip), Closure->tooltipOn);
|
||||
break;
|
||||
|
||||
case GDK_LEAVE_NOTIFY:
|
||||
gtk_label_set_markup(GTK_LABEL(lab), lwoh->normalText);
|
||||
lwoh->inside = FALSE;
|
||||
gtk_image_set_from_pixbuf(GTK_IMAGE(lwoh->tooltip), Closure->tooltipOff);
|
||||
break;
|
||||
|
||||
default: break;
|
||||
@@ -115,6 +117,10 @@ LabelWithOnlineHelp* CreateLabelWithOnlineHelp(char *title, char *ascii_text)
|
||||
lwoh->windowTitle = g_locale_to_utf8(title, -1, NULL, NULL, NULL);
|
||||
SetOnlineHelpLinkText(lwoh, ascii_text);
|
||||
|
||||
/*** Add a tooltip image */
|
||||
lwoh->tooltip = gtk_image_new();
|
||||
gtk_image_set_from_pixbuf(GTK_IMAGE(lwoh->tooltip), Closure->tooltipOff);
|
||||
|
||||
gtk_label_set_markup(GTK_LABEL(lwoh->normalLabel), lwoh->normalText);
|
||||
|
||||
/*** Create the help window */
|
||||
@@ -174,6 +180,7 @@ LabelWithOnlineHelp* CloneLabelWithOnlineHelp(LabelWithOnlineHelp *orig, char *a
|
||||
lwoh->linkLabel = gtk_label_new(NULL);
|
||||
lwoh->linkBox = ebox;
|
||||
lwoh->windowTitle = g_strdup("ignore");
|
||||
lwoh->tooltip = orig->tooltip;
|
||||
|
||||
SetOnlineHelpLinkText(lwoh, ascii_text);
|
||||
|
||||
|
||||
@@ -74,6 +74,10 @@ void CreateIconFactory()
|
||||
create_icon(ifact, "dvdisaster-verify", dvdisaster_verify);
|
||||
create_icon(ifact, "dvdisaster-strip", dvdisaster_strip);
|
||||
|
||||
/*** Tooltip icon in preferences */
|
||||
create_icon(ifact, "dvdisaster-tooltip", dvdisaster_tooltip);
|
||||
create_icon(ifact, "dvdisaster-nothing", dvdisaster_nothing);
|
||||
|
||||
/*** Stock GTK icons to defeat theming */
|
||||
|
||||
create_icon(ifact, "dvdisaster-gtk-help", dvdisaster_gtk_help);
|
||||
|
||||
@@ -45,6 +45,8 @@ typedef struct _medium_info
|
||||
GtkLabel *eccState;
|
||||
GtkLabel *eccSize;
|
||||
GtkLabel *eccVersion;
|
||||
GtkLabel *exhaustiveSearch;
|
||||
GtkWidget *exhaustiveSearchButton;
|
||||
} medium_info;
|
||||
|
||||
/***
|
||||
@@ -52,7 +54,8 @@ typedef struct _medium_info
|
||||
***/
|
||||
|
||||
static void print_defaults(medium_info *mi)
|
||||
{ SetLabelText(mi->physicalType, _("Medium not present"));
|
||||
{ SetLabelText(mi->physicalType, _("Please wait..."));
|
||||
SetLabelText(mi->bookType, "-");
|
||||
SetLabelText(mi->manufID, "-");
|
||||
SetLabelText(mi->profileDescr, "-");
|
||||
SetLabelText(mi->discStatus, "-");
|
||||
@@ -65,6 +68,7 @@ static void print_defaults(medium_info *mi)
|
||||
SetLabelText(mi->eccState, "-");
|
||||
SetLabelText(mi->eccSize, "-");
|
||||
SetLabelText(mi->eccVersion, "-");
|
||||
SetLabelText(mi->exhaustiveSearch, "-");
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -102,9 +106,17 @@ void PrintMediumInfo(void *mi_ptr)
|
||||
#ifndef WITH_CLI_ONLY_YES
|
||||
if(Closure->guiMode)
|
||||
print_defaults(mi);
|
||||
|
||||
/*** Ensure the UI is fully updated before our thread is stuck doing i/o */
|
||||
while (gtk_events_pending()) gtk_main_iteration();
|
||||
#endif
|
||||
|
||||
image = OpenImageFromDevice(Closure->device, 2 /* allow blanks, see comment in OpenImageFromDevice() */);
|
||||
#ifndef WITH_CLI_ONLY_YES
|
||||
/*** in case of !image, say that we didn't find any medium */
|
||||
if(Closure->guiMode)
|
||||
SetLabelText(mi->physicalType, _("Medium not present"));
|
||||
#endif
|
||||
if(!image) return;
|
||||
dh = image->dh;
|
||||
QueryBlankCapacity(dh);
|
||||
@@ -302,6 +314,17 @@ NULL,
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifndef WITH_CLI_ONLY_YES
|
||||
if (Closure->examineRS02 && Closure->examineRS03)
|
||||
{ SetLabelText(mi->exhaustiveSearch, _("yes"));
|
||||
/*** Hide exhaustive search button if exhaustive search is already enabled for RS02 / RS03 */
|
||||
gtk_widget_hide(mi->exhaustiveSearchButton);
|
||||
} else
|
||||
{ SetLabelText(mi->exhaustiveSearch, _("no"));
|
||||
gtk_widget_show(mi->exhaustiveSearchButton);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Clean up */
|
||||
|
||||
CloseImage(image);
|
||||
@@ -340,7 +363,28 @@ static void drive_select_cb(GtkWidget *widget, gpointer data)
|
||||
*/
|
||||
|
||||
static void update_cb(GtkWidget *widget, gpointer data)
|
||||
{ PrintMediumInfo((medium_info*)data);
|
||||
{ medium_info *mi=(medium_info*)data;
|
||||
PrintMediumInfo(mi);
|
||||
}
|
||||
|
||||
/*
|
||||
* Callback for forcing exhaustive search
|
||||
*/
|
||||
|
||||
static void es_cb(GtkWidget *widget, gpointer data)
|
||||
{ medium_info *mi=(medium_info*)data;
|
||||
int oldRS02 = Closure->examineRS02;
|
||||
int oldRS03 = Closure->examineRS03;
|
||||
|
||||
gtk_widget_hide(mi->exhaustiveSearchButton);
|
||||
|
||||
Closure->examineRS02 = TRUE;
|
||||
Closure->examineRS03 = TRUE;
|
||||
|
||||
PrintMediumInfo(mi);
|
||||
|
||||
Closure->examineRS02 = oldRS02;
|
||||
Closure->examineRS03 = oldRS03;
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -550,7 +594,7 @@ void CreateMediumInfoWindow()
|
||||
frame = gtk_frame_new(_utf("Augmented image info"));
|
||||
gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 0);
|
||||
|
||||
table = gtk_table_new(2, 3, FALSE);
|
||||
table = gtk_table_new(3, 4, FALSE);
|
||||
gtk_container_set_border_width(GTK_CONTAINER(table), 5);
|
||||
gtk_container_add(GTK_CONTAINER(frame), table);
|
||||
|
||||
@@ -560,7 +604,7 @@ void CreateMediumInfoWindow()
|
||||
lab = gtk_label_new(" ");
|
||||
mi->eccState = GTK_LABEL(lab);
|
||||
gtk_misc_set_alignment(GTK_MISC(lab), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lab, 1, 2, 0, 1, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), lab, 1, 3, 0, 1, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
|
||||
lab = gtk_label_new(_utf("Augmented image size:"));
|
||||
gtk_misc_set_alignment(GTK_MISC(lab), 0.0, 0.0);
|
||||
@@ -568,15 +612,26 @@ void CreateMediumInfoWindow()
|
||||
lab = gtk_label_new(" ");
|
||||
mi->eccSize = GTK_LABEL(lab);
|
||||
gtk_misc_set_alignment(GTK_MISC(lab), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lab, 1, 2, 1, 2, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), lab, 1, 3, 1, 2, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
|
||||
lab = gtk_label_new(_utf("dvdisaster version:"));
|
||||
gtk_misc_set_alignment(GTK_MISC(lab), 0.0, 0.0);
|
||||
gtk_misc_set_alignment(GTK_MISC(lab), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lab, 0, 1, 2, 3, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 2 );
|
||||
lab = gtk_label_new(" ");
|
||||
mi->eccVersion = GTK_LABEL(lab);
|
||||
gtk_misc_set_alignment(GTK_MISC(lab), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lab, 1, 2, 2, 3, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), lab, 1, 3, 2, 3, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
|
||||
lab = gtk_label_new(_utf("Exhaustive search:"));
|
||||
gtk_misc_set_alignment(GTK_MISC(lab), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lab, 0, 1, 3, 4, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 2 );
|
||||
lab = gtk_label_new(" ");
|
||||
mi->exhaustiveSearch = GTK_LABEL(lab);
|
||||
gtk_misc_set_alignment(GTK_MISC(lab), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lab, 1, 2, 3, 4, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
mi->exhaustiveSearchButton = gtk_button_new_with_label(_utf("Run exhaustive search"));
|
||||
g_signal_connect(G_OBJECT(mi->exhaustiveSearchButton), "clicked", G_CALLBACK(es_cb), mi);
|
||||
gtk_table_attach(GTK_TABLE(table), mi->exhaustiveSearchButton, 2, 3, 3, 4, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
|
||||
/*** Show it */
|
||||
|
||||
@@ -585,6 +640,9 @@ void CreateMediumInfoWindow()
|
||||
Closure->mediumDrive = combo_box;
|
||||
gtk_widget_show_all(dialog);
|
||||
|
||||
/*** Hide it by default, it'll be unhidden by PrintMediumInfo if needed */
|
||||
gtk_widget_hide(mi->exhaustiveSearchButton);
|
||||
|
||||
PrintMediumInfo(mi);
|
||||
}
|
||||
|
||||
|
||||
@@ -150,7 +150,7 @@ void CalcSectors(guint64 size, guint64 *sectors, int *in_last)
|
||||
|
||||
#ifndef WITH_CLI_ONLY_YES
|
||||
|
||||
#define MAX_LOG_WIN_SIZE 10240
|
||||
#define MAX_LOG_WIN_SIZE 1024000
|
||||
|
||||
static void clamp_gstring(GString *string)
|
||||
{ gchar *ptr;
|
||||
@@ -1427,7 +1427,9 @@ void StripECCFromImageFile()
|
||||
PrintLog(_("Image successfully truncated back to its original size.\n"));
|
||||
|
||||
#ifndef WITH_CLI_ONLY_YES
|
||||
ModalDialog(GTK_MESSAGE_INFO, GTK_BUTTONS_OK, NULL, _("Image successfully truncated"));
|
||||
if (Closure->guiMode)
|
||||
{ ModalDialog(GTK_MESSAGE_INFO, GTK_BUTTONS_OK, NULL, _("Image successfully truncated"));
|
||||
}
|
||||
#endif
|
||||
|
||||
/*** Clean up */
|
||||
|
||||
@@ -981,7 +981,8 @@ static gchar* non_linear_format_cb(GtkScale *scale, gdouble value, gpointer data
|
||||
|
||||
static GtkWidget* non_linear_scale(GtkWidget **hbox_out, non_linear_info *nli,
|
||||
GtkWidget *label, prefs_context *pc,
|
||||
int action, int *values, int n, int value)
|
||||
int action, int *values, int n, int value,
|
||||
int addTooltip)
|
||||
{ GtkWidget *scale;
|
||||
GtkWidget *hbox;
|
||||
char *text,*utf;
|
||||
@@ -1012,6 +1013,7 @@ static GtkWidget* non_linear_scale(GtkWidget **hbox_out, non_linear_info *nli,
|
||||
|
||||
if(nli->lwoh)
|
||||
{ SetOnlineHelpLinkText(nli->lwoh, text);
|
||||
if (addTooltip) gtk_box_pack_start(GTK_BOX(hbox), nli->lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), nli->lwoh->linkBox, FALSE, FALSE, 0);
|
||||
}
|
||||
else gtk_box_pack_start(GTK_BOX(hbox), nli->label, FALSE, FALSE, 0);
|
||||
@@ -1456,6 +1458,7 @@ void CreatePreferencesWindow(void)
|
||||
GtkWidget *lab, *radio1, *radio2;
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
radio1 = gtk_radio_button_new(NULL);
|
||||
if(!i) pc->radioLinearA = radio1;
|
||||
@@ -1510,6 +1513,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox,
|
||||
FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
spin1 = gtk_spin_button_new_with_range(0, 10000000, 1000);
|
||||
if(!i) pc->rangeSpin1A = spin1;
|
||||
@@ -1565,6 +1569,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
if(!i) pc->recogRS02A = button;
|
||||
else pc->recogRS02B = button;
|
||||
@@ -1604,6 +1609,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
if(!i) pc->recogRS03A = button;
|
||||
else pc->recogRS03B = button;
|
||||
@@ -1652,6 +1658,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
if(!i) pc->ignoreISOSizeA = button;
|
||||
else pc->ignoreISOSizeB = button;
|
||||
@@ -1691,6 +1698,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
if(!i) pc->daoButtonA = button;
|
||||
else pc->daoButtonB = button;
|
||||
@@ -1735,6 +1743,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
if(!i) pc->dsmButtonA = button;
|
||||
else pc->dsmButtonB = button;
|
||||
@@ -1778,6 +1787,7 @@ void CreatePreferencesWindow(void)
|
||||
g_signal_connect(check, "toggled", G_CALLBACK(bytefill_check_cb), pc);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), check, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
entry = gtk_entry_new();
|
||||
g_signal_connect(entry, "activate", G_CALLBACK(bytefill_cb), pc);
|
||||
@@ -1853,6 +1863,7 @@ void CreatePreferencesWindow(void)
|
||||
gtk_box_pack_start(GTK_BOX(hbox), spin, FALSE, FALSE, 0);
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh_clone->normalLabel : lwoh_clone->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh_clone->tooltip, FALSE, FALSE, 0);
|
||||
gtk_container_set_border_width(GTK_CONTAINER(hbox), 10);
|
||||
|
||||
if(!i)
|
||||
@@ -1890,6 +1901,7 @@ void CreatePreferencesWindow(void)
|
||||
char value[11];
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
radio1 = gtk_radio_button_new(NULL);
|
||||
if(!i) pc->radioRawMode20A = radio1;
|
||||
@@ -1984,6 +1996,7 @@ void CreatePreferencesWindow(void)
|
||||
GtkWidget *spin;
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
spin = gtk_spin_button_new_with_range(-1, 10, 1);
|
||||
gtk_entry_set_width_chars(GTK_ENTRY(spin), 3);
|
||||
@@ -2038,6 +2051,7 @@ void CreatePreferencesWindow(void)
|
||||
if(!i)
|
||||
{ pc->fatalSenseA = toggle;
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_container_add(GTK_CONTAINER(frame), hbox);
|
||||
gtk_container_set_border_width(GTK_CONTAINER(hbox), 12);
|
||||
}
|
||||
@@ -2078,6 +2092,7 @@ void CreatePreferencesWindow(void)
|
||||
if(!i)
|
||||
{ pc->ejectA = toggle;
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_container_add(GTK_CONTAINER(frame), hbox);
|
||||
gtk_container_set_border_width(GTK_CONTAINER(hbox), 12);
|
||||
}
|
||||
@@ -2121,6 +2136,7 @@ void CreatePreferencesWindow(void)
|
||||
button = gtk_check_button_new();
|
||||
gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
if(!i) pc->rawButtonA = button;
|
||||
else pc->rawButtonB = button;
|
||||
@@ -2170,7 +2186,7 @@ void CreatePreferencesWindow(void)
|
||||
i ? pc->minAttemptsScaleInfoB : pc->minAttemptsScaleInfoA,
|
||||
i ? lwoh->normalLabel : lwoh->linkLabel,
|
||||
pc, SLIDER_MIN_READ_ATTEMPTS, min_attempts_values, MIN_ATTEMPTS_VALUE_LENGTH,
|
||||
Closure->minReadAttempts);
|
||||
Closure->minReadAttempts, !i);
|
||||
|
||||
if(!i) pc->minAttemptsScaleA = scale;
|
||||
else pc->minAttemptsScaleB = scale;
|
||||
@@ -2209,7 +2225,7 @@ void CreatePreferencesWindow(void)
|
||||
i ? pc->maxAttemptsScaleInfoB : pc->maxAttemptsScaleInfoA,
|
||||
i ? lwoh->normalLabel : lwoh->linkLabel,
|
||||
pc, SLIDER_MAX_READ_ATTEMPTS, max_attempts_values, MAX_ATTEMPTS_VALUE_LENGTH,
|
||||
Closure->maxReadAttempts);
|
||||
Closure->maxReadAttempts, !i);
|
||||
|
||||
if(!i) pc->maxAttemptsScaleA = scale;
|
||||
else pc->maxAttemptsScaleB = scale;
|
||||
@@ -2263,7 +2279,7 @@ void CreatePreferencesWindow(void)
|
||||
i ? pc->jumpScaleInfoB : pc->jumpScaleInfoA,
|
||||
i ? lwoh->normalLabel : lwoh->linkLabel,
|
||||
pc, SLIDER_JUMP, jump_values, JUMP_VALUE_LENGTH,
|
||||
Closure->sectorSkip);
|
||||
Closure->sectorSkip, !i);
|
||||
|
||||
if(!i) pc->jumpScaleA = scale;
|
||||
else pc->jumpScaleB = scale;
|
||||
@@ -2314,6 +2330,7 @@ void CreatePreferencesWindow(void)
|
||||
GtkWidget *label;
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
spin = gtk_spin_button_new_with_range(1, 200, 1);
|
||||
gtk_entry_set_width_chars(GTK_ENTRY(spin), 3);
|
||||
gtk_spin_button_set_value(GTK_SPIN_BUTTON(spin),
|
||||
@@ -2358,14 +2375,17 @@ void CreatePreferencesWindow(void)
|
||||
for(i=0; i<2; i++)
|
||||
{ GtkWidget *table = gtk_table_new(3,2,FALSE);
|
||||
GtkWidget *hbox = gtk_hbox_new(FALSE, 0);
|
||||
GtkWidget *tinybox = gtk_hbox_new(FALSE, 0);
|
||||
GtkWidget *label = gtk_label_new(Closure->dDumpDir);
|
||||
GtkWidget *select = gtk_button_new_with_label(_utf("Select"));
|
||||
|
||||
button = gtk_check_button_new();
|
||||
gtk_table_attach(GTK_TABLE(table), button,
|
||||
0, 1, 0, 1, GTK_SHRINK, GTK_SHRINK, 0, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), i ? lwoh->normalLabel : lwoh->linkBox,
|
||||
1, 2, 0, 1, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if (!i) gtk_box_pack_start(GTK_BOX(tinybox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
gtk_table_attach(GTK_TABLE(table), tinybox, 0, 2, 0, 1, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
|
||||
gtk_misc_set_alignment(GTK_MISC(lwoh->linkLabel), 0.0, 0.0);
|
||||
gtk_misc_set_alignment(GTK_MISC(lwoh->normalLabel), 0.0, 0.0);
|
||||
|
||||
@@ -2425,6 +2445,8 @@ void CreatePreferencesWindow(void)
|
||||
GtkWidget *entry = gtk_entry_new();
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
g_signal_connect(entry, "activate", G_CALLBACK(defective_prefix_cb), pc);
|
||||
gtk_entry_set_width_chars(GTK_ENTRY(entry), 20);
|
||||
gtk_entry_set_text(GTK_ENTRY(entry), Closure->dDumpPrefix);
|
||||
@@ -2458,6 +2480,7 @@ void CreatePreferencesWindow(void)
|
||||
int j;
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
chooser = gtk_combo_box_new_text();
|
||||
|
||||
@@ -2559,6 +2582,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
activate_toggle_button(GTK_TOGGLE_BUTTON(button), Closure->autoSuffix);
|
||||
g_signal_connect(G_OBJECT(button), "toggled", G_CALLBACK(toggle_cb), GINT_TO_POINTER(TOGGLE_SUFFIX));
|
||||
@@ -2598,6 +2622,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
activate_toggle_button(GTK_TOGGLE_BUTTON(button), Closure->readAndCreate);
|
||||
g_signal_connect(G_OBJECT(button), "toggled", G_CALLBACK(toggle_cb), GINT_TO_POINTER(TOGGLE_READ_CREATE));
|
||||
|
||||
@@ -2628,6 +2653,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
activate_toggle_button(GTK_TOGGLE_BUTTON(button), Closure->unlinkImage);
|
||||
g_signal_connect(G_OBJECT(button), "toggled", G_CALLBACK(toggle_cb), GINT_TO_POINTER(TOGGLE_UNLINK));
|
||||
|
||||
@@ -2666,6 +2692,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
activate_toggle_button(GTK_TOGGLE_BUTTON(button), Closure->confirmDeletion);
|
||||
g_signal_connect(G_OBJECT(button), "toggled", G_CALLBACK(toggle_cb), GINT_TO_POINTER(TOGGLE_CONFIRM_DELETION));
|
||||
|
||||
@@ -2722,6 +2749,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
if(!i)
|
||||
{ gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox2), hbox, FALSE, FALSE, 0);
|
||||
pc->greenA = cbi;
|
||||
}
|
||||
@@ -2751,6 +2779,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
if(!i)
|
||||
{ gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox2), hbox, FALSE, FALSE, 0);
|
||||
pc->yellowA = cbi;
|
||||
}
|
||||
@@ -2780,6 +2809,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
if(!i)
|
||||
{ gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox2), hbox, FALSE, FALSE, 0);
|
||||
pc->redA = cbi;
|
||||
}
|
||||
@@ -2809,6 +2839,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
if(!i)
|
||||
{ gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox2), hbox, FALSE, FALSE, 0);
|
||||
pc->darkA = cbi;
|
||||
}
|
||||
@@ -2838,6 +2869,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
if(!i)
|
||||
{ gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox2), hbox, FALSE, FALSE, 0);
|
||||
pc->blueA = cbi;
|
||||
}
|
||||
@@ -2868,6 +2900,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
if(!i)
|
||||
{ gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox2), hbox, FALSE, FALSE, 0);
|
||||
pc->whiteA = cbi;
|
||||
}
|
||||
@@ -2908,6 +2941,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
if(!i)
|
||||
{ gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox2), hbox, FALSE, FALSE, 0);
|
||||
pc->greenTextA = cbi;
|
||||
}
|
||||
@@ -2937,6 +2971,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
if(!i)
|
||||
{ gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox2), hbox, FALSE, FALSE, 0);
|
||||
pc->redTextA = cbi;
|
||||
}
|
||||
@@ -2975,6 +3010,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
if(!i)
|
||||
{ gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox2), hbox, FALSE, FALSE, 0);
|
||||
pc->curveColorA = cbi;
|
||||
}
|
||||
@@ -3005,6 +3041,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
if(!i)
|
||||
{ gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox2), hbox, FALSE, FALSE, 0);
|
||||
pc->logColorA = cbi;
|
||||
}
|
||||
@@ -3036,6 +3073,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
if(!i)
|
||||
{ gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox2), hbox, FALSE, FALSE, 0);
|
||||
pc->barColorA = cbi;
|
||||
}
|
||||
@@ -3081,6 +3119,7 @@ void CreatePreferencesWindow(void)
|
||||
gtk_container_set_border_width(GTK_CONTAINER(hbox), 10);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if (!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
activate_toggle_button(GTK_TOGGLE_BUTTON(button), Closure->reverseCancelOK);
|
||||
g_signal_connect(G_OBJECT(button), "toggled", G_CALLBACK(toggle_cb), GINT_TO_POINTER(TOGGLE_CANCEL_OK));
|
||||
|
||||
@@ -3122,6 +3161,7 @@ void CreatePreferencesWindow(void)
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if (!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
activate_toggle_button(GTK_TOGGLE_BUTTON(button), Closure->verbose);
|
||||
g_signal_connect(G_OBJECT(button), "toggled", G_CALLBACK(toggle_cb), GINT_TO_POINTER(TOGGLE_VERBOSE));
|
||||
@@ -3151,23 +3191,26 @@ void CreatePreferencesWindow(void)
|
||||
for(i=0; i<2; i++)
|
||||
{ GtkWidget *table = gtk_table_new(4,2,FALSE);
|
||||
GtkWidget *hbox = gtk_hbox_new(FALSE, 0);
|
||||
GtkWidget *tinybox = gtk_hbox_new(FALSE, 0);
|
||||
GtkWidget *label = gtk_label_new(Closure->logFile);
|
||||
GtkWidget *select = gtk_button_new_with_label(_utf("Select"));
|
||||
GtkWidget *delete = gtk_button_new_with_label(_utf("Delete"));
|
||||
|
||||
button = gtk_check_button_new();
|
||||
gtk_table_attach(GTK_TABLE(table), button,
|
||||
0, 1, 0, 1, GTK_SHRINK, GTK_SHRINK, 0, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), i ? lwoh->normalLabel : lwoh->linkBox,
|
||||
1, 2, 0, 1, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), button, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if (!i) gtk_box_pack_start(GTK_BOX(tinybox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
gtk_table_attach(GTK_TABLE(table), tinybox, 0, 2, 0, 1, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
|
||||
gtk_misc_set_alignment(GTK_MISC(lwoh->linkLabel), 0.0, 0.0);
|
||||
gtk_misc_set_alignment(GTK_MISC(lwoh->normalLabel), 0.0, 0.0);
|
||||
gtk_label_set_ellipsize(GTK_LABEL(label), PANGO_ELLIPSIZE_END);
|
||||
gtk_label_set_ellipsize(GTK_LABEL(label), PANGO_ELLIPSIZE_MIDDLE);
|
||||
|
||||
hbox = gtk_hbox_new(FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), label, TRUE, TRUE, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), hbox,
|
||||
1, 2, 1, 2, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
0, 2, 1, 2, GTK_EXPAND | GTK_FILL, GTK_SHRINK, 0, 0);
|
||||
|
||||
gtk_table_attach(GTK_TABLE(table), select,
|
||||
2, 3, 0, 2, GTK_SHRINK, GTK_SHRINK, 10, 0);
|
||||
|
||||
@@ -552,6 +552,12 @@ static void show_progress(read_closure *rc)
|
||||
|
||||
if(rc->readPos>rc->readMarker) rc->readMarker=rc->readPos;
|
||||
percent = (1000*rc->readPos)/rc->image->dh->sectors;
|
||||
|
||||
/* to avoid flooding logs when everything is ok, log this only when there have been errors in the read session */
|
||||
if (Closure->verbose && Closure->readErrors > 0)
|
||||
Verbose("Current sector: %" PRId64 ". This session: NewSectorsReadOK=%" PRId64 ", ReadErrors=%" PRId64 "\n",
|
||||
rc->readPos, rc->readOK, Closure->readErrors);
|
||||
|
||||
|
||||
if(rc->lastPercent != percent)
|
||||
{ gulong ignore;
|
||||
|
||||
@@ -688,6 +688,7 @@ void CreateRS01PrefsPage(Method *method, GtkWidget *parent)
|
||||
if(!i)
|
||||
{ wl->radio1A = radio;
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
|
||||
}
|
||||
else
|
||||
@@ -717,6 +718,7 @@ void CreateRS01PrefsPage(Method *method, GtkWidget *parent)
|
||||
if(!i)
|
||||
{ wl->radio2A = radio;
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
|
||||
}
|
||||
else
|
||||
@@ -747,6 +749,7 @@ void CreateRS01PrefsPage(Method *method, GtkWidget *parent)
|
||||
if(!i)
|
||||
{ wl->radio3A = radio;
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
}
|
||||
else
|
||||
{ wl->radio3B = radio;
|
||||
@@ -793,6 +796,7 @@ void CreateRS01PrefsPage(Method *method, GtkWidget *parent)
|
||||
if(!i)
|
||||
{ wl->radio4A = radio;
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
}
|
||||
else
|
||||
{ wl->radio4B = radio;
|
||||
@@ -899,6 +903,7 @@ void CreateRS01PrefsPage(Method *method, GtkWidget *parent)
|
||||
{ wl->cacheScaleA = scale;
|
||||
gtk_container_set_border_width(GTK_CONTAINER(hbox), 10);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_container_add(GTK_CONTAINER(frame), hbox);
|
||||
}
|
||||
else
|
||||
|
||||
@@ -760,7 +760,7 @@ void ReadRS02Preferences(Method *method)
|
||||
|
||||
void CreateRS02PrefsPage(Method *method, GtkWidget *parent)
|
||||
{ RS02Widgets *wl = (RS02Widgets*)method->widgetList;
|
||||
GtkWidget *frame, *hbox, *vbox, *vbox2, *lab, *scale, *table;
|
||||
GtkWidget *frame, *hbox, *vbox, *vbox2, *tinybox, *lab, *scale, *table;
|
||||
GtkWidget *radio, *icon;
|
||||
LabelWithOnlineHelp *lwoh;
|
||||
unsigned int index;
|
||||
@@ -820,7 +820,10 @@ void CreateRS02PrefsPage(Method *method, GtkWidget *parent)
|
||||
gtk_box_pack_start(GTK_BOX(hbox), table, FALSE, FALSE, 0);
|
||||
|
||||
gtk_misc_set_alignment(GTK_MISC(lwoh->linkLabel), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lwoh->linkBox, 0, 5, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
tinybox = gtk_hbox_new(FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), tinybox, 0, 5, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
|
||||
/* CD capacity table row */
|
||||
|
||||
@@ -828,7 +831,10 @@ void CreateRS02PrefsPage(Method *method, GtkWidget *parent)
|
||||
RegisterPreferencesHelpWindow(lwoh);
|
||||
|
||||
gtk_misc_set_alignment(GTK_MISC(lwoh->linkLabel), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lwoh->linkBox, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
tinybox = gtk_hbox_new(FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), tinybox, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
|
||||
wl->cdEntryA = gtk_entry_new();
|
||||
gtk_entry_set_width_chars(GTK_ENTRY(wl->cdEntryA), 9);
|
||||
@@ -888,7 +894,10 @@ void CreateRS02PrefsPage(Method *method, GtkWidget *parent)
|
||||
RegisterPreferencesHelpWindow(lwoh);
|
||||
|
||||
gtk_misc_set_alignment(GTK_MISC(lwoh->linkLabel), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lwoh->linkBox, 0, 1, 2, 3, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
tinybox = gtk_hbox_new(FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), tinybox, 0, 1, 2, 3, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
|
||||
wl->dvdEntry1A = gtk_entry_new();
|
||||
gtk_entry_set_width_chars(GTK_ENTRY(wl->dvdEntry1A), 9);
|
||||
@@ -948,7 +957,10 @@ void CreateRS02PrefsPage(Method *method, GtkWidget *parent)
|
||||
RegisterPreferencesHelpWindow(lwoh);
|
||||
|
||||
gtk_misc_set_alignment(GTK_MISC(lwoh->linkLabel), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lwoh->linkBox, 0, 1, 3, 4, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
tinybox = gtk_hbox_new(FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), tinybox, 0, 1, 3, 4, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
|
||||
wl->dvdEntry2A = gtk_entry_new();
|
||||
gtk_entry_set_width_chars(GTK_ENTRY(wl->dvdEntry2A), 9);
|
||||
@@ -1008,7 +1020,10 @@ void CreateRS02PrefsPage(Method *method, GtkWidget *parent)
|
||||
RegisterPreferencesHelpWindow(lwoh);
|
||||
|
||||
gtk_misc_set_alignment(GTK_MISC(lwoh->linkLabel), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lwoh->linkBox, 0, 1, 4, 5, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
tinybox = gtk_hbox_new(FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), tinybox, 0, 1, 4, 5, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
|
||||
wl->bdEntry1A = gtk_entry_new();
|
||||
gtk_entry_set_width_chars(GTK_ENTRY(wl->bdEntry1A), 9);
|
||||
@@ -1067,7 +1082,10 @@ void CreateRS02PrefsPage(Method *method, GtkWidget *parent)
|
||||
RegisterPreferencesHelpWindow(lwoh);
|
||||
|
||||
gtk_misc_set_alignment(GTK_MISC(lwoh->linkLabel), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lwoh->linkBox, 0, 1, 5, 6, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
tinybox = gtk_hbox_new(FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), tinybox, 0, 1, 5, 6, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
|
||||
wl->bdEntry2A = gtk_entry_new();
|
||||
gtk_entry_set_width_chars(GTK_ENTRY(wl->bdEntry2A), 9);
|
||||
@@ -1126,7 +1144,10 @@ void CreateRS02PrefsPage(Method *method, GtkWidget *parent)
|
||||
RegisterPreferencesHelpWindow(lwoh);
|
||||
|
||||
gtk_misc_set_alignment(GTK_MISC(lwoh->linkLabel), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lwoh->linkBox, 0, 1, 6, 7, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
tinybox = gtk_hbox_new(FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), tinybox, 0, 1, 6, 7, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
|
||||
wl->bdEntry3A = gtk_entry_new();
|
||||
gtk_entry_set_width_chars(GTK_ENTRY(wl->bdEntry3A), 9);
|
||||
@@ -1187,7 +1208,10 @@ void CreateRS02PrefsPage(Method *method, GtkWidget *parent)
|
||||
RegisterPreferencesHelpWindow(lwoh);
|
||||
|
||||
gtk_misc_set_alignment(GTK_MISC(lwoh->linkLabel), 0.0, 0.0);
|
||||
gtk_table_attach(GTK_TABLE(table), lwoh->linkBox, 0, 1, 7, 8, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
tinybox = gtk_hbox_new(FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(tinybox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_table_attach(GTK_TABLE(table), tinybox, 0, 1, 7, 8, GTK_SHRINK | GTK_FILL, GTK_SHRINK, 5, 5);
|
||||
|
||||
wl->bdEntry4A = gtk_entry_new();
|
||||
gtk_entry_set_width_chars(GTK_ENTRY(wl->bdEntry4A), 9);
|
||||
@@ -1280,6 +1304,7 @@ void CreateRS02PrefsPage(Method *method, GtkWidget *parent)
|
||||
gtk_box_pack_start(GTK_BOX(hbox), radio, FALSE, FALSE, 0);
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), !i ? lwoh->linkBox : lwoh->normalLabel, FALSE, FALSE, 0);
|
||||
if (!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
entry = gtk_entry_new();
|
||||
gtk_entry_set_width_chars(GTK_ENTRY(entry), 9);
|
||||
@@ -1366,6 +1391,7 @@ void CreateRS02PrefsPage(Method *method, GtkWidget *parent)
|
||||
{ wl->cacheScaleA = scale;
|
||||
gtk_container_set_border_width(GTK_CONTAINER(hbox), 10);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_container_add(GTK_CONTAINER(frame), hbox);
|
||||
}
|
||||
else
|
||||
|
||||
@@ -500,6 +500,7 @@ void CreateRS03PrefsPage(Method *method, GtkWidget *parent)
|
||||
GtkWidget *radio1, *radio2;
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if (!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
radio1 = gtk_radio_button_new(NULL);
|
||||
g_signal_connect(G_OBJECT(radio1), "toggled", G_CALLBACK(eccmethod_cb), (gpointer)wl);
|
||||
@@ -594,11 +595,13 @@ void CreateRS03PrefsPage(Method *method, GtkWidget *parent)
|
||||
if(!i)
|
||||
{ wl->radio1A = radio;
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
|
||||
}
|
||||
else
|
||||
{ wl->radio1B = radio;
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->normalLabel, FALSE, FALSE, 0);
|
||||
if (!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
AddHelpWidget(lwoh, hbox);
|
||||
}
|
||||
}
|
||||
@@ -623,6 +626,7 @@ void CreateRS03PrefsPage(Method *method, GtkWidget *parent)
|
||||
if(!i)
|
||||
{ wl->radio2A = radio;
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
|
||||
}
|
||||
else
|
||||
@@ -653,6 +657,7 @@ void CreateRS03PrefsPage(Method *method, GtkWidget *parent)
|
||||
if(!i)
|
||||
{ wl->radio3A = radio;
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
}
|
||||
else
|
||||
{ wl->radio3B = radio;
|
||||
@@ -699,6 +704,7 @@ void CreateRS03PrefsPage(Method *method, GtkWidget *parent)
|
||||
if(!i)
|
||||
{ wl->radio4A = radio;
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
}
|
||||
else
|
||||
{ wl->radio4B = radio;
|
||||
@@ -810,6 +816,7 @@ void CreateRS03PrefsPage(Method *method, GtkWidget *parent)
|
||||
if(!i)
|
||||
{ wl->prefetchScaleA = scale;
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0);
|
||||
}
|
||||
else
|
||||
@@ -840,6 +847,7 @@ void CreateRS03PrefsPage(Method *method, GtkWidget *parent)
|
||||
GtkWidget *radio1, *radio2;
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
radio1 = gtk_radio_button_new(NULL);
|
||||
g_signal_connect(G_OBJECT(radio1), "toggled", G_CALLBACK(io_strategy_cb), (gpointer)wl);
|
||||
@@ -925,6 +933,7 @@ void CreateRS03PrefsPage(Method *method, GtkWidget *parent)
|
||||
{ wl->threadsScaleA = scale;
|
||||
gtk_container_set_border_width(GTK_CONTAINER(hbox), 10);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->linkBox, FALSE, FALSE, 0);
|
||||
gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
gtk_container_add(GTK_CONTAINER(frame), hbox);
|
||||
}
|
||||
else
|
||||
@@ -965,6 +974,7 @@ void CreateRS03PrefsPage(Method *method, GtkWidget *parent)
|
||||
GtkWidget *radio1, *radio2, *radio3=NULL, *radio4;
|
||||
|
||||
gtk_box_pack_start(GTK_BOX(hbox), i ? lwoh->normalLabel : lwoh->linkBox, FALSE, FALSE, 0);
|
||||
if(!i) gtk_box_pack_start(GTK_BOX(hbox), lwoh->tooltip, FALSE, FALSE, 0);
|
||||
|
||||
radio1 = gtk_radio_button_new(NULL);
|
||||
g_signal_connect(G_OBJECT(radio1), "toggled", G_CALLBACK(encoding_alg_cb), (gpointer)wl);
|
||||
|
||||
@@ -79,7 +79,7 @@ static gboolean expose_cb(GtkWidget *widget, GdkEventExpose *event, gpointer dat
|
||||
Closure->invisibleDash = g_strdup_printf("<span color=\"#%02x%02x%02x\">-</span>",
|
||||
bg->red>>8, bg->green>>8, bg->blue>>8);
|
||||
|
||||
AboutText(box, _("This is <b>v0.79.6-pl7</b>. The patchlevel series are enhanced from the last upstream pre-release.\n"
|
||||
AboutText(box, _("This is <b>v0.79.6-pl8</b>. The patchlevel series are enhanced from the last upstream pre-release.\n"
|
||||
"We add support for a CLI version, BD-R TL/QL, a Windows build, an option to produce bigger BD-R RS03,\n"
|
||||
"images, support for stripping ECC from ISOs, re-enabled adaptive reading (except for RS03), and more.\n"
|
||||
"\n"
|
||||
|
||||
Reference in New Issue
Block a user