Please help me: Fatal Trap 12

Status
Not open for further replies.

paleoN

Wizard
Joined
Apr 22, 2012
Messages
1,403
:confused: These seem contradictory to me.
I even connected the HDDs to a different system, same error with trying to import.
A little later I'll try the import commands on a different system.
Did you or didn't you. If you did why did you move the drives back to the faulty system.


And what exactly does this mean?
From 4 of the 1GB RAM sticks, one was really bad.
The other three were only a little bad?

Only on a system with properly functioning RAM:
  1. "Escape to loader prompt" option during boot.
  2. Type the following:
    Code:
    set vfs.zfs.recover=1
    boot -s
  3. Attempt to import pool again.
 

RFeynman

Dabbler
Joined
Dec 15, 2012
Messages
15
Sorry if it sounded contradictory, let me clarify: I connected the drives to a whole new system, tried the one import command "zpool import -f tank" and got the Fatal Trap 12 error. After reading some of the other posts and your suggestions on using -nfF & -fFX, I then tried those commands and recieved the same error.

On the RAM of the older system, I meant had 4 sticks, one turned out bad, the other 3 okay. Just info for the discussion about faulty RAM. Not really using that system any longer with my drives.

I just tried your recommendations on ESC to loader prompt, input the "set" command, tried to import, same Fatal Trap 12... This is so puzzling.
 

ProtoSD

MVP
Joined
Jul 1, 2011
Messages
3,348
I just tried your recommendations on ESC to loader prompt, input the "set" command, tried to import, same Fatal Trap 12... This is so puzzling.

Take a look at that thread I just posted above, there are some variations you can try that might work.
 

RFeynman

Dabbler
Joined
Dec 15, 2012
Messages
15
Ok. Just started reading that thread, going to give it a try. You think it's okay to use FreeBSD v9.1? Cause I don't have Solaris11.
EDIT: Nevermind, I just saw that it didn't work for that guy with FreeBSD. Solaris11 is needed.
 

paleoN

Wizard
Joined
Apr 22, 2012
Messages
1,403
Yup, that's were I got it from.

If that doesn't help you can try:
  1. booting a live FreeBSD 9.1-RC3 based CD/DVD and importing.
  2. Try importing the pool from a Solaris/Illumos based distro.
  3. Attempt to run ZFS forensics scrollback script.
    You can use the following to try and guess a txg before you added the stripe.
    Code:
    zdb -lu /dev/adaX

    There's this line, "This script should work on linux and solaris." Seems odd no mention of FreeBSD. Of course you could always manually use dd and zero out the appropriate uberblocks. This could possibly allow the import with -F or -X to succeed, depending on why you got the panic.​
1. didn't work for you or did you try it yet? I'm not sure if 3 even works on FreeBSD, but you would want to try 2 beforehand. That will give you a chance of running the zdb -e command as well.

Last couple thoughts:

I suppose you could look at the SMART info on your disks:
Code:
smartctl -q noserial -a /dev/adaX
I highly doubt you had both faulty RAM & bad disk(s) though.

You mentioned you're not using dedup in the beginning. Have ever had it enabled at anytime for anything? If you did you are likely running out of RAM.

Are you using the 64-bit version of FN8? If not I would try that also.
 

ProtoSD

MVP
Joined
Jul 1, 2011
Messages
3,348
In the last post in that thread, it looks like the guy didn't run a scrub after getting the pool to mount which might explain why some of his data was messed up. If you can get it to mount, do a scrub if at all possible.
 

cyberjock

Inactive Account
Joined
Mar 25, 2012
Messages
19,526
My last bad stick of RAM was in my own laptop. Bought the RAM and did my normal RAM tests. Used it for over a year with no problems. Then suddenly the laptop would randomly give me BSODs. The error message always pointed to a different problem. After the 5th or so in less than 4 days I decided I needed to fix the problem. I figured I'd do a RAM test since it is cheap and simple to do without disassembly. Sure enough, one of my sticks of RAM went bad. Hadn't disassembled the laptop in months or anything so it was just 'one of those things'.
 

RFeynman

Dabbler
Joined
Dec 15, 2012
Messages
15
Update: Sorry for the delay guys. I took some time off for the :D holidays and a much needed rest, then researched online for similar issues. I put my 3 x (2TB) HDD RaidZ into a new box, but still can't get my pool to import/mount.

New temp System: Intel Core 2 Duo E6300 (1.86 GHz) 64-bit, 4GB RAM...

Using Solaris 11.1 Live CD, I tried the suggested commands:
Logged in as root.
set zfs:zfs_recover=1
set zok=1


Checked to see if my pool & drives are online: zpool import -- The system sees the pool, status online, HDD's online.

ran: zdb -e -bcsvL tank

Traversing all blocks to verify checksums ...
Runs for about 15-20mins, but then errors: out of memory -- generating core dump, File system full, swap limit exceeded, MAXBLOCKS, MINBLOCKS, refers to a Line 214, some zio.c file, abort. I tried this command several times, hoping the error would occur at a much later interval of time.
But usually averages 15-20mins.
zpool import -f tank -- or similar import commands, cause an immediate Fatal Trap, kernal panic. Reboot...

I tried also OpenIndiana, no luck.

Any suggestions?
 

cyberjock

Inactive Account
Joined
Mar 25, 2012
Messages
19,526
My suggestion would be to get more RAM, just as I said in my first post. I know your system can't handle more, but I don't see much of a choice. The manual says 6GB of RAM minimum for ZFS, there is TONS of anecdotal evidence that less than 6GB of RAM and ZFS can cause serious problems with performance and reliability, plus your error seems to indicate you need more RAM.

Also, you said that dedup was off. Are you 100% sure it was off? Did you even experiment with it? Could you have accidentally enabled dedup out of habit while experimenting and not realize you enabled it on your production server? If so you could need a great deal of ram to recover. If you read the release notes for 8.3.0:

ZFS v28 includes deduplication, which can be enabled at the dataset level. The more data you write to a deduplicated volume the more memory it requires, and there is no upper bound on this. When the system starts storing the dedup tables on disk because they no longer fit in RAM, performance craters. There is no way to undedup data once it is deduplicated, simply switching dedup off has NO AFFECT on the existing data. Furthermore, importing an unclean pool can require between 3-5GB of RAM per TB of deduped data, and if the system doesn't have the needed RAM it will panic, with the only solution being adding more RAM or recreating the pool. Think carefully before enabling dedup! Then after thinking about it use compression instead.

This could get very ugly if you had dedup on since you may need a system with 32GB of RAM.
 

RFeynman

Dabbler
Joined
Dec 15, 2012
Messages
15
Thanks for the reply noobsauce80. I hear what you're saying on the RAM. 4GB is what was immediately available to me, the max on this new system is 8GB - but I'd have to fork over some cash and upgrade. I was hoping to recover my pool long enough to fully back-it-up, without having to spend more money on this system.

My RaidZ has about 2.2TB's of data I really need back, FLACs and MP3s. I very sure I never enabled dedup. I specifically remember creating the pool and making sure that dedup was off. I recall reading that it was extremely memory intensive, so I figured it wouldn't be a good idea with my system. Never experimented with it, never even entertained the idea.
 

cyberjock

Inactive Account
Joined
Mar 25, 2012
Messages
19,526
If you didn't even experiment with dedup then I'd say you need more RAM. Also, if your zpool is corrupted in some very weird way that may be causing the odd RAM error, but you won't know until you add more RAM. Of course, you may upgrade to 8GB and find out that you still get an error saying you need more.

If you lived locally I'd say you can bring your zpool to my house. I have 2 systems with 32GB of RAM.

But I guess you have a decision to make.. buy more RAM and hope it works, wipe the zpool and just start over or try taking it to a friends house and try to get it to work with a system with more RAM.
 

RFeynman

Dabbler
Joined
Dec 15, 2012
Messages
15
I burned the latest live image: FreeBSD-9.1-RELEASE-amd64-dvd1
Booted system, chose "Escape to loader prompt", set the following commands:
set KVA_PAGES=640
set vm.kmem_size=”1792M”
set vm.kmem_size_max=”1792M”
set vfs.zfs.arc_max=”1536M”
set vfs.zfs.recover=1
set vfs.zfs.debug=1
boot -s

Changed to root, changed hostname to match my pool: freenas.local
Code:
root@freenas:/ # zdb -e -bcsvL tank

Traversing all blocks to verify checksums ...
Assertion failed: (c < SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT), file /usr/src/cdd
l/lib/libzpool/../../../sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c, li
ne 221.
pid 37 (zdb), uid 0: exited on signal 6
Abort
root@freenas:/ #

This time, it ran for 2hrs, 40mins before error-ing out. Perhaps making some progress..?
No out-of-memory error, but what do you think that assertion failure means?
Thank you again for your time and efforts. It's greatly appreciated...
 

cyberjock

Inactive Account
Joined
Mar 25, 2012
Messages
19,526
Well, it looks like it started traversing your directory structure, then failed. My guess is your drives are too corrupted with garbage data and checksums to allow the checksums to correct the errors and the file system itself is corrupted beyond being usable.

I think thats Game Over for trying to get your data. But definitely wait for someone with more experience to give you the nod that your data is gone before doing anything crazy.
 

RFeynman

Dabbler
Joined
Dec 15, 2012
Messages
15
"Game Over", :( I really don't like the sound of that. It sends cold chills down my spin, I immediately turn pale, and start to feel sick... I'm still holding-out hope someone comes up with something.
 

ProtoSD

MVP
Joined
Jul 1, 2011
Messages
3,348
Code:
root@freenas:/ # zdb -e -bcsvL tank

Traversing all blocks to verify checksums ...
Assertion failed: (c < SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT), file /usr/src/cdd
l/lib/libzpool/../../../sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c, li
ne 221.
pid 37 (zdb), uid 0: exited on signal 6
Abort
root@freenas:/ #

This time, it ran for 2hrs, 40mins before error-ing out. Perhaps making some progress..?
No out-of-memory error, but what do you think that assertion failure means?
Thank you again for your time and efforts. It's greatly appreciated...

Sorry I haven't had time to look at this. Sorry I can't really add any explanations, BUT, I think I recall seeing that someone ran that zdb command you mentioned above repeatedly and managed to have some success. I don't recall the details, but I might just try running it again and see if each time it either accomplishes more, or refuses to run or make a difference. More RAM couldn't hurt, but I'm not sure if it'll help at this point either.
 

RFeynman

Dabbler
Joined
Dec 15, 2012
Messages
15
Hey guys, just posting another update. Hopefully someone will see something in my steps and be able to help on recovering my pool.

I had an extra 120gb laptop HDD laying around, so I connected it to my system as a boot drive. I figured perhaps having a drive that the OS could read/write to, create swap files, and so on could help the recovery.

I installed the latest OpenIndiana desktop OS. Verified that it booted fine, checked for updates, then connected my poool (3 drives). Used terminal, input the following commands:
Code:
user@openindiana:~# set zfs:zfs_recover=1
user@openindiana:~# set aok=1
user@openindiana:~# zpool import
   pool: tank
     id: 2820821072774409311
  state: ONLINE
 status: The pool was last accessed by another system.
 action: The pool can be imported using its name or numeric identifier and
	the '-f' flag.
   see: http://illumos.org/msg/ZFS-8000-EY
 config:

	tank        ONLINE
	  raidz1-0  ONLINE
	    c2d1s1  ONLINE
	    c1d1s1  ONLINE
	    c5d0s1  ONLINE

user@openindiana:~# zdb -e -bcsvL tank

Traversing all blocks to verify checksums ...
assertion failed for thread 0xfffffd7fff162a40, thread-id 1: (char *)bp - (char *)pbuf->b_data < pbuf->b_hdr->b_size (0x4040 < 0x4000), file ../../../uts/common/fs/zfs/arc.c, line 2732
Abort (core dumped)

This time the process took roughly 5 hours before it error'ed-out. It's a different error than the previous ones I've seen. Trying: zpool import -f tank afterwards still failed, crashed/reboot the system.

Here I'm listing some more info on my pool and drives. Perhaps there's something there.
Code:
MOS Configuration:
        version: 28
        name: 'tank'
        state: 0
        txg: 350245
        pool_guid: 2820821072774409311
        hostid: 604204702
        hostname: ''
        vdev_children: 1
        vdev_tree:
            type: 'root'
            id: 0
            guid: 2820821072774409311
            children[0]:
                type: 'raidz'
                id: 0
                guid: 7501327654588024338
                nparity: 1
                metaslab_array: 23
                metaslab_shift: 32
                ashift: 12
                asize: 5994739924992
                is_log: 0
                children[0]:
                    type: 'disk'
                    id: 0
                    guid: 7957343079734971635
                    path: '/dev/ada0p2'
                    phys_path: '/dev/ada0p2'
                    whole_disk: 0
                    DTL: 30
                children[1]:
                    type: 'disk'
                    id: 1
                    guid: 9152740101415916701
                    path: '/dev/ada1p2'
                    phys_path: '/dev/ada1p2'
                    whole_disk: 0
                    DTL: 29
                children[2]:
                    type: 'disk'
                    id: 2
                    guid: 4671458331591113517
                    path: '/dev/ada2p2'
                    phys_path: '/dev/ada2p2'
                    whole_disk: 0
                    DTL: 27

Code:
user@openindiana:~# zdb -l /dev/dsk/c2d1s1
--------------------------------------------
LABEL 0
--------------------------------------------
    version: 28
    name: 'tank'
    state: 0
    txg: 350245
    pool_guid: 2820821072774409311
    hostid: 604204702
    hostname: ''
    top_guid: 7501327654588024338
    guid: 7957343079734971635
    vdev_children: 1
    vdev_tree:
        type: 'raidz'
        id: 0
        guid: 7501327654588024338
        nparity: 1
        metaslab_array: 23
        metaslab_shift: 32
        ashift: 12
        asize: 5994739924992
        is_log: 0
        children[0]:
            type: 'disk'
            id: 0
            guid: 7957343079734971635
            path: '/dev/ada0p2'
            phys_path: '/dev/ada0p2'
            whole_disk: 0
            DTL: 30
        children[1]:
            type: 'disk'
            id: 1
            guid: 9152740101415916701
            path: '/dev/ada1p2'
            phys_path: '/dev/ada1p2'
            whole_disk: 0
            DTL: 29
        children[2]:
            type: 'disk'
            id: 2
            guid: 4671458331591113517
            path: '/dev/ada2p2'
            phys_path: '/dev/ada2p2'
            whole_disk: 0
            DTL: 27
--------------------------------------------
LABEL 1
--------------------------------------------
    version: 28
    name: 'tank'
    state: 0
    txg: 350245
    pool_guid: 2820821072774409311
    hostid: 604204702
    hostname: ''
    top_guid: 7501327654588024338
    guid: 7957343079734971635
    vdev_children: 1
    vdev_tree:
        type: 'raidz'
        id: 0
        guid: 7501327654588024338
        nparity: 1
        metaslab_array: 23
        metaslab_shift: 32
        ashift: 12
        asize: 5994739924992
        is_log: 0
        children[0]:
            type: 'disk'
            id: 0
            guid: 7957343079734971635
            path: '/dev/ada0p2'
            phys_path: '/dev/ada0p2'
            whole_disk: 0
            DTL: 30
        children[1]:
            type: 'disk'
            id: 1
            guid: 9152740101415916701
            path: '/dev/ada1p2'
            phys_path: '/dev/ada1p2'
            whole_disk: 0
            DTL: 29
        children[2]:
            type: 'disk'
            id: 2
            guid: 4671458331591113517
            path: '/dev/ada2p2'
            phys_path: '/dev/ada2p2'
            whole_disk: 0
            DTL: 27
--------------------------------------------
LABEL 2
--------------------------------------------
    version: 28
    name: 'tank'
    state: 0
    txg: 350245
    pool_guid: 2820821072774409311
    hostid: 604204702
    hostname: ''
    top_guid: 7501327654588024338
    guid: 7957343079734971635
    vdev_children: 1
    vdev_tree:
        type: 'raidz'
        id: 0
        guid: 7501327654588024338
        nparity: 1
        metaslab_array: 23
        metaslab_shift: 32
        ashift: 12
        asize: 5994739924992
        is_log: 0
        children[0]:
            type: 'disk'
            id: 0
            guid: 7957343079734971635
            path: '/dev/ada0p2'
            phys_path: '/dev/ada0p2'
            whole_disk: 0
            DTL: 30
        children[1]:
            type: 'disk'
            id: 1
            guid: 9152740101415916701
            path: '/dev/ada1p2'
            phys_path: '/dev/ada1p2'
            whole_disk: 0
            DTL: 29
        children[2]:
            type: 'disk'
            id: 2
            guid: 4671458331591113517
            path: '/dev/ada2p2'
            phys_path: '/dev/ada2p2'
            whole_disk: 0
            DTL: 27
--------------------------------------------
LABEL 3
--------------------------------------------
    version: 28
    name: 'tank'
    state: 0
    txg: 350245
    pool_guid: 2820821072774409311
    hostid: 604204702
    hostname: ''
    top_guid: 7501327654588024338
    guid: 7957343079734971635
    vdev_children: 1
    vdev_tree:
        type: 'raidz'
        id: 0
        guid: 7501327654588024338
        nparity: 1
        metaslab_array: 23
        metaslab_shift: 32
        ashift: 12
        asize: 5994739924992
        is_log: 0
        children[0]:
            type: 'disk'
            id: 0
            guid: 7957343079734971635
            path: '/dev/ada0p2'
            phys_path: '/dev/ada0p2'
            whole_disk: 0
            DTL: 30
        children[1]:
            type: 'disk'
            id: 1
            guid: 9152740101415916701
            path: '/dev/ada1p2'
            phys_path: '/dev/ada1p2'
            whole_disk: 0
            DTL: 29
        children[2]:
            type: 'disk'
            id: 2
            guid: 4671458331591113517
            path: '/dev/ada2p2'
            phys_path: '/dev/ada2p2'
            whole_disk: 0
            DTL: 27

Please, please, PLEASE help me if you can. I'm NOT giving up hope. Thanks everyone.
 

RFeynman

Dabbler
Joined
Dec 15, 2012
Messages
15
Here is some addition info/details of my pool. Just some command options to zdb I just learned...
Code:
user@openindiana:~# zdb -e -i tank

Dataset mos [META], ID 0, cr_txg 4, 88.1M, 933 objects
Dataset tank/software [ZPL], ID 930, cr_txg 321240, 176M, 5468 objects

    ZIL header: claim_txg 0, claim_blk_seq 0, claim_lr_seq 0 replay_seq 0, flags 0x0
Dataset tank/jail [ZPL], ID 923, cr_txg 321234, 515M, 30285 objects

    ZIL header: claim_txg 0, claim_blk_seq 0, claim_lr_seq 0 replay_seq 0, flags 0x0
Dataset tank [ZPL], ID 16, cr_txg 1, 1.93T, 805588 objects

    ZIL header: claim_txg 0, claim_blk_seq 0, claim_lr_seq 0 replay_seq 0, flags 0x0

user@openindiana:~# zdb -e -d tank

Dataset mos [META], ID 0, cr_txg 4, 88.1M, 933 objects
Dataset tank/software [ZPL], ID 930, cr_txg 321240, 176M, 5468 objects
Dataset tank/jail [ZPL], ID 923, cr_txg 321234, 515M, 30285 objects
Dataset tank [ZPL], ID 16, cr_txg 1, 1.93T, 805588 objects

I could care less about the datasets: tank/software or tank/jails, tank the real valuable one here.
Code:
user@openindiana:~# zdb -e -h tank

History:
2011-09-18.22:35:33 zpool create -o cachefile=/data/zfs/zpool.cache -O aclmode=passthrough -O aclinherit=passthrough -f -m /mnt/tank -o altroot=/mnt tank raidz /dev/ada1p2.nop /dev/ada2p2.nop /dev/ada3p2.nop
2011-09-18.22:35:33 [internal property set txg:6] aclmode=3 dataset = 16
2011-09-18.22:35:33 [internal property set txg:6] aclinherit=3 dataset = 16
2011-09-18.22:35:33 [internal property set txg:7] mountpoint=/ dataset = 16
2011-09-18.22:35:34 [internal property set txg:8] mountpoint=/mnt/tank dataset = 16
2011-09-18.22:35:34 [internal inherit txg:10] mountpoint=(null) dataset = 16
2011-09-18.22:35:34 zfs inherit mountpoint tank
2011-09-18.22:35:34 zpool export tank
2011-09-18.22:35:37 zpool import -R /mnt tank
2011-09-18.22:35:37 zpool set cachefile=/data/zfs/zpool.cache tank
2011-09-18.22:43:14 [internal property set txg:36] compression=3 dataset = 16
2011-09-18.22:43:14 zfs set compression=lzjb tank
2011-09-18.22:43:14 [internal inherit txg:38] atime=1 dataset = 16
2011-09-18.22:43:14 zfs inherit atime tank
2011-09-18.22:43:15 [internal property set txg:40] refreservation=0 dataset = 16
2011-09-18.22:43:15 [internal refreservation set txg:40] 0 dataset = 16
2011-09-18.22:43:15 zfs set refreservation=0 tank
2011-09-18.22:43:15 zfs set refquota=none tank
2011-09-18.22:53:32 [internal pool scrub txg:69] func=1 mintxg=0 maxtxg=69
2011-09-18.22:53:35 zpool scrub tank
2011-09-18.22:53:55 [internal pool scrub done txg:72] complete=1
2011-09-18.22:56:16 zpool online tank ada3p2
2011-09-18.22:58:54 zpool online tank ada3p2
2011-09-18.23:05:09 zpool import -o cachefile=none -R /mnt -f tank
2011-09-18.23:05:09 zpool set cachefile=/data/zfs/zpool.cache tank
2011-09-18.23:06:57 zpool clear tank
2011-09-18.23:07:08 [internal pool scrub txg:106] func=1 mintxg=68 maxtxg=97
2011-09-18.23:07:08 [internal pool scrub done txg:106] complete=1
2011-09-18.23:07:09 zpool scrub tank
2011-09-18.23:12:56 zpool clear tank ada3p2
2011-09-18.23:13:10 [internal pool scrub txg:120] func=1 mintxg=0 maxtxg=120
2011-09-18.23:13:13 zpool scrub tank
2011-09-18.23:13:44 [internal pool scrub done txg:123] complete=1
2011-09-18.23:14:50 zpool clear tank
2011-09-18.23:15:05 [internal pool scrub txg:128] func=1 mintxg=0 maxtxg=128
2011-09-18.23:15:08 zpool scrub tank
2011-09-18.23:15:38 [internal pool scrub done txg:131] complete=1
2011-09-19.14:46:14 zpool import -o cachefile=none -R /mnt -f tank
2011-09-19.14:46:14 zpool set cachefile=/data/zfs/zpool.cache tank
2011-09-19.18:24:45 zpool import 2820821072774409311
2011-09-19.18:26:42 [internal pool scrub txg:264] func=1 mintxg=0 maxtxg=264
2011-09-19.18:26:45 zpool scrub tank
2011-09-19.18:30:42 [internal pool scrub done txg:274] complete=1
2011-09-19.20:41:13 zpool import -o cachefile=none -R /mnt -f tank
2011-09-19.20:41:13 zpool set cachefile=/data/zfs/zpool.cache tank
2011-09-20.16:47:11 zpool import -o cachefile=none -R /mnt -f tank
2011-09-20.16:47:11 zpool set cachefile=/data/zfs/zpool.cache tank
2011-09-21.01:30:38 zpool import -o cachefile=none -R /mnt -f tank
2011-09-21.01:30:38 zpool set cachefile=/data/zfs/zpool.cache tank
2011-09-21.01:40:31 zpool import -o cachefile=none -R /mnt -f tank
2011-09-21.01:40:31 zpool set cachefile=/data/zfs/zpool.cache tank
2011-09-21.02:01:37 zpool import -o cachefile=none -R /mnt -f tank
2011-09-21.02:01:37 zpool set cachefile=/data/zfs/zpool.cache tank
2011-09-21.14:54:36 zpool import -o cachefile=none -R /mnt -f tank
2011-09-21.14:54:36 zpool set cachefile=/data/zfs/zpool.cache tank
2011-09-23.15:58:35 zpool import -o cachefile=none -R /mnt -f tank
2011-09-23.15:58:35 zpool set cachefile=/data/zfs/zpool.cache tank
2011-09-24.16:27:36 zpool import -o cachefile=none -R /mnt -f tank
2011-09-24.16:27:36 zpool set cachefile=/data/zfs/zpool.cache tank
2011-09-24.16:35:42 zpool import -o cachefile=none -R /mnt -f tank
2011-09-24.16:35:42 zpool set cachefile=/data/zfs/zpool.cache tank
2011-09-25.02:40:20 [internal pool scrub txg:64557] func=1 mintxg=0 maxtxg=64557
2011-09-25.02:40:23 zpool scrub tank
2011-09-25.12:13:12 [internal pool scrub done txg:65681] complete=1
2011-09-25.12:23:52 zpool clear tank
2011-09-25.12:25:34 zpool import -o cachefile=none -R /mnt -f tank
2011-09-25.12:25:34 zpool set cachefile=/data/zfs/zpool.cache tank
2011-09-26.15:35:54 zpool import -o cachefile=none -R /mnt -f tank
2011-09-26.15:35:54 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-02.00:18:04 zpool import -o cachefile=none -R /mnt -f tank
2011-10-02.00:18:11 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-02.00:43:52 [internal pool scrub txg:170553] func=1 mintxg=0 maxtxg=170553
2011-10-02.00:44:02 zpool scrub tank
2011-10-02.01:05:47 zpool import -o cachefile=none -R /mnt -f tank
2011-10-02.01:05:51 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-02.21:50:21 zpool import -o cachefile=none -R /mnt -f tank
2011-10-02.22:02:43 zpool import -o cachefile=none -R /mnt -f tank
2011-10-02.22:02:53 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-03.11:36:08 zpool import -o cachefile=none -R /mnt -f tank
2011-10-03.11:36:13 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-03.12:10:18 [internal pool scrub done txg:172712] complete=1
2011-10-03.12:29:39 zpool import -o cachefile=none -R /mnt -f tank
2011-10-03.12:29:39 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-03.14:10:41 zpool export tank
2011-10-03.14:29:49 zpool import -o cachefile=none -R /mnt -f tank
2011-10-03.14:29:50 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-03.14:38:47 zpool import -R /mnt tank
2011-10-03.14:38:47 [internal inherit txg:173002] mountpoint=(null) dataset = 16
2011-10-03.14:38:48 zfs inherit -r mountpoint tank
2011-10-03.14:38:48 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-03.14:38:48 [internal property set txg:173005] aclmode=3 dataset = 16
2011-10-03.14:38:49 zfs set aclmode=passthrough tank
2011-10-03.14:38:49 [internal property set txg:173007] aclinherit=3 dataset = 16
2011-10-03.14:38:49 zfs set aclinherit=passthrough tank
2011-10-03.14:38:50 [internal inherit txg:173010] mountpoint=(null) dataset = 16
2011-10-03.14:38:50 zfs inherit -r mountpoint tank
2011-10-03.15:27:58 zpool import -o cachefile=none -R /mnt -f tank
2011-10-03.15:27:59 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-03.16:14:21 zpool export tank
2011-10-03.16:36:31 zpool import -R /mnt tank
2011-10-03.16:36:31 [internal inherit txg:173162] mountpoint=(null) dataset = 16
2011-10-03.16:36:32 zfs inherit -r mountpoint tank
2011-10-03.16:36:32 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-03.16:36:32 [internal property set txg:173165] aclmode=3 dataset = 16
2011-10-03.16:36:32 zfs set aclmode=passthrough tank
2011-10-03.16:36:33 [internal property set txg:173167] aclinherit=3 dataset = 16
2011-10-03.16:36:33 zfs set aclinherit=passthrough tank
2011-10-03.16:36:33 [internal inherit txg:173170] mountpoint=(null) dataset = 16
2011-10-03.16:36:33 zfs inherit -r mountpoint tank
2011-10-03.16:51:55 zpool import -o cachefile=none -R /mnt -f tank
2011-10-03.16:51:55 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-04.14:29:09 zpool import -o cachefile=none -R /mnt -f tank
2011-10-04.14:29:09 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-04.21:19:13 zpool import -o cachefile=none -R /mnt -f tank
2011-10-04.21:19:14 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-05.13:56:00 zpool import -o cachefile=none -R /mnt -f tank
2011-10-05.13:56:01 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-05.14:07:54 zpool import -o cachefile=none -R /mnt -f tank
2011-10-05.14:07:54 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-05.15:19:02 zpool import -o cachefile=none -R /mnt -f tank
2011-10-05.15:19:02 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-05.15:26:00 zpool import -o cachefile=none -R /mnt -f tank
2011-10-05.15:26:01 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-05.16:10:56 zpool import -o cachefile=none -R /mnt -f tank
2011-10-05.16:10:56 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-07.03:16:19 zpool import -o cachefile=none -R /mnt -f tank
2011-10-07.03:16:20 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-09.03:05:48 zpool import -o cachefile=none -R /mnt -f tank
2011-10-09.03:05:49 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-10.12:39:00 zpool import -o cachefile=none -R /mnt -f tank
2011-10-10.12:39:01 zpool set cachefile=/data/zfs/zpool.cache tank
2011-10-24.14:36:21 zpool import -o cachefile=none -R /mnt -f tank
2011-10-24.14:36:21 zpool set cachefile=/data/zfs/zpool.cache tank
2011-11-06.14:04:12 zpool import -o cachefile=none -R /mnt -f tank
2011-11-06.14:04:13 zpool set cachefile=/data/zfs/zpool.cache tank
2011-11-06.23:47:13 zpool import -o cachefile=none -R /mnt -f tank
2011-11-06.23:47:14 zpool set cachefile=/data/zfs/zpool.cache tank
2011-11-07.03:12:12 [internal pool scrub txg:250812] func=1 mintxg=170633 maxtxg=171591
2011-11-07.03:12:19 zpool scrub tank
2011-11-07.03:25:29 [internal pool scrub done txg:250840] complete=1
2011-11-07.14:38:40 zpool import -o cachefile=none -R /mnt -f tank
2011-11-07.14:38:40 zpool set cachefile=/data/zfs/zpool.cache tank
2011-12-10.15:42:38 zpool import -o cachefile=none -R /mnt -f tank
2011-12-10.15:42:39 zpool set cachefile=/data/zfs/zpool.cache tank
2011-12-10.15:52:15 zpool import -o cachefile=none -R /mnt -f tank
2011-12-10.15:52:15 zpool set cachefile=/data/zfs/zpool.cache tank
2011-12-11.03:09:55 [internal pool scrub txg:258594] func=1 mintxg=0 maxtxg=258594
2011-12-11.03:09:59 zpool scrub tank
2011-12-11.12:24:36 zpool import -o cachefile=none -R /mnt -f tank
2011-12-11.12:24:51 zpool set cachefile=/data/zfs/zpool.cache tank
2011-12-11.13:02:43 zpool import -o cachefile=none -R /mnt -f tank
2011-12-11.13:02:54 zpool set cachefile=/data/zfs/zpool.cache tank
2011-12-11.13:27:25 zpool import -o cachefile=none -R /mnt -f tank
2011-12-11.13:27:41 zpool set cachefile=/data/zfs/zpool.cache tank
2011-12-11.17:04:22 zpool import -o cachefile=none -R /mnt -f tank
2011-12-11.17:04:32 zpool set cachefile=/data/zfs/zpool.cache tank
2011-12-11.20:13:48 zpool import -o cachefile=none -R /mnt -f tank
2011-12-11.20:14:00 zpool set cachefile=/data/zfs/zpool.cache tank
2012-01-04.15:57:13 zpool import -o cachefile=none -R /mnt -f tank
2012-01-04.15:57:19 zpool set cachefile=/data/zfs/zpool.cache tank
2012-01-06.22:21:50 zpool import -f tank
2012-01-06.22:24:54 zpool export tank
2012-01-06.22:25:59 zpool import -f tank
2012-01-06.23:04:23 zpool import -R /mnt tank
2012-01-06.23:05:59 [internal inherit txg:261551] mountpoint=(null) dataset = 16
2012-01-06.23:06:02 zfs inherit -r mountpoint tank
2012-01-06.23:06:34 zpool set cachefile=/data/zfs/zpool.cache tank
2012-01-06.23:07:06 [internal property set txg:261557] aclmode=3 dataset = 16
2012-01-06.23:07:08 zfs set aclmode=passthrough tank
2012-01-06.23:07:23 [internal property set txg:261561] aclinherit=3 dataset = 16
2012-01-06.23:07:25 zfs set aclinherit=passthrough tank
2012-01-06.23:08:00 [internal inherit txg:261567] mountpoint=(null) dataset = 16
2012-01-06.23:08:03 zfs inherit -r mountpoint tank
2012-01-06.23:49:11 zpool import -o cachefile=none -R /mnt -f tank
2012-01-06.23:49:18 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-07.16:52:20 zpool import -f tank
2012-05-07.17:05:10 [internal pool scrub done txg:262694] complete=1
2012-05-07.17:38:15 zpool import -R /mnt tank
2012-05-07.17:38:15 [internal inherit txg:262700] mountpoint=(null) dataset = 16
2012-05-07.17:38:15 zfs inherit -r mountpoint tank
2012-05-07.17:38:16 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-07.17:38:16 [internal property set txg:262703] aclmode=3 dataset = 16
2012-05-07.17:38:16 zfs set aclmode=passthrough tank
2012-05-07.17:38:16 [internal property set txg:262705] aclinherit=3 dataset = 16
2012-05-07.17:38:16 zfs set aclinherit=passthrough tank
2012-05-07.17:38:17 [internal inherit txg:262708] mountpoint=(null) dataset = 16
2012-05-07.17:38:17 zfs inherit -r mountpoint tank
2012-05-07.18:27:45 zpool import -o cachefile=none -R /mnt -f tank
2012-05-07.18:27:45 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-07.20:30:11 zpool import -o cachefile=none -R /mnt -f tank
2012-05-07.20:30:11 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-08.14:30:34 zpool import -o cachefile=none -R /mnt -f tank
2012-05-08.14:30:35 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-08.16:19:41 zpool import -o cachefile=none -R /mnt -f tank
2012-05-08.16:19:41 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-08.19:37:22 zpool import -o cachefile=none -R /mnt -f tank
2012-05-08.19:37:22 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-08.20:05:03 zpool import -o cachefile=none -R /mnt -f tank
2012-05-08.20:05:03 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-08.20:38:31 zpool import -o cachefile=none -R /mnt -f tank
2012-05-08.20:38:31 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-08.20:53:25 zpool import -o cachefile=none -R /mnt -f tank
2012-05-08.20:53:26 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-12.14:14:15 zpool import -o cachefile=none -R /mnt -f tank
2012-05-12.14:14:15 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-12.14:23:36 zpool import -o cachefile=none -R /mnt -f tank
2012-05-12.14:23:37 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-12.16:43:46 zpool import -o cachefile=none -R /mnt -f tank
2012-05-12.16:43:47 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-17.17:36:56 zpool import -o cachefile=none -R /mnt -f tank
2012-05-17.17:36:56 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-17.19:47:31 zpool import -o cachefile=none -R /mnt -f tank
2012-05-17.19:47:33 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-17.23:24:03 zpool import -o cachefile=none -R /mnt -f tank
2012-05-17.23:24:03 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-17.23:51:49 zpool import -o cachefile=none -R /mnt -f tank
2012-05-17.23:51:49 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-18.01:31:10 zpool import -o cachefile=none -R /mnt -f tank
2012-05-18.01:31:13 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-18.12:54:40 zpool import -o cachefile=none -R /mnt -f tank
2012-05-18.12:54:40 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-18.13:57:56 zpool import -o cachefile=none -R /mnt -f tank
2012-05-18.13:57:56 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-18.14:11:40 zpool import -o cachefile=none -R /mnt -f tank
2012-05-18.14:11:41 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-19.13:04:59 zpool import -o cachefile=none -R /mnt -f tank
2012-05-19.13:04:59 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-24.16:35:28 zpool import -o cachefile=none -R /mnt -f tank
2012-05-24.16:35:28 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-26.17:47:34 zpool import -o cachefile=none -R /mnt -f tank
2012-05-26.17:47:34 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-28.20:11:11 zpool import -o cachefile=none -R /mnt -f tank
2012-05-28.20:11:11 zpool set cachefile=/data/zfs/zpool.cache tank
2012-05-28.21:03:15 [internal pool scrub txg:270982] func=1 mintxg=0 maxtxg=270982
2012-05-28.21:03:18 zpool scrub tank
2012-05-29.03:38:08 [internal pool scrub done txg:271765] complete=1
2012-06-04.23:27:22 zpool import -o cachefile=none -R /mnt -f tank
2012-06-04.23:27:22 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-07.19:52:25 zpool import -o cachefile=none -R /mnt -f tank
2012-06-07.19:52:25 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-08.21:23:50 zpool import -o cachefile=none -R /mnt -f tank
2012-06-08.21:23:50 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-10.15:29:51 zpool import -o cachefile=none -R /mnt -f tank
2012-06-10.15:29:51 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-11.23:29:19 zpool import -o cachefile=none -R /mnt -f tank
2012-06-11.23:29:19 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-13.19:14:20 zpool import -o cachefile=none -R /mnt -f tank
2012-06-13.19:14:20 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-13.19:23:12 zpool import -o cachefile=none -R /mnt -f tank
2012-06-13.19:23:12 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-13.19:31:09 zpool import -o cachefile=none -R /mnt -f tank
2012-06-13.19:31:11 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-13.20:12:26 zpool import -o cachefile=none -R /mnt -f tank
2012-06-13.20:12:27 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-14.18:21:03 zpool import -o cachefile=none -R /mnt -f tank
2012-06-14.18:21:03 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-15.19:20:34 zpool import -o cachefile=none -R /mnt -f tank
2012-06-15.19:20:34 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-16.20:28:28 zpool import -o cachefile=none -R /mnt -f tank
2012-06-16.20:28:28 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-18.20:07:33 zpool import -o cachefile=none -R /mnt -f tank
2012-06-18.20:07:33 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-19.20:53:24 zpool import -o cachefile=none -R /mnt -f tank
2012-06-19.20:53:25 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-20.18:23:33 zpool import -o cachefile=none -R /mnt -f tank
2012-06-20.18:23:33 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-21.21:12:22 zpool import -o cachefile=none -R /mnt -f tank
2012-06-21.21:12:23 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-24.15:24:56 zpool import -o cachefile=none -R /mnt -f tank
2012-06-24.15:24:57 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-26.14:53:55 zpool import -o cachefile=none -R /mnt -f tank
2012-06-26.14:53:55 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-28.18:10:33 zpool import -o cachefile=none -R /mnt -f tank
2012-06-28.18:10:33 zpool set cachefile=/data/zfs/zpool.cache tank
2012-06-30.15:22:41 zpool import -o cachefile=none -R /mnt -f tank
2012-06-30.15:22:41 zpool set cachefile=/data/zfs/zpool.cache tank
2012-07-02.16:32:40 zpool import -o cachefile=none -R /mnt -f tank
2012-07-02.16:32:40 zpool set cachefile=/data/zfs/zpool.cache tank
2012-07-05.17:12:12 zpool import -o cachefile=none -R /mnt -f tank
2012-07-05.17:12:12 zpool set cachefile=/data/zfs/zpool.cache tank
2012-07-13.14:29:47 zpool import -o cachefile=none -R /mnt -f tank
2012-07-13.14:29:47 zpool set cachefile=/data/zfs/zpool.cache tank
2012-07-14.17:51:52 zpool import -o cachefile=none -R /mnt -f tank
2012-07-14.17:51:53 zpool set cachefile=/data/zfs/zpool.cache tank
2012-07-15.03:01:01 [internal pool scrub txg:299594] func=1 mintxg=0 maxtxg=299594
2012-07-15.03:01:05 zpool scrub tank
2012-07-15.11:09:45 [internal pool scrub done txg:300561] complete=1
2012-08-16.14:57:19 zpool import -o cachefile=none -R /mnt -f tank
2012-08-16.14:57:20 zpool set cachefile=/data/zfs/zpool.cache tank
2012-08-16.15:07:44 zpool import -R /mnt tank
2012-08-16.15:07:45 zpool export tank
2012-08-16.15:09:45 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-08-16.15:09:45 zpool set cachefile=/data/zfs/zpool.cache tank
2012-08-16.16:18:16 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-08-16.16:18:18 zpool set cachefile=/data/zfs/zpool.cache tank
2012-08-16.16:20:41 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-08-16.16:20:42 zpool set cachefile=/data/zfs/zpool.cache tank
2012-08-16.16:27:14 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-08-16.16:27:15 zpool set cachefile=/data/zfs/zpool.cache tank
2012-08-16.16:33:08 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-08-16.16:33:08 zpool set cachefile=/data/zfs/zpool.cache tank
2012-08-16.16:38:37 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-08-16.16:38:38 zpool set cachefile=/data/zfs/zpool.cache tank
2012-08-16.17:20:41 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-08-16.17:20:43 zpool set cachefile=/data/zfs/zpool.cache tank
2012-08-16.17:29:50 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-08-16.17:29:50 zpool set cachefile=/data/zfs/zpool.cache tank
2012-08-18.13:13:36 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-08-18.13:13:37 zpool set cachefile=/data/zfs/zpool.cache tank
2012-08-18.13:44:24 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-08-18.13:44:24 zpool set cachefile=/data/zfs/zpool.cache tank
2012-09-22.14:16:45 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-09-22.14:16:45 zpool set cachefile=/data/zfs/zpool.cache tank
2012-09-30.14:33:59 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-09-30.14:33:59 zpool set cachefile=/data/zfs/zpool.cache tank
2012-10-10.22:40:04 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-10-10.22:40:05 zpool set cachefile=/data/zfs/zpool.cache tank
2012-10-23.17:49:34 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-10-23.17:49:34 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-01.23:16:28 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-11-01.23:16:29 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-08.18:40:17 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-11-08.18:40:17 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-09.20:22:48 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-11-09.20:22:49 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-14.18:18:49 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-11-14.18:18:50 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-14.19:16:14 [internal pool scrub txg:317594] func=1 mintxg=0 maxtxg=317594
2012-11-14.19:16:17 zpool scrub tank
2012-11-15.02:59:57 [internal pool scrub done txg:318514] complete=1
2012-11-15.17:32:31 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-11-15.17:32:32 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-15.18:58:01 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-11-15.18:58:01 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-15.22:49:46 [internal pool import txg:320562] pool spa 15; zfs spa 28; zpl 5; uts (null) freenas.local 8.3-RELEASE-p4 803000
2012-11-15.22:49:47 zpool import -f -R /mnt 2820821072774409311
2012-11-15.22:49:47 [internal inherit txg:320562] mountpoint=/ dataset = 16
2012-11-15.22:49:47 zfs inherit -r mountpoint tank
2012-11-15.22:49:47 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-15.22:49:47 [internal property set txg:320563] aclmode=3 dataset = 16
2012-11-15.22:49:47 zfs set aclmode=passthrough tank
2012-11-15.22:49:47 [internal property set txg:320564] aclinherit=3 dataset = 16
2012-11-15.22:49:52 zfs set aclinherit=passthrough tank
2012-11-15.22:52:59 zpool upgrade tank
2012-11-15.23:05:25 [internal pool import txg:320609] pool spa 28; zfs spa 28; zpl 5; uts (null)  8.3-RELEASE-p4 803000
2012-11-15.23:05:25 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-11-15.23:05:25 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-15.23:14:57 [internal property set txg:320724] compression=3 dataset = 16
2012-11-15.23:14:58 zfs set compression=lzjb tank
2012-11-15.23:14:58 [internal inherit txg:320725] atime=1 dataset = 16
2012-11-15.23:14:58 zfs inherit atime tank
2012-11-15.23:14:58 [internal property set txg:320726] dedup=2 dataset = 16
2012-11-15.23:14:58 zfs set dedup=off tank
2012-11-15.23:14:58 [internal property set txg:320728] refquota=0 dataset = 16
2012-11-15.23:14:58 zfs set refquota=none tank
2012-11-15.23:14:58 [internal property set txg:320729] refreservation=0 dataset = 16
2012-11-15.23:14:58 [internal refreservation set txg:320729] 0 dataset = 16
2012-11-15.23:15:03 zfs set refreservation=0 tank
2012-11-15.23:26:46 [internal pool import txg:320857] pool spa 28; zfs spa 28; zpl 5; uts (null)  8.3-RELEASE-p4 803000
2012-11-15.23:26:46 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-11-15.23:26:46 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-15.23:29:31 [internal pool import txg:320861] pool spa 28; zfs spa 28; zpl 5; uts (null)  8.3-RELEASE-p4 803000
2012-11-15.23:29:31 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-11-15.23:29:31 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-16.00:00:34 [internal create txg:321234] dataset = 923
2012-11-16.00:00:39 zfs create tank/jail
2012-11-16.00:01:01 [internal create txg:321240] dataset = 930
2012-11-16.00:01:06 zfs create tank/software
2012-11-16.12:40:47 [internal pool import txg:330365] pool spa 28; zfs spa 28; zpl 5; uts (null)  8.3-RELEASE-p4 803000
2012-11-16.12:40:47 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-11-16.12:40:47 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-16.13:18:16 [internal pool import txg:330808] pool spa 28; zfs spa 28; zpl 5; uts (null)  8.3-RELEASE-p4 803000
2012-11-16.13:18:16 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-11-16.13:18:16 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-16.16:13:33 [internal pool scrub txg:332912] func=1 mintxg=0 maxtxg=332912
2012-11-16.16:13:42 zpool scrub tank
2012-11-17.00:30:17 [internal pool scrub done txg:337630] complete=1
2012-11-17.00:31:25 zpool clear tank
2012-11-17.01:22:20 zpool clear tank
2012-11-25.17:43:37 [internal pool import txg:338278] pool spa 28; zfs spa 28; zpl 5; uts (null)  8.3-RELEASE-p4 803000
2012-11-25.17:43:37 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-11-25.17:43:37 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-26.14:55:30 [internal pool import txg:345284] pool spa 28; zfs spa 28; zpl 5; uts (null)  8.3-RELEASE-p4 803000
2012-11-26.14:55:30 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-11-26.14:55:30 zpool set cachefile=/data/zfs/zpool.cache tank
2012-11-26.19:44:36 [internal inherit txg:348839] compression=3 dataset = 930
2012-11-26.19:44:36 zfs inherit compression tank/software
2012-11-26.19:44:36 [internal inherit txg:348840] atime=1 dataset = 930
2012-11-26.19:44:36 zfs inherit atime tank/software
2012-11-26.19:44:36 [internal property set txg:348841] dedup=2 dataset = 930
2012-11-26.19:44:36 zfs set dedup=off tank/software
2012-11-26.19:44:36 [internal property set txg:348842] reservation=0 dataset = 930
2012-11-26.19:44:36 [internal reservation set txg:348842] 0 dataset = 930
2012-11-26.19:44:37 zfs set reservation=0 tank/software
2012-11-26.19:44:37 [internal property set txg:348843] refreservation=0 dataset = 930
2012-11-26.19:44:37 [internal refreservation set txg:348843] 0 dataset = 930
2012-11-26.19:44:37 zfs set refreservation=0 tank/software
2012-11-26.19:44:37 [internal property set txg:348845] quota=0 dataset = 930
2012-11-26.19:44:37 [internal quota set txg:348845] 0 dataset = 930 
2012-11-26.19:44:37 zfs set quota=none tank/software
2012-11-26.19:44:37 [internal property set txg:348847] refquota=0 dataset = 930
2012-11-26.19:44:42 zfs set refquota=none tank/software
2012-11-26.19:44:48 [internal inherit txg:348850] compression=3 dataset = 923
2012-11-26.19:44:48 zfs inherit compression tank/jail
2012-11-26.19:44:48 [internal inherit txg:348851] atime=1 dataset = 923
2012-11-26.19:44:48 zfs inherit atime tank/jail
2012-11-26.19:44:48 [internal property set txg:348852] dedup=2 dataset = 923
2012-11-26.19:44:49 zfs set dedup=off tank/jail
2012-11-26.19:44:49 [internal property set txg:348853] reservation=0 dataset = 923
2012-11-26.19:44:49 [internal reservation set txg:348853] 0 dataset = 923
2012-11-26.19:44:49 zfs set reservation=0 tank/jail
2012-11-26.19:44:49 [internal property set txg:348854] refreservation=0 dataset = 923
2012-11-26.19:44:49 [internal refreservation set txg:348854] 0 dataset = 923
2012-11-26.19:44:49 zfs set refreservation=0 tank/jail
2012-11-26.19:44:49 [internal property set txg:348856] quota=0 dataset = 923
2012-11-26.19:44:49 [internal quota set txg:348856] 0 dataset = 923 
2012-11-26.19:44:50 zfs set quota=none tank/jail
2012-11-26.19:44:50 [internal property set txg:348858] refquota=0 dataset = 923
2012-11-26.19:44:55 zfs set refquota=none tank/jail
2012-12-11.23:37:37 [internal pool import txg:350247] pool spa 28; zfs spa 28; zpl 5; uts (null)  8.3-RELEASE-p4 803000
2012-12-11.23:37:37 zpool import -o cachefile=none -R /mnt -f 2820821072774409311
2012-12-11.23:37:37 zpool set cachefile=/data/zfs/zpool.cache tank
 

cyberjock

Inactive Account
Joined
Mar 25, 2012
Messages
19,526
I don't think it possible to separate the tank from the datasets without it being mounted. Of course, if it was mounted....
 
Status
Not open for further replies.
Top