Hi ports@, Since lang/ocaml was updated to 4.03.0, unison crashes every now and then with a segmentation fault on my amd64 machine (I use the no_x11 flavor of unison).
The backtrace (see below) suggests that this only happens when unison is used with a network connection. Indeed, I have not been able to reproduce it while synchronizing two local roots. I have been able to reproduce the problem both with SSH and the unison "socket method". To get a useful backtrace, I recompiled ocaml with the patch found below to enable the debugging symbols (compiling with DEBUG=-g didn't work). If I need to provide more information or if I can help in some other way, please let me know. Thanks, Caspar Schutijser ==> how to reproduce unison only seems to crash after quite some files have been transferred, so the number of changed files between the two unison roots need to be big. To make it easy to reproduce, I cloned a big git repository. Once the files have been transferred successfully, check out an old tag so lots of files change. Initialize the test environment: # useradd -m test # su - test $ ssh-keygen $ cat .ssh/id_rsa.pub >>.ssh/authorized_keys $ mkdir .unison $ echo "auto = true" >.unison/default.prf $ git clone https://github.com/postgres/postgres Run unison and observe how it segfaults: $ yes | unison postgres/ ssh://localhost//home/test/postgres.copy Once the entire repository has been transferred, check out an old postgres release to generate lots of changed files: $ cd postgres $ git checkout PG95-1_01 And then run unison again as described above. After that, if you want to go back to the master branch: $ cd postgres $ git checkout master And run unison again as described above. ==> backtrace $ egdb /usr/local/bin/unison /home/test/unison.core GNU gdb (GDB) 7.11.1 Copyright (C) 2016 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-unknown-openbsd6.0". Type "show configuration" for configuration details. For bug reporting instructions, please see: <http://www.gnu.org/software/gdb/bugs/>. Find the GDB manual and other documentation resources online at: <http://www.gnu.org/software/gdb/documentation/>. For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from /usr/local/bin/unison...done. [New process 75757] Core was generated by `unison'. Program terminated with signal SIGSEGV, Segmentation fault. #0 0x00001e8d923e9948 in intern_rec (dest=0x1e8fbb92ffe0) at intern.c:366 366 *intern_dest = Make_header(size, tag, intern_color); (gdb) bt #0 0x00001e8d923e9948 in intern_rec (dest=0x1e8fbb92ffe0) at intern.c:366 #1 0x00001e8d923eac15 in input_val_from_block (h=0x7f7ffffbdd50) at intern.c:777 #2 0x00001e8d923ead16 in caml_input_value_from_block (data=0x1e901ca85803 '\337' <repeats 199 times>, <incomplete sequence \337>..., len=34) at intern.c:805 #3 0x00001e8d923d599b in ml_unmarshal_from_bigarray (b=33602674032808, ofs=7) at /home/caspar/tmp-ports/obj/unison-2.48.4-no_x11/src/bytearray_stubs.c:25 #4 0x00001e8d9233df2f in camlRemote__fun_12901 () at /home/caspar/tmp-ports/obj/unison-2.48.4-no_x11/src/remote.ml:454 #5 0x00001e8d923392a7 in camlRemote__fun_13262 () at /home/caspar/tmp-ports/obj/unison-2.48.4-no_x11/src/remote.ml:464 #6 0x00001e8d92360cad in camlLwt__apply_1225 () at /home/caspar/tmp-ports/obj/unison-2.48.4-no_x11/src/lwt/lwt.ml:75 #7 0x00001e8d9236072e in camlLwt__fun_1450 () at /home/caspar/tmp-ports/obj/unison-2.48.4-no_x11/src/lwt/lwt.ml:94 #8 0x00001e8d9238a7b1 in camlList__iter_1258 () at list.ml:77 #9 0x00001e8d92360a02 in camlLwt__restart_1211 () at /home/caspar/tmp-ports/obj/unison-2.48.4-no_x11/src/lwt/lwt.ml:31 #10 0x00001e8d9235cb8e in camlLwt_unix_impl__fun_3373 () at /home/caspar/tmp-ports/obj/unison-2.48.4-no_x11/src/lwt/generic/lwt_unix_impl.ml:153 #11 0x00001e8d9238a7b1 in camlList__iter_1258 () at list.ml:77 #12 0x00001e8d9235dbb1 in camlLwt_unix_impl__run_1576 () at /home/caspar/tmp-ports/obj/unison-2.48.4-no_x11/src/lwt/generic/lwt_unix_impl.ml:148 #13 0x00001e8d92304eec in camlMain__fun_1874 () at /home/caspar/tmp-ports/obj/unison-2.48.4-no_x11/src/main.ml:202 #14 0x00001e8d92305245 in camlMain__catch_all_1293 () at /home/caspar/tmp-ports/obj/unison-2.48.4-no_x11/src/main.ml:131 #15 0x00001e8d92305613 in camlMain__init_1317 () at /home/caspar/tmp-ports/obj/unison-2.48.4-no_x11/src/main.ml:199 #16 0x00001e8d923057d5 in camlMain__Body_1547 () at /home/caspar/tmp-ports/obj/unison-2.48.4-no_x11/src/main.ml:239 #17 0x00001e8d92304dc3 in camlLinktext__entry () #18 0x00001e8d92301699 in caml_startup.code_begin () #19 0x00001e8d923f6d30 in caml_start_program () #20 0x00001e8d923f71bc in caml_main (argv=0x7f7ffffbe0a8) at startup.c:138 #21 0x00001e8d923d5ec4 in main (argc=2, argv=0x7f7ffffbe0a8) at main.c:35 (gdb) print *intern_dest Cannot access memory at address 0x1e8fbb930008 ==> ocaml patch used to enable debugging symbols Index: patches/patch-configure =================================================================== RCS file: /cvs/ports/lang/ocaml/patches/patch-configure,v retrieving revision 1.20 diff -u -p -r1.20 patch-configure --- patches/patch-configure 24 Jun 2016 15:59:12 -0000 1.20 +++ patches/patch-configure 25 Aug 2016 15:33:56 -0000 @@ -1,7 +1,16 @@ $OpenBSD: patch-configure,v 1.20 2016/06/24 15:59:12 krw Exp $ ---- configure.orig Mon Apr 25 09:36:01 2016 -+++ configure Wed May 18 13:01:05 2016 -@@ -839,6 +839,8 @@ +--- configure.orig Mon Apr 25 15:36:01 2016 ++++ configure Thu Aug 25 14:25:20 2016 +@@ -331,7 +331,7 @@ case "$ccfamily" in + wrn "Consider using GCC version 4.2 or above." + bytecccompopts="-std=gnu99 -O $gcc_warnings";; + gcc-*) +- bytecccompopts="-std=gnu99 -O2 -fno-strict-aliasing -fwrapv $gcc_warnings";; ++ bytecccompopts="-std=gnu99 -g -O0 -fno-strict-aliasing -fwrapv $gcc_warnings";; + *) + bytecccompopts="-O";; + esac +@@ -839,6 +839,8 @@ case "$target" in s390x*-*-linux*) arch=s390x; model=z10; system=elf;; armv6*-*-linux-gnueabihf) arch=arm; model=armv6; system=linux_eabihf;; arm*-*-linux-gnueabihf) arch=arm; system=linux_eabihf;; @@ -10,7 +19,7 @@ $OpenBSD: patch-configure,v 1.20 2016/06 armv7*-*-linux-gnueabi) arch=arm; model=armv7; system=linux_eabi;; armv6t2*-*-linux-gnueabi) arch=arm; model=armv6t2; system=linux_eabi;; armv6*-*-linux-gnueabi) arch=arm; model=armv6; system=linux_eabi;; -@@ -1673,11 +1675,11 @@ +@@ -1673,11 +1675,11 @@ echo "X11_LINK=$x11_link" >> Makefile # Look for BFD library ==> dmesg OpenBSD 6.0-current (GENERIC.MP) #2376: Sat Aug 20 21:06:47 MDT 2016 dera...@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP real mem = 8283222016 (7899MB) avail mem = 8027705344 (7655MB) mpath0 at root scsibus0 at mpath0: 256 targets mainbus0 at root bios0 at mainbus0: SMBIOS rev. 2.7 @ 0xdae9d000 (69 entries) bios0: vendor LENOVO version "G4ET37WW (1.12 )" date 05/29/2012 bios0: LENOVO 2429DT7 acpi0 at bios0: rev 2 acpi0: sleep states S0 S3 S4 S5 acpi0: tables DSDT FACP SLIC TCPA SSDT SSDT SSDT HPET APIC MCFG ECDT FPDT ASF! UEFI UEFI POAT SSDT SSDT UEFI acpi0: wakeup devices LID_(S4) SLPB(S3) IGBE(S4) EXP3(S4) XHCI(S3) EHC1(S3) EHC2(S3) HDEF(S4) acpitimer0 at acpi0: 3579545 Hz, 24 bits acpihpet0 at acpi0: 14318179 Hz acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat cpu0 at mainbus0: apid 0 (boot processor) cpu0: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz, 2295.19 MHz cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT cpu0: 256KB 64b/line 8-way L2 cache cpu0: smt 0, core 0, package 0 mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges cpu0: apic clock running at 99MHz cpu0: mwait min=64, max=64, C-substates=0.2.1.1.2, IBE cpu1 at mainbus0: apid 1 (application processor) cpu1: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz, 2294.79 MHz cpu1: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT cpu1: 256KB 64b/line 8-way L2 cache cpu1: smt 1, core 0, package 0 cpu2 at mainbus0: apid 2 (application processor) cpu2: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz, 2294.79 MHz cpu2: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT cpu2: 256KB 64b/line 8-way L2 cache cpu2: smt 0, core 1, package 0 cpu3 at mainbus0: apid 3 (application processor) cpu3: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz, 2294.79 MHz cpu3: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT cpu3: 256KB 64b/line 8-way L2 cache cpu3: smt 1, core 1, package 0 cpu4 at mainbus0: apid 4 (application processor) cpu4: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz, 2294.79 MHz cpu4: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT cpu4: 256KB 64b/line 8-way L2 cache cpu4: smt 0, core 2, package 0 cpu5 at mainbus0: apid 5 (application processor) cpu5: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz, 2294.79 MHz cpu5: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT cpu5: 256KB 64b/line 8-way L2 cache cpu5: smt 1, core 2, package 0 cpu6 at mainbus0: apid 6 (application processor) cpu6: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz, 2294.79 MHz cpu6: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT cpu6: 256KB 64b/line 8-way L2 cache cpu6: smt 0, core 3, package 0 cpu7 at mainbus0: apid 7 (application processor) cpu7: Intel(R) Core(TM) i7-3610QM CPU @ 2.30GHz, 2294.79 MHz cpu7: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT cpu7: 256KB 64b/line 8-way L2 cache cpu7: smt 1, core 3, package 0 ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins acpimcfg0 at acpi0 addr 0xf8000000, bus 0-63 acpiec0 at acpi0 acpiprt0 at acpi0: bus 0 (PCI0) acpiprt1 at acpi0: bus -1 (PEG_) acpiprt2 at acpi0: bus 2 (EXP1) acpiprt3 at acpi0: bus 3 (EXP2) acpiprt4 at acpi0: bus -1 (EXP3) acpicpu0 at acpi0: C2(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS acpicpu1 at acpi0: C2(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS acpicpu2 at acpi0: C2(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS acpicpu3 at acpi0: C2(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS acpicpu4 at acpi0: C2(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS acpicpu5 at acpi0: C2(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS acpicpu6 at acpi0: C2(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS acpicpu7 at acpi0: C2(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS acpipwrres0 at acpi0: PUBS, resource for XHCI, EHC1, EHC2 acpitz0 at acpi0: critical temperature is 103 degC acpibtn0 at acpi0: LID_ acpibtn1 at acpi0: SLPB "PNP0303" at acpi0 not configured "LEN0015" at acpi0 not configured acpibat0 at acpi0: BAT0 model "45N1013" serial 19816 type LION oem "SANYO" acpiac0 at acpi0: AC unit online acpithinkpad0 at acpi0 "PNP0C14" at acpi0 not configured "PNP0C14" at acpi0 not configured acpivideo0 at acpi0: VID_ acpivout at acpivideo0 not configured acpivideo1 at acpi0: VID_ cpu0: Enhanced SpeedStep 2295 MHz: speeds: 2301, 2300, 2200, 2100, 2000, 1900, 1800, 1700, 1600, 1500, 1400, 1300, 1200 MHz pci0 at mainbus0 bus 0 pchb0 at pci0 dev 0 function 0 "Intel Core 3G Host" rev 0x09 inteldrm0 at pci0 dev 2 function 0 "Intel HD Graphics 4000" rev 0x09 drm0 at inteldrm0 inteldrm0: msi inteldrm0: 1600x900 wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation) wsdisplay0: screen 1-5 added (std, vt100 emulation) xhci0 at pci0 dev 20 function 0 "Intel 7 Series xHCI" rev 0x04: msi usb0 at xhci0: USB revision 3.0 uhub0 at usb0 "Intel xHCI root hub" rev 3.00/1.00 addr 1 "Intel 7 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured em0 at pci0 dev 25 function 0 "Intel 82579LM" rev 0x04: msi, address 3c:97:0e:22:0a:b0 ehci0 at pci0 dev 26 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 16 usb1 at ehci0: USB revision 2.0 uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1 azalia0 at pci0 dev 27 function 0 "Intel 7 Series HD Audio" rev 0x04: msi azalia0: codecs: Realtek ALC269 audio0 at azalia0 ppb0 at pci0 dev 28 function 0 "Intel 7 Series PCIE" rev 0xc4: msi pci1 at ppb0 bus 2 sdhc0 at pci1 dev 0 function 0 "Ricoh 5U823 SD/MMC" rev 0x05: apic 2 int 16 sdhc0: SDHC 3.0, 50 MHz base clock sdmmc0 at sdhc0: 4-bit, sd high-speed, mmc high-speed, dma ppb1 at pci0 dev 28 function 1 "Intel 7 Series PCIE" rev 0xc4: msi pci2 at ppb1 bus 3 iwn0 at pci2 dev 0 function 0 "Intel Centrino Advanced-N 6205" rev 0x34: msi, MIMO 2T2R, MoW, address 60:67:20:44:f9:84 ehci1 at pci0 dev 29 function 0 "Intel 7 Series USB" rev 0x04: apic 2 int 23 usb2 at ehci1: USB revision 2.0 uhub2 at usb2 "Intel EHCI root hub" rev 2.00/1.00 addr 1 pcib0 at pci0 dev 31 function 0 "Intel QM77 LPC" rev 0x04 ahci0 at pci0 dev 31 function 2 "Intel 7 Series AHCI" rev 0x04: msi, AHCI 1.3 ahci0: port 0: 6.0Gb/s ahci0: port 1: 1.5Gb/s scsibus1 at ahci0: 32 targets sd0 at scsibus1 targ 0 lun 0: <ATA, Samsung SSD 850, EMT0> SCSI3 0/direct fixed naa.5002538d401db2c2 sd0: 476940MB, 512 bytes/sector, 976773168 sectors, thin cd0 at scsibus1 targ 1 lun 0: <Optiarc, DVD RW AD-7740H, 1.S0> ATAPI 5/cdrom removable ichiic0 at pci0 dev 31 function 3 "Intel 7 Series SMBus" rev 0x04: apic 2 int 18 iic0 at ichiic0 spdmem0 at iic0 addr 0x50: 4GB DDR3 SDRAM PC3-12800 SO-DIMM spdmem1 at iic0 addr 0x51: 4GB DDR3 SDRAM PC3-12800 SO-DIMM isa0 at pcib0 isadma0 at isa0 pckbc0 at isa0 port 0x60/5 irq 1 irq 12 pckbd0 at pckbc0 (kbd slot) wskbd0 at pckbd0: console keyboard, using wsdisplay0 pms0 at pckbc0 (aux slot) wsmouse0 at pms0 mux 0 wsmouse1 at pms0 mux 0 pms0: Synaptics touchpad, firmware 7.2 pcppi0 at isa0 port 0x61 spkr0 at pcppi0 uhidev0 at uhub0 port 1 configuration 1 interface 0 "Holtek USB Keyboard" rev 1.10/1.01 addr 2 uhidev0: iclass 3/1 ukbd0 at uhidev0: 8 variable keys, 6 key codes wskbd1 at ukbd0 mux 1 wskbd1: connecting to wsdisplay0 uhidev1 at uhub0 port 1 configuration 1 interface 1 "Holtek USB Keyboard" rev 1.10/1.01 addr 2 uhidev1: iclass 3/1, 2 report ids uhid0 at uhidev1 reportid 1: input=6, output=0, feature=0 uhid1 at uhidev1 reportid 2: input=1, output=0, feature=0 uhidev2 at uhub0 port 2 configuration 1 interface 0 "Logitech USB Laser Mouse" rev 2.00/56.01 addr 3 uhidev2: iclass 3/1 ums0 at uhidev2: 8 buttons, Z and W dir wsmouse2 at ums0 mux 0 uhub3 at uhub1 port 1 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2 uhub4 at uhub2 port 1 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2 vscsi0 at root scsibus2 at vscsi0: 256 targets softraid0 at root scsibus3 at softraid0: 256 targets softraid0: sd1 was not shutdown properly sd1 at scsibus3 targ 1 lun 0: <OPENBSD, SR CRYPTO, 006> SCSI2 0/direct fixed sd1: 386932MB, 512 bytes/sector, 792437664 sectors root on sd1a (e5feaad7e6d89dfd.a) swap on sd1b dump on sd1b WARNING: / was not properly unmounted